848d1fa36de30e3417bfa2ce52ace149248405fb
[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
19 #ifndef TIZENAPIS_TIZEN_JS_BLUETOOTH_DEVICE_H_
20 #define TIZENAPIS_TIZEN_JS_BLUETOOTH_DEVICE_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include "IBluetoothDeviceManager.h"
24 #include <CommonsJavaScript/PrivateObject.h>
25  
26 using namespace WrtDeviceApis::CommonsJavaScript;
27
28 namespace DeviceAPI {
29 namespace Bluetooth {
30
31 typedef PrivateObjectT<IBluetoothDeviceManagerPtr>::Type JSBluetoothDevicePriv;
32
33 class JSBluetoothDevice 
34 {
35 public:
36         static const JSClassDefinition* getClassInfo();
37         static const JSClassRef getClassRef();
38         static JSObjectRef createJSObject(JSContextRef context, BluetoothDeviceData device);
39
40
41 private:
42         static void initialize(JSContextRef context, JSObjectRef object);
43         static void finalize(JSObjectRef object);
44         static bool hasInstance(JSContextRef context, JSObjectRef constructor,
45                 JSValueRef possibleInstance, JSValueRef* exception);
46         static JSValueRef getName(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
47         static JSValueRef getAddress(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
48         static JSValueRef getDeviceClass(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
49         static JSValueRef getBondProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
50         static JSValueRef getTrustProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
51         static JSValueRef getConnectProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
52         static JSValueRef getUuids(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
53         static JSValueRef connectToServiceByUUID(JSContextRef context, JSObjectRef object,
54                 JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[],
55                 JSValueRef* exception);
56         static JSClassDefinition m_classInfo;
57         static JSStaticFunction m_function[];
58         static JSStaticValue m_properties[];
59         static JSClassRef m_jsClassRef;
60         static JSObjectRef m_deviceClass;
61 };
62
63
64 }
65
66 #endif
67