2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file job_widget_install.h
18 * @author Radoslaw Wicik r.wicik@samsung.com
19 * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
21 * @brief Implementation file for main installer task
23 #ifndef WRT_SRC_INSTALLER_CORE_JOB_JOB_WIDGET_INSTALL_H_
24 #define WRT_SRC_INSTALLER_CORE_JOB_JOB_WIDGET_INSTALL_H_
26 #include <dpl/optional.h>
27 #include <dpl/string.h>
30 #include <dpl/utils/widget_version.h>
31 #include <widget_install/widget_install_context.h>
32 #include <widget_install/widget_update_info.h>
33 #include <dpl/wrt-dao-ro/config_parser_data.h>
34 #include "widget_installer_struct.h"
36 using namespace Jobs::Exceptions;
39 namespace WidgetInstall {
40 enum class ConfigureResult
48 Failed_AlreadyInstalled,
53 class JobWidgetInstall :
55 public JobProgressBase<InstallerContext::InstallStep,
56 InstallerContext::INSTALL_END>,
57 public JobContextBase<WidgetInstallationStruct> //TODO typedef
60 InstallerContext m_installerContext;
62 //TODO move it to base class of all jobs -> make it base template class??
63 Jobs::Exceptions::Type m_exceptionCaught;
64 std::string m_exceptionMessage;
65 WidgetUpdateInfo m_widgetUpdateInfo;
66 bool m_needEncryption;
69 ConfigureResult ConfigureInstallation(const std::string &widgetSource,
70 const WrtDB::ConfigParserData
72 const std::string &tempPath);
73 static WrtDB::ConfigParserData getWidgetDataFromXML(
74 const std::string &widgetSource,
75 const std::string &tempPath,
76 WrtDB::PackagingType pkgType,
78 static WidgetUpdateInfo detectWidgetUpdate(
79 const WrtDB::ConfigParserData &configInfo,
80 const WrtDB::WidgetType appType,
81 const WrtDB::TizenAppId &tizenId);
82 WidgetUpdateMode::Type CalcWidgetUpdatePolicy(
83 const OptionalWidgetVersion &existingVersion,
84 const OptionalWidgetVersion &incomingVersion) const;
85 void setTizenId(const WrtDB::ConfigParserData &configInfo);
86 void displayWidgetInfo();
87 void configureWidgetLocation(const std::string & widgetPath,
88 const std::string &tempPath);
90 WrtDB::PackagingType checkPackageType(
91 const std::string &widgetSource,
92 const std::string &tempPath);
93 bool detectResourceEncryption(const WrtDB::ConfigParserData &configData);
94 void setInstallLocationType(const WrtDB::ConfigParserData
96 bool isDRMWidget(std::string widgetPath);
97 bool DecryptDRMWidget(std::string widgetPath, std::string destPath);
98 ConfigureResult PrePareInstallation(const std::string &widgetPath);
99 ConfigureResult checkWidgetUpdate(const WidgetUpdateInfo &update);
100 void setApplicationType(const WrtDB::ConfigParserData &configInfo);
104 * @brief Automaticaly sets installation process
106 JobWidgetInstall(std::string const & widgetPath,
107 const WidgetInstallationStruct &installerStruct);
111 void SendFinishedSuccess();
112 void SendFinishedFailure();
113 void SendProgressIconPath(const std::string &path);
114 void SaveExceptionData(const Jobs::JobExceptionBase&);
116 } //namespace WidgetInstall
119 #endif // WRT_SRC_INSTALLER_CORE_JOB_JOB_WIDGET_INSTALL_H_