9b3eb52e7891cb40897ec6f83a3b854b7663f2ae
[framework/web/wrt-installer.git] / src / wrt-installer / installer_callbacks_translate.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    api_callbacks_translate.h
18  * @author  Pawel Sikorski (p.sikorski@samsung.com)
19  * @version 1.0
20  * @brief   Header file for api callbacks translate functions
21  */
22 #ifndef WRT_SRC_API_API_CALLBACKS_TRANSLATE_H_
23 #define WRT_SRC_API_API_CALLBACKS_TRANSLATE_H_
24
25 #include <wrt_installer_api.h>
26 #include <wrt_common_types.h>
27 #include <widget_install/widget_install_errors.h>
28 #include <widget_uninstall/widget_uninstall_errors.h>
29 #include <plugin_install/plugin_installer_errors.h>
30 #include <job_base.h>
31 #include <string>
32
33 namespace InstallerCallbacksTranslate {
34 struct StatusCallbackStruct
35 {
36     void* userdata;
37     WrtInstallerStatusCallback status_callback;
38     WrtProgressCallback progress_callback;
39
40     StatusCallbackStruct(void* u,
41                          WrtInstallerStatusCallback s,
42                          WrtProgressCallback p) :
43         userdata(u),
44         status_callback(s),
45         progress_callback(p)
46     {}
47 };
48
49 struct PluginStatusCallbackStruct
50 {
51     void* userdata;
52     WrtPluginInstallerStatusCallback statusCallback;
53     WrtProgressCallback progressCallback;
54
55     PluginStatusCallbackStruct(void* u,
56                                WrtPluginInstallerStatusCallback s,
57                                WrtProgressCallback p) :
58         userdata(u),
59         statusCallback(s),
60         progressCallback(p)
61     {}
62 };
63
64 void StatusCallback(std::string tizenId,
65                     CommonError::Type result,
66                     void *data);
67
68 void installFinishedCallback(void *userParam,
69                              std::string tizenId,
70                              Jobs::WidgetInstall::Exceptions::Type status);
71
72 void uninstallFinishedCallback(void *userParam,
73                                std::string tizenId,
74                                Jobs::WidgetUninstall::Exceptions::Type status);
75
76 void pluginInstallFinishedCallback(void *userParam,
77                                    Jobs::PluginInstall::Exceptions::Type status);
78
79 // callback for progress of install OR uninstall
80 void installProgressCallback(void *userParam,
81                              ProgressPercent percent,
82                              const ProgressDescription &description);
83 } //namespace
84
85 #endif /* WRT_SRC_API_API_CALLBACKS_TRANSLATE_H_ */