Beta merge 2
[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 private:
43         /**
44      * The callback invoked when an object is first created.
45      */
46         static void initialize(JSContextRef context, JSObjectRef object);
47
48         /**
49      * The callback invoked when an object is finalized.
50      */
51         static void finalize(JSObjectRef object);
52
53         static JSObjectRef constructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
54
55         /**
56      * The callback invoked when getting a property's value.
57      */
58         static JSValueRef getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
59
60
61         /**
62      * The callback invoked when an object is used as the target of an 'instanceof' expression.
63      */
64     static bool hasInstance(JSContextRef context,
65             JSObjectRef constructor,
66             JSValueRef possibleInstance,
67             JSValueRef* exception);
68
69         /**
70      * This structure contains properties and callbacks that define a type of object.
71      */
72         static JSClassDefinition m_classInfo;
73         /**
74      * This structure describes a statically declared value property.
75      */
76         static JSStaticValue m_property[];
77
78         static JSClassRef m_jsClassRef;
79
80         static JSValueRef getPayload(JSContextRef context,
81                 JSObjectRef object,
82                 JSObjectRef thisObject,
83                 size_t argumentCount,
84                 const JSValueRef arguments[],
85                 JSValueRef* exception);
86 };
87
88 } //Tizen1_0
89 } //TizenApis
90
91 #endif
92