70d35f9e7ae167713fbc51a03eae2ee33dfefa28
[platform/framework/web/wrt-commons.git] / modules / widget_dao / include / dpl / wrt-dao-rw / plugin_dao.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  * This file contains the declaration of plugin dao class.
18  *
19  * @file    plugin_dao.h
20  * @author  Pawel Sikorski (p.sikorski@samsung.com)
21  * @version 1.0
22  * @brief   This file contains the declaration of plugin dao
23  */
24
25 #ifndef WRT_SRC_CONFIGURATION_PLUGIN_DAO_H_
26 #define WRT_SRC_CONFIGURATION_PLUGIN_DAO_H_
27
28 #include <dpl/wrt-dao-ro/plugin_dao_read_only.h>
29
30 namespace WrtDB {
31
32 class PluginDAO : public PluginDAOReadOnly
33 {
34   public:
35     PluginDAO(DbPluginHandle pluginHandle);
36     PluginDAO(const std::string &libraryName);
37
38     static DbPluginHandle registerPlugin(
39             const PluginMetafileData& metafile,
40             const std::string& pluginPath);
41
42     static void registerPluginImplementedObject(
43             const std::string& objectName,
44             DbPluginHandle pluginHandle);
45
46     static void registerPluginRequiredObject(
47             const std::string& objectName,
48             DbPluginHandle pluginHandle);
49
50     static void registerPluginLibrariesDependencies(
51             DbPluginHandle plugin,
52             const PluginHandleSetPtr& dependencies);
53
54     static void setPluginInstallationStatus(
55             DbPluginHandle,
56             PluginInstallationState);
57
58     static void unregisterPlugin(DbPluginHandle pluginHandle);
59 };
60
61 } // namespace WrtDB
62
63 #endif /* WRT_SRC_CONFIGURATION_PLUGIN_DAO_H_ */