[Release] wrt-installer_0.1.85
[platform/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 #include <widget_location.h>
29 #include <dpl/utils/path.h>
30
31 namespace Jobs {
32 namespace WidgetUninstall {
33 class JobWidgetUninstall;
34 } //namespace WidgetUninstall
35 } //namespace Jobs
36
37 struct UninstallerContext
38 {
39     enum UninstallStep
40     {
41         UNINSTALL_START,
42         UNINSTALL_PRECHECK,
43         UNINSTALL_REMOVE_WIDGETDIR,
44         UNINSTALL_REMOVE_DESKTOP,
45         UNINSTALL_REMOVE_FINISHED,
46         UNINSTALL_DB_UPDATE,
47         UNINSTALL_REMOVE_OSPSVC,
48         UNINSTALL_SMACK_DISABLE,
49         UNINSTALL_END
50     };
51
52     ///< flag that indicates whether installer starts
53     //to remove files.rStruct;
54     bool removeStarted;
55     ///< flag that indicates whether installer finishes
56     //to remove files completely.
57     bool removeFinished;
58
59     DPL::Optional<WidgetLocation> locations;
60
61     UninstallStep uninstallStep;       ///< current step of installation
62     Jobs::WidgetUninstall::JobWidgetUninstall *job;
63     std::string tzAppid;
64     std::string tzPkgid;
65     bool removeAbnormal;
66     DPL::Utils::Path installedPath;
67 };
68
69 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_