wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / SecureElement / SEListenerManager.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18
19 #ifndef _TIZEN_SE_LISTENER_MANAGER_H_
20 #define _TIZEN_SE_LISTENER_MANAGER_H_
21
22 #include <map>
23 #include <JavaScriptCore/JavaScript.h>
24 #include <dpl/shared_ptr.h>
25 #include <dpl/singleton.h>
26 #include <IListenerManager.h>
27 #include "JSSEService.h"
28 #include <Logger.h>
29
30 namespace DeviceAPI {
31 namespace SecureElement {
32
33
34
35 class SEListenerManager : public DeviceAPI::Common::IListenerController
36 {
37 public:
38         SEListenerManager()
39         {
40         }
41
42         virtual ~SEListenerManager()
43         {
44         }
45
46 };
47 typedef DPL::Singleton<SEListenerManager> SEListenerManagerSingleton;
48
49 class SEListenerCanceller : public DeviceAPI::Common::IListenerItem
50 {
51 public:
52         SEListenerCanceller(JSContextRef context, JSObjectRef object, long watchId) :
53                 DeviceAPI::Common::IListenerItem(context, object, watchId)
54         {
55         }
56
57         virtual ~SEListenerCanceller()
58         {
59         }
60
61         virtual void cancelListener()
62         {
63                 SEServicePrivObject* privateObject = static_cast<SEServicePrivObject*>(JSObjectGetPrivate(m_object));
64                 if (NULL == privateObject) {
65                         LoggerE("private object is null");
66                         return;
67                 }
68
69                 Try     {
70                         ISEServicePtr seService(privateObject->getObject());
71
72                         seService->unregisterSEListener(static_cast<unsigned long>(m_watchId));
73                 } Catch(WrtDeviceApis::Commons::Exception) {
74                         LoggerE("Error on platform : " << _rethrown_exception.GetMessage());
75                 }
76         }
77 };
78 typedef DPL::SharedPtr<SEListenerCanceller> SEListenerCancellerPtr;
79
80 } // SecureElement
81 } // DeviceAPI
82
83 #endif // _TIZEN_SE_LISTENER_MANAGER_H_