Update wrt-installer_0.0.51
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_update_files.h
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_update_files.h
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Header file for installer task update files
21  */
22 #ifndef INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UPDATE_FILES_H
23 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UPDATE_FILES_H
24
25 #include <set>
26 #include <dpl/task.h>
27 #include <dpl/string.h>
28
29 class InstallerContext;
30
31 namespace {
32 typedef std::set<std::string> ExistFileList;
33 }
34
35 namespace Jobs {
36 namespace WidgetInstall {
37 class TaskUpdateFiles :
38     public DPL::TaskDecl<TaskUpdateFiles>
39 {
40   private:
41     InstallerContext& m_context;
42
43     /* TODO : md5 check */
44     void StepCreateBackupFolder();
45     void StepResourceFilesBackup();
46     void StepExecFileBackup();
47
48     void ReadDirList(std::string dirPath, ExistFileList &list, size_t subLen);
49
50     void StepAbortResourceFilesBackup();
51     void StepAbortCreateBackupFolder();
52     void StepAbortExecFileBackup();
53
54     std::string m_pkgPath;
55     std::string m_srcBuPath;
56     std::string m_binBuPath;
57
58   public:
59     TaskUpdateFiles(InstallerContext& context);
60 };
61 } //namespace WidgetInstall
62 } //namespace Jobs
63
64 #endif /* INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UPDATE_FILES_H */