Implement install & uninstall by CSC
[framework/web/wrt-installer.git] / src / wrt-installer / wrt-installer.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    wrt-installer.h
18  * @version 1.0
19  * @brief   Implementation file for installer
20  */
21 #ifndef WRT_INSTALLER_H
22 #define WRT_INSTALLER_H
23
24 #include <dpl/application.h>
25 #include <dpl/generic_event.h>
26 #include <dpl/event/controller.h>
27 #include <dpl/task.h>
28 #include <dpl/string.h>
29 #include <string>
30 #include <map>
31 #include <wrt_installer_api.h>
32
33 namespace WRTInstallerNS { //anonymous
34 DECLARE_GENERIC_EVENT_0(QuitEvent)
35 DECLARE_GENERIC_EVENT_0(NextStepEvent)
36 DECLARE_GENERIC_EVENT_0(InstallPluginEvent)
37 }
38
39 typedef void (*ShowResultCallback)(void *data, Evas_Object *obj,
40                                    void *event_info);
41 namespace CSCConfiguration {
42 typedef std::map<std::string, std::string> dataMap;
43 typedef std::pair<std::string, std::string> dataPair;
44 const char* const KEY_OP = "op";
45 const char* const KEY_PATH = "path";
46 const char* const VALUE_INSTALL = "install";
47 const char* const VALUE_UNINSTALL = "uninstall";
48 }
49
50 enum ReturnValue
51 {
52     RE_SUCCESS,
53     RE_FAIL
54 };
55
56 class WrtInstaller :
57     public DPL::Application,
58     private DPL::Event::Controller<DPL::TypeListDecl<
59                                        WRTInstallerNS::QuitEvent,
60                                        WRTInstallerNS::NextStepEvent,
61                                        WRTInstallerNS::InstallPluginEvent>::
62                                        Type>,
63     public DPL::TaskDecl<WrtInstaller>
64 {
65   public:
66     WrtInstaller(int argc,
67                  char **argv);
68     virtual ~WrtInstaller();
69
70     int getReturnStatus() const;
71
72   protected:
73     virtual void OnStop();
74     virtual void OnCreate();
75     virtual void OnReset(bundle *b);
76     virtual void OnTerminate();
77
78   private:
79     void         showHelpAndQuit();
80
81     // Events
82     virtual void OnEventReceived(const WRTInstallerNS::QuitEvent &event);
83     virtual void OnEventReceived(const WRTInstallerNS::NextStepEvent& event);
84     virtual void OnEventReceived(
85         const WRTInstallerNS::InstallPluginEvent& event);
86
87     // Installation steps
88     void initStep();
89     void installStep();
90     void installPluginsStep();
91     void uninstallPkgNameStep();
92     void unistallWgtFileStep();
93     void shutdownStep();
94
95     // Static callbacks
96     static void staticWrtInitCallback(WrtErrStatus status,
97                                       void* userdata);
98     static void staticWrtStatusCallback(std::string tizenId,
99                                         WrtErrStatus status,
100                                         void* userdata);
101     static void staticWrtPluginInstallationCallback(WrtErrStatus status,
102                                                     void* userdata);
103     static void staticWrtPluginInstallProgressCb(float percent,
104                                                  const char* description,
105                                                  void* userdata);
106     static void staticWrtInstallProgressCallback(float percent,
107                                                  const char* description,
108                                                  void* userdata);
109
110     static void staticWrtUninstallProgressCallback(float percent,
111                                                    const char* description,
112                                                    void* userdata);
113
114     static void showResultCallback(void *data, Evas_Object *obj,
115                                    void *event_info);
116     static void failResultCallback(void *data, Evas_Object *obj,
117                                    void *event_info);
118
119     void installNewPlugins();
120     bool popupsEnabled() const;
121     CSCConfiguration::dataMap parseCSCConfiguration(std::string str);
122
123     // Private data
124     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrSignalInterface;
125     WrtInstallMode m_installMode;
126     std::string m_packagePath;
127     std::string m_name;
128     bool m_initialized;
129     size_t m_numPluginsToInstall;
130     size_t m_totalPlugins;
131     int m_returnStatus;
132     bool m_installByPkgmgr;
133     bool m_quiet;
134     bool m_startupPluginInstallation;
135     CSCConfiguration::dataMap m_CSCconfigurationMap;
136
137     typedef std::list<std::string> PluginPathList;
138     DPL::Optional<PluginPathList> m_pluginsPaths;
139 };
140 #endif // WRT_INSTALLER_H