upload tizen1.0 source
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Calendar / plugin_initializer.cpp
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 #include <dpl/log/log.h>
19
20 #include <Commons/plugin_initializer_def.h>
21 #include <Commons/WrtAccess/WrtAccess.h>
22 #include <Commons/Exception.h>
23 #include "JSCalendarManager.h"
24 #include "JSCalendarEvent.h"
25 #include "JSCalendarTask.h"
26 #include "JSCalendarAttendee.h"
27 #include "JSCalendarRecurrenceRule.h"
28 #include "JSCalendarEventId.h"
29 #include "JSCalendarAlarm.h"
30
31 namespace TizenApis {
32 namespace Tizen1_0 {
33 namespace Calendar {
34
35 using namespace WrtDeviceApis;
36 using namespace WrtDeviceApis::Commons;
37
38 void on_widget_start_callback(int widgetId)
39 {
40     LogDebug("[Tizen\\Calendar] on_widget_start_callback (" << widgetId << ")");
41
42         Try {
43         WrtAccessSingleton::Instance().initialize(widgetId);
44         } Catch (Commons::Exception) {
45                 LogError("WrtAccess initialization failed");
46         }
47 }
48
49 void on_widget_stop_callback(int widgetId)
50 {
51     LogDebug("[Tizen\\Calendar] on_widget_stop_callback (" << widgetId << ")");
52
53         Try {
54         WrtAccessSingleton::Instance().deinitialize(widgetId);
55         } Catch (Commons::Exception) {
56                 LogError("WrtAccess deinitialization failed");
57         }
58 }
59
60 PLUGIN_ON_WIDGET_START(on_widget_start_callback)
61 PLUGIN_ON_WIDGET_STOP(on_widget_stop_callback)
62
63 PLUGIN_CLASS_MAP_BEGIN
64 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
65         "calendar",
66         JSCalendarManager::getClassRef(),
67         NULL)
68 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
69                 TIZEN_INTERFACE_CALENDAR_EVENT,
70                 JSCalendarEvent::getClassRef(),
71                 NULL)
72 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
73         TIZEN_INTERFACE_CALENDAR_TASK,
74         JSCalendarTask::getClassRef(),
75         NULL)
76 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
77         TIZEN_INTERFACE_CALENDAR_ATTENDEE,
78         JSCalendarAttendee::getClassRef(),
79         NULL)
80 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
81         TIZEN_INTERFACE_CALENDAR_RECURRENCE_RULE,
82         JSCalendarRecurrenceRule::getClassRef(),
83         NULL)
84 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
85         TIZEN_INTERFACE_CALENDAR_EVENT_ID,
86         JSCalendarEventId::getClassRef(),
87         NULL)
88 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
89         TIZEN_INTERFACE_CALENDAR_ALARM,
90         JSCalendarAlarm::getClassRef(),
91         NULL)
92 PLUGIN_CLASS_MAP_END
93
94 }
95 }
96 }
97