Remove GUID and refactoring update mode
[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_CLIENT_H
22 #define WRT_CLIENT_H
23
24 #include <dpl/application.h>
25 #include <dpl/generic_event.h>
26 #include <dpl/event/controller.h>
27 #include <dpl/type_list.h>
28 #include <dpl/task.h>
29 #include <dpl/log/log.h>
30 #include <dpl/string.h>
31 #include <string>
32 #include <utilX.h>
33 #include <wrt_installer_api.h>
34
35 #include <pkg-manager/pkgmgr_signal_interface.h>
36 #include <pkg-manager/pkgmgr_signal_dummy.h>
37 #include <pkg-manager/pkgmgr_signal.h>
38 #include <memory>
39
40 namespace WRTInstallerNS { //anonymous
41 DECLARE_GENERIC_EVENT_0(QuitEvent)
42 DECLARE_GENERIC_EVENT_0(NextStepEvent)
43 DECLARE_GENERIC_EVENT_0(InstallPluginEvent)
44 }
45
46 typedef void (*ShowResultCallback)(void *data, Evas_Object *obj,
47                                    void *event_info);
48
49 enum ReturnValue
50 {
51     RE_SUCCESS,
52     RE_FAIL
53 };
54
55 class WrtInstaller :
56     public DPL::Application,
57     private DPL::Event::Controller<DPL::TypeListDecl<
58                                        WRTInstallerNS::QuitEvent,
59                                        WRTInstallerNS::NextStepEvent,
60                                        WRTInstallerNS::InstallPluginEvent>::
61                                        Type>,
62     public DPL::TaskDecl<WrtInstaller>
63 {
64   public:
65     WrtInstaller(int argc,
66                  char **argv);
67     virtual ~WrtInstaller();
68
69     int getReturnStatus() const;
70
71     class InstallerPopup
72     {
73       public:
74         InstallerPopup();
75         virtual ~InstallerPopup();
76
77         void init();
78         Evas_Object* createWin(const char* name);
79         void showPopup(void* userdata, const DPL::String& pkgMsg,
80                        ShowResultCallback callback);
81
82         Evas_Object* m_win;
83         Evas_Object* m_popup;
84         Evas_Object* m_progressbar;
85     };
86
87   protected:
88     virtual void OnStop();
89     virtual void OnCreate();
90     virtual void OnReset(bundle *b);
91     virtual void OnTerminate();
92
93   private:
94     void         showHelpAndQuit();
95
96     // Events
97     virtual void OnEventReceived(const WRTInstallerNS::QuitEvent &event);
98     virtual void OnEventReceived(const WRTInstallerNS::NextStepEvent& event);
99     virtual void OnEventReceived(
100         const WRTInstallerNS::InstallPluginEvent& event);
101
102     // Installation steps
103     void initStep();
104     void installStep();
105     void installNewPlugins();
106     void installPluginsStep();
107     void uninstallPkgNameStep();
108     void unistallWgtFileStep();
109     void shutdownStep();
110     void registerCallbackStep();
111     void queryListStep();
112
113     // Static callbacks
114     static void staticWrtInitCallback(WrtErrStatus status,
115                                       void* userdata);
116     static void staticWrtStatusCallback(std::string tizenId,
117                                         WrtErrStatus status,
118                                         void* userdata);
119     static void staticWrtPluginInstallationCallback(WrtErrStatus status,
120                                                     void* userdata);
121     static void staticWrtPluginInstallProgressCb(float percent,
122                                                  const char* description,
123                                                  void* userdata);
124     static void staticWrtInstallProgressCallback(float percent,
125                                                  const char* description,
126                                                  void* userdata);
127
128     static void staticWrtUninstallProgressCallback(float percent,
129                                                    const char* description,
130                                                    void* userdata);
131
132     static void showResultCallback(void *data, Evas_Object *obj,
133                                    void *event_info);
134     static void failResultCallback(void *data, Evas_Object *obj,
135                                    void *event_info);
136
137     bool popupsEnabled() const;
138
139     // Private data
140     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrSignalInterface;
141     wrt_widget_install_mode_e m_installPolicy;
142     std::string m_bundleValue;
143     std::string m_packagePath;
144     int m_handle;
145     std::string m_name;
146     bool m_initialized;
147     size_t m_numPluginsToInstall;
148     size_t m_totalPlugins;
149     int m_returnStatus;
150     bool m_installByPkgmgr;
151     bool m_quiet;
152     InstallerPopup *m_popup;
153     bool m_startupPluginInstallation;
154     std::string m_webAppConfig;
155     std::string m_webAppIcon;
156     bool m_preloadWidget;
157
158     typedef std::list<std::string> PluginPathList;
159     DPL::Optional<PluginPathList> m_pluginsPaths;
160 };
161 #endif // WRT_CLIENT_H