Initialize Tizen 2.3
[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 class PluginDAO : public PluginDAOReadOnly
32 {
33   public:
34     PluginDAO(DbPluginHandle pluginHandle);
35     PluginDAO(const std::string &libraryName);
36
37     static DbPluginHandle registerPlugin(
38         const PluginMetafileData& metafile,
39         const std::string& pluginPath);
40
41     static void registerPluginImplementedObject(
42         const std::string& objectName,
43         DbPluginHandle pluginHandle);
44
45     static void registerPluginRequiredObject(
46         const std::string& objectName,
47         DbPluginHandle pluginHandle);
48
49     static void registerPluginLibrariesDependencies(
50         DbPluginHandle plugin,
51         const PluginHandleSetPtr& dependencies);
52
53     static void setPluginInstallationStatus(
54         DbPluginHandle,
55         PluginInstallationState);
56
57     static void unregisterPlugin(DbPluginHandle pluginHandle);
58     static void unregisterPluginLibrariesDependencies(DbPluginHandle plugin);
59 };
60 } // namespace WrtDB
61
62 #endif /* WRT_SRC_CONFIGURATION_PLUGIN_DAO_H_ */