3f33e4b3ed5daa774013a05edd4691c7bba22f5e
[framework/web/wrt-installer.git] / src_mobile / jobs / widget_uninstall / widget_uninstaller_struct.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    widget_uninstaller_struct.h
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for widget installer struct
21  */
22 #ifndef WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
23 #define WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
24
25 //SYSTEM INCLUDES
26 #include <dpl/assert.h>
27
28 //WRT INCLUDES
29 #include <job_base.h>
30 #include <wrt_common_types.h>
31 #include <widget_uninstall/widget_uninstall_errors.h>
32 #include <pkgmgr_signal_interface.h>
33 #include <memory>
34
35 //Widget Uninstaller typedefs
36 typedef void (*UninstallerFinishedCallback)(
37     void *userParam,
38     std::string tizenId,
39     Jobs::Exceptions::Type);
40
41 typedef void (*UninstallerProgressCallback)(
42     void *userParam,
43     ProgressPercent percent,
44     const ProgressDescription &description);
45
46 //UninstallationStruct
47 typedef Jobs::JobCallbacksBase<UninstallerFinishedCallback,
48                                UninstallerProgressCallback>
49 WidgetUninstallCallbackBase;
50
51 struct WidgetUninstallationStruct : public WidgetUninstallCallbackBase
52 {
53     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrInterface;
54
55     // It must be empty-constructible as a parameter of generic event
56     WidgetUninstallationStruct()
57     {}
58
59     WidgetUninstallationStruct(
60         UninstallerFinishedCallback finished,
61         UninstallerProgressCallback progress,
62         void *param,
63         std::shared_ptr<PackageManager::IPkgmgrSignal>
64         _pkgmgrInterface
65         ) :
66         WidgetUninstallCallbackBase(finished, progress, param),
67         pkgmgrInterface(_pkgmgrInterface)
68     {}
69 };
70 #endif // WRT_SRC_INSTALLER_CORE_UNINSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_