1fd865e016c4b49c8253634815bb8854be2da9b3
[framework/web/wrt-installer.git] / src_wearable / 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 namespace Jobs {
50 namespace WidgetInstall {
51 //InstallationStruct
52 typedef Jobs::JobCallbacksBase<InstallerFinishedCallback,
53                                InstallerProgressCallback>
54 WidgetInstallCallbackBase;
55
56 //Widget Installation Struct
57 struct WidgetInstallationStruct : public WidgetInstallCallbackBase
58 {
59     InstallMode m_installMode;
60     std::shared_ptr<PackageManager::IPkgmgrSignal> pkgmgrInterface;
61
62     // It must be empty-constructible as a parameter of generic event
63     WidgetInstallationStruct() {};
64     WidgetInstallationStruct(
65         InstallerFinishedCallback finished,
66         InstallerProgressCallback progress,
67         void *param,
68         InstallMode mode,
69         std::shared_ptr<PackageManager::IPkgmgrSignal>
70         _pkgmgrInterface
71         ) :
72         WidgetInstallCallbackBase(finished, progress, param),
73         m_installMode(mode),
74         pkgmgrInterface(_pkgmgrInterface)
75     {}
76 };
77 } // namespace WidgetInstall
78 } // namespace Jobs
79
80 #endif // WRT_SRC_INSTALLER_CORE_INSTALLER_TASKS_WIDGET_INSTALLER_STRUCT_H_