Update change log and spec for wrt-plugins-tizen_0.4.70
[framework/web/wrt-plugins-tizen.git] / src / Bluetooth / JSBluetoothDevice.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef __TIZEN_JS_BLUETOOTH_DEVICE_H__
19 #define __TIZEN_JS_BLUETOOTH_DEVICE_H__
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include "BluetoothDevice.h"
23
24 namespace DeviceAPI {
25 namespace Bluetooth {
26
27 class BluetoothDeviceHolder 
28 {
29 public:
30     BluetoothDeviceHolder(BluetoothDeviceSharedPtr device)  : mDevice(device) {}
31     BluetoothDeviceSharedPtr mDevice; 
32 };
33 typedef BluetoothDeviceHolder* BluetoothDeviceHolderPtr;
34
35 class JSBluetoothDevice
36 {
37 public:
38     static const JSClassDefinition* getClassInfo();
39     static const JSClassRef getClassRef();
40     static JSObjectRef createJSObject(JSContextRef context, BluetoothDeviceSharedPtr device);
41     static BluetoothDeviceSharedPtr toBluetoothDevice(JSObjectRef deviceObj);
42
43 private:
44
45     /**
46      * The callback invoked when an object is first created.
47      */
48     static void initialize(JSContextRef context,
49             JSObjectRef object);
50
51     /**
52      * The callback invoked when an object is finalized.
53      */
54     static void finalize(JSObjectRef object);
55
56     static JSValueRef getProperty(JSContextRef context,
57             JSObjectRef object,
58             JSStringRef propertyName,
59             JSValueRef* exception);
60
61     static JSValueRef connectToServiceByUUID(JSContextRef context,
62             JSObjectRef object,
63             JSObjectRef thisObject,
64             size_t argumentCount,
65             const JSValueRef arguments[],
66             JSValueRef* exception);
67
68     /**
69      * This member variable contains the values which has to be passed
70      * when the this class is embedded into JS Engine.
71      */
72     static JSClassDefinition m_classInfo;
73
74     /**
75      * This structure describes a statically declared function property.
76      */
77     static JSStaticFunction m_function[];
78
79     /**
80      * This member variable contains the initialization values for the
81      * properties of this class. The values are given according to
82      * the data structure JSPropertySpec
83      */
84     static JSStaticValue m_property[];
85
86     static JSClassRef m_jsClassRef;
87 };
88
89
90
91 } // Bluetooth
92 } // DeviceAPI
93
94 #endif // __TIZEN_JS_DOWNLOAD_MANAGER_H__