tizen beta release
[framework/web/wrt-installer.git] / src / jobs / plugin_install / plugin_installer_context.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_installer_structs.h
18  * @author  Pawel Sikorski (p.sikorski@samgsung.com)
19  * @version
20  * @brief   Definition file of plugin installer tasks data structures
21  */
22 #ifndef WRT_SRC_INSTALLERCORE_PLUGININSTALLERTASKS_PLUGININSTALLERCONTEXT_H_
23 #define WRT_SRC_INSTALLERCORE_PLUGININSTALLERTASKS_PLUGININSTALLERCONTEXT_H_
24
25 #include <string>
26 #include <dpl/wrt-dao-ro/feature_dao_read_only.h>
27 //#include <plugin_model.h>
28
29 using namespace WrtDB;
30
31 namespace Jobs {
32 namespace PluginInstall {
33 class JobPluginInstall;
34 }
35 }
36
37 struct PluginInstallerContext
38 {
39     enum PluginInstallStep
40     {
41         START,
42         PLUGIN_PATH,
43         CONFIG_FILE,
44         PLUGIN_EXISTS_CHECK,
45         LOADING_LIBRARY,
46         REGISTER_PLUGIN,
47         REGISTER_FEATURES,
48         REGISTER_OBJECTS,
49         RESOLVE_DEPENDENCIES,
50         PLUGIN_INSTALL_END
51     };
52
53     std::string pluginFilePath;           ///< plugin directory
54     WrtDB::DbPluginHandle pluginHandle;
55     // if this value is true the plugin model may be created
56     // if not plugin installation has failed from some reason
57     bool installationCompleted;
58
59     //used to set installation progress
60     Jobs::PluginInstall::JobPluginInstall* installerTask;
61 };
62
63 #endif // WRT_SRC_INSTALLERCORE_PLUGININSTALLERTASKS_PLUGININSTALLERCONTEXT_H_