Update change log and spec for wrt-plugins-tizen_0.4.27
[framework/web/wrt-plugins-tizen.git] / src / DataSync / DataSyncListenerManager.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_DATASYNC_LISTENER_MANAGER_H_
20 #define _TIZEN_DATASYNC_LISTENER_MANAGER_H_
21
22 #include <JavaScriptCore/JavaScript.h>
23 #include <dpl/shared_ptr.h>
24 #include <dpl/singleton.h>
25 #include <IListenerManager.h>
26 #include "DataSyncResponseDispatcher.h"
27 #include "JSDataSyncManager.h"
28 #include "IDataSyncManager.h"
29 #include <sstream>
30 #include <Logger.h>
31
32 namespace DeviceAPI {
33 namespace DataSync {
34
35 class DataSyncListenerManager : public DeviceAPI::Common::IListenerController
36 {
37         public:
38         DataSyncListenerManager()
39         {
40         }
41
42         virtual ~DataSyncListenerManager()
43         {
44         }
45 };
46 typedef DPL::Singleton<DataSyncListenerManager> DataSyncListenerManagerSingleton;
47
48 class DataSyncListenerCanceller : public DeviceAPI::Common::IListenerItem
49 {
50         public:
51         DataSyncListenerCanceller(JSContextRef context, JSObjectRef object, long watchId) :
52                 DeviceAPI::Common::IListenerItem(context, object, watchId)
53         {
54         }
55
56         virtual ~DataSyncListenerCanceller()
57         {
58         }
59
60         virtual void cancelListener()
61         {
62                 DataSyncManagerPrivObject *privateObject = static_cast<DataSyncManagerPrivObject*>(JSObjectGetPrivate(m_object));
63                 if (!privateObject) {
64                         LoggerW("Object is null.");
65                         return;
66                 }
67
68                 IDataSyncManagerPtr datasyncManager = privateObject->getObject();
69
70                 Try {
71                         LoggerD("Remove change listeners for datasync operation with id: "<<m_watchId);
72                         IEventStopSyncPtr dplEvent(new IEventStopSync());
73                         std::stringstream ss;
74                         ss<<m_watchId;
75                         dplEvent->setProfileId(std::string(ss.str()));
76                         dplEvent->setForSynchronousCall();
77                         datasyncManager->stopSync(dplEvent);
78                 } Catch(WrtDeviceApis::Commons::Exception) {
79                         LoggerE("Error on platform : " << _rethrown_exception.GetMessage());
80                 }
81         }
82 };
83 typedef DPL::SharedPtr<DataSyncListenerCanceller> DataSyncListenerCancellerPtr;
84
85 }
86 }
87
88 #endif // _TIZEN_DATASYNC_LISTENER_MANAGER_H_