03d8ef52f31a7ea0adb9692b4fa137351679c955
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / NFC / JSNdefRecord.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License. 
15  */
16
17
18
19 #ifndef WRTPLUGINS_TIZEN_JS_NDEFRECORD_H_
20 #define WRTPLUGINS_TIZEN_JS_NDEFRECORD_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <CommonsJavaScript/PrivateObject.h>
24 #include <API/NFC/INdefRecord.h>
25
26 namespace TizenApis {
27 namespace Tizen1_0 {
28
29 typedef WrtDeviceApis::CommonsJavaScript::PrivateObject<Api::NFC::INdefRecordPtr, WrtDeviceApis::CommonsJavaScript::NoOwnership> NdefRecordPrivObject;
30
31 class JSNdefRecord
32 {
33 public:
34         static const JSClassDefinition* getClassInfo();
35
36         static const JSClassRef getClassRef();
37
38         static JSObjectRef createJSObject(JSContextRef context, 
39                 const Api::NFC::NdefRecordData &ndefRecordData);
40         static JSObjectRef createJSObject(JSContextRef context, 
41                 const Api::NFC::NdefRecordProperties &ndefRecordProperties, std::vector<unsigned char> payload);
42
43         static JSObjectRef createJSObject(JSContextRef context, const std::string &text, 
44                 const std::string &langCode, const short encodeType);
45         static JSObjectRef createJSObject(JSContextRef context, const std::string &uri);
46         static JSObjectRef createJSObject(JSContextRef context, 
47                 const std::string &mimeType, std::vector<unsigned char> data);
48 private:
49         /**
50      * The callback invoked when an object is first created.
51      */
52         static void initialize(JSContextRef context, JSObjectRef object);
53
54         /**
55      * The callback invoked when an object is finalized.
56      */
57         static void finalize(JSObjectRef object);
58
59         /**
60      * The callback invoked when getting a property's value.
61      */
62         static JSValueRef getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
63
64
65         /**
66      * This structure contains properties and callbacks that define a type of object.
67      */
68         static JSClassDefinition m_classInfo;
69
70         /**
71      * This structure describes a statically declared function property.
72      */
73         static JSStaticFunction m_function[];
74         
75         /**
76      * This structure describes a statically declared value property.
77      */
78         static JSStaticValue m_property[];
79
80         static JSClassRef m_jsClassRef;
81
82         static JSValueRef getPayload(JSContextRef context,
83                 JSObjectRef object,
84                 JSObjectRef thisObject,
85                 size_t argumentCount,
86                 const JSValueRef arguments[],
87                 JSValueRef* exception);
88 };
89
90 } //Tizen1_0
91 } //TizenApis
92
93 #endif
94