4 * Copyright (File::*c) 2000 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
8 * Jaewon Lim <jaewon81.lim@samsung.com>
9 * Woojin Jung <woojin2.jung@samsung.com>
10 * Juyoung Kim <j0.kim@samsung.com>
11 * Anastasia Lyupa <a.lyupa@samsung.com>
13 * This library is free software; you can redistribute it and/or modify it under
14 * the terms of the GNU Lesser General Public License as published by the
15 * Free Software Foundation; either version 2.1 of the License, or (at your option)
18 * This library is distributed in the hope that it will be useful, but WITHOUT ANY
19 * WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
21 * License for more details.
23 * You should have received a copy of the GNU Lesser General Public License
24 * along with this library; if not, write to the Free Software Foundation, Inc., 51
25 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 * - Samsung RnD Institute Russia
40 #include "probeinfo.h"
41 #include "osp_probe.h"
46 Ecore_Event_Handler* register_orientation_event_listener();
47 void unregister_orientation_event_listener(Ecore_Event_Handler* handler);
50 using namespace Tizen::Base;
51 using namespace Tizen::Base::Collection;
53 namespace Tizen { namespace App
58 // virtual void OnDeviceOrientationChanged(app_device_orientation_e orientation) = 0;
63 static void OnTerminate(void* user_data);
64 // static void OnDeviceOrientationChanged(app_device_orientation_e orientation, void* user_data);
68 // : public Tizen::Base::Object
71 void OnBackground(void);
72 void OnForeground(void);
73 // virtual void OnDeviceOrientationChanged(app_device_orientation_e orientation);
78 static void SetAppState(AppState appstate);
81 result UiApp::Execute(UiAppInstanceFactory pUiAppFactory,
82 const IList* pArguments)
84 typedef result (*methodType)(UiAppInstanceFactory pFactory, const IList* pArgs);
85 static methodType uiapp_executep;
86 DECLARE_VARIABLE_STANDARD;
87 Ecore_Event_Handler* handler;
89 GET_REAL_FUNC_OSP(_ZN5Tizen3App5UiApp7ExecuteEPFPS1_vEPKNS_4Base10Collection5IListE,
90 LIBOSP_UIFW, uiapp_executep);
93 handler = register_orientation_event_listener();
94 if(gTraceInfo.exec_map.map_start == NULL)
96 get_map_address(CALLER_ADDRESS, &(gTraceInfo.exec_map.map_start),
97 &(gTraceInfo.exec_map.map_end));
99 setProbePoint(&probeInfo);
102 ret = uiapp_executep(pUiAppFactory, pArguments);
107 PACK_COMMON_BEGIN(MSG_PROBE_LIFECYCLE,
108 API_ID_result_UiApp__Execute_UiAppInstanceFactory_pUiAppFactory__const_IList__pArguments_,
109 "pp", pUiAppFactory, pArguments);
110 PACK_COMMON_END(ret, 0, 0);
113 unregister_orientation_event_listener(handler);
119 void _AppImpl::OnTerminate(void* user_data)
121 typedef void (*methodType)(void*);
122 static methodType appimpl_onterminatep;
123 probeInfo_t probeInfo;
125 GET_REAL_FUNC_OSP(_ZN5Tizen3App8_AppImpl11OnTerminateEPv, LIBOSP_APPFW, appimpl_onterminatep);
128 setProbePoint(&probeInfo);
131 PACK_COMMON_BEGIN(MSG_PROBE_LIFECYCLE,
132 API_ID_void__AppImpl__OnTerminate_void__user_data_,
134 PACK_COMMON_END(0, 0, 0);
139 appimpl_onterminatep(user_data);
142 void _AppImpl::OnDeviceOrientationChanged(app_device_orientation_e orientation, void* user_data)
144 typedef void (*methodType)(app_device_orientation_e, void*);
145 static methodType appimpl_ondeviceorientationchangedp;
147 GET_REAL_FUNC_OSP(_ZN5Tizen3App8_AppImpl26OnDeviceOrientationChangedE24app_device_orientation_ePv,
148 LIBOSP_APPFW, appimpl_ondeviceorientationchangedp);
151 on_orientation_changed((int)orientation, false);
154 appimpl_ondeviceorientationchangedp(orientation, user_data);
157 void _AppInfo::SetAppState(AppState appState)
159 typedef void (*methodType)(AppState appstate);
160 static methodType appinfo_setappstatep;
161 probeInfo_t probeInfo;
163 GET_REAL_FUNC_OSP(_ZN5Tizen3App8_AppInfo11SetAppStateENS0_8AppStateE, LIBOSP_APPFW, appinfo_setappstatep);
166 if(appState == RUNNING)
168 setProbePoint(&probeInfo);
171 PACK_COMMON_BEGIN(MSG_PROBE_LIFECYCLE,
172 API_ID_void__AppInfo__SetAppState_AppState_appState_,
174 PACK_COMMON_END(0, 0, 0);
179 appinfo_setappstatep(appState);
182 void _UiAppImpl::OnBackground(void)
184 typedef void (_UiAppImpl::*methodType)(void);
185 static methodType uiappimpl_onbackgroundp;
186 probeInfo_t probeInfo;
188 GET_REAL_FUNC_OSP(_ZN5Tizen3App10_UiAppImpl12OnBackgroundEv, LIBOSP_UIFW, uiappimpl_onbackgroundp);
192 setProbePoint(&probeInfo);
195 PACK_COMMON_BEGIN(MSG_PROBE_LIFECYCLE,
196 API_ID_void__UiAppImpl__OnBackground_void_,
198 PACK_COMMON_END(0, 0, 0);
203 (this->*uiappimpl_onbackgroundp)();
206 void _UiAppImpl::OnForeground(void)
208 typedef void (_UiAppImpl::*methodType)(void);
209 static methodType uiappimpl_onforegroundp;
210 probeInfo_t probeInfo;
212 GET_REAL_FUNC_OSP(_ZN5Tizen3App10_UiAppImpl12OnForegroundEv, LIBOSP_UIFW, uiappimpl_onforegroundp);
215 setProbePoint(&probeInfo);
218 PACK_COMMON_BEGIN(MSG_PROBE_LIFECYCLE,
219 API_ID_void__UiAppImpl__OnForeground_void_,
221 PACK_COMMON_END(0, 0, 0);
225 // SCREENSHOT_DONE();
228 (this->*uiappimpl_onforegroundp)();
232 void _UiAppImpl::OnDeviceOrientationChanged(app_device_orientation_e orientation)
234 typedef void (*methodType)(_UiAppImpl* th, app_device_orientation_e orientation);
235 static methodType uiappimpl_ondeviceorientationchangedp;
237 GET_REAL_FUNC_OSP(_ZThn4_N5Tizen3App10_UiAppImpl26OnDeviceOrientationChangedE24app_device_orientation_e,
238 LIBOSP_UIFW, uiappimpl_ondeviceorientationchangedp);
241 on_orientation_changed((int)orientation, false);
244 uiappimpl_ondeviceorientationchangedp(static_cast<_UiAppImpl*>(dynamic_cast<_IAppImpl*>(this)), orientation);
247 } } // end of namespace