[Release] wrt-installer_0.1.58
[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
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_PRECHECK,
42         UNINSTALL_REMOVE_WIDGETDIR,
43         UNINSTALL_REMOVE_DESKTOP,
44         UNINSTALL_REMOVE_FINISHED,
45         UNINSTALL_DB_UPDATE,
46         UNINSTALL_REMOVE_OSPSVC,
47         UNINSTALL_SMACK_DISABLE,
48         UNINSTALL_END
49     };
50
51     ///< flag that indicates whether installer starts
52     //to remove files.rStruct;
53     bool removeStarted;
54     ///< flag that indicates whether installer finishes
55     //to remove files completely.
56     bool removeFinished;
57
58     DPL::Optional<WidgetLocation> locations;
59
60     UninstallStep uninstallStep;       ///< current step of installation
61     Jobs::WidgetUninstall::JobWidgetUninstall *job;
62     std::string tzAppid;
63     std::string tzPkgid;
64     bool removeAbnormal;
65     std::string installedPath;
66 };
67
68 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_UNINSTALLER_CONTEXT_H_