tizen beta release
[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 //TODO create namespace
28
29 class InstallerLogic
30 {
31     typedef std::map<Jobs::JobHandle, Jobs::Job*> JobsContainer;
32     JobsContainer m_jobs;
33
34     void InstallDeferredWidgetPackages();
35     void InstallSingleDeferredPackage();
36
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   public:
47     virtual ~InstallerLogic();
48
49     void Initialize();
50
51     void Terminate();
52
53     Jobs::JobHandle InstallWidget(std::string const & widgetPath,
54             const WidgetInstallationStruct &installerStruct);
55
56     Jobs::JobHandle UninstallWidget(WidgetHandle widgetHandle,
57             const WidgetUninstallationStruct &uninstallerStruct);
58
59     Jobs::JobHandle InstallPlugin(std::string const & pluginPath,
60             const PluginInstallerStruct &installerStruct);
61
62     bool NextStep(Jobs::Job* installModel);
63
64     //TODO implement me
65     bool AbortJob(const Jobs::JobHandle & /*handle*/)
66     {
67         LogWarning("Not implemented");
68         return true;
69     }
70
71     static void InstallPluginGeolocation(
72             const PluginInstallerStruct &installerStruct);
73   private:
74     InstallerLogic();
75
76     friend class InstallerController;
77 };
78
79 #endif // INSTALLER_LOGIC_H