Update wrt-installer_0.0.54
[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
39 TaskPrepareFiles::TaskPrepareFiles(InstallerContext &installerContext) :
40     DPL::TaskDecl<TaskPrepareFiles>(this),
41     m_installerContext(installerContext)
42 {
43     // Install steps
44     AddStep(&TaskPrepareFiles::StepCopyFiles);
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 = m_installerContext.locations->getTemporaryPackageDir() + '/' + filename;
60     LogDebug("source " << source);
61     LogDebug("target " << target);
62
63     Try
64     {
65         DPL::FileInput input(source);
66         DPL::FileOutput output(target);
67         DPL::Copy(&input, &output);
68     }
69     Catch(DPL::FileInput::Exception::Base)
70     {
71         LogError("File input error");
72         // Error while opening or closing source file
73         ReThrowMsg(Exceptions::CopyIconFailed, source);
74     }
75     Catch(DPL::FileOutput::Exception::Base)
76     {
77         LogError("File output error");
78         // Error while opening or closing target file
79         ReThrowMsg(Exceptions::CopyIconFailed, target);
80     }
81     Catch(DPL::CopyFailed)
82     {
83         LogError("File copy error");
84         // Error while copying
85         ReThrowMsg(Exceptions::CopyIconFailed, target);
86     }
87 }
88
89 void TaskPrepareFiles::StepCopyFiles()
90 {
91     CopyFile(m_installerContext.locations->getWidgetSource());
92
93     size_t last = m_installerContext.locations->getWidgetSource().find_last_of("\\/");
94     std::string sourceDir = "";
95     if (last != std::string::npos) {
96         sourceDir = m_installerContext.locations->getWidgetSource().substr(0,last+1);
97     }
98
99     LogDebug("Icons copy...");
100     FOREACH(it, m_installerContext.widgetConfig.configInfo.iconsList) {
101         std::ostringstream os;
102         LogDebug("Coping: " << sourceDir << DPL::ToUTF8String(it->src));
103         os << sourceDir << DPL::ToUTF8String(it->src);
104         CopyFile(os.str());
105     }
106 }
107
108 } // namespace WidgetInstall
109 } // namespace Jobs