Support for GCC 4.7
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_remove_files.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_remove_files.cpp
18  * @author  Lukasz Wrzosek(l.wrzosek@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for uninstaller task for removing widget files
21  */
22
23 #include <unistd.h>
24 #include <widget_uninstall/task_remove_files.h>
25 #include <widget_uninstall/job_widget_uninstall.h>
26 #include <widget_uninstall/uninstaller_context.h>
27 #include <dpl/wrt-dao-rw/widget_dao.h>
28 #include <dpl/wrt-dao-ro/widget_config.h>
29 #include <dpl/wrt-dao-ro/vconf_config.h>
30 #include <dpl/assert.h>
31 #include <dpl/utils/wrt_utility.h>
32 #include <ail.h>
33 #include <pkgmgr/pkgmgr_parser.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <widget_install_to_external.h>
37 #include <vconf.h>
38
39 namespace Jobs {
40 namespace WidgetUninstall {
41 using namespace WrtDB;
42
43 namespace {
44 const char * const VCONF_KEY_PREFIX = "file/private/";
45 }
46
47 TaskRemoveFiles::TaskRemoveFiles(UninstallerContext& context) :
48     DPL::TaskDecl<TaskRemoveFiles>(this),
49     m_context(context)
50 {
51     if (!m_context.isExternalWidget) {
52         AddStep(&TaskRemoveFiles::StepRemoveInstallationDirectory);
53     } else {
54         AddStep(&TaskRemoveFiles::StepRemoveExternalWidget);
55     }
56     //AddStep(&TaskRemoveFiles::StepRemoveDesktop);
57     AddStep(&TaskRemoveFiles::StepRemoveManifest);
58     AddStep(&TaskRemoveFiles::StepRemoveExternalLocations);
59     AddStep(&TaskRemoveFiles::StepRemoveVconf);
60     AddStep(&TaskRemoveFiles::StepRemoveFinished);
61 }
62
63 TaskRemoveFiles::~TaskRemoveFiles()
64 {}
65
66 void TaskRemoveFiles::StepRemoveInstallationDirectory()
67 {
68     LogInfo("StepRemoveInstallationDirectory started");
69
70     m_context.removeStarted = true;
71     std::string widgetDir =
72         m_context.locations->getPackageInstallationDir();
73     if (!WrtUtilRemove(widgetDir)) {
74         LogWarning("Removing widget installation directory failed");
75     }
76     std::string dataDir = m_context.locations->getUserDataRootDir();
77     if (!WrtUtilRemove(dataDir)) {
78         LogWarning(dataDir + " is already removed");
79     }
80     m_context.job->UpdateProgress(
81         UninstallerContext::UNINSTALL_REMOVE_WIDGETDIR,
82         "Widget INstallation Directory Removal Finished");
83 }
84
85 void TaskRemoveFiles::StepRemoveFinished()
86 {
87     LogInfo("StepRemoveFinished finished");
88
89     m_context.job->UpdateProgress(
90         UninstallerContext::UNINSTALL_REMOVE_FINISHED,
91         "Widget remove steps Finished");
92 }
93
94 void TaskRemoveFiles::StepRemoveDesktop()
95 {
96     std::ostringstream desktopFile;
97
98     desktopFile << GlobalConfig::GetUserWidgetDesktopPath() << "/";
99     desktopFile << m_context.tzAppid << ".desktop";
100
101     unlink(desktopFile.str().c_str());
102
103     ail_appinfo_h ai = NULL;
104     ail_error_e ret;
105
106     const char* package = m_context.tzAppid.c_str();
107     LogDebug("ail delete : " << package);
108
109     ret = ail_package_get_appinfo(package, &ai);
110     if (ai) {
111         ail_package_destroy_appinfo(ai);
112     }
113
114     if (AIL_ERROR_OK == ret) {
115         if (0 > ail_desktop_remove(package)) {
116             LogWarning("Failed to remove ail information : " << package);
117         }
118     }
119
120     m_context.job->UpdateProgress(
121         UninstallerContext::UNINSTALL_REMOVE_DESKTOP,
122         "Widget remove desktop Finished");
123 }
124
125 void TaskRemoveFiles::StepRemoveManifest()
126 {
127     std::ostringstream manifest_name;
128     manifest_name << m_context.tzPkgid << ".xml";
129     std::ostringstream destFile;
130     destFile << "/opt/share/packages" << "/"; //TODO constant with path
131     destFile << manifest_name.str();
132     int ret1 = pkgmgr_parser_parse_manifest_for_uninstallation(
133             destFile.str().c_str(), NULL);
134     int ret2 = unlink(destFile.str().c_str());
135     if (ret1 != 0) {
136         LogWarning("Manifest file failed to parse for uninstallation");
137     }
138     if (ret2 != 0) {
139         LogWarning("No manifest file found: " << destFile.str());
140     } else {
141         LogDebug("Manifest file removed: " << destFile.str());
142     }
143 }
144
145 void TaskRemoveFiles::StepRemoveExternalLocations()
146 {
147     WidgetDAO dao(DPL::FromUTF8String(m_context.tzAppid));
148     LogDebug("Removing external locations:");
149     WrtDB::ExternalLocationList externalPaths = dao.getWidgetExternalLocations();
150     FOREACH(path, externalPaths)
151     {
152         if (WrtUtilFileExists(*path)) {
153             LogDebug("  -> " << *path);
154             int ret = remove(path->c_str());
155             if (ret != 0) {
156                 LogError(
157                     "Failed to remove the file: " << path->c_str() <<
158                     " with error: " << strerror(errno));
159             }
160         } else if (WrtUtilDirExists(*path)) {
161             LogDebug("  -> " << *path);
162             if (!WrtUtilRemove(*path)) {
163                 Throw(
164                     Jobs::WidgetUninstall::TaskRemoveFiles::Exception::
165                         RemoveFilesFailed);
166             }
167         } else {
168             LogWarning("  -> " << *path << "(no such a path)");
169         }
170     }
171     dao.unregisterAllExternalLocations();
172 }
173
174 void TaskRemoveFiles::StepRemoveVconf()
175 {
176     std::string key =
177         WrtDB::VconfConfig::GetVconfKeyRootPath(DPL::FromUTF8String(m_context.
178                                                                         tzAppid));
179     if (vconf_unset_recursive(key.c_str())) {
180         LogError("Fail to unset vconf file");
181     } else {
182         LogDebug("vconf file is removed");
183     }
184 }
185
186 void TaskRemoveFiles::StepRemoveExternalWidget()
187 {
188     Try {
189         WidgetInstallToExtSingleton::Instance().initialize(m_context.tzPkgid);
190         WidgetInstallToExtSingleton::Instance().uninstallation();
191         WidgetInstallToExtSingleton::Instance().deinitialize();
192     }
193     Catch(WidgetInstallToExt::Exception::ErrorInstallToExt)
194     {
195         Throw(
196             Jobs::WidgetUninstall::TaskRemoveFiles::Exception::
197                 RemoveFilesFailed);
198     }
199 }
200 } //namespace WidgetUninstall
201 } //namespace Jobs