1b922dbbd1b0f9782e6ce398b6fdceb76942e86a
[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::StepCreateCheckFile);
51 }
52
53 void TaskRecovery::StepCreateCheckFile()
54 {
55     LogInfo("Step: create information file for recovery");
56
57     size_t pos = m_context.locations->getWidgetSource().rfind("/");
58     std::ostringstream infoPath;
59     infoPath << GlobalConfig::GetTempInstallInfoPath();
60     infoPath << "/";
61     infoPath << m_context.locations->getWidgetSource().substr(pos+1);
62
63     FILE *temp = fopen(infoPath.str().c_str(), "w+");
64     if (temp != NULL) {
65         fputs(m_context.locations->getWidgetSource().c_str(), temp);
66         if (-1 == fsync(temp->_fileno)) {
67             fclose(temp);
68             ThrowMsg(Exceptions::InternalError, "Fail to fsync for recovery.");
69         }
70         fclose(temp);
71
72         m_context.installInfo = infoPath.str();
73
74         LogDebug("Create file : " << m_context.installInfo);
75         m_context.job->UpdateProgress(
76                 InstallerContext::INSTALL_LINK_DEPENDS_DIRECTORY,
77                 "depends directory linked."
78                 );
79     } else {
80         ThrowMsg(Exceptions::InternalError, "Fail to create file for recovery.");
81     }
82
83     m_context.job->SetProgressFlag(true);
84     m_context.job->UpdateProgress(
85         InstallerContext::INSTALL_CHECK_FILE,
86         "Create information file for recovery");
87 }
88 } //namespace WidgetInstall
89 } //namespace Jobs