a8cd89cf5e14ef9d2600505bcc91cbb5cc743e14
[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 <dpl/task_list.h>
26 #include <dpl/wrt-dao-ro/config_parser_data.h>
27
28 #include <widget_install/widget_update_info.h>
29 #include <widget_install/widget_install_context.h>
30
31 class InstallerContext;
32
33 namespace Jobs {
34 namespace WidgetInstall {
35
36 class TaskConfiguration : public DPL::TaskDecl<TaskConfiguration>
37 {
38     InstallerContext& m_context;
39     WidgetUpdateInfo m_widgetUpdateInfo;
40
41     bool ConfigureInstallation(const std::string &widgetSource,
42                                           const WrtDB::ConfigParserData
43                                           &configData,
44                                           const std::string &tempPath);
45     static WrtDB::ConfigParserData getWidgetDataFromXML(
46         const std::string &widgetSource,
47         const std::string &tempPath,
48         WrtDB::PackagingType pkgType,
49         bool isReinstall);
50     static WidgetUpdateInfo detectWidgetUpdate(
51         const WrtDB::ConfigParserData &configInfo,
52         const WrtDB::TizenAppId &tizenId);
53     void setTizenId(const WrtDB::ConfigParserData &configInfo);
54     void configureWidgetLocation(const std::string & widgetPath,
55                                  const std::string &tempPath);
56
57     WrtDB::PackagingType checkPackageType(
58         const std::string &widgetSource,
59         const std::string &tempPath);
60     bool detectResourceEncryption(const WrtDB::ConfigParserData &configData);
61     void setInstallLocationType(const WrtDB::ConfigParserData
62                                 &configData);
63
64     bool validateTizenApplicationID(const WrtDB::TizenAppId &tizenAppId);
65     bool validateTizenPackageID(const WrtDB::TizenPkgId &tizenPkgId);
66     bool checkWidgetUpdate(const WidgetUpdateInfo &update);
67     void setApplicationType(const WrtDB::ConfigParserData &configInfo);
68     bool checkSupportRDSUpdate(const WrtDB::ConfigParserData &configInfo);
69
70     void PrepareInstallationStep();
71     void AppendTasklistStep();
72
73     void StartStep();
74     void EndStep();
75
76 public:
77     TaskConfiguration(InstallerContext& context);
78 };
79
80 }
81 }
82
83 #endif // TASK_CONFIGURATION_H