[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_recovery.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_recovery.cpp
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer task recovery
21  */
22 #include "task_recovery.h"
23
24 #include <pwd.h>
25 #include <grp.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <unistd.h>
29 #include <string>
30 #include <ail.h>
31
32 #include <dpl/log/log.h>
33 #include <dpl/errno_string.h>
34 #include <dpl/foreach.h>
35
36 #include <dpl/wrt-dao-ro/widget_config.h>
37 #include <dpl/utils/wrt_utility.h>
38 #include <widget_install/job_widget_install.h>
39 #include <widget_install/widget_install_context.h>
40 #include <widget_install/widget_install_errors.h>
41
42 using namespace WrtDB;
43
44 namespace Jobs {
45 namespace WidgetInstall {
46 TaskRecovery::TaskRecovery(InstallerContext& context) :
47     DPL::TaskDecl<TaskRecovery>(this),
48     m_context(context)
49 {
50     AddStep(&TaskRecovery::StartStep);
51     AddStep(&TaskRecovery::StepCreateCheckFile);
52     AddStep(&TaskRecovery::EndStep);
53 }
54
55 void TaskRecovery::StartStep()
56 {
57     LogDebug("--------- <TaskRecovery> : START ----------");
58 }
59
60 void TaskRecovery::EndStep()
61 {
62     m_context.job->UpdateProgress(
63         InstallerContext::INSTALL_CHECK_FILE,
64         "Create information file for recovery");
65
66     LogDebug("--------- <TaskRecovery> : END ----------");
67 }
68
69 void TaskRecovery::StepCreateCheckFile()
70 {
71     LogDebug("Step: create information file for recovery");
72
73     size_t pos = m_context.locations->getWidgetSource().rfind("/");
74     std::ostringstream infoPath;
75     infoPath << GlobalConfig::GetTempInstallInfoPath();
76     infoPath << "/";
77     infoPath << m_context.locations->getWidgetSource().substr(pos + 1);
78
79     FILE *temp = fopen(infoPath.str().c_str(), "w+");
80     if (temp != NULL) {
81         fputs(m_context.locations->getWidgetSource().c_str(), temp);
82         int ret = fsync(temp->_fileno);
83         fclose(temp);
84         if (-1 == ret) {
85             ThrowMsg(Exceptions::FileOperationFailed, "Fail to fsync for recovery.");
86         }
87
88         m_context.installInfo = infoPath.str();
89
90         LogDebug("Create file : " << m_context.installInfo);
91     } else {
92         ThrowMsg(Exceptions::FileOperationFailed, "Fail to create file for recovery.");
93     }
94 }
95 } //namespace WidgetInstall
96 } //namespace Jobs