wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Tizen / plugin_initializer.cpp
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  * @file        plugin_initializer.cpp
20  * @author      Karol Majewski (k.majewski@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #include <Commons/plugin_initializer_def.h>
26 #include <Commons/WrtAccess/WrtAccess.h>
27 #include <Commons/Exception.h>
28 #include "JSTizen.h"
29 #include "JSAttributeFilter.h"
30 #include "JSAttributeRangeFilter.h"
31 #include "JSCompositeFilter.h"
32 #include "JSSortMode.h"
33 #include "JSSimpleCoordinates.h"
34 #include <Logger.h>
35
36 #define OBJECT_TIZEN "tizen"
37
38 namespace Options{
39
40 class_definition_options_t TizenOptions =
41 {
42     JS_CLASS,
43     CREATE_INSTANCE,
44     NONE_NOTICE,
45     USE_OVERLAYED, //ignored
46     NULL,
47     NULL
48 };
49
50 class_definition_options_t TizenInterfaceOptions = {
51     JS_INTERFACE,
52     CREATE_INSTANCE,
53     NONE_NOTICE,
54     USE_OVERLAYED, //ignored
55     NULL, // JSWidget::acquireGlobalContext,
56     NULL,
57     NULL
58 };
59
60 }
61
62 namespace DeviceAPI {
63 namespace Tizen {
64
65 using namespace WrtDeviceApis;
66 using namespace WrtDeviceApis::Commons;
67
68 void on_widget_start_callback(int widgetId)
69 {
70     LoggerD("[Tizen\\xxx] on_widget_start_callback ("<<widgetId<<")");
71     Try
72     {
73         WrtAccessSingleton::Instance().initialize(widgetId);
74     }
75     Catch(Commons::Exception)
76     {
77         LoggerE("WrtAccess initialization failed");
78     }
79 }
80
81 void on_widget_stop_callback(int widgetId)
82 {
83     LoggerD("[Tizen\\xxx] on_widget_stop_callback ("<<widgetId<<")");
84     Try
85     {
86         WrtAccessSingleton::Instance().deinitialize(widgetId);
87     }
88     Catch(WrtDeviceApis::Commons::Exception)
89     {
90         LoggerE("WrtAccess deinitialization failed");
91     }
92 }
93
94 PLUGIN_ON_WIDGET_START(on_widget_start_callback)
95 PLUGIN_ON_WIDGET_STOP(on_widget_stop_callback)
96
97 PLUGIN_CLASS_MAP_BEGIN
98     PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_GLOBAL,
99                                OBJECT_TIZEN,
100                                (js_class_template_getter)DeviceAPI::Tizen::JSTizen::getClassRef,
101                                &Options::TizenOptions)
102     PLUGIN_CLASS_MAP_ADD_INTERFACE(OBJECT_TIZEN,
103                                "AttributeFilter",
104                                (js_class_template_getter)DeviceAPI::Tizen::JSAttributeFilter::getClassRef,
105                                (js_class_constructor_cb_t)DeviceAPI::Tizen::JSAttributeFilter::constructor,
106                                &Options::TizenInterfaceOptions)
107     PLUGIN_CLASS_MAP_ADD_INTERFACE(OBJECT_TIZEN,
108                                "AttributeRangeFilter",
109                                (js_class_template_getter)DeviceAPI::Tizen::JSAttributeRangeFilter::getClassRef,
110                                (js_class_constructor_cb_t)DeviceAPI::Tizen::JSAttributeRangeFilter::constructor,
111                                &Options::TizenInterfaceOptions)
112     PLUGIN_CLASS_MAP_ADD_INTERFACE(OBJECT_TIZEN,
113                                "CompositeFilter",
114                                (js_class_template_getter)DeviceAPI::Tizen::JSCompositeFilter::getClassRef,
115                                (js_class_constructor_cb_t)DeviceAPI::Tizen::JSCompositeFilter::constructor,
116                                &Options::TizenInterfaceOptions)
117     PLUGIN_CLASS_MAP_ADD_INTERFACE(OBJECT_TIZEN,
118                                "SortMode",
119                                (js_class_template_getter)DeviceAPI::Tizen::JSSortMode::getClassRef,
120                                (js_class_constructor_cb_t)DeviceAPI::Tizen::JSSortMode::constructor,
121                                &Options::TizenInterfaceOptions)
122     PLUGIN_CLASS_MAP_ADD_INTERFACE(OBJECT_TIZEN,
123                                "SimpleCoordinates",
124                                (js_class_template_getter)DeviceAPI::Tizen::JSSimpleCoordinates::getClassRef,
125                                (js_class_constructor_cb_t)DeviceAPI::Tizen::JSSimpleCoordinates::constructor,
126                                &Options::TizenInterfaceOptions)
127 PLUGIN_CLASS_MAP_END
128
129 #undef OBJECT_TIZEN
130
131 } // Tizen
132 } // DeviceAPI