[Release] wrt-installer_0.0.89
[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::WidgetInstall::Exceptions::Type);
43
44 typedef void (*InstallerProgressCallback)(void *userParam,
45                                           ProgressPercent percent,
46                                           const ProgressDescription &);
47
48 namespace WidgetUpdateMode {
49 enum Type
50 {
51     Zero = 0,
52
53     // Bits
54     NotInstalled          = 1 << 0,
55     IncomingVersionNotStd = 1 << 1,
56     ExistingVersionNotStd = 1 << 2,
57     BothVersionsNotStd    = 1 << 3,
58     ExistingVersionOlder  = 1 << 4,
59     ExistingVersionEqual  = 1 << 5,
60     ExistingVersionNewer  = 1 << 6,
61
62     // Policies
63     PolicyNeverUpdate = NotInstalled,
64
65     PolicyWac = NotInstalled |
66         ExistingVersionOlder,
67
68     PolicyAlwaysInstall = NotInstalled |
69         IncomingVersionNotStd |
70         ExistingVersionNotStd |
71         BothVersionsNotStd |
72         ExistingVersionOlder |
73         ExistingVersionEqual |
74         ExistingVersionNewer,
75
76     PolicyForceInstall = PolicyAlwaysInstall,
77     PolicyDirectoryForceInstall
78 };
79
80 inline Type operator | (const Type &a,
81         const Type &b)
82 {
83     return static_cast<Type>(static_cast<unsigned long>(a) |
84                              static_cast<unsigned long>(b));
85 }
86
87 inline Type operator & (const Type &a,
88         const Type &b)
89 {
90     return static_cast<Type>(static_cast<unsigned long>(a) &
91                              static_cast<unsigned long>(b));
92 }
93 }
94
95 //TODO into namespace
96 //InstallationStruct
97 typedef Jobs::JobCallbacksBase<InstallerFinishedCallback,
98                                InstallerProgressCallback>
99 WidgetInstallCallbackBase;
100
101 //Widget Installation Struct
102 struct WidgetInstallationStruct : public WidgetInstallCallbackBase
103 {
104     WidgetUpdateMode::Type updateMode;
105     bool m_quiet;
106     bool m_preload;
107     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrInterface;
108
109     // It must be empty-constructible as a parameter of generic event
110     WidgetInstallationStruct() : updateMode(WidgetUpdateMode::Zero),
111                                 m_quiet(true),
112                                 m_preload(false)
113     {
114     }
115
116     WidgetInstallationStruct(InstallerFinishedCallback finished,
117             InstallerProgressCallback progress,
118             void *param,
119             WidgetUpdateMode::Type mode,
120             bool quiet,
121             bool preload,
122             std::shared_ptr<PackageManager::IPkgmgrSignal> _pkgmgrInterface
123             ) :
124         WidgetInstallCallbackBase(finished, progress, param),
125         updateMode(mode),
126         m_quiet(quiet),
127         m_preload(preload),
128         pkgmgrInterface(_pkgmgrInterface)
129     {
130     }
131 };
132
133 #endif // WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_