Rename invalid WRT_SMACK_LABEL macro to WRT_SMACK_ENABLED
[platform/framework/web/wrt-installer.git] / src / jobs / widget_install / task_install_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_install_ospsvc.cpp
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer task  install osp service
21  */
22 #include "task_install_ospsvc.h"
23
24 #include <unistd.h>
25 #include <string>
26
27 #include <pkgmgr/pkgmgr_parser.h>
28 #include <pkgmgr-info.h>
29 #include <fstream>
30 #include <dpl/errno_string.h>
31 #include <dpl/foreach.h>
32 #include <dpl/wrt-dao-ro/global_config.h>
33 #include <dpl/utils/bash_utils.h>
34
35 #include <widget_install/job_widget_install.h>
36 #include <widget_install/widget_install_context.h>
37 #include <widget_install/widget_install_errors.h>
38
39 #include <installer_log.h>
40
41 using namespace WrtDB;
42
43 namespace {
44 const int MAX_BUF_SIZE = 128;
45 const char* OSP_INSTALL_STR = "/etc/package-manager/backend/tpk -iv ";
46 }
47
48 namespace Jobs {
49 namespace WidgetInstall {
50 TaskInstallOspsvc::TaskInstallOspsvc(InstallerContext& context) :
51     DPL::TaskDecl<TaskInstallOspsvc>(this),
52     m_context(context)
53 {
54     AddStep(&TaskInstallOspsvc::StartStep);
55     AddStep(&TaskInstallOspsvc::StepInstallOspService);
56     AddStep(&TaskInstallOspsvc::EndStep);
57 }
58
59 void TaskInstallOspsvc::StepInstallOspService()
60 {
61     _D("Step: installation for osp service");
62
63     std::ostringstream commStr;
64     commStr << OSP_INSTALL_STR << BashUtils::escape_arg(
65         m_context.locations->getPackageInstallationDir());
66     //commStr << " 2>&1";
67     _D("osp install command : %s", commStr.str().c_str());
68
69     char readBuf[MAX_BUF_SIZE];
70     FILE *fd;
71     fd = popen(commStr.str().c_str(), "r");
72     if (NULL == fd) {
73         _E("Failed to installtion osp service");
74         ThrowMsg(Exceptions::InstallOspsvcFailed,
75                  "Error occurs during\
76                 install osp service");
77     }
78
79     if (fgets(readBuf, MAX_BUF_SIZE, fd) == NULL)
80     {
81         _E("Failed to installtion osp service.\
82                 Inability of reading file.");
83         ThrowMsg(Exceptions::InstallOspsvcFailed,
84                 "Error occurs during\
85                 install osp service");
86     }
87     _D("return value : %s", readBuf);
88
89     int result = atoi(readBuf);
90     if (0 != result) {
91         ThrowMsg(Exceptions::InstallOspsvcFailed,
92                  "Error occurs during\
93                 install osp service");
94     }
95
96     pclose(fd);
97 }
98
99 void TaskInstallOspsvc::StartStep()
100 {
101     _D("--------- <TaskInstallOspsvc> : START ----------");
102 }
103
104 void TaskInstallOspsvc::EndStep()
105 {
106     m_context.job->UpdateProgress(
107         InstallerContext::INSTALL_INSTALL_OSPSVC,
108         "Installed Osp servcie");
109
110     _D("--------- <TaskInstallOspsvc> : END ----------");
111 }
112 } //namespace WidgetInstall
113 } //namespace Jobs