Popup removal 2
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_installer_struct.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    widget_installer_struct.h
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @author  Grzegorz Krawczyk (g.krawczyk@samsung.com)
20  * @version 1.0
21  * @brief   Implementation file for widget installer struct
22  */
23 #ifndef WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
24 #define WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
25
26 //SYSTEM INCLUDES
27 #include <dpl/assert.h>
28
29 //WRT INCLUDES
30 #include <job_base.h>
31 #include <job.h>
32 #include <widget_install/widget_install_errors.h>
33 #include <wrt_common_types.h>
34 #include <pkgmgr_signal_interface.h>
35 #include <memory>
36 #include <string>
37
38 //Widget Installer typedefs
39 typedef void (*InstallerFinishedCallback)(
40     void *userParam,
41     std::string tizenId,
42     Jobs::Exceptions::Type);
43
44 typedef void (*InstallerProgressCallback)(void *userParam,
45                                           ProgressPercent percent,
46                                           const ProgressDescription &);
47
48 namespace InstallMode {
49 enum Type
50 {
51     WRONG_INSTALL_MODE = -1,
52     INSTALL_MODE_WGT,
53     INSTALL_MODE_DIRECTORY,
54     INSTALL_MODE_PRELOAD,
55     REINSTALL_MODE_DIRECTORY
56 };
57 }
58
59 //TODO into namespace
60 //InstallationStruct
61 typedef Jobs::JobCallbacksBase<InstallerFinishedCallback,
62                                InstallerProgressCallback>
63 WidgetInstallCallbackBase;
64
65 //Widget Installation Struct
66 struct WidgetInstallationStruct : public WidgetInstallCallbackBase
67 {
68     InstallMode::Type m_installMode;
69     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrInterface;
70
71     // It must be empty-constructible as a parameter of generic event
72     WidgetInstallationStruct() :
73         m_installMode(InstallMode::Type::INSTALL_MODE_WGT)
74     {}
75
76     WidgetInstallationStruct(
77         InstallerFinishedCallback finished,
78         InstallerProgressCallback progress,
79         void *param,
80         InstallMode::Type mode,
81         std::shared_ptr<PackageManager::IPkgmgrSignal>
82         _pkgmgrInterface
83         ) :
84         WidgetInstallCallbackBase(finished, progress, param),
85         m_installMode(mode),
86         pkgmgrInterface(_pkgmgrInterface)
87     {}
88 };
89
90 #endif // WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_