Update wrt-plugins-common_0.3.53
[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 private:
56     // Reading
57     void readPlugins();
58     void readFeatures();
59     void readStandardFeaturesList();
60
61     // Plugin models
62     void registerPluginModel(WrtDB::DbPluginHandle handle);
63
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     FeaturesList getStandardFeatures() const;
74     PluginsList  getStandardPlugins() const;
75
76     PluginModelPtr getPluginForFeature(const std::string& featureName);
77
78     PluginModelPtr getPluginModelById(WrtDB::DbPluginHandle handle) const;
79
80     ~PluginContainerSupport();
81 };
82
83
84 typedef std::shared_ptr<PluginContainerSupport> PluginContainerSupportPtr;
85
86 #endif // PLUGIN_CONTAINER_SUPPORT_H