2b6590751b8a79a70f1fcc79a0cf56d694417f00
[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 <widget_uninstall/widget_uninstaller_struct.h>
28
29 namespace Jobs {
30 namespace WidgetUninstall {
31 class JobWidgetUninstall;
32 } //namespace WidgetUninstall
33 } //namespace Jobs
34
35 struct UninstallerContext
36 {
37     enum UninstallStep
38     {
39         UNINSTALL_START,
40         UNINSTALL_SMACK_ENABLE,
41         UNINSTALL_PRECHECK,
42         UNINSTALL_REMOVE_PREPARE,
43         UNINSTALL_REMOVE_ONEFILE,
44         UNINSTALL_REMOVE_DIRECTORIES,
45         UNINSTALL_REMOVE_DESKTOP,
46         UNINSTALL_REMOVE_FINISHED,
47         UNINSTALL_DB_UPDATE,
48         UNINSTALL_REMOVE_OSPSVC,
49         UNINSTALL_END
50     };
51
52     WidgetHandle widgetHandle;
53
54     ///< flag that indicates whether installer starts
55     //to remove files.rStruct;
56     bool removeStarted;
57     ///< flag that indicates whether installer finishes
58     //to remove files completely.
59     bool removeFinished;
60     UninstallStep uninstallStep;       ///< current step of installation
61     Jobs::WidgetUninstall::JobWidgetUninstall *job;
62     std::string pkgname;
63 };
64
65 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_