0540ab7c1a3fb2218e123009c36e9e78d7510959
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_configuration.h
1 /*
2  * Copyright (c) 2013 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    task_configuration.h
18  * @version 1.0
19  * @author  Tomasz Iwanek
20  * @brief   header file for configuration task
21  */
22 #ifndef TASK_CONFIGURATION_H
23 #define TASK_CONFIGURATION_H
24
25 #include <string>
26
27 #include <dpl/task_list.h>
28 #include <dpl/wrt-dao-ro/config_parser_data.h>
29
30 #include <widget_install/widget_update_info.h>
31 #include <widget_install/widget_install_context.h>
32
33 #include <pkg-manager/pkgmgr_signal.h>
34
35 class InstallerContext;
36
37 namespace Jobs {
38 namespace WidgetInstall {
39
40 class TaskConfiguration : public DPL::TaskDecl<TaskConfiguration>
41 {
42     InstallerContext& m_context;
43     std::string m_tempDir;
44     WrtDB::ConfigParserData &m_widgetConfig;
45
46     WidgetUpdateInfo m_widgetUpdateInfo;
47
48     void parseWidgetXMLConfig(
49         const std::string &widgetSource,
50         const std::string &tempPath,
51         WrtDB::PackagingType pkgType,
52         bool isReinstall);
53
54     static WidgetUpdateInfo detectWidgetUpdate(
55         const WrtDB::ConfigParserData &configInfo,
56         const WrtDB::TizenAppId &tizenId);
57
58     bool validateTizenApplicationID(const WrtDB::TizenAppId &tizenAppId);
59     bool validateTizenPackageID(const WrtDB::TizenPkgId &tizenPkgId);
60     bool checkWidgetUpdate(const WidgetUpdateInfo &update);
61     void ApplicationTypeStep(const WrtDB::ConfigParserData &configInfo);
62     bool checkSupportRDSUpdateIfReinstall(const WrtDB::ConfigParserData &configInfo);
63     bool getDefaultExternalStorage();
64     bool getMMCStatus();
65
66     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgMgrInterface();
67
68     //steps
69     void StartStep();
70
71     void SetupTempDirStep();
72     void CheckPackageTypeStep();
73     void ParseXMLConfigStep();
74
75     void TizenIdStep();
76     void CheckAppRunningStateStep();
77     void DetectUpdateInstallationStep();
78     void PkgmgrStartStep();
79
80     void ApplicationTypeStep();
81     void ResourceEncryptionStep();
82     void InstallationFSLocationStep();
83
84     void ConfigureWidgetLocationStep();
85     void CheckRDSSupportStep();
86
87     void AppendTasklistStep();
88     void EndStep();
89
90 public:
91     TaskConfiguration(InstallerContext& context);
92 };
93
94 }
95 }
96
97 #endif // TASK_CONFIGURATION_H