tizen beta release
[framework/web/wrt-installer.git] / src / jobs / plugin_install / plugin_objects.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        plugin_objects.h
18  * @author      Grzegorz Krawczyk(g.krawczyk@samsung.com)
19  * @version     1.0
20  * @brief
21  */
22
23 #ifndef WRT_SRC_INSTALLER_CORE_PLUGIN_INSTALLER_TASKS_PLUGIN_OBJECTS_H_
24 #define WRT_SRC_INSTALLER_CORE_PLUGIN_INSTALLER_TASKS_PLUGIN_OBJECTS_H_
25
26 #include <dpl/shared_ptr.h>
27 #include <string>
28 #include <set>
29 #include <list>
30
31 #include <dpl/wrt-dao-ro/common_dao_types.h>
32 //TODO TO BE MOVED SOMEWHERE ELSE
33 // AS OTHER MODULES (LIKE DAO) USE IT
34
35 class PluginObjects : public WrtDB::PluginObjectsDAO
36 {
37   public:
38     explicit PluginObjects();
39
40     //getters for objects from library
41     ObjectsPtr getImplementedObject() const;
42     ObjectsPtr getDependentObjects() const;
43
44     //add object declaration
45     void addObjects(const std::string& parentName,
46             const std::string& name);
47
48     //check if library implemements object given as name
49     bool hasObject(const std::string& name) const;
50
51   private:
52     void addImplementedObject(const std::string& value);
53     void addDependentObject(const std::string& value);
54 };
55
56 typedef DPL::SharedPtr<PluginObjects> PluginObjectsPtr;
57
58 /**
59  +* Plugin export names
60  +*/
61 #define PLUGIN_GET_CLASS_MAP_PROC_NAME  "get_widget_class_map"
62 #define PLUGIN_CLASS_MAP_NAME           "class_map"
63
64 typedef struct class_definition_s
65 {
66     const char  *parent_name;
67     const char  *object_name;
68     const void  *js_class_template;
69     //class options may be null - default
70     void        *class_options;
71 } class_definition_t;
72
73 /**
74  +* Plugin export typedefs
75  +*/
76 typedef const class_definition_t *class_definition_ptr_t;
77 typedef const class_definition_t* (*get_widget_class_map_proc)();
78
79 #endif