move general AppControl launch logic to plugin
[platform/framework/native/appfw.git] / src / app / FApp_AppControlImpl.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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 /**
18  * @file                FApp_AppControlImpl.cpp
19  * @brief               This is the implementation for the Application Control class.
20  */
21
22 #include <new>
23 #include <typeinfo>
24 #include <unique_ptr.h>
25
26 #include <appsvc/appsvc.h>
27
28 #include <FBaseColHashMap.h>
29 #include <FBaseSysLog.h>
30 #include <FAppAppControl.h>
31 #include <FAppAppManager.h>
32 #include <FAppPkgPackageAppInfo.h>
33 #include <FAppIAppControlEventListener.h>
34 #include <FAppIAppControlResponseListener.h>
35
36 #include "FApp_AppControlImpl.h"
37 #include "FApp_AppControlManager.h"
38 #include "FApp_IAppControlPluginProvider.h"
39 #include "FApp_AppArg.h"
40 #include "FApp_AppControlRegistry.h"
41 #include "FApp_AppMessageImpl.h"
42 #include "FApp_AppInfo.h"
43 #include "FAppPkg_PackageManagerImpl.h"
44 #include "FApp_Aul.h"
45 #include "FApp_AppControlEventArg.h"
46 #include "FApp_AppControlResponseEvent.h"
47 #include "FBaseRt_ThreadImpl.h"
48
49 using namespace Tizen::Base;
50 using namespace Tizen::Base::Collection;
51 using namespace Tizen::Base::Runtime;
52 using namespace Tizen::App;
53 using namespace Tizen::App::Package;
54 using namespace Tizen::Io;
55
56 namespace
57 {
58
59 static const int _REQ_ID_INVALID = -1;
60 const wchar_t ACTL_IMPLICIT_PLUGIN[] = L"libosp-ac-implicit.so";
61
62 }
63
64 namespace Tizen { namespace App
65 {
66
67 _AppControlImpl::_AppControlImpl(const AppControl& value)
68         : _appControl(value)
69         , _reqId(_REQ_ID_INVALID)
70         , _property(_APPCONTROL_PROPERTY_NONE)
71         , _processId(_REQ_ID_INVALID)
72 {
73         __appControlResponseEventList.Construct();
74 }
75
76 _AppControlImpl::~_AppControlImpl(void)
77 {
78         IEnumeratorT<int>* pEnum = __appControlResponseEventList.GetEnumeratorN();
79         IMapT<int, _AppControlResponseEvent*>* pResponseEventContainer = null;
80         if(pEnum != null)
81         {
82                 pResponseEventContainer = _AppControlManager::GetInstance()->GetAppControlResponseEventContainer();
83         }
84
85         while(pEnum->MoveNext() == E_SUCCESS)
86         {
87                 int reqId;
88                 pEnum->GetCurrent(reqId);
89                 if (pResponseEventContainer != null)
90                 {
91                         _AppControlResponseEvent* pResponseEvent = null;
92                         pResponseEventContainer->GetValue(reqId, pResponseEvent);
93                         delete pResponseEvent;
94
95                         pResponseEventContainer->Remove(reqId);
96                         SysLog(NID_APP, "pResponseEvent gets deleted. reqId(%d)", reqId);
97                 }
98         }
99         delete pEnum;
100 }
101
102 AppControl*
103 _AppControlImpl::CreateN(const String& path, const String& aId, const String& oId, int prop)
104 {
105         SysTryReturn(NID_APP, !path.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Path is empty.");
106         SysTryReturn(NID_APP, !aId.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Provider Id is empty.");
107         SysTryReturn(NID_APP, !oId.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Operation Id is empty.");
108
109         AppControl* pAc = new (std::nothrow) AppControl;
110         SysTryReturn(NID_APP, pAc != null, null, E_OUT_OF_MEMORY, "AppControl allocation failure.");
111
112         _AppControlImpl* pImpl = pAc->__pAppControlImpl;
113         SysTryReturn(NID_APP, pImpl != null, null, E_OUT_OF_MEMORY, "AppControlImpl instance must not be null.");
114
115         pImpl->_path = path;
116         pImpl->_appId = aId;
117         pImpl->_opId = oId;
118         pImpl->_property = prop;
119
120         return pAc;
121 }
122
123
124 const _AppControlImpl*
125 _AppControlImpl::GetInstance(const AppControl& ac)
126 {
127         return ac.__pAppControlImpl;
128 }
129
130 _AppControlImpl*
131 _AppControlImpl::GetInstance(AppControl& ac)
132 {
133         return ac.__pAppControlImpl;
134 }
135
136 _IAppControlPluginProvider*
137 _AppControlImpl::GetAppControlPluginProvider(const String& path)
138 {
139         _LibraryImpl lib;
140         lib.Construct(path, _LIBRARY_OPTION);
141
142         APP_CONTROL_PROVIDER_GET_FN pProvider = reinterpret_cast<APP_CONTROL_PROVIDER_GET_FN>(lib.GetProcAddress(L"GetAppControlProviderPlugin"));
143
144         if (!pProvider)
145         {
146                 SysLogException(NID_APP, E_SYSTEM, "Cannot load plugin properly for %ls.", path.GetPointer());
147                 return null;
148         }
149
150         return (*pProvider)();
151 }
152
153
154 result
155 _AppControlImpl::FindAndStart(const String& operationId, const String* pUriPattern, const String* pDataType, const String* pCategory, const IMap* pExtraData, IAppControlResponseListener* pListener)
156 {
157         // [FIXME] valid argument size checking required
158         SysLog(NID_APP, "Enter");
159
160         std::unique_ptr<bundle, BundleDeleter> pBundle(bundle_create());
161         SysTryReturnResult(NID_APP, pBundle.get(), E_OUT_OF_MEMORY, "Bundle creation failure.");
162
163         _AppMessageImpl::SetOperation(pBundle.get(), operationId);
164
165         if (pUriPattern)
166         {
167                 _AppMessageImpl::SetUri(pBundle.get(), *pUriPattern);
168         }
169
170         if (pDataType)
171         {
172                 String mimeType = *pDataType;
173
174                 if ((*pDataType)[0] == L'.')
175                 {
176                         SysLog(NID_APP, "Extension to MIME conversion for %ls", pDataType->GetPointer());
177
178 #if 0
179                         String ext;
180                         pDataType->SubString(1, ext);
181
182                         result r = _AppControlManager::GetMimeFromExt(ext, mimeType);
183
184                         SysTryReturn(NID_APP, !IsFailed(r), null, r, "[%s] MIME type conversion failure for %ls.", GetErrorMessage(r), ext.GetPointer());
185
186                         pMimeType = &mimeType;
187
188                         SysLog(NID_APP, "Conversion : %ls -> %ls.", pDataType->GetPointer(), pMimeType->GetPointer());
189 #endif
190                 }
191
192                 _AppMessageImpl::SetMime(pBundle.get(), mimeType);
193         }
194
195         if (pCategory)
196         {
197                 _AppMessageImpl::SetCategory(pBundle.get(), *pCategory);
198         }
199
200         return StartImplicit(pBundle.get(), pExtraData, pListener);
201 }
202
203
204 result
205 _AppControlImpl::StartImplicit(const _AppMessageImpl& msg, IEventListener* pListener, bool isLegacy)
206 {
207         SysLog(NID_APP, "Enter");
208         int req = _REQ_ID_INVALID;
209
210         _IAppControlPluginProvider* pProvider = GetAppControlPluginProvider(ACTL_IMPLICIT_PLUGIN);
211         SysTryReturnResult(NID_APP, pProvider != null, E_OBJ_NOT_FOUND, "Propagating.");
212
213         if (pListener)
214         {
215                 _InProcessInfo* pItem = new (std::nothrow) _InProcessInfo(isLegacy, pProvider, pListener);
216                 if (pItem)
217                 {
218                         req = _AppControlManager::GetInstance()->__inAppManager.InsertItem(pItem);
219                 }
220         }
221
222         result r = InvokeStartAppControl(pProvider, req, L"", msg);
223
224         if (pListener == null)
225         {
226                 pProvider->Release();
227         }
228
229         // after acquring request number, pLib should be managed from the list, not CATCH
230         if (IsFailed(r))
231         {
232                 _AppControlManager::GetInstance()->__inAppManager.RemoveItem(req);
233                 SysLog(NID_APP, "[%s] A system error has occurred.", GetErrorMessage(r));
234
235                 return r;
236         }
237
238         SysLog(NID_APP, "Exit %d", req);
239         return E_SUCCESS;
240 }
241
242
243 result
244 _AppControlImpl::StartImplicit(bundle* pBundle, const IList* pDataList, IAppControlEventListener* pListener)
245 {
246         _AppMessageImpl msg(pBundle);
247         msg.AddData(pDataList);
248
249         return StartImplicit(msg, pListener, true);
250 }
251
252
253 result
254 _AppControlImpl::StartImplicit(bundle* pBundle, const IMap* pData, IAppControlResponseListener* pListener)
255 {
256         _AppMessageImpl msg(pBundle);
257         _AppArg::AddStrMap(msg.GetBundle(), pData);
258
259         return StartImplicit(msg, pListener, false);
260 }
261
262
263 result
264 _AppControlImpl::Start(const IList* pDataList, IAppControlEventListener* pListener)
265 {
266         SysLog(NID_APP, "Enter");
267         _InProcessInfo* pInfo = _AppControlManager::GetInstance()->__inAppManager.FindItem(_reqId);
268         SysTryReturnResult(NID_APP, pInfo == null, E_IN_PROGRESS, "Request ID %d is already in progress.", _reqId);
269
270         int req = _REQ_ID_INVALID;
271
272         _IAppControlPluginProvider* pProvider = GetAppControlPluginProvider(_path);
273         SysTryReturnResult(NID_APP, pProvider != null, E_OBJ_NOT_FOUND, "Propagating.");
274
275         if (pListener)
276         {
277                 _InProcessInfo* pItem = new (std::nothrow) _InProcessInfo(_appId, _opId, _property, true, pProvider, pListener);
278                 if (pItem)
279                 {
280                         req = _AppControlManager::GetInstance()->__inAppManager.InsertItem(pItem);
281                 }
282         }
283
284         result r = InvokeStartAppControl(pProvider, req, _appId, _opId, pDataList);
285
286         if (pListener == null)
287         {
288                 pProvider->Release();
289         }
290
291         // after acquring request number, pLib should be managed from the list, not CATCH
292         if (IsFailed(r))
293         {
294                 _AppControlManager::GetInstance()->__inAppManager.RemoveItem(req);
295                 SysLog(NID_APP, "[%s] A system error has occurred.", GetErrorMessage(r));
296
297                 return r;
298         }
299
300         _reqId = req;
301
302         SysLog(NID_APP, "Exit %d", req);
303         return E_SUCCESS;
304 }
305
306 result
307 _AppControlImpl::Start(const String* pUriData, const String* pMimeType, const IMap* pDataList, IAppControlResponseListener* pListener)
308 {
309         SysLog(NID_APP, "Enter");
310         _InProcessInfo* pInfo = _AppControlManager::GetInstance()->__inAppManager.FindItem(_reqId);
311         SysTryReturnResult(NID_APP, pInfo == null, E_IN_PROGRESS, "Request ID %d is already in progress.", _reqId);
312
313         int req = _REQ_ID_INVALID;
314         result r = E_SUCCESS;
315
316         _IAppControlPluginProvider* pProvider = GetAppControlPluginProvider(_path);
317         SysTryReturnResult(NID_APP, pProvider != null, E_OBJ_NOT_FOUND, "Propagating.");
318
319         if (pListener)
320         {
321                 _InProcessInfo* pItem = new (std::nothrow) _InProcessInfo(_appId, _opId, _property, false, pProvider, pListener);
322                 if (pItem)
323                 {
324                         req = _AppControlManager::GetInstance()->__inAppManager.InsertItem(pItem);
325                 }
326
327                 if (_ThreadImpl::GetCurrentThreadImpl()->GetThreadType() == THREAD_TYPE_EVENT_DRIVEN)
328                 {
329                         _AppControlResponseEvent* pAppControlResponseEvent = new (std::nothrow) _AppControlResponseEvent();
330
331                         if (pAppControlResponseEvent != null)
332                         {
333                                 r = pAppControlResponseEvent->Construct();
334                                 SysTryLog(NID_APP, r == E_SUCCESS, "[%s]_AppControlResponseEvent::Construct() is failed", GetErrorMessage(r));
335
336                                 r = pAppControlResponseEvent->AddListener(*this, true);
337                                 SysTryLog(NID_APP, r == E_SUCCESS, "[%s]_AppControlResponseEvent::AddListener() is failed", GetErrorMessage(r));
338
339                                 IMapT<int, _AppControlResponseEvent*>* pResponseEventContainer = _AppControlManager::GetInstance()->GetAppControlResponseEventContainer();
340                                 if (pResponseEventContainer != null)
341                                 {
342                                         int responseEventRequestId = RESPONSE_EVENT_REQID_MAGIC + req;
343                                         pResponseEventContainer->Add(responseEventRequestId, pAppControlResponseEvent);
344                                         __appControlResponseEventList.Add(responseEventRequestId);
345                                         SysLog(NID_APP, "pResponseEvent gets added. reqId(%d)", responseEventRequestId);
346                                 }
347                         }
348                 }
349         }
350         r = InvokeStartAppControl(pProvider, req, _appId, _opId, pUriData, pMimeType, pDataList);
351
352         if (pListener == null)
353         {
354                 pProvider->Release();
355         }
356
357         // after acquring request number, pLib should be managed from the list, not CATCH
358         if (IsFailed(r))
359         {
360                 _AppControlManager::GetInstance()->__inAppManager.RemoveItem(req);
361                 SysLog(NID_APP, "[%s] A system error has occurred.", GetErrorMessage(r));
362
363                 return r;
364         }
365
366         _reqId = req;
367         SysLog(NID_APP, "Exit %d", req);
368
369         return E_SUCCESS;
370 }
371
372 result
373 _AppControlImpl::InvokeStartAppControl(_IAppControlPluginProvider* pProvider, int req, const String& appId, const String& oId, const IList* pList)
374 {
375         SysLog(NID_APP, "Legacy stuff for converting argument");
376
377         HashMap map(SingleObjectDeleter);
378         HashMap* pMap = null;
379         if (pList)
380         {
381                 map.Construct();
382
383                 _AppArg::FillMapFromList(&map, pList);
384
385                 pMap = &map;
386         }
387
388         return InvokeStartAppControl(pProvider, req, appId, oId, null, null, pMap);
389 }
390
391
392 result
393 _AppControlImpl::InvokeStartAppControl(_IAppControlPluginProvider* pProvider, int req, const String& appId, const String& oId, const String* pUri, const String* pMime, const IMap* pMap)
394 {
395         _AppMessageImpl msg(appId, oId, pUri, pMime, pMap);
396
397         return InvokeStartAppControl(pProvider, req, appId, msg);
398 }
399
400
401 result
402 _AppControlImpl::InvokeStartAppControl(_IAppControlPluginProvider* pProvider, int req, const String& appId, const _AppMessageImpl& message)
403 {
404         SysTryReturnResult(NID_APP, pProvider != null, E_SYSTEM, "Wrong AppControl provider plugin for %ls(%d).", appId.GetPointer(), req);
405
406         return pProvider->StartAppControlPlugin(req, appId, message, null);
407 }
408
409
410 static bool
411 IsValidAppControl(const String& appcontrolID)
412 {
413         return ((appcontrolID == L"osp.appcontrol.provider.audio")
414                 || (appcontrolID == L"osp.appcontrol.provider.bluetooth")
415                 || (appcontrolID == L"osp.appcontrol.provider.calendar")
416                 || (appcontrolID == L"osp.appcontrol.provider.camera")
417                 || (appcontrolID == L"osp.appcontrol.provider.contact")
418                 || (appcontrolID == L"osp.appcontrol.provider.certificatemanager")
419                 || (appcontrolID == L"osp.appcontrol.provider.email")
420                 || (appcontrolID == L"osp.appcontrol.provider.image")
421                 || (appcontrolID == L"osp.appcontrol.provider.media")
422                 || (appcontrolID == L"osp.appcontrol.provider.message")
423                 || (appcontrolID == L"osp.appcontrol.provider.video")
424                 || (appcontrolID == L"osp.appcontrol.provider.imageeditor")
425                 || (appcontrolID == L"osp.appcontrol.provider.allshare")
426                 || (appcontrolID == L"tizen.filemanager")
427                 || (appcontrolID == L"tizen.camera")
428                 || (appcontrolID == L"tizen.gallery")
429                 || (appcontrolID == L"tizen.imageviewer")
430                 || (appcontrolID == L"tizen.videoplayer")
431                 || (appcontrolID == L"tizen.memo")
432                 || (appcontrolID == L"tizen.contacts")
433                 || (appcontrolID == L"tizen.calendar")
434                 || (appcontrolID == L"tizen.todo")
435                 || (appcontrolID == L"tizen.email")
436                 || (appcontrolID == L"tizen.settings")
437                 || (appcontrolID == L"tizen.messages")
438                 || (appcontrolID == L"tizen.musicplayer")
439                 || (appcontrolID == L"tizen.bluetooth")
440                 || (appcontrolID == L"samsung.snote")
441                 || (appcontrolID == L"0pnxz8hbsr.MyFiles")
442                 || (appcontrolID == L"hdufar9ycj.Camera")
443                 || (appcontrolID == L"ijudt7w61q.Gallery")
444                 || (appcontrolID == L"jysyv9o1dc.ImageViewer")
445                 || (appcontrolID == L"npwf0scb88.VideoPlayer")
446                 || (appcontrolID == L"zunqjlsnce.Memo")
447                 || (appcontrolID == L"f9uev8hsyo.Contacts")
448                 || (appcontrolID == L"ph1vq2phrp.Calendar")
449                 || (appcontrolID == L"vxqbrefica.Email")
450                 || (appcontrolID == L"kto5jikgul.Settings")
451                 || (appcontrolID == L"8r4r5ddzzn.Messages")
452                 || (appcontrolID == L"dhrul6qzj3.MusicPlayer")
453                 || (appcontrolID == L"smemo-efl"));
454 }
455
456 result
457 _AppControlImpl::Stop(void)
458 {
459         const String appcontrolID(GetAppControlProviderId());
460         SysTryReturnResult(NID_APP, IsValidAppControl(appcontrolID), E_INVALID_OPERATION, "Invalid appcontrolID(%ls)", appcontrolID.GetPointer());
461
462         result (*pStop)(int req) = null;
463
464         if (_reqId != _REQ_ID_INVALID)
465         {
466                 _InProcessInfo* pInfo = _AppControlManager::GetInstance()->__inAppManager.FindItem(_reqId);
467                 SysTryReturnResult(NID_APP, pInfo != null, E_INVALID_OPERATION, "Request ID %d is not found.", _reqId);
468
469                 if (pInfo->pProvider)
470                 {
471                         pInfo->pProvider->StopAppControlPlugin(_reqId);
472                 }
473
474                 _AppControlManager::GetInstance()->__inAppManager.RemoveItem(_reqId);
475
476                 _reqId = _REQ_ID_INVALID;
477         }
478         else
479         {
480                 _IAppControlPluginProvider* pProvider = GetAppControlPluginProvider(_path);
481                 if (pProvider)
482                 {
483                         pProvider->StopAppControlPlugin(-1);
484                         SysLog(NID_APP, "Request is stopped.");
485
486                         pProvider->Release();
487                 }
488         }
489
490         return E_SUCCESS;
491 }
492
493 String
494 _AppControlImpl::GetAppName(void)
495 {
496         if (_appName.IsEmpty())
497         {
498                 AppId appId = GetAppId();
499                 AppId aliasAppId = _AppControlRegistry::GetInstance()->GetAliasAppId(appId);
500                 if (!aliasAppId.IsEmpty())
501                 {
502                         appId = aliasAppId;
503                 }
504
505                 std::unique_ptr<PackageAppInfo> pInfo(_PackageManagerImpl::GetInstance()->GetPackageAppInfoN(appId));
506                 if (pInfo.get())
507                 {
508                         SysLog(NID_APP, "PackageInfo of appId(%ls) exists", appId.GetPointer());
509                         const String& name = pInfo->GetAppName();
510                         if (name == L"_AppControl")
511                         {
512                                 // workaround for special case: requery with actual appId
513                                 const PackageId& packageId = _PackageManagerImpl::GetPackageIdByAppId(appId);
514                                 const String& defaultName = _PackageManagerImpl::GetInstance()->GetDefaultAppExecutableName(packageId);
515
516                                 const String& convertedAppId = packageId + L'.' + defaultName;
517
518                                 std::unique_ptr<PackageAppInfo> pNewInfo(_PackageManagerImpl::GetInstance()->GetPackageAppInfoN(convertedAppId));
519
520                                 if (pNewInfo.get())
521                                 {
522                                         _appName = pNewInfo->GetAppDisplayName();
523                                 }
524                                 else
525                                 {
526                                         SysLog(NID_APP, "No default applicaiton information, possible database error.");
527                                 }
528                         }
529                         else
530                         {
531                                 _appName = pInfo->GetAppDisplayName();
532                         }
533                 }
534                 else
535                 {
536                         SysLog(NID_APP, "PackageInfo of appId(%ls) does not exist", appId.GetPointer());
537                 }
538         }
539
540         return _appName;
541 }
542
543 String
544 _AppControlImpl::GetAppId(void) const
545 {
546         return _appId;
547 }
548
549 const String&
550 _AppControlImpl::GetAppControlProviderId(void) const
551 {
552         return _appId;
553 }
554
555 const String&
556 _AppControlImpl::GetOperationId(void) const
557 {
558         return _opId;
559 }
560
561 IList*
562 _AppControlImpl::GetCategoryListN(void) const
563 {
564         AppId appId = GetAppId();
565         SysTryReturn(NID_APP, !appId.IsEmpty(), null, E_SYSTEM, "[E_SYSTEM] Empty appId.");
566
567         AppId aliasAppId = _AppControlRegistry::GetInstance()->GetAliasAppId(appId);
568         if (!aliasAppId.IsEmpty())
569         {
570                 appId = aliasAppId;
571         }
572
573         SysLog(NID_APP, "Acquiring category for app %ls.", appId.GetPointer());
574
575         std::unique_ptr<PackageAppInfo> pAppInfo(_PackageManagerImpl::GetInstance()->GetPackageAppInfoN(appId));
576         SysTryReturn(NID_APP, pAppInfo.get() != null, null, E_SYSTEM, "[E_SYSTEM] Getting PackageAppInfo failed.");
577
578         return pAppInfo->GetAppCategoryListN();
579 }
580
581 void
582 _AppControlImpl::StopAppControlResponseListener(IAppControlResponseListener* pListener)
583 {
584         _AppControlManager::GetInstance()->StopAppControlResponseListener(pListener);
585 }
586
587 void
588 _AppControlImpl::OnAppControlResponseEventReceivedN(const Tizen::Base::Runtime::IEventArg* arg)
589 {
590         const _AppControlResponseEventArg* pEventArg = dynamic_cast<const _AppControlResponseEventArg*>(arg);
591
592         if (pEventArg != null)
593         {
594                 IAppControlResponseListener* pResponseListener = pEventArg->GetListener();
595
596                 if(pResponseListener != null)
597                 {
598                         if(pEventArg->GetType() == _APPCONTROL_RESPONSETYPE_COMPLETE)
599                         {
600                                 _AppControlManager::InvokeAppControlCompleteListener(*pResponseListener, pEventArg->GetAppId(), pEventArg->GetOperationId(), pEventArg->GetAppControlResult(), pEventArg->GetExtraData(), pEventArg->IsSubMode());
601
602                                 _AppControlResponseEvent* pResponseEvent = null;
603                                 _AppControlManager::GetInstance()->GetAppControlResponseEventContainer()->GetValue(pEventArg->GetRequestId(), pResponseEvent);
604                                 _AppControlManager::GetInstance()->GetAppControlResponseEventContainer()->Remove(pEventArg->GetRequestId());
605                                 delete pResponseEvent;
606                                 SysLog(NID_APP, "pResponseEvent gets deleted, reqId(%d)", pEventArg->GetRequestId());
607                         }
608                         else
609                         {
610                                 SysLog(NID_APP, "Unexpected AppControlResponseType(%d)", pEventArg->GetType());
611                         }
612                 }
613                 else
614                 {
615                         SysLog(NID_APP, "Invalid ResponseListener");
616                 }
617         }
618         else
619         {
620                 SysLog(NID_APP, "Invalid AppControl arguments : arg(0x%x)", &arg);
621         }
622
623 }
624 }}    //Tizen::App