Removing warnings reported by cppcheck tool.
[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::InstallationFailed,
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::InternalError, 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(ManifestParsingError, "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(ManifestParsingError, "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
585     manifest.addUiApplication(uiApp);
586     manifest.generate(path);
587     LogDebug("Manifest file serialized");
588 }
589
590 void TaskManifestFile::setWidgetExecPath(UiApplication & uiApp)
591 {
592     uiApp.setExec(DPL::FromASCIIString(m_context.locations->getExecFile()));
593 }
594
595 void TaskManifestFile::setWidgetName(Manifest & manifest, UiApplication & uiApp)
596 {
597     bool defaultNameSaved = false;
598
599     DPL::OptionalString defaultLocale =
600         m_context.widgetConfig.configInfo.defaultlocale;
601     std::pair<DPL::String,
602               WrtDB::ConfigParserData::LocalizedData> defaultLocalizedData;
603     //labels
604     FOREACH(localizedData, m_context.widgetConfig.configInfo.localizedDataSet)
605     {
606         Locale i = localizedData->first;
607         DPL::OptionalString tag = getLangTag(i); // translate en -> en_US etc
608         if (tag.IsNull()) {
609             tag = i;
610         }
611         DPL::OptionalString name = localizedData->second.name;
612         generateWidgetName(manifest, uiApp, tag, name, defaultNameSaved);
613
614         //store default locale localized data
615         if (!!defaultLocale && defaultLocale == i) {
616             defaultLocalizedData = *localizedData;
617         }
618     }
619
620     if (!!defaultLocale && !defaultNameSaved) {
621         DPL::OptionalString name = defaultLocalizedData.second.name;
622         generateWidgetName(manifest,
623                            uiApp,
624                            DPL::OptionalString::Null,
625                            name,
626                            defaultNameSaved);
627     }
628     //appid
629     TizenAppId appid = m_context.widgetConfig.tzAppid;
630     uiApp.setAppid(appid);
631
632     //extraid
633     if (!!m_context.widgetConfig.guid) {
634         uiApp.setExtraid(*m_context.widgetConfig.guid);
635     } else {
636         if (!appid.empty()) {
637             uiApp.setExtraid(DPL::String(L"http://") + appid);
638         }
639     }
640
641     //type
642     uiApp.setType(DPL::FromASCIIString("webapp"));
643     manifest.setType(L"wgt");
644 }
645
646 void TaskManifestFile::generateWidgetName(Manifest & manifest,
647                                           UiApplication &uiApp,
648                                           const DPL::OptionalString& tag,
649                                           DPL::OptionalString name,
650                                           bool & defaultNameSaved)
651 {
652     if (!!name) {
653         if (!!tag) {
654             DPL::String locale =
655                 LanguageTagsProvider::BCP47LanguageTagToLocale(*tag);
656
657             if (!locale.empty()) {
658                 uiApp.addLabel(LabelType(*name, *tag));
659             } else {
660                 uiApp.addLabel(LabelType(*name));
661                 manifest.addLabel(LabelType(*name));
662             }
663         } else {
664             defaultNameSaved = true;
665             uiApp.addLabel(LabelType(*name));
666             manifest.addLabel(LabelType(*name));
667         }
668     }
669 }
670
671 void TaskManifestFile::setWidgetIcons(UiApplication & uiApp)
672 {
673     //TODO this file will need to be updated when user locale preferences
674     //changes.
675     bool defaultIconSaved = false;
676
677     DPL::OptionalString defaultLocale =
678         m_context.widgetConfig.configInfo.defaultlocale;
679
680     std::vector<Locale> generatedLocales;
681     WrtDB::WidgetRegisterInfo::LocalizedIconList & icons =
682         m_context.widgetConfig.localizationData.icons;
683
684     //reversed: last <icon> has highest priority to be writen to manifest if it
685     // has given locale (TODO: why was that working that way?)
686     for (WrtDB::WidgetRegisterInfo::LocalizedIconList::const_reverse_iterator
687          icon = icons.rbegin();
688          icon != icons.rend();
689          ++icon)
690     {
691         FOREACH(locale, icon->availableLocales)
692         {
693             if (std::find(generatedLocales.begin(), generatedLocales.end(),
694                           *locale) != generatedLocales.end())
695             {
696                 LogDebug("Skipping - has that locale - already in manifest");
697                 continue;
698             } else {
699                 generatedLocales.push_back(*locale);
700             }
701
702             DPL::OptionalString tag = getLangTag(*locale); // translate en ->
703                                                            // en_US etc
704             if (tag.IsNull()) {
705                 tag = *locale;
706             }
707
708             generateWidgetIcon(uiApp, tag, *locale, defaultIconSaved);
709         }
710     }
711     if (!!defaultLocale && !defaultIconSaved) {
712         generateWidgetIcon(uiApp, DPL::OptionalString::Null,
713                            DPL::String(),
714                            defaultIconSaved);
715     }
716 }
717
718 void TaskManifestFile::generateWidgetIcon(UiApplication & uiApp,
719                                           const DPL::OptionalString& tag,
720                                           const DPL::String& language,
721                                           bool & defaultIconSaved)
722 {
723     DPL::String locale;
724     if (!!tag) {
725         locale = LanguageTagsProvider::BCP47LanguageTagToLocale(*tag);
726     } else {
727         defaultIconSaved = true;
728     }
729
730     DPL::String iconText;
731     iconText += getIconTargetFilename(language);
732
733     if (!locale.empty()) {
734         uiApp.addIcon(IconType(iconText, locale));
735     } else {
736         uiApp.addIcon(IconType(iconText));
737     }
738     std::ostringstream iconPath;
739     iconPath << GlobalConfig::GetUserWidgetDesktopIconPath() << "/";
740     iconPath << getIconTargetFilename(locale);
741      m_context.job->SendProgressIconPath(iconPath.str());
742 }
743
744 void TaskManifestFile::setWidgetManifest(Manifest & manifest)
745 {
746     manifest.setPackage(m_context.widgetConfig.tzPkgid);
747
748     if (!!m_context.widgetConfig.version) {
749         manifest.setVersion(*m_context.widgetConfig.version);
750     }
751     DPL::String email = (!!m_context.widgetConfig.configInfo.authorEmail ?
752                          *m_context.widgetConfig.configInfo.authorEmail : L"");
753     DPL::String href = (!!m_context.widgetConfig.configInfo.authorHref ?
754                         *m_context.widgetConfig.configInfo.authorHref : L"");
755     DPL::String name = (!!m_context.widgetConfig.configInfo.authorName ?
756                         *m_context.widgetConfig.configInfo.authorName : L"");
757     manifest.addAuthor(Author(email, href, L"", name));
758 }
759
760 void TaskManifestFile::setWidgetOtherInfo(UiApplication & uiApp)
761 {
762     FOREACH(it, m_context.widgetConfig.configInfo.settingsList)
763     {
764         if (!strcmp(DPL::ToUTF8String(it->m_name).c_str(), ST_NODISPLAY)) {
765             if (!strcmp(DPL::ToUTF8String(it->m_value).c_str(), ST_TRUE)) {
766                 uiApp.setNodisplay(true);
767                 uiApp.setTaskmanage(false);
768             } else {
769                 uiApp.setNodisplay(false);
770                 uiApp.setTaskmanage(true);
771             }
772         }
773     }
774     //TODO
775     //There is no "X-TIZEN-PackageType=wgt"
776     //There is no X-TIZEN-PackageID in manifest "X-TIZEN-PackageID=" <<
777     // DPL::ToUTF8String(*widgetID).c_str()
778     //There is no Comment in pkgmgr "Comment=Widget application"
779     //that were in desktop file
780 }
781
782 void TaskManifestFile::setAppServiceInfo(UiApplication & uiApp)
783 {
784     WrtDB::ConfigParserData::ServiceInfoList appServiceList =
785         m_context.widgetConfig.configInfo.appServiceList;
786
787     if (appServiceList.empty()) {
788         LogInfo("Widget doesn't contain application service");
789         return;
790     }
791
792     // x-tizen-svc=http://tizen.org/appcontrol/operation/pick|NULL|image;
793     FOREACH(it, appServiceList) {
794         AppControl appControl;
795         if (!it->m_operation.empty()) {
796             appControl.addOperation(it->m_operation); //TODO: encapsulation?
797         }
798         if (!it->m_scheme.empty()) {
799             appControl.addUri(it->m_scheme);
800         }
801         if (!it->m_mime.empty()) {
802             appControl.addMime(it->m_mime);
803         }
804         uiApp.addAppControl(appControl);
805     }
806 }
807
808 void TaskManifestFile::setAppControlInfo(UiApplication & uiApp)
809 {
810     WrtDB::ConfigParserData::AppControlInfoList appControlList =
811         m_context.widgetConfig.configInfo.appControlList;
812
813     if (appControlList.empty()) {
814         LogInfo("Widget doesn't contain app control");
815         return;
816     }
817
818     // x-tizen-svc=http://tizen.org/appcontrol/operation/pick|NULL|image;
819     FOREACH(it, appControlList) {
820         AppControl appControl;
821         if (!it->m_operation.empty()) {
822             appControl.addOperation(it->m_operation); //TODO: encapsulation?
823         }
824         if (!it->m_uriList.empty()) {
825             FOREACH(uri, it->m_uriList) {
826                 appControl.addUri(*uri);
827             }
828         }
829         if (!it->m_mimeList.empty()) {
830             FOREACH(mime, it->m_mimeList) {
831                 appControl.addMime(*mime);
832             }
833         }
834         uiApp.addAppControl(appControl);
835     }
836 }
837
838 void TaskManifestFile::setAppCategory(UiApplication &uiApp)
839 {
840     WrtDB::ConfigParserData::CategoryList categoryList =
841         m_context.widgetConfig.configInfo.categoryList;
842
843     if (categoryList.empty()) {
844         LogInfo("Widget doesn't contain application category");
845         return;
846     }
847     FOREACH(it, categoryList) {
848         if (!(*it).empty()) {
849             uiApp.addAppCategory(*it);
850         }
851     }
852 }
853
854 void TaskManifestFile::stepAbortParseManifest()
855 {
856     LogError("[Parse Manifest] Abroting....");
857
858     int code = pkgmgr_parser_parse_manifest_for_uninstallation(
859             DPL::ToUTF8String(manifest_file).c_str(), NULL);
860
861     if (0 != code) {
862         LogWarning("Manifest parser error: " << code);
863         ThrowMsg(ManifestParsingError, "Parser returncode: " << code);
864     }
865     int ret = unlink(DPL::ToUTF8String(manifest_file).c_str());
866     if (0 != ret) {
867         LogWarning("No manifest file found: " << manifest_file);
868     }
869 }
870
871 void TaskManifestFile::setLiveBoxInfo(Manifest& manifest)
872 {
873     FOREACH(it, m_context.widgetConfig.configInfo.m_livebox) {
874         LogInfo("setLiveBoxInfo");
875         LiveBoxInfo liveBox;
876         DPL::Optional<WrtDB::ConfigParserData::LiveboxInfo> ConfigInfo = *it;
877         DPL::String appid = m_context.widgetConfig.tzAppid;
878
879         if (ConfigInfo->m_liveboxId != L"") {
880             size_t found = ConfigInfo->m_liveboxId.find_last_of(L".");
881             if (found != std::string::npos) {
882                 if (0 == ConfigInfo->m_liveboxId.compare(0, found, appid)) {
883                     liveBox.setLiveboxId(ConfigInfo->m_liveboxId);
884                 } else {
885                     DPL::String liveboxId =
886                         appid + DPL::String(L".") + ConfigInfo->m_liveboxId;
887                     liveBox.setLiveboxId(liveboxId);
888                 }
889             } else {
890                 DPL::String liveboxId =
891                     appid + DPL::String(L".") + ConfigInfo->m_liveboxId;
892                 liveBox.setLiveboxId(liveboxId);
893             }
894         }
895
896         if (ConfigInfo->m_primary != L"") {
897             liveBox.setPrimary(ConfigInfo->m_primary);
898         }
899
900         if (ConfigInfo->m_autoLaunch == L"true") {
901             liveBox.setAutoLaunch(appid);
902         }
903
904         if (ConfigInfo->m_updatePeriod != L"") {
905             liveBox.setUpdatePeriod(ConfigInfo->m_updatePeriod);
906         }
907
908         if (ConfigInfo->m_label != L"") {
909             liveBox.setLabel(ConfigInfo->m_label);
910         }
911
912         DPL::String defaultLocale
913             = DPL::FromUTF8String(
914                     m_context.locations->getPackageInstallationDir())
915                 + DPL::String(L"/res/wgt/");
916
917         if (ConfigInfo->m_icon != L"") {
918             liveBox.setIcon(defaultLocale + ConfigInfo->m_icon);
919         }
920
921         if (ConfigInfo->m_boxInfo.m_boxSrc.empty() ||
922             ConfigInfo->m_boxInfo.m_boxSize.empty())
923         {
924             LogInfo("Widget doesn't contain box");
925             return;
926         } else {
927             BoxInfoType box;
928             if (!ConfigInfo->m_boxInfo.m_boxSrc.empty()) {
929                 if ((0 == ConfigInfo->m_boxInfo.m_boxSrc.compare(0, 4, L"http"))
930                     || (0 ==
931                         ConfigInfo->m_boxInfo.m_boxSrc.compare(0, 5, L"https")))
932                 {
933                     box.boxSrc = ConfigInfo->m_boxInfo.m_boxSrc;
934                 } else {
935                     box.boxSrc = defaultLocale + ConfigInfo->m_boxInfo.m_boxSrc;
936                 }
937             }
938
939             if (ConfigInfo->m_boxInfo.m_boxMouseEvent == L"true") {
940                 box.boxMouseEvent = ConfigInfo->m_boxInfo.m_boxMouseEvent;
941             } else {
942                 box.boxMouseEvent = L"false";
943             }
944
945             std::list<std::pair<DPL::String, DPL::String> > BoxSizeList
946                 = ConfigInfo->m_boxInfo.m_boxSize;
947             FOREACH(im, BoxSizeList) {
948                 std::pair<DPL::String, DPL::String> boxSize = *im;
949                 if (!boxSize.second.empty()) {
950                     boxSize.second = defaultLocale + boxSize.second;
951                 }
952                 box.boxSize.push_back(boxSize);
953             }
954
955             if (!ConfigInfo->m_boxInfo.m_pdSrc.empty()
956                 && !ConfigInfo->m_boxInfo.m_pdWidth.empty()
957                 && !ConfigInfo->m_boxInfo.m_pdHeight.empty())
958             {
959                 box.pdSrc = defaultLocale + ConfigInfo->m_boxInfo.m_pdSrc;
960                 box.pdWidth = ConfigInfo->m_boxInfo.m_pdWidth;
961                 box.pdHeight = ConfigInfo->m_boxInfo.m_pdHeight;
962             }
963             liveBox.setBox(box);
964         }
965         manifest.addLivebox(liveBox);
966     }
967 }
968 } //namespace WidgetInstall
969 } //namespace Jobs