96eb80a9e4e6b8c776080898037b6739dc61935f
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_manifest_file.cpp
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.cpp
18  * @author  Pawel Sikorski (p.sikorski@samgsung.com)
19  * @version
20  * @brief
21  */
22
23 //SYSTEM INCLUDES
24 #include <unistd.h>
25 #include <string>
26 #include <dpl/assert.h>
27 #include <dirent.h>
28 #include <fstream>
29 #include <ail.h>
30
31 //WRT INCLUDES
32 #include <widget_install/task_manifest_file.h>
33 #include <widget_install/job_widget_install.h>
34 #include <widget_install/widget_install_errors.h>
35 #include <widget_install/widget_install_context.h>
36 #include <dpl/wrt-dao-ro/global_config.h>
37 #include <dpl/log/log.h>
38 #include <dpl/file_input.h>
39 #include <dpl/errno_string.h>
40 #include <dpl/file_output.h>
41 #include <dpl/copy.h>
42 #include <dpl/exception.h>
43 #include <dpl/foreach.h>
44 #include <dpl/sstream.h>
45 #include <dpl/string.h>
46 #include <dpl/optional.h>
47 #include <dpl/utils/wrt_utility.h>
48 #include <map>
49 #include <libxml_utils.h>
50 #include <pkgmgr/pkgmgr_parser.h>
51 #include <dpl/localization/LanguageTagsProvider.h>
52
53 #define DEFAULT_ICON_NAME   "icon.png"
54
55 using namespace WrtDB;
56
57 namespace {
58 typedef std::map<DPL::String, DPL::String> LanguageTagMap;
59
60 const char* const ST_TRUE = "true";
61 const char* const ST_NODISPLAY = "nodisplay";
62
63 LanguageTagMap getLanguageTagMap()
64 {
65     LanguageTagMap map;
66
67 #define ADD(tag, l_tag) map.insert(std::make_pair(L###tag, L###l_tag));
68 #include "languages.def"
69 #undef ADD
70
71     return map;
72 }
73
74 DPL::OptionalString getLangTag(const DPL::String& tag)
75 {
76     static LanguageTagMap TagsMap =
77         getLanguageTagMap();
78
79     DPL::String langTag = tag;
80
81     LogDebug("Trying to map language tag: " << langTag);
82     size_t pos = langTag.find_first_of(L'_');
83     if (pos != DPL::String::npos) {
84         langTag.erase(pos);
85     }
86     DPL::OptionalString ret;
87
88     LanguageTagMap::iterator it = TagsMap.find(langTag);
89     if (it != TagsMap.end()) {
90         ret = it->second;
91     }
92     LogDebug("Mapping IANA Language tag to language tag: " <<
93              langTag << " -> " << ret);
94
95     return ret;
96 }
97 }
98
99 namespace Jobs {
100 namespace WidgetInstall {
101 const char * TaskManifestFile::encoding = "UTF-8";
102
103 TaskManifestFile::TaskManifestFile(InstallerContext &inCont) :
104     DPL::TaskDecl<TaskManifestFile>(this),
105     m_context(inCont),
106     writer(NULL)
107 {
108     if (false == m_context.existingWidgetInfo.isExist) {
109         AddStep(&TaskManifestFile::stepCopyIconFiles);
110         AddStep(&TaskManifestFile::stepCreateExecFile);
111         AddStep(&TaskManifestFile::stepGenerateManifest);
112         AddStep(&TaskManifestFile::stepParseManifest);
113         AddStep(&TaskManifestFile::stepFinalize);
114
115         AddAbortStep(&TaskManifestFile::stepAbortParseManifest);
116     } else {
117         // for widget update.
118         AddStep(&TaskManifestFile::stepBackupIconFiles);
119         AddStep(&TaskManifestFile::stepCopyIconFiles);
120         AddStep(&TaskManifestFile::stepGenerateManifest);
121         AddStep(&TaskManifestFile::stepParseUpgradedManifest);
122         AddStep(&TaskManifestFile::stepUpdateFinalize);
123
124         AddAbortStep(&TaskManifestFile::stepAbortIconFiles);
125     }
126 }
127
128 TaskManifestFile::~TaskManifestFile()
129 {}
130
131 void TaskManifestFile::stepCreateExecFile()
132 {
133     std::string exec = m_context.locations->getExecFile();
134     std::string clientExeStr = GlobalConfig::GetWrtClientExec();
135
136     LogInfo("link -s " << clientExeStr << " " << exec);
137
138     errno = 0;
139     if (symlink(clientExeStr.c_str(), exec.c_str()) !=  0)
140     {
141         int error = errno;
142         if(error)
143             LogPedantic("Failed to make a symbolic name for a file "
144                     << "[" <<  DPL::GetErrnoString(error) << "]");
145         ThrowMsg(Exceptions::FileOperationFailed,
146                 "Symbolic link creating is not done.");
147     }
148     m_context.job->UpdateProgress(
149             InstallerContext::INSTALL_CREATE_EXECFILE,
150             "Widget execfile creation Finished");
151 }
152
153 void TaskManifestFile::stepCopyIconFiles()
154 {
155     LogDebug("CopyIconFiles");
156
157     //This function copies icon to desktop icon path. For each locale avaliable
158     //which there is at least one icon in widget for, icon file is copied.
159     //Coping prioritize last positions when coping. If there is several icons
160     //with given locale, the one, that will be copied, will be icon
161     //which is declared by <icon> tag later than the others in config.xml of
162     // widget
163
164     std::vector<Locale> generatedLocales;
165
166     WrtDB::WidgetRegisterInfo::LocalizedIconList & icons =
167         m_context.widgetConfig.localizationData.icons;
168
169     //reversed: last <icon> has highest priority to be copied if it has given
170     // locale (TODO: why was that working that way?)
171     for (WrtDB::WidgetRegisterInfo::LocalizedIconList::const_reverse_iterator
172          icon = icons.rbegin();
173          icon != icons.rend();
174          ++icon)
175     {
176         FOREACH(locale, icon->availableLocales)
177         {
178             DPL::String src = icon->src;
179             LogDebug("Icon for locale: " << *locale << "is : " << src);
180
181             if (std::find(generatedLocales.begin(), generatedLocales.end(),
182                           *locale) != generatedLocales.end())
183             {
184                 LogDebug("Skipping - has that locale");
185                 continue;
186             } else {
187                 generatedLocales.push_back(*locale);
188             }
189
190             std::ostringstream sourceFile;
191             std::ostringstream targetFile;
192
193             sourceFile << m_context.locations->getSourceDir() << "/";
194
195             if (!locale->empty()) {
196                 sourceFile << "locales/" << *locale << "/";
197             }
198
199             sourceFile << src;
200
201             targetFile << GlobalConfig::GetUserWidgetDesktopIconPath() << "/";
202             targetFile << getIconTargetFilename(*locale);
203
204             if (m_context.widgetConfig.packagingType ==
205                 WrtDB::PKG_TYPE_HOSTED_WEB_APP)
206             {
207                 m_context.locations->setIconTargetFilenameForLocale(
208                     targetFile.str());
209             }
210
211             LogDebug("Copying icon: " << sourceFile.str() <<
212                      " -> " << targetFile.str());
213
214             icon_list.push_back(targetFile.str());
215
216             Try
217             {
218                 DPL::FileInput input(sourceFile.str());
219                 DPL::FileOutput output(targetFile.str());
220                 DPL::Copy(&input, &output);
221             }
222
223             Catch(DPL::FileInput::Exception::Base)
224             {
225                 // Error while opening or closing source file
226                 //ReThrowMsg(InstallerException::CopyIconFailed,
227                 // sourceFile.str());
228                 LogError(
229                     "Copying widget's icon failed. Widget's icon will not be" \
230                     "available from Main Screen");
231             }
232
233             Catch(DPL::FileOutput::Exception::Base)
234             {
235                 // Error while opening or closing target file
236                 //ReThrowMsg(InstallerException::CopyIconFailed,
237                 // targetFile.str());
238                 LogError(
239                     "Copying widget's icon failed. Widget's icon will not be" \
240                     "available from Main Screen");
241             }
242
243             Catch(DPL::CopyFailed)
244             {
245                 // Error while copying
246                 //ReThrowMsg(InstallerException::CopyIconFailed,
247                 // targetFile.str());
248                 LogError(
249                     "Copying widget's icon failed. Widget's icon will not be" \
250                     "available from Main Screen");
251             }
252         }
253     }
254
255     m_context.job->UpdateProgress(
256         InstallerContext::INSTALL_COPY_ICONFILE,
257         "Widget iconfile copy Finished");
258 }
259
260 void TaskManifestFile::stepBackupIconFiles()
261 {
262     LogDebug("Backup Icon Files");
263
264     backup_dir << m_context.locations->getPackageInstallationDir();
265     backup_dir << "/" << "backup" << "/";
266
267     backupIconFiles();
268
269     m_context.job->UpdateProgress(
270         InstallerContext::INSTALL_BACKUP_ICONFILE,
271         "New Widget icon file backup Finished");
272 }
273
274 void TaskManifestFile::stepAbortIconFiles()
275 {
276     LogDebug("Abrot Icon Files");
277     FOREACH(it, icon_list)
278     {
279         LogDebug("Remove Update Icon : " << (*it));
280         unlink((*it).c_str());
281     }
282
283     std::ostringstream b_icon_dir;
284     b_icon_dir << backup_dir.str() << "icons";
285
286     std::list<std::string> fileList;
287     getFileList(b_icon_dir.str().c_str(), fileList);
288
289     FOREACH(back_icon, fileList)
290     {
291         std::ostringstream res_file;
292         res_file << GlobalConfig::GetUserWidgetDesktopIconPath();
293         res_file << "/" << (*back_icon);
294
295         std::ostringstream backup_file;
296         backup_file << b_icon_dir.str() << "/" << (*back_icon);
297
298         Try
299         {
300             DPL::FileInput input(backup_file.str());
301             DPL::FileOutput output(res_file.str());
302             DPL::Copy(&input, &output);
303         }
304         Catch(DPL::FileInput::Exception::Base)
305         {
306             LogError("Restoration icon File Failed." << backup_file.str()
307                                                      << " to " << res_file.str());
308         }
309
310         Catch(DPL::FileOutput::Exception::Base)
311         {
312             LogError("Restoration icon File Failed." << backup_file.str()
313                                                      << " to " << res_file.str());
314         }
315         Catch(DPL::CopyFailed)
316         {
317             LogError("Restoration icon File Failed." << backup_file.str()
318                                                      << " to " << res_file.str());
319         }
320     }
321 }
322
323 void TaskManifestFile::stepUpdateFinalize()
324 {
325     commitManifest();
326     LogDebug("Finished Update Desktopfile");
327 }
328
329 DPL::String TaskManifestFile::getIconTargetFilename(
330     const DPL::String& languageTag) const
331 {
332     DPL::OStringStream filename;
333     TizenAppId appid = m_context.widgetConfig.tzAppid;
334
335     filename << DPL::ToUTF8String(appid).c_str();
336
337     if (!languageTag.empty()) {
338         DPL::OptionalString tag = getLangTag(languageTag); // translate en ->
339                                                            // en_US etc
340         if (tag.IsNull()) {
341             tag = languageTag;
342         }
343         DPL::String locale =
344             LanguageTagsProvider::BCP47LanguageTagToLocale(*tag);
345
346         if (locale.empty()) {
347             filename << L"." << languageTag;
348         } else {
349             filename << L"." << locale;
350         }
351     }
352
353     filename << L".png";
354     return filename.str();
355 }
356
357 void TaskManifestFile::stepFinalize()
358 {
359     commitManifest();
360     LogInfo("Finished ManifestFile step");
361 }
362
363 void TaskManifestFile::saveLocalizedKey(std::ofstream &file,
364                                         const DPL::String& key,
365                                         const DPL::String& languageTag)
366 {
367     DPL::String locale =
368         LanguageTagsProvider::BCP47LanguageTagToLocale(languageTag);
369
370     file << key;
371     if (!locale.empty()) {
372         file << "[" << locale << "]";
373     }
374     file << "=";
375 }
376
377 void TaskManifestFile::updateAilInfo()
378 {
379     // Update ail for desktop
380     std::string cfgAppid =
381         DPL::ToUTF8String(m_context.widgetConfig.tzAppid);
382     const char* appid = cfgAppid.c_str();
383
384     LogDebug("Update ail desktop : " << appid);
385     ail_appinfo_h ai = NULL;
386     ail_error_e ret;
387
388     ret = ail_get_appinfo(appid, &ai);
389     if (ai) {
390         ail_destroy_appinfo(ai);
391     }
392
393     if (AIL_ERROR_NO_DATA == ret) {
394         if (ail_desktop_add(appid) < 0) {
395             LogWarning("Failed to add ail desktop : " << appid);
396         }
397     } else if (AIL_ERROR_OK == ret) {
398         if (ail_desktop_update(appid) < 0) {
399             LogWarning("Failed to update ail desktop : " << appid);
400         }
401     }
402 }
403
404 void TaskManifestFile::backupIconFiles()
405 {
406     LogInfo("Backup Icon Files");
407
408     std::ostringstream b_icon_dir;
409     b_icon_dir << backup_dir.str() << "icons";
410
411     LogDebug("Create icon backup folder : " << b_icon_dir.str());
412     WrtUtilMakeDir(b_icon_dir.str());
413
414     std::list<std::string> fileList;
415     getFileList(GlobalConfig::GetUserWidgetDesktopIconPath(), fileList);
416     std::string appid = DPL::ToUTF8String(m_context.widgetConfig.tzAppid);
417
418     FOREACH(it, fileList)
419     {
420         if (0 == (strncmp((*it).c_str(), appid.c_str(),
421                           strlen(appid.c_str()))))
422         {
423             std::ostringstream icon_file, backup_icon;
424             icon_file << GlobalConfig::GetUserWidgetDesktopIconPath();
425             icon_file << "/" << (*it);
426
427             backup_icon << b_icon_dir.str() << "/" << (*it);
428
429             LogDebug("Backup icon file " << icon_file.str() << " to " <<
430                      backup_icon.str());
431             Try
432             {
433                 DPL::FileInput input(icon_file.str());
434                 DPL::FileOutput output(backup_icon.str());
435                 DPL::Copy(&input, &output);
436             }
437             Catch(DPL::FileInput::Exception::Base)
438             {
439                 LogError("Backup Desktop File Failed.");
440                 ReThrowMsg(Exceptions::BackupFailed, icon_file.str());
441             }
442
443             Catch(DPL::FileOutput::Exception::Base)
444             {
445                 LogError("Backup Desktop File Failed.");
446                 ReThrowMsg(Exceptions::BackupFailed, backup_icon.str());
447             }
448             Catch(DPL::CopyFailed)
449             {
450                 LogError("Backup Desktop File Failed.");
451                 ReThrowMsg(Exceptions::BackupFailed, backup_icon.str());
452             }
453             unlink((*it).c_str());
454         }
455     }
456 }
457
458 void TaskManifestFile::getFileList(const char* path,
459                                    std::list<std::string> &list)
460 {
461     DIR* dir = opendir(path);
462     if (!dir) {
463         LogError("icon directory doesn't exist");
464         ThrowMsg(Exceptions::FileOperationFailed, path);
465     }
466
467     struct dirent entry;
468     struct dirent *result;
469     int return_code;
470     errno = 0;
471     for (return_code = readdir_r(dir, &entry, &result);
472             result != NULL && return_code == 0;
473             return_code = readdir_r(dir, &entry, &result))
474     {
475         if (strcmp(entry.d_name, ".") == 0 ||
476             strcmp(entry.d_name, "..") == 0)
477         {
478             continue;
479         }
480         std::string file_name = entry.d_name;
481         list.push_back(file_name);
482     }
483
484     if (return_code != 0 || errno != 0) {
485         LogError("readdir_r() failed with " << DPL::GetErrnoString());
486     }
487
488     if (-1 == TEMP_FAILURE_RETRY(closedir(dir))) {
489         LogError("Failed to close dir: " << path << " with error: "
490                                          << DPL::GetErrnoString());
491     }
492 }
493
494 void TaskManifestFile::stepGenerateManifest()
495 {
496     TizenPkgId pkgid = m_context.widgetConfig.tzPkgid;
497     manifest_name = pkgid + L".xml";
498     manifest_file += L"/tmp/" + manifest_name;
499
500     //libxml - init and check
501     LibxmlSingleton::Instance().init();
502
503     writeManifest(manifest_file);
504
505     m_context.job->UpdateProgress(
506         InstallerContext::INSTALL_CREATE_MANIFEST,
507         "Widget Manifest Creation Finished");
508 }
509
510 void TaskManifestFile::stepParseManifest()
511 {
512     int code = pkgmgr_parser_parse_manifest_for_installation(
513             DPL::ToUTF8String(manifest_file).c_str(), NULL);
514
515     if (code != 0) {
516         LogError("Manifest parser error: " << code);
517         ThrowMsg(Exceptions::ManifestInvalid, "Parser returncode: " << code);
518     }
519
520     // TODO : It will be removed. AIL update is temporary code request by pkgmgr
521     // team.
522     updateAilInfo();
523
524     m_context.job->UpdateProgress(
525         InstallerContext::INSTALL_CREATE_MANIFEST,
526         "Widget Manifest Parsing Finished");
527     LogDebug("Manifest parsed");
528 }
529
530 void TaskManifestFile::stepParseUpgradedManifest()
531 {
532     int code = pkgmgr_parser_parse_manifest_for_upgrade(
533             DPL::ToUTF8String(manifest_file).c_str(), NULL);
534
535     if (code != 0) {
536         LogError("Manifest parser error: " << code);
537         ThrowMsg(Exceptions::ManifestInvalid, "Parser returncode: " << code);
538     }
539
540     // TODO : It will be removed. AIL update is temporary code request by pkgmgr
541     // team.
542     updateAilInfo();
543
544     m_context.job->UpdateProgress(
545         InstallerContext::INSTALL_CREATE_MANIFEST,
546         "Widget Manifest Parsing Finished");
547     LogDebug("Manifest parsed");
548 }
549
550 void TaskManifestFile::commitManifest()
551 {
552     LogDebug("Commiting manifest file : " << manifest_file);
553
554     std::ostringstream destFile;
555     destFile << "/opt/share/packages" << "/"; //TODO constant with path
556     destFile << DPL::ToUTF8String(manifest_name);
557     LogInfo("cp " << manifest_file << " " << destFile.str());
558
559     DPL::FileInput input(DPL::ToUTF8String(manifest_file));
560     DPL::FileOutput output(destFile.str());
561     DPL::Copy(&input, &output);
562     LogDebug("Manifest writen to: " << destFile.str());
563
564     //removing temp file
565     unlink((DPL::ToUTF8String(manifest_file)).c_str());
566     manifest_file = DPL::FromUTF8String(destFile.str().c_str());
567 }
568
569 void TaskManifestFile::writeManifest(const DPL::String & path)
570 {
571     LogDebug("Generating manifest file : " << path);
572     Manifest manifest;
573     UiApplication uiApp;
574
575     setWidgetExecPath(uiApp);
576     setWidgetName(manifest, uiApp);
577     setWidgetIcons(uiApp);
578     setWidgetManifest(manifest);
579     setWidgetOtherInfo(uiApp);
580     setAppServiceInfo(uiApp);
581     setAppControlInfo(uiApp);
582     setAppCategory(uiApp);
583     setLiveBoxInfo(manifest);
584     setAccount(manifest);
585     setPrivilege(manifest);
586
587     manifest.addUiApplication(uiApp);
588     manifest.generate(path);
589     LogDebug("Manifest file serialized");
590 }
591
592 void TaskManifestFile::setWidgetExecPath(UiApplication & uiApp)
593 {
594     uiApp.setExec(DPL::FromASCIIString(m_context.locations->getExecFile()));
595 }
596
597 void TaskManifestFile::setWidgetName(Manifest & manifest, UiApplication & uiApp)
598 {
599     bool defaultNameSaved = false;
600
601     DPL::OptionalString defaultLocale =
602         m_context.widgetConfig.configInfo.defaultlocale;
603     std::pair<DPL::String,
604               WrtDB::ConfigParserData::LocalizedData> defaultLocalizedData;
605     //labels
606     FOREACH(localizedData, m_context.widgetConfig.configInfo.localizedDataSet)
607     {
608         Locale i = localizedData->first;
609         DPL::OptionalString tag = getLangTag(i); // translate en -> en_US etc
610         if (tag.IsNull()) {
611             tag = i;
612         }
613         DPL::OptionalString name = localizedData->second.name;
614         generateWidgetName(manifest, uiApp, tag, name, defaultNameSaved);
615
616         //store default locale localized data
617         if (!!defaultLocale && defaultLocale == i) {
618             defaultLocalizedData = *localizedData;
619         }
620     }
621
622     if (!!defaultLocale && !defaultNameSaved) {
623         DPL::OptionalString name = defaultLocalizedData.second.name;
624         generateWidgetName(manifest,
625                            uiApp,
626                            DPL::OptionalString::Null,
627                            name,
628                            defaultNameSaved);
629     }
630     //appid
631     TizenAppId appid = m_context.widgetConfig.tzAppid;
632     uiApp.setAppid(appid);
633
634     //extraid
635     if (!!m_context.widgetConfig.guid) {
636         uiApp.setExtraid(*m_context.widgetConfig.guid);
637     } else {
638         if (!appid.empty()) {
639             uiApp.setExtraid(DPL::String(L"http://") + appid);
640         }
641     }
642
643     //type
644     uiApp.setType(DPL::FromASCIIString("webapp"));
645     manifest.setType(L"wgt");
646 }
647
648 void TaskManifestFile::generateWidgetName(Manifest & manifest,
649                                           UiApplication &uiApp,
650                                           const DPL::OptionalString& tag,
651                                           DPL::OptionalString name,
652                                           bool & defaultNameSaved)
653 {
654     if (!!name) {
655         if (!!tag) {
656             DPL::String locale =
657                 LanguageTagsProvider::BCP47LanguageTagToLocale(*tag);
658
659             if (!locale.empty()) {
660                 uiApp.addLabel(LabelType(*name, *tag));
661             } else {
662                 uiApp.addLabel(LabelType(*name));
663                 manifest.addLabel(LabelType(*name));
664             }
665         } else {
666             defaultNameSaved = true;
667             uiApp.addLabel(LabelType(*name));
668             manifest.addLabel(LabelType(*name));
669         }
670     }
671 }
672
673 void TaskManifestFile::setWidgetIcons(UiApplication & uiApp)
674 {
675     //TODO this file will need to be updated when user locale preferences
676     //changes.
677     bool defaultIconSaved = false;
678
679     DPL::OptionalString defaultLocale =
680         m_context.widgetConfig.configInfo.defaultlocale;
681
682     std::vector<Locale> generatedLocales;
683     WrtDB::WidgetRegisterInfo::LocalizedIconList & icons =
684         m_context.widgetConfig.localizationData.icons;
685
686     //reversed: last <icon> has highest priority to be writen to manifest if it
687     // has given locale (TODO: why was that working that way?)
688     for (WrtDB::WidgetRegisterInfo::LocalizedIconList::const_reverse_iterator
689          icon = icons.rbegin();
690          icon != icons.rend();
691          ++icon)
692     {
693         FOREACH(locale, icon->availableLocales)
694         {
695             if (std::find(generatedLocales.begin(), generatedLocales.end(),
696                           *locale) != generatedLocales.end())
697             {
698                 LogDebug("Skipping - has that locale - already in manifest");
699                 continue;
700             } else {
701                 generatedLocales.push_back(*locale);
702             }
703
704             DPL::OptionalString tag = getLangTag(*locale); // translate en ->
705                                                            // en_US etc
706             if (tag.IsNull()) {
707                 tag = *locale;
708             }
709
710             generateWidgetIcon(uiApp, tag, *locale, defaultIconSaved);
711         }
712     }
713     if (!!defaultLocale && !defaultIconSaved) {
714         generateWidgetIcon(uiApp, DPL::OptionalString::Null,
715                            DPL::String(),
716                            defaultIconSaved);
717     }
718 }
719
720 void TaskManifestFile::generateWidgetIcon(UiApplication & uiApp,
721                                           const DPL::OptionalString& tag,
722                                           const DPL::String& language,
723                                           bool & defaultIconSaved)
724 {
725     DPL::String locale;
726     if (!!tag) {
727         locale = LanguageTagsProvider::BCP47LanguageTagToLocale(*tag);
728     } else {
729         defaultIconSaved = true;
730     }
731
732     DPL::String iconText;
733     iconText += getIconTargetFilename(language);
734
735     if (!locale.empty()) {
736         uiApp.addIcon(IconType(iconText, locale));
737     } else {
738         uiApp.addIcon(IconType(iconText));
739     }
740     std::ostringstream iconPath;
741     iconPath << GlobalConfig::GetUserWidgetDesktopIconPath() << "/";
742     iconPath << getIconTargetFilename(locale);
743      m_context.job->SendProgressIconPath(iconPath.str());
744 }
745
746 void TaskManifestFile::setWidgetManifest(Manifest & manifest)
747 {
748     manifest.setPackage(m_context.widgetConfig.tzPkgid);
749
750     if (!!m_context.widgetConfig.version) {
751         manifest.setVersion(*m_context.widgetConfig.version);
752     }
753     DPL::String email = (!!m_context.widgetConfig.configInfo.authorEmail ?
754                          *m_context.widgetConfig.configInfo.authorEmail : L"");
755     DPL::String href = (!!m_context.widgetConfig.configInfo.authorHref ?
756                         *m_context.widgetConfig.configInfo.authorHref : L"");
757     DPL::String name = (!!m_context.widgetConfig.configInfo.authorName ?
758                         *m_context.widgetConfig.configInfo.authorName : L"");
759     manifest.addAuthor(Author(email, href, L"", name));
760 }
761
762 void TaskManifestFile::setWidgetOtherInfo(UiApplication & uiApp)
763 {
764     FOREACH(it, m_context.widgetConfig.configInfo.settingsList)
765     {
766         if (!strcmp(DPL::ToUTF8String(it->m_name).c_str(), ST_NODISPLAY)) {
767             if (!strcmp(DPL::ToUTF8String(it->m_value).c_str(), ST_TRUE)) {
768                 uiApp.setNodisplay(true);
769                 uiApp.setTaskmanage(false);
770             } else {
771                 uiApp.setNodisplay(false);
772                 uiApp.setTaskmanage(true);
773             }
774         }
775     }
776     //TODO
777     //There is no "X-TIZEN-PackageType=wgt"
778     //There is no X-TIZEN-PackageID in manifest "X-TIZEN-PackageID=" <<
779     // DPL::ToUTF8String(*widgetID).c_str()
780     //There is no Comment in pkgmgr "Comment=Widget application"
781     //that were in desktop file
782 }
783
784 void TaskManifestFile::setAppServiceInfo(UiApplication & uiApp)
785 {
786     WrtDB::ConfigParserData::ServiceInfoList appServiceList =
787         m_context.widgetConfig.configInfo.appServiceList;
788
789     if (appServiceList.empty()) {
790         LogInfo("Widget doesn't contain application service");
791         return;
792     }
793
794     // x-tizen-svc=http://tizen.org/appcontrol/operation/pick|NULL|image;
795     FOREACH(it, appServiceList) {
796         AppControl appControl;
797         if (!it->m_operation.empty()) {
798             appControl.addOperation(it->m_operation); //TODO: encapsulation?
799         }
800         if (!it->m_scheme.empty()) {
801             appControl.addUri(it->m_scheme);
802         }
803         if (!it->m_mime.empty()) {
804             appControl.addMime(it->m_mime);
805         }
806         uiApp.addAppControl(appControl);
807     }
808 }
809
810 void TaskManifestFile::setAppControlInfo(UiApplication & uiApp)
811 {
812     WrtDB::ConfigParserData::AppControlInfoList appControlList =
813         m_context.widgetConfig.configInfo.appControlList;
814
815     if (appControlList.empty()) {
816         LogInfo("Widget doesn't contain app control");
817         return;
818     }
819
820     // x-tizen-svc=http://tizen.org/appcontrol/operation/pick|NULL|image;
821     FOREACH(it, appControlList) {
822         AppControl appControl;
823         if (!it->m_operation.empty()) {
824             appControl.addOperation(it->m_operation); //TODO: encapsulation?
825         }
826         if (!it->m_uriList.empty()) {
827             FOREACH(uri, it->m_uriList) {
828                 appControl.addUri(*uri);
829             }
830         }
831         if (!it->m_mimeList.empty()) {
832             FOREACH(mime, it->m_mimeList) {
833                 appControl.addMime(*mime);
834             }
835         }
836         uiApp.addAppControl(appControl);
837     }
838 }
839
840 void TaskManifestFile::setAppCategory(UiApplication &uiApp)
841 {
842     WrtDB::ConfigParserData::CategoryList categoryList =
843         m_context.widgetConfig.configInfo.categoryList;
844
845     if (categoryList.empty()) {
846         LogInfo("Widget doesn't contain application category");
847         return;
848     }
849     FOREACH(it, categoryList) {
850         if (!(*it).empty()) {
851             uiApp.addAppCategory(*it);
852         }
853     }
854 }
855
856 void TaskManifestFile::stepAbortParseManifest()
857 {
858     LogError("[Parse Manifest] Abroting....");
859
860     int code = pkgmgr_parser_parse_manifest_for_uninstallation(
861             DPL::ToUTF8String(manifest_file).c_str(), NULL);
862
863     if (0 != code) {
864         LogWarning("Manifest parser error: " << code);
865         ThrowMsg(Exceptions::ManifestInvalid, "Parser returncode: " << code);
866     }
867     int ret = unlink(DPL::ToUTF8String(manifest_file).c_str());
868     if (0 != ret) {
869         LogWarning("No manifest file found: " << manifest_file);
870     }
871 }
872
873 void TaskManifestFile::setLiveBoxInfo(Manifest& manifest)
874 {
875     FOREACH(it, m_context.widgetConfig.configInfo.m_livebox) {
876         LogInfo("setLiveBoxInfo");
877         LiveBoxInfo liveBox;
878         DPL::Optional<WrtDB::ConfigParserData::LiveboxInfo> ConfigInfo = *it;
879         DPL::String appid = m_context.widgetConfig.tzAppid;
880
881         if (ConfigInfo->m_liveboxId != L"") {
882             size_t found = ConfigInfo->m_liveboxId.find_last_of(L".");
883             if (found != std::string::npos) {
884                 if (0 == ConfigInfo->m_liveboxId.compare(0, found, appid)) {
885                     liveBox.setLiveboxId(ConfigInfo->m_liveboxId);
886                 } else {
887                     DPL::String liveboxId =
888                         appid + DPL::String(L".") + ConfigInfo->m_liveboxId;
889                     liveBox.setLiveboxId(liveboxId);
890                 }
891             } else {
892                 DPL::String liveboxId =
893                     appid + DPL::String(L".") + ConfigInfo->m_liveboxId;
894                 liveBox.setLiveboxId(liveboxId);
895             }
896         }
897
898         if (ConfigInfo->m_primary != L"") {
899             liveBox.setPrimary(ConfigInfo->m_primary);
900         }
901
902         if (ConfigInfo->m_updatePeriod != L"") {
903             liveBox.setUpdatePeriod(ConfigInfo->m_updatePeriod);
904         }
905
906         if (ConfigInfo->m_label != L"") {
907             liveBox.setLabel(ConfigInfo->m_label);
908         }
909
910         DPL::String defaultLocale
911             = DPL::FromUTF8String(
912                     m_context.locations->getPackageInstallationDir())
913                 + DPL::String(L"/res/wgt/");
914
915         if (ConfigInfo->m_icon != L"") {
916             liveBox.setIcon(defaultLocale + ConfigInfo->m_icon);
917         }
918
919         if (ConfigInfo->m_boxInfo.m_boxSrc.empty() ||
920             ConfigInfo->m_boxInfo.m_boxSize.empty())
921         {
922             LogInfo("Widget doesn't contain box");
923             return;
924         } else {
925             BoxInfoType box;
926             if (!ConfigInfo->m_boxInfo.m_boxSrc.empty()) {
927                 if ((0 == ConfigInfo->m_boxInfo.m_boxSrc.compare(0, 4, L"http"))
928                     || (0 ==
929                         ConfigInfo->m_boxInfo.m_boxSrc.compare(0, 5, L"https")))
930                 {
931                     box.boxSrc = ConfigInfo->m_boxInfo.m_boxSrc;
932                 } else {
933                     box.boxSrc = defaultLocale + ConfigInfo->m_boxInfo.m_boxSrc;
934                 }
935             }
936
937             if (ConfigInfo->m_boxInfo.m_boxMouseEvent == L"true") {
938                 box.boxMouseEvent = ConfigInfo->m_boxInfo.m_boxMouseEvent;
939             } else {
940                 box.boxMouseEvent = L"false";
941             }
942
943             if (ConfigInfo->m_boxInfo.m_boxTouchEffect == L"true") {
944                 box.boxTouchEffect = ConfigInfo->m_boxInfo.m_boxTouchEffect;
945             } else {
946                 box.boxTouchEffect= L"false";
947             }
948
949             std::list<std::pair<DPL::String, DPL::String> > BoxSizeList
950                 = ConfigInfo->m_boxInfo.m_boxSize;
951             FOREACH(im, BoxSizeList) {
952                 std::pair<DPL::String, DPL::String> boxSize = *im;
953                 if (!boxSize.second.empty()) {
954                     boxSize.second = defaultLocale + boxSize.second;
955                 }
956                 box.boxSize.push_back(boxSize);
957             }
958
959             if (!ConfigInfo->m_boxInfo.m_pdSrc.empty()
960                 && !ConfigInfo->m_boxInfo.m_pdWidth.empty()
961                 && !ConfigInfo->m_boxInfo.m_pdHeight.empty())
962             {
963                 if ((0 == ConfigInfo->m_boxInfo.m_pdSrc.compare(0, 4, L"http"))
964                     || (0 == ConfigInfo->m_boxInfo.m_pdSrc.compare(0, 5, L"https")))
965                 {
966                     box.pdSrc = ConfigInfo->m_boxInfo.m_pdSrc;
967                 } else {
968                     box.pdSrc = defaultLocale + ConfigInfo->m_boxInfo.m_pdSrc;
969                 }
970                 box.pdWidth = ConfigInfo->m_boxInfo.m_pdWidth;
971                 box.pdHeight = ConfigInfo->m_boxInfo.m_pdHeight;
972             }
973             liveBox.setBox(box);
974         }
975         manifest.addLivebox(liveBox);
976     }
977 }
978
979 void TaskManifestFile::setAccount(Manifest& manifest)
980 {
981     WrtDB::ConfigParserData::AccountProvider account =
982         m_context.widgetConfig.configInfo.accountProvider;
983
984     AccountProviderType provider;
985
986     if (account.m_iconSet.empty()) {
987         LogInfo("Widget doesn't contain Account");
988         return;
989     }
990     if (account.m_multiAccountSupport) {
991         provider.multiAccount = L"ture";
992     } else {
993         provider.multiAccount = L"false";
994     }
995     provider.appid = m_context.widgetConfig.tzAppid;
996
997     FOREACH(it, account.m_iconSet) {
998         std::pair<DPL::String, DPL::String> icon;
999
1000         if (it->first == ConfigParserData::IconSectionType::DefaultIcon) {
1001             icon.first = L"account";
1002         } else if (it->first == ConfigParserData::IconSectionType::SmallIcon) {
1003             icon.first = L"account-small";
1004         }
1005         icon.second = it->second;
1006
1007         provider.icon.push_back(icon);
1008     }
1009
1010     FOREACH(it, account.m_displayNameSet) {
1011         provider.name.push_back(LabelType(it->second, it->first));
1012     }
1013
1014     FOREACH(it, account.m_capabilityList) {
1015         provider.capability.push_back(*it);
1016     }
1017
1018     Account accountInfo;
1019     accountInfo.addAccountProvider(provider);
1020     manifest.addAccount(accountInfo);
1021 }
1022
1023 void TaskManifestFile::setPrivilege(Manifest& manifest)
1024 {
1025     WrtDB::ConfigParserData::PrivilegeList privileges =
1026         m_context.widgetConfig.configInfo.privilegeList;
1027
1028     PrivilegeType privilege;
1029
1030     FOREACH(it, privileges)
1031     {
1032         privilege.addPrivilegeName(it->name);
1033     }
1034
1035     manifest.addPrivileges(privilege);
1036 }
1037
1038 } //namespace WidgetInstall
1039 } //namespace Jobs