[Release] wrt-installer_0.1.9
[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 <dpl/log/log.h>
28 #include <dpl/errno_string.h>
29 #include <dpl/foreach.h>
30 #include <dpl/wrt-dao-ro/global_config.h>
31 #include <dpl/utils/bash_utils.h>
32
33 #include <widget_install/job_widget_install.h>
34 #include <widget_install/widget_install_context.h>
35 #include <widget_install/widget_install_errors.h>
36
37 using namespace WrtDB;
38
39 namespace {
40 const int MAX_BUF_SIZE = 128;
41 const char* OSP_INSTALL_STR = "/usr/etc/package-manager/backend/tpk -iv ";
42 }
43
44 namespace Jobs {
45 namespace WidgetInstall {
46 TaskInstallOspsvc::TaskInstallOspsvc(InstallerContext& context) :
47     DPL::TaskDecl<TaskInstallOspsvc>(this),
48     m_context(context)
49 {
50     AddStep(&TaskInstallOspsvc::StepInstallOspService);
51 }
52
53 void TaskInstallOspsvc::StepInstallOspService()
54 {
55     LogInfo("Step: installation for osp service");
56
57     std::ostringstream commStr;
58     commStr << OSP_INSTALL_STR << BashUtils::escape_arg(
59         m_context.locations->getPackageInstallationDir());
60     //commStr << " 2>&1";
61     LogDebug("osp install command : " << commStr.str());
62
63     char readBuf[MAX_BUF_SIZE];
64     FILE *fd;
65     fd = popen(commStr.str().c_str(), "r");
66     if (NULL == fd) {
67         LogError("Failed to installtion osp service");
68         ThrowMsg(Exceptions::InstallOspsvcFailed,
69                  "Error occurs during\
70                 install osp service");
71     }
72
73     if (fgets(readBuf, MAX_BUF_SIZE, fd) == NULL)
74     {
75         LogError("Failed to installtion osp service.\
76                 Inability of reading file.");
77         ThrowMsg(Exceptions::InstallOspsvcFailed,
78                 "Error occurs during\
79                 install osp service");
80     }
81     LogDebug("return value : " << readBuf);
82
83     int result = atoi(readBuf);
84     if (0 != result) {
85         ThrowMsg(Exceptions::InstallOspsvcFailed,
86                  "Error occurs during\
87                 install osp service");
88     }
89
90     pclose(fd);
91
92     m_context.job->UpdateProgress(
93         InstallerContext::INSTALL_INSTALL_OSPSVC,
94         "Installed Osp servcie");
95 }
96 } //namespace WidgetInstall
97 } //namespace Jobs