Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / modules / tizen / PluginManager / PluginManager.h
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        PluginManager.h
18  * @author      Lukasz Marek (l.marek@samsung.com)
19  * @version     0.1
20  * @brief
21  */
22
23 #ifndef WRTDEVICEAPIS_PLUGINMANAGER_PLUGINMANAGER_H_
24 #define WRTDEVICEAPIS_PLUGINMANAGER_PLUGINMANAGER_H_
25
26 #include <map>
27 #include <string>
28 #include <API/PluginManager/IPluginManager.h>
29 #include <boost/optional.hpp>
30
31 namespace WrtDeviceApis {
32 namespace PluginManager {
33 class PluginManager : public Api::IPluginManager
34 {
35   public:
36     PluginManager(int widgetHandle,
37                   const std::string &objectUri,
38                   JSObjectRef object,
39                   JSContextRef context);
40     ~PluginManager();
41     bool hasChild(const std::string &name) const;
42     bool loadChild(const std::string &name) const;
43
44     JSValueRef getProperty(const std::string &name) const;
45     bool setProperty(const std::string &name,
46                      JSValueRef value);
47     bool deleteProperty(const std::string &name);
48
49     PropertyList getProperties() const;
50     void addPropertiesToList(JSPropertyNameAccumulatorRef propertyNames) const;
51
52   private:
53     typedef std::map<std::string, JSValueRef> ObjectList;
54
55     int m_widgetHandle;
56     JSObjectRef m_objectInstance;
57     std::string m_objectUri;
58     std::string m_shortUri;
59     mutable boost::optional<PropertyList> m_propertyCache;
60     ObjectList m_objectList;
61     JSContextRef m_context;
62 };
63 }
64 }
65
66 #endif