[Release] wrt-installer_0.1.9
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_uninstall_ospsvc.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_uninstall_ospsvc.cpp
18  * @author  Soyoung Kim(sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Header file for widget uninstall task to uninstall ospsvc
21  */
22 #include <dpl/sstream.h>
23 #include <dpl/utils/bash_utils.h>
24 #include <widget_uninstall/task_uninstall_ospsvc.h>
25 #include <widget_uninstall/job_widget_uninstall.h>
26 #include <widget_uninstall/uninstaller_context.h>
27 #include <widget_uninstall/widget_uninstall_errors.h>
28 #include <dpl/wrt-dao-ro/global_config.h>
29 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
30
31 using namespace WrtDB;
32
33 namespace {
34 const int MAX_BUF_SIZE = 128;
35 const char* OSP_INSTALL_STR = "/usr/etc/package-manager/backend/tpk -uv ";
36 }
37
38 namespace Jobs {
39 namespace WidgetUninstall {
40 TaskUninstallOspsvc::TaskUninstallOspsvc(UninstallerContext& context) :
41     DPL::TaskDecl<TaskUninstallOspsvc>(this),
42     m_context(context)
43 {
44     AddStep(&TaskUninstallOspsvc::StepUninstallOspsvc);
45 }
46
47 TaskUninstallOspsvc::~TaskUninstallOspsvc()
48 {}
49
50 void TaskUninstallOspsvc::StepUninstallOspsvc()
51 {
52     LogInfo("Step : Uninstall Osp service ");
53
54     std::ostringstream commStr;
55     commStr << OSP_INSTALL_STR << BashUtils::escape_arg(m_context.tzPkgid);
56     LogDebug("osp uninstall command : " << commStr.str());
57
58     char readBuf[MAX_BUF_SIZE];
59     FILE *fd;
60     fd = popen(commStr.str().c_str(), "r");
61     if (NULL == fd) {
62         LogError("Failed to uninstalltion osp service");
63         ThrowMsg(Exceptions::UninstallOspSvcFailed,
64                  "Error occurs during\
65                 uninstall osp service");
66     }
67
68     if(fgets(readBuf, MAX_BUF_SIZE, fd) == NULL)
69     {
70         LogError("Failed to uninstalltion osp service\
71                         Inability of reading file.");
72         ThrowMsg(Exceptions::UninstallOspSvcFailed,
73                 "Error occurs during\
74                 uninstall osp service");
75     }
76     LogDebug("return value : " << readBuf);
77
78     int result = atoi(readBuf);
79     if (0 != result) {
80         ThrowMsg(Exceptions::UninstallOspSvcFailed,
81                  "Error occurs during\
82                 install osp service");
83     }
84
85     pclose(fd);
86
87     LogInfo("Widget Can be uninstalled. Pkgname : " << m_context.tzPkgid);
88     m_context.job->UpdateProgress(UninstallerContext::UNINSTALL_REMOVE_OSPSVC,
89                                   "Uninstall OSP service finished");
90 }
91 } //namespace WidgetUninstall
92 } //namespace Jobs