tizen 2.3.1 release
[framework/web/wearable/wrt-plugins-tizen.git] / src / Content / JSContentManager.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_CONTENT_MANAGER_H__
19 #define __TIZEN_JS_CONTENT_MANAGER_H__
20 #include <map>
21 #include <JavaScriptCore/JavaScript.h>
22 #include "ContentManager.h"
23
24 namespace DeviceAPI {
25 namespace Content {
26
27 class JSContentManager
28 {
29 public:
30     static const JSClassDefinition* getClassInfo();
31     static const JSClassRef getClassRef();
32 private:
33
34     static std::map<JSObjectRef,ContentChangeCallbackPtr> s_callback_map;
35     /**
36      * The callback invoked when an object is first created.
37      */
38     static void initialize(JSContextRef context,
39             JSObjectRef object);
40
41     /**
42      * The callback invoked when an object is finalized.
43      */
44     static void finalize(JSObjectRef object);
45
46     static JSValueRef update(JSContextRef context,
47             JSObjectRef object,
48             JSObjectRef thisObject,
49             size_t argumentCount,
50             const JSValueRef arguments[],
51             JSValueRef* exception);
52
53     static JSValueRef updateBatch(JSContextRef context,
54             JSObjectRef object,
55             JSObjectRef thisObject,
56             size_t argumentCount,
57             const JSValueRef arguments[],
58             JSValueRef* exception);
59
60     static JSValueRef getDirectories(JSContextRef context,
61             JSObjectRef object,
62             JSObjectRef thisObject,
63             size_t argumentCount,
64             const JSValueRef arguments[],
65             JSValueRef* exception);
66
67     static JSValueRef find(JSContextRef context,
68             JSObjectRef object,
69             JSObjectRef thisObject,
70             size_t argumentCount,
71             const JSValueRef arguments[],
72             JSValueRef* exception);
73
74     static JSValueRef scanFile(JSContextRef context,
75             JSObjectRef object,
76             JSObjectRef thisObject,
77             size_t argumentCount,
78             const JSValueRef arguments[],
79             JSValueRef* exception);
80
81     static JSValueRef setChangeListener(JSContextRef context,
82             JSObjectRef object,
83             JSObjectRef thisObject,
84             size_t argumentCount,
85             const JSValueRef arguments[],
86             JSValueRef* exception);
87
88     static JSValueRef unsetChangeListener(JSContextRef context,
89             JSObjectRef object,
90             JSObjectRef thisObject,
91             size_t argumentCount,
92             const JSValueRef arguments[],
93             JSValueRef* exception);
94
95     static JSValueRef getPlaylists(JSContextRef context,
96             JSObjectRef object,
97             JSObjectRef this_object,
98             size_t argument_count,
99             const JSValueRef arguments[],
100             JSValueRef* exception);
101
102     static JSValueRef createPlaylist(JSContextRef context,
103             JSObjectRef object,
104             JSObjectRef this_object,
105             size_t argument_count,
106             const JSValueRef arguments[],
107             JSValueRef* exception);
108
109     static JSValueRef removePlaylist(JSContextRef context,
110             JSObjectRef object,
111             JSObjectRef this_object,
112             size_t argument_count,
113             const JSValueRef arguments[],
114             JSValueRef* exception);
115     /**
116      * This member variable contains the values which has to be passed
117      * when the this class is embedded into JS Engine.
118      */
119     static JSClassDefinition m_classInfo;
120
121     /**
122      * This structure describes a statically declared function property.
123      */
124     static JSStaticFunction m_function[];
125
126     /**
127      * This member variable contains the initialization values for the
128      * properties of this class. The values are given according to
129      * the data structure JSPropertySpec
130      */
131     static JSStaticValue m_property[];
132
133     static JSClassRef m_jsClassRef;
134 };
135
136
137
138 } // Content
139 } // DeviceAPI
140
141 #endif // __TIZEN_JS_CONTENT_MANAGER_H__