[Release] wrt-installer_0.1.58.2
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_manifest_file.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    task_manifest_file.h
18  * @author  Pawel Sikorski (p.sikorski@samgsung.com)
19  * @version
20  * @brief
21  */
22
23 #ifndef INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_DESKTOP_FILE_H
24 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_DESKTOP_FILE_H
25
26 //SYSTEM INCLUDES
27 #include <fstream>
28
29 //WRT INCLUDES
30 #include <dpl/task.h>
31 #include <dpl/localization/localization_utils.h>
32
33 #include <libxml2/libxml/xmlwriter.h>
34
35 #include <libxml_utils.h>
36 #include <widget_install/manifest.h>
37 #include <dpl/localization/localization_utils.h>
38
39 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
40
41 class InstallerContext;
42
43 namespace Jobs {
44 namespace WidgetInstall {
45 class TaskManifestFile :
46     public DPL::TaskDecl<TaskManifestFile>
47 {
48   public:
49
50     DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
51     DECLARE_EXCEPTION_TYPE(Base, ManifestValidationError)
52     DECLARE_EXCEPTION_TYPE(Base, ManifestParsingError)
53
54     TaskManifestFile(InstallerContext &inCont);
55     virtual ~TaskManifestFile();
56
57   private:
58     //context data
59     InstallerContext &m_context;
60
61     //TODO stepAbort
62     //steps
63     void stepCreateExecFile();
64     void stepFinalize();
65     void stepCopyIconFiles();
66     void stepCopyLiveboxFiles();
67     void stepGenerateManifest();
68     void stepParseManifest();
69     void stepParseUpgradedManifest();
70
71     void stepAbortParseManifest();
72
73     //For widget update
74     void stepBackupIconFiles();
75     void stepUpdateFinalize();
76
77     void stepAbortIconFiles();
78
79     //private data
80     std::list<std::string> icon_list; //TODO: this should be registered as
81                                       // external files
82     std::ostringstream backup_dir;
83     xmlTextWriterPtr writer;
84     DPL::String manifest_name;
85     DPL::String manifest_file;
86
87     //private methods
88
89     void writeManifest(const DPL::String & path);
90     void commitManifest();
91
92     void setWidgetExecPath(UiApplication & uiApp,
93                            const std::string &postfix = std::string());
94     void setWidgetName(Manifest & manifest,
95                        UiApplication & uiApp);
96     void setWidgetIds(Manifest & manifest,
97                        UiApplication & uiApp,
98                        const std::string &postfix = std::string());
99     void setWidgetIcons(UiApplication & uiApp);
100     void setWidgetDescription(Manifest & manifest);
101     void setWidgetManifest(Manifest & manifest);
102     void setWidgetOtherInfo(UiApplication & uiApp);
103     void setAppControlsInfo(UiApplication & uiApp);
104     void setAppControlInfo(UiApplication & uiApp,
105                            const WrtDB::ConfigParserData::AppControlInfo & service);
106     void setAppCategory(UiApplication & uiApp);
107     void setMetadata(UiApplication & uiApp);
108     void setLiveBoxInfo(Manifest& manifest);
109     void setAccount(Manifest& uiApp);
110     void setPrivilege(Manifest& manifest);
111
112     void generateWidgetName(Manifest & manifest,
113                             UiApplication &uiApp,
114                             const DPL::OptionalString& tag,
115                             DPL::OptionalString name,
116                             bool & defaultNameSaved);
117     void generateWidgetDescription(Manifest & manifest,
118                                    const DPL::OptionalString& tag,
119                                    DPL::OptionalString description);
120     void generateWidgetIcon(UiApplication & uiApp,
121                             const DPL::OptionalString& tag,
122                             const DPL::String& language,
123                             bool & defaultIconSaved);
124
125     //for widget update
126     void backupIconFiles();
127     void getFileList(const char* path, std::list<std::string> &list);
128     DPL::String getIconTargetFilename(const DPL::String& languageTag) const;
129
130     static void saveLocalizedKey(std::ofstream &file,
131                                  const DPL::String& key,
132                                  const DPL::String& languageTag);
133
134     static const char * encoding;
135 };
136 } //namespace WidgetInstall
137 } //namespace Jobs
138
139 #endif /* INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_DESKTOP_FILE_H */