[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_prepare_files.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_generate_config.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include "task_prepare_files.h"
23 #include <memory>
24 #include <string>
25 #include <iostream>
26 #include <dpl/file_output.h>
27 #include <dpl/file_input.h>
28 #include <dpl/copy.h>
29 #include <dpl/log/log.h>
30 #include <dpl/wrt-dao-ro/feature_dao_read_only.h>
31 #include <dpl/foreach.h>
32 #include <widget_install/widget_install_context.h>
33 #include <widget_install_errors.h>
34 #include <task_commons.h>
35
36 namespace Jobs {
37 namespace WidgetInstall {
38 TaskPrepareFiles::TaskPrepareFiles(InstallerContext &installerContext) :
39     DPL::TaskDecl<TaskPrepareFiles>(this),
40     m_installerContext(installerContext)
41 {
42     AddStep(&TaskPrepareFiles::StartStep);
43     AddStep(&TaskPrepareFiles::StepCopyFiles);
44     AddStep(&TaskPrepareFiles::EndStep);
45 }
46
47 void TaskPrepareFiles::CopyFile(const std::string& source)
48 {
49     if (source.empty()) {
50         LogWarning("No source file specified");
51         return;
52     }
53
54     std::string filename = source;
55     size_t last = source.find_last_of("\\/");
56     if (last != std::string::npos) {
57         filename = source.substr(last + 1);
58     }
59     std::string target =
60         m_installerContext.locations->getTemporaryPackageDir() + '/' +
61         filename;
62     LogDebug("source " << source);
63     LogDebug("target " << target);
64
65     Try
66     {
67         DPL::FileInput input(source);
68         DPL::FileOutput output(target);
69         DPL::Copy(&input, &output);
70     }
71     Catch(DPL::FileInput::Exception::Base)
72     {
73         LogError("File input error");
74         // Error while opening or closing source file
75         ReThrowMsg(Exceptions::CopyIconFailed, source);
76     }
77     Catch(DPL::FileOutput::Exception::Base)
78     {
79         LogError("File output error");
80         // Error while opening or closing target file
81         ReThrowMsg(Exceptions::CopyIconFailed, target);
82     }
83     Catch(DPL::CopyFailed)
84     {
85         LogError("File copy error");
86         // Error while copying
87         ReThrowMsg(Exceptions::CopyIconFailed, target);
88     }
89 }
90
91 void TaskPrepareFiles::StepCopyFiles()
92 {
93     CopyFile(m_installerContext.locations->getWidgetSource());
94
95     size_t last = m_installerContext.locations->getWidgetSource().find_last_of(
96             "\\/");
97     std::string sourceDir = "";
98     if (last != std::string::npos) {
99         sourceDir = m_installerContext.locations->getWidgetSource().substr(
100                 0,
101                 last
102                 + 1);
103     }
104
105     LogDebug("Icons copy...");
106     FOREACH(it, m_installerContext.widgetConfig.configInfo.iconsList) {
107         std::ostringstream os;
108         LogDebug("Coping: " << sourceDir << DPL::ToUTF8String(it->src));
109         os << sourceDir << DPL::ToUTF8String(it->src);
110         CopyFile(os.str());
111     }
112 }
113
114 void TaskPrepareFiles::StartStep()
115 {
116     LogDebug("--------- <TaskPrepareFiles> : START ----------");
117 }
118
119 void TaskPrepareFiles::EndStep()
120 {
121     LogDebug("--------- <TaskPrepareFiles> : END ----------");
122 }
123 } // namespace WidgetInstall
124 } // namespace Jobs