WidgetHandle removal - part 2. Task order change
[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
51 void TaskUninstallOspsvc::StepUninstallOspsvc()
52 {
53     LogInfo("Step : Uninstall Osp service ");
54
55     std::ostringstream commStr;
56     commStr << OSP_INSTALL_STR << BashUtils::escape_arg(m_context.pkgname);
57     LogDebug("osp uninstall command : " << commStr.str());
58
59     char readBuf[MAX_BUF_SIZE];
60     FILE *fd;
61     fd = popen(commStr.str().c_str(), "r");
62     if (NULL == fd) {
63         LogError("Failed to uninstalltion osp service");
64         ThrowMsg(Exceptions::UninstallOspSvcFailed, "Error occurs during\
65                 uninstall osp service");
66     }
67     fgets( readBuf, MAX_BUF_SIZE, fd);
68     LogDebug("return value : " << readBuf);
69
70     int result = atoi(readBuf);
71     if (0 != result) {
72         ThrowMsg(Exceptions::UninstallOspSvcFailed, "Error occurs during\
73                 install osp service");
74     }
75
76     pclose(fd);
77     
78     LogInfo("Widget Can be uninstalled. Pkgname : " << m_context.pkgname);
79     m_context.job->UpdateProgress(UninstallerContext::UNINSTALL_REMOVE_OSPSVC,
80                                   "Uninstall OSP service finished");
81 }
82
83 } //namespace WidgetUninstall
84 } //namespace Jobs