tizen beta release
[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
32 namespace InstallerCallbacksTranslate {
33 struct StatusCallbackStruct
34 {
35     void* userdata;
36     WrtInstallerStatusCallback status_callback;
37     WrtProgressCallback progress_callback;
38
39     StatusCallbackStruct(void* u,
40             WrtInstallerStatusCallback s,
41             WrtProgressCallback p) :
42         userdata(u),
43         status_callback(s),
44         progress_callback(p)
45     {
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
65 void StatusCallback(int widget_handle,
66         CommonError::Type result,
67         void *data);
68
69 void installFinishedCallback(void *userParam,
70         WidgetHandle widget_handle,
71         Jobs::WidgetInstall::Exceptions::Type status);
72
73 void uninstallFinishedCallback(void *userParam,
74         WidgetHandle widget_handle,
75         Jobs::WidgetUninstall::Exceptions::Type status);
76
77 void pluginInstallFinishedCallback(void *userParam,
78         Jobs::PluginInstall::Exceptions::Type status);
79
80 // callback for progress of install OR uninstall
81 void installProgressCallback(void *userParam,
82         ProgressPercent percent,
83         const ProgressDescription &description);
84
85 } //namespace
86
87 #endif /* WRT_SRC_API_API_CALLBACKS_TRANSLATE_H_ */