[Release] wrt-installer_0.1.58.2
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_install_context.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    installer_structs.h
18  * @author  Pawel Sikorski (p.sikorski@samgsung.com)
19  * @version
20  * @brief   Definition file of installer tasks data structures
21  */
22 #ifndef INSTALLER_CONTEXT_H
23 #define INSTALLER_CONTEXT_H
24
25 #include <map>
26 #include <string>
27 #include <dpl/string.h>
28 #include <dpl/wrt-dao-rw/widget_dao.h>
29 #include <widget_install/wac_security.h>
30 #include <feature_logic.h>
31 #include <widget_install/widget_update_info.h>
32 #include <widget_location.h>
33 #include <wrt_install_mode.h>
34
35 namespace Jobs {
36 namespace WidgetInstall {
37 class JobWidgetInstall;
38 } //namespace Jobs
39 } //namespace WidgetInstall
40
41 class WidgetModel;
42
43 typedef std::map<DPL::String, bool> RequestedDevCapsMap;
44
45 struct InstallerContext
46 {
47     typedef enum InstallStepEnum
48     {
49         INSTALL_START = 0,
50         INSTALL_CHECK_FILE,
51
52         INSTALL_RDS_DELTA_CHECK,
53         INSTALL_RDS_PREPARE,
54
55         INSTALL_UNZIP_FILES,
56         INSTALL_WIDGET_CONFIG1,
57         INSTALL_WIDGET_CONFIG2,
58         INSTALL_DIGSIG_CHECK,
59         INSTALL_CERT_CHECK,
60         INSTALL_ECRYPTION_FILES,
61         INSTALL_DIR_CREATE,
62         INSTALL_RENAME_PATH,
63
64         INSTALL_CREATE_BACKUP_DIR,                     /* For Update */
65         INSTALL_BACKUP_RES_FILES,                      /* For Update */
66         INSTALL_BACKUP_EXEC,                           /* For Update */
67
68         INSTALL_BACKUP_ICONFILE,                         /* For Update */
69         INSTALL_COPY_ICONFILE,
70         INSTALL_COPY_LIVEBOX_FILES,
71         INSTALL_CREATE_EXECFILE,
72         INSTALL_CREATE_MANIFEST,
73         INSTALL_CREATE_SHORTCUT,
74         INSTALL_SET_CERTINFO,
75         INSTALL_INSTALL_OSPSVC,
76         INSTALL_REMOVE_BACKUP_FILE,
77         INSTALL_PLUGINS_COPY,
78         INSTALL_NEW_DB_INSERT,
79         INSTALL_ACE_PREPARE,
80         INSTALL_ACE_CHECK,
81         INSTALL_SMACK_ENABLE,
82
83         INSTALL_END
84     } InstallStep;
85
86     // Installation state variables
87     WrtDB::WidgetRegisterInfo widgetConfig;      ///< WidgetConfigInfo
88     DPL::Optional<WidgetLocation> locations;
89     Jobs::WidgetInstall::WacSecurity wacSecurity; ///< Widget Domain
90                                                   // information.
91     InstallStep installStep;              ///< current step of installation
92     Jobs::WidgetInstall::JobWidgetInstall *job;
93      ///< Whether this is an update or normal installation
94     Jobs::WidgetInstall::FeatureLogicPtr featureLogic;
95     /** List of dev-caps that are requested in widget config file.
96      * Additional flag tells whether dev cap gets "static" permission
97      * (will always have PERMIT from ACE Policy). They will therefore receive
98      * static SMACK permission. (They may be forbidden because
99      * of ACE User Settings, but for now we do not protect this
100      * case with SMACK). */
101     RequestedDevCapsMap staticPermittedDevCaps;
102     std::string installInfo;            ///<For recovery>
103     InstallLocationType locationType;
104     bool isUpdateMode;
105     InstallMode mode;
106 };
107
108 #endif // INSTALLER_CONTEXT_H