tizen 2.3 release
[framework/web/wearable/wrt-plugins-tizen.git] / src / Filesystem / 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 #include <Commons/plugin_initializer_def.h>
19 #include <Commons/WrtAccess/WrtAccess.h>
20
21 #include <GlobalContextManager.h>
22 #include <Logger.h>
23 #include <TimeTracer.h>
24
25 #include "JSFile.h"
26 #include "JSFilestream.h"
27 #include "JSFilesystemManager.h"
28
29 #include "plugin_config.h"
30
31 using namespace WrtDeviceApis;
32 using namespace WrtDeviceApis::Commons;
33
34 namespace DeviceAPI {
35 namespace Filesystem {
36
37 const char* getNameOfAceSecurityStatus(AceSecurityStatus status) {
38     switch(status) {
39         case AceSecurityStatus::AccessGranted: return "AccessGranted";
40         case AceSecurityStatus::AccessDenied: return "AccessDenied";
41         case AceSecurityStatus::PrivacyDenied: return "PrivacyDenied";
42         case AceSecurityStatus::InternalError: return "InternalError";
43         default:
44             return "Unknown";
45     }
46 }
47
48 AceSecurityStatus fsysAceCheckAccessFunction(const char* functionName)
49 {
50     AceSecurityStatus status = FILESYSTEM_CHECK_ACCESS(functionName);
51
52     LOGD("FILESYSTEM_CHECK_ACCESS for func: %s returned: %s", functionName,
53             getNameOfAceSecurityStatus(status));
54
55     return status;
56 }
57
58 DEFINE_GLOBAL_SECURITY_ACCESSOR(gSecurityAccessor);
59 DEFINE_SECURITY_ACCESSOR_SETTER(AceCheckerFSFileSetter, Manager, gSecurityAccessor);
60
61 class_definition_options_t filesystemOption = {
62     JS_CLASS,
63     NONE,
64     ALWAYS_NOTICE,
65     IGNORED,
66     AceCheckerFSFileSetter,
67     NULL,
68     NULL
69 };
70
71 void on_widget_start_callback(int widgetId)
72 {
73     LOGD("[SEC\\filesystem] on_widget_start_callback (%d)", widgetId);
74
75     TIME_TRACER_INIT();
76     try {
77         WrtAccessSingleton::Instance().initialize(widgetId);
78     } catch (...) {
79         LOGE("WrtAccess initialization failed");
80     }
81
82     INITAILIZE_GLOBAL_SECURITY_ACCESSOR(gSecurityAccessor, fsysAceCheckAccessFunction);
83 }
84
85 void on_widget_stop_callback(int widgetId)
86 {
87     LOGD("[SEC\\filesystem] on_widget_stop_callback (%d)", widgetId);
88
89     std::string name = "FileSystem";
90     TIME_TRACER_EXPORT_REPORT_TO(TIME_TRACER_EXPORT_FILE, const_cast<char*>(name.c_str()));
91     TIME_TRACER_RELEASE();
92     try {
93         WrtAccessSingleton::Instance().deinitialize(widgetId);
94     } catch(...) {
95         LOGE("WrtAccess initialization failed");
96     }
97
98     FINALIZE_GLOBAL_SECURITY_ACCESSOR(gSecurityAccessor);
99 }
100
101 void on_frame_unload_callback(const void * context)
102 {
103     LOGD("[Tizen\\filesystem] on_frame_unload_callback (%p)", context);
104     DeviceAPI::Common::GlobalContextManager::getInstance()->removeGlobalContext(static_cast<JSContextRef>(context));
105 }
106
107 void on_frame_load_callback(const void * context)
108 {
109     LOGD("[Tizen\\filesystem] on_frame_load_callback (%p)", context);
110     DeviceAPI::Common::GlobalContextManager::getInstance()->addGlobalContext(static_cast<JSContextRef>(context));
111 }
112
113 PLUGIN_ON_WIDGET_START(on_widget_start_callback)
114 PLUGIN_ON_WIDGET_STOP(on_widget_stop_callback)
115 PLUGIN_ON_FRAME_LOAD(on_frame_load_callback)
116 PLUGIN_ON_FRAME_UNLOAD(on_frame_unload_callback)
117
118
119 PLUGIN_CLASS_MAP_BEGIN
120 PLUGIN_CLASS_MAP_ADD_CLASS(WRT_JS_EXTENSION_OBJECT_TIZEN,
121         TIZEN_FILESYSTEM_FILESYSTEM_MANAGER_CLASS,
122         (js_class_template_getter)DeviceAPI::Filesystem::JSFilesystemManager::getClassRef,
123         &filesystemOption)
124 PLUGIN_CLASS_MAP_END
125
126 } // Filesystem
127 } // DeviceAPI