tizen beta release
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / uninstaller_context.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    uninstaller_context.h
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version
20  * @brief   Definition file of installer tasks data structures
21  */
22
23 #ifndef WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_
24 #define WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_
25
26 #include <string>
27 #include <dpl/wrt-dao-rw/widget_dao.h>
28 #include <widget_uninstall/widget_uninstaller_struct.h>
29
30 namespace Jobs {
31 namespace WidgetUninstall {
32 class JobWidgetUninstall;
33 } //namespace WidgetUninstall
34 } //namespace Jobs
35
36 struct UninstallerContext
37 {
38     enum UninstallStep
39     {
40         UNINSTALL_START,
41         UNINSTALL_CHECK,
42         UNINSTALL_DB_UPDATE,
43         UNINSTALL_REMOVE_PREPARE,
44         UNINSTALL_REMOVE_ONEFILE,
45         UNINSTALL_REMOVE_DIRECTORIES,
46         UNINSTALL_REMOVE_FINISHED,
47         UNINSTALL_REMOVE_DESKTOP,
48         UNINSTALL_END
49     };
50
51     WidgetHandle widgetHandle;
52
53     ///< flag that indicates whether installer starts
54     //to remove files.rStruct;
55     bool removeStarted;
56     ///< flag that indicates whether installer finishes
57     //to remove files completely.
58     bool removeFinished;
59     UninstallStep uninstallStep;       ///< current step of installation
60     Jobs::WidgetUninstall::JobWidgetUninstall *job;
61 };
62
63 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_