683deedaf0200c140f01215c09ba9ce1c099c827
[platform/framework/web/wrt-plugins-tizen.git] / src / MessagePort / 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      Kisub Song (kisubs.song@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #include <dpl/log/log.h>
26
27 #include <Commons/plugin_initializer_def.h>
28 #include <Commons/WrtAccess/WrtAccess.h>
29 #include "JSMessagePortManager.h"
30
31 using namespace WrtDeviceApis;
32 using namespace WrtDeviceApis::Commons;
33
34 void on_widget_start_callback(int widgetId)
35 {
36     LogDebug("[Tizen\\MessagePort] on_widget_start_callback (" << widgetId << ")");
37     Try
38     {
39         WrtAccessSingleton::Instance().initialize(widgetId);
40     }
41     Catch(Commons::Exception)
42     {
43         LogError("WrtAccess initialization failed");
44     }
45 }
46
47 void on_widget_stop_callback(int widgetId)
48 {
49     LogDebug("[Tizen\\MessagePort] on_widget_stop_callback (" << widgetId << ")");
50     Try
51     {
52         WrtAccessSingleton::Instance().deinitialize(widgetId);
53     }
54     Catch(Commons::Exception)
55     {
56         LogError("WrtAccess deinitialization failed");
57     }
58 }
59
60 void on_frame_load_callback(const void * context)
61 {
62     LogDebug("[Tizen\\MessagePort] on_frame_load_callback (" << context << ")");
63 }
64
65 void on_frame_unload_callback(const void * context)
66 {
67     LogDebug("[Tizen\\MessagePort] on_frame_unload_callback (" << context << ")");
68
69 //    TizenApis::Tizen1_0::MessagePort::MessagePortAsyncCallbackManagerSingleton::Instance().unregisterContext(static_cast<JSContextRef>(context));
70 //    TizenApis::Tizen1_0::MessagePort::MessagePortListenerManagerSingleton::Instance().unregisterContext(static_cast<JSContextRef>(context));
71 }
72
73 PLUGIN_ON_WIDGET_START(on_widget_start_callback)
74 PLUGIN_ON_WIDGET_STOP(on_widget_stop_callback)
75 PLUGIN_ON_FRAME_LOAD(on_frame_load_callback)
76 PLUGIN_ON_FRAME_UNLOAD(on_frame_unload_callback)
77
78 PLUGIN_CLASS_MAP_BEGIN
79     PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
80                                "messageport",
81                                (js_class_template_getter)DeviceAPI::MessagePort::JSMessagePortManager::getClassRef,
82                                NULL)
83 PLUGIN_CLASS_MAP_END