Initialize Tizen 2.3
[framework/web/wrt-installer.git] / src_mobile / 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     void StepBackupDirectory();
44
45     void StepAbortBackupDirectory();
46
47     void StartStep();
48     void EndStep();
49
50   public:
51     TaskUpdateFiles(InstallerContext& context);
52 };
53 } //namespace WidgetInstall
54 } //namespace Jobs
55
56 #endif /* INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_UPDATE_FILES_H */