Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Sensors / JSSensorConnection.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 * @file          JSSensorConnection.h
20 * @author        Pius Lee (pius.lee@samsung.com)
21 * @version       0.1
22 */
23
24 #ifndef _WRTPLUGINS_TIZEN_JS_SENSOR_CONNECTION_
25 #define _WRTPLUGINS_TIZEN_JS_SENSOR_CONNECTION_
26
27 #include <JavaScriptCore/JavaScript.h>
28 #include <sensors.h>
29
30 namespace TizenApis {
31 namespace Tizen1_0 {
32
33 enum {
34     SENSOR_CON_NEW,
35     SENSOR_CON_OPEN,
36     SENSOR_CON_WATCHING,
37     SENSOR_CON_DISCONNECTED,
38     SENSOR_CON_ERROR
39 };
40
41 class JSSensorConnection {
42 public:
43     static JSContextRef m_globalCtx;
44     static const JSClassDefinition* getClassInfo();
45     static const JSClassRef getClassRef();
46
47 protected:
48     static void initialize(JSContextRef ctx, JSObjectRef object);
49     static void finalize(JSObjectRef object);
50     static bool hasInstance(JSContextRef ctx, JSObjectRef constructor, JSValueRef possibleInstance, JSValueRef* exception);
51
52     static JSValueRef read(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
53     static JSValueRef startWatch(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
54     static JSValueRef endWatch(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
55
56     // Event Target
57     static JSValueRef addEventListener(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
58     static JSValueRef removeEventListener(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
59     static JSValueRef dispatchEvent(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
60
61     static JSObjectRef constructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
62
63     static JSValueRef getProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
64     static bool setProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
65
66 private:
67     static JSClassDefinition m_jsClassInfo;
68     static JSClassRef m_jsClassRef;
69     static JSStaticFunction m_function[];
70 };
71
72 } // Tizen1_0
73 } // TizenApis
74
75 #endif