Merge "Fixed crash during saving certificate."
[framework/web/wrt-installer.git] / src / logic / installer_logic.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 #ifndef WRT_SRC_INSTALLER_CORE_INSTALLER_LOGIC_H_
17 #define WRT_SRC_INSTALLER_CORE_INSTALLER_LOGIC_H_
18
19 #include <dpl/wrt-dao-rw/widget_dao.h>
20 #include <dpl/wrt-dao-rw/global_dao.h>
21 #include <dpl/wrt-dao-ro/feature_model.h>
22 #include <widget_install/widget_installer_struct.h>
23 #include <widget_uninstall/widget_uninstaller_struct.h>
24 #include <plugin_install/plugin_installer_struct.h>
25 #include <job.h>
26
27 namespace Logic {
28 class InstallerLogic
29 {
30     typedef std::map<Jobs::JobHandle, Jobs::Job*> JobsContainer;
31     JobsContainer m_jobs;
32
33     void InstallDeferredWidgetPackages();
34     void InstallSingleDeferredPackage();
35
36     void ResetProgressPlugins();
37     void InstallWaitingPlugins();
38     bool resolvePluginDependencies(PluginHandle handle);
39
40     Jobs::JobHandle m_NextHandle;
41     Jobs::JobHandle GetNewJobHandle()
42     {
43         return m_NextHandle++;
44     }
45     Jobs::JobHandle AddAndStartJob(Jobs::Job *job);
46
47   public:
48     virtual ~InstallerLogic();
49
50     void Initialize();
51
52     void Terminate();
53
54     Jobs::JobHandle InstallWidget(
55         const std::string & widgetPath,
56         const WidgetInstallationStruct &
57         installerStruct);
58
59     Jobs::JobHandle UninstallWidget(
60         const std::string & widgetPkgName,
61         const WidgetUninstallationStruct &
62         uninstallerStruct);
63
64     Jobs::JobHandle InstallPlugin(std::string const & pluginPath,
65                                   const PluginInstallerStruct &installerStruct);
66
67     bool NextStep(Jobs::Job* installModel);
68
69     //TODO implement me
70     bool AbortJob(const Jobs::JobHandle & /*handle*/)
71     {
72         LogWarning("Not implemented");
73         return true;
74     }
75
76   private:
77     InstallerLogic();
78
79     friend class InstallerController;
80 };
81 }
82
83 #endif // INSTALLER_LOGIC_H