Update wrt-installer_0.0.54
[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/file_utils.h>
38 #include <dpl/utils/wrt_utility.h>
39 #include <widget_install/job_widget_install.h>
40 #include <widget_install/widget_install_context.h>
41 #include <widget_install/widget_install_errors.h>
42
43 using namespace WrtDB;
44
45 namespace Jobs {
46 namespace WidgetInstall {
47 TaskRecovery::TaskRecovery(InstallerContext& context) :
48     DPL::TaskDecl<TaskRecovery>(this),
49     m_context(context)
50 {
51     AddStep(&TaskRecovery::StepCreateCheckFile);
52 }
53
54 void TaskRecovery::StepCreateCheckFile()
55 {
56     LogInfo("Step: create information file for recovery");
57
58     size_t pos = m_context.locations->getWidgetSource().rfind("/");
59     std::ostringstream infoPath;
60     infoPath << GlobalConfig::GetTempInstallInfoPath();
61     infoPath << "/";
62     infoPath << m_context.locations->getWidgetSource().substr(pos+1);
63
64     FILE *temp = fopen(infoPath.str().c_str(), "w+");
65     if (temp != NULL) {
66         fputs(m_context.locations->getWidgetSource().c_str(), temp);
67         fsync(temp->_fileno);
68         fclose(temp);
69
70         m_context.installInfo = infoPath.str();
71
72         LogDebug("Create file : " << m_context.installInfo);
73         m_context.job->UpdateProgress(
74                 InstallerContext::INSTALL_LINK_DEPENDS_DIRECTORY,
75                 "depends directory linked."
76                 );
77     } else {
78         ThrowMsg(Exceptions::InternalError, "Fail to create file for recovery.");
79     }
80
81     m_context.job->SetProgressFlag(true);
82     m_context.job->UpdateProgress(
83         InstallerContext::INSTALL_CHECK_FILE,
84         "Create information file for recovery");
85 }
86 } //namespace WidgetInstall
87 } //namespace Jobs