[Release] wrt-installer_0.1.53
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_installer_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_installer_struct.h
18  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @author  Grzegorz Krawczyk (g.krawczyk@samsung.com)
20  * @version 1.0
21  * @brief   Implementation file for widget installer struct
22  */
23 #ifndef WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
24 #define WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_
25
26 //SYSTEM INCLUDES
27 #include <dpl/assert.h>
28
29 //WRT INCLUDES
30 #include <job_base.h>
31 #include <job.h>
32 #include <widget_install/widget_install_errors.h>
33 #include <wrt_install_mode.h>
34 #include <wrt_common_types.h>
35 #include <pkgmgr_signal_interface.h>
36 #include <memory>
37 #include <string>
38
39 //Widget Installer typedefs
40 typedef void (*InstallerFinishedCallback)(
41     void *userParam,
42     std::string tizenId,
43     Jobs::Exceptions::Type);
44
45 typedef void (*InstallerProgressCallback)(void *userParam,
46                                           ProgressPercent percent,
47                                           const ProgressDescription &);
48
49 //TODO into namespace
50 //InstallationStruct
51 typedef Jobs::JobCallbacksBase<InstallerFinishedCallback,
52                                InstallerProgressCallback>
53 WidgetInstallCallbackBase;
54
55 //Widget Installation Struct
56 struct WidgetInstallationStruct : public WidgetInstallCallbackBase
57 {
58     InstallMode m_installMode;
59     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrInterface;
60
61     // It must be empty-constructible as a parameter of generic event
62     WidgetInstallationStruct() {};
63     WidgetInstallationStruct(
64         InstallerFinishedCallback finished,
65         InstallerProgressCallback progress,
66         void *param,
67         InstallMode mode,
68         std::shared_ptr<PackageManager::IPkgmgrSignal>
69         _pkgmgrInterface
70         ) :
71         WidgetInstallCallbackBase(finished, progress, param),
72         m_installMode(mode),
73         pkgmgrInterface(_pkgmgrInterface)
74     {}
75 };
76
77 #endif // WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_