Add initSession step in PluginLogic.
[platform/framework/web/wrt-plugins-common.git] / src / plugin-loading / plugin_container_support.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_container_support.h
18  * @author      Grzegorz Krawczyk (g.krawczyk@samsung.com)
19  * @version     1.0
20  */
21 #ifndef PLUGIN_CONTAINER_SUPPORT_H
22 #define PLUGIN_CONTAINER_SUPPORT_H
23
24 #include <memory>
25 #include <set>
26 #include <string>
27
28 #include <dpl/wrt-dao-ro/feature_dao_read_only.h>
29 #include <dpl/wrt-dao-ro/feature_model.h>
30
31 #include "plugin_model.h"
32
33 class PluginContainerSupport
34 {
35 public:
36     typedef std::list<WrtDB::FeatureModelPtr> FeaturesList;
37     typedef std::list<PluginModelPtr> PluginsList;
38
39 private:
40     // Standard features
41     typedef std::list<std::string> StandardFeatureList;
42
43     // Main feature list. Always equal to DB feature list
44     typedef std::set<WrtDB::FeatureModelPtr> FeatureModelContainer;
45
46     // Main plugin list. Always equal to DB plugin list
47     typedef std::set<PluginModelPtr> PluginModelsContainer;
48
49     StandardFeatureList m_standardFeatureList;
50
51     PluginModelsContainer m_pluginModels;
52
53     FeatureModelContainer m_featureModels;
54
55     bool m_initialized;
56
57 private:
58     // Reading
59     void readStandardFeaturesList();
60
61     // Plugin models
62     typedef std::multimap<WrtDB::FeatureHandle, std::string> DeviceCapList;
63     void registerFeatureModel(WrtDB::FeatureHandle handle, WrtDB::FeatureData* data, DeviceCapList deviceCapabilities);
64
65     WrtDB::FeatureModelPtr getFeatureModel(const std::string &name) const ;
66     WrtDB::FeatureModelPtr getFeatureModel(WrtDB::FeatureHandle handle) const ;
67
68     PluginModelPtr getPluginModel(const WrtDB::FeatureModelPtr &feature) const;
69
70 public:
71     PluginContainerSupport();
72
73     bool isInitialized() { return m_initialized; }
74     void Initialize(int widgetHandle);
75     void registerPluginModel(WrtDB::DbPluginHandle handle);
76     std::list<std::string> getAllowedFeatures(int widgetHandle) const;
77     void readAllowedPlugins(int widgetHandle);
78     void readRootPlugins(int widgetHandle);
79     FeaturesList getStandardFeatures() const;
80     PluginsList  getStandardPlugins() const;
81     PluginsList  getPluginsList() const;
82
83     PluginModelPtr getPluginForFeature(const std::string& featureName);
84
85     PluginModelPtr getPluginModelById(WrtDB::DbPluginHandle handle) const;
86
87     ~PluginContainerSupport();
88 };
89
90
91 typedef std::shared_ptr<PluginContainerSupport> PluginContainerSupportPtr;
92
93 #endif // PLUGIN_CONTAINER_SUPPORT_H