[Release] wrt-plugins-common_0.3.94
[platform/framework/web/wrt-plugins-common.git] / src / js-overlay / js_function_manager.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  * @file    js_function_manager.cpp
18  * @author  Grzegorz Krawczyk (g.krawczyk@samgsung.com)
19  * @author  Yunchan Cho (yunchan.cho@samgsung.com)
20  * @version
21  * @brief
22  */
23
24 #include <dpl/singleton_safe_impl.h>
25 #include <js_function_manager.h>
26 #include <js_overlay_functions.h>
27 #include <wrt_plugin_export.h>
28
29 IMPLEMENT_SAFE_SINGLETON(JsFunctionManager)
30
31 namespace {
32 const char* JSPRINT_NAME = "jsPrint";
33 const char* JSGLOBAL_OBJECT = "GLOBAL_OBJECT";
34 const char* JSHOOK_NAME = "jsHook";
35 }
36
37 namespace JavaScriptFunctions {
38 //options
39 class_definition_options_t jsHookfunctionsOptions = {
40     JS_FUNCTION,
41     CREATE_INSTANCE,
42     NONE_NOTICE,
43     USE_OVERLAYED,     //ignored
44     NULL,
45     NULL,
46     reinterpret_cast<js_function_impl>(JSCFunctions::JavaScriptHookProc)
47 };
48
49 class_definition_options_t jsPrintfunctionsOptions = {
50     JS_FUNCTION,
51     CREATE_INSTANCE,
52     NONE_NOTICE,
53     USE_OVERLAYED,     //ignored
54     NULL,
55     NULL,
56     reinterpret_cast<js_function_impl>(JSCFunctions::JavaScriptPrintProc)
57 };
58
59 js_entity_definition_t jsPrint = {
60     JSGLOBAL_OBJECT,
61     JSPRINT_NAME,
62     "",
63     NULL,
64     NULL,
65     &jsPrintfunctionsOptions
66 };
67
68 js_entity_definition_t jsHook = {
69     JSGLOBAL_OBJECT,
70     JSHOOK_NAME,
71     "",
72     NULL,
73     NULL,
74     &jsHookfunctionsOptions
75 };
76
77 const js_entity_definition_ptr_t jsPrintPtr = &jsPrint;
78 const js_entity_definition_ptr_t jsHookPtr = &jsHook;
79 }
80
81 bool JsFunctionManager::initialize()
82 {
83     LogInfo("JSObjectDeclaration for js functions are intialized");
84     JSObjectDeclarationPtr jsPrintObj(
85         new JSObjectDeclaration(JavaScriptFunctions::jsPrintPtr));
86
87     JSObjectDeclarationPtr jsHookObj(
88         new JSObjectDeclaration(JavaScriptFunctions::jsHookPtr));
89
90     m_functions.push_back(jsPrintObj);
91     m_functions.push_back(jsHookObj);
92
93     return true;
94 }
95
96 JsFunctionManager::Functions JsFunctionManager::getFunctions()
97 {
98     LogInfo("get standard js fucntions");
99     static bool initialized = initialize();
100     (void) initialized;
101     return m_functions;
102 }