Merge "Add Setting feature on system-server lib" into tizen_2.2
[platform/framework/native/appfw.git] / src / system / FSys_DeviceManagerMsgClient.h
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                FSys_DeviceManagerMsgClient.h
19  * @brief               This is the header file for the _DeviceManagerMsgClient class.
20  */
21
22 #ifndef _FSYS_INTERNAL_DEVICE_MANAGER_MESSAGE_CLIENT_IMPL_H_
23 #define _FSYS_INTERNAL_DEVICE_MANAGER_MESSAGE_CLIENT_IMPL_H_
24
25 #include <unique_ptr.h>
26 #include <FBaseString.h>
27 #include <FBaseComparerT.h>
28 #include <FBaseStringHashCodeProvider.h>
29 #include <FBaseColHashMapT.h>
30
31 #include <FIo_IpcClient.h>
32 #include <FIo_IIpcClientEventListener.h>
33 #include <FSys_ICommunicationDispatcherListener.h>
34
35 namespace Tizen { namespace System
36 {
37
38 class _DeviceManagerMsgClient
39         : public Tizen::Io::_IIpcClientEventListener
40 {
41 private:
42         _DeviceManagerMsgClient();
43         ~_DeviceManagerMsgClient();
44
45 public:
46         result RegisterListener(const Tizen::Base::String key, _ICommunicationDispatcherListener& listener);
47         result UnregisterListener(const Tizen::Base::String key);
48         void OnIpcResponseReceived(Tizen::Io::_IpcClient& client, const IPC::Message& message);
49         void OnDataReceived(const Tizen::Base::Collection::ArrayList& data);
50
51         Tizen::Io::_IpcClient* GetIpcClient(void);
52         static _DeviceManagerMsgClient* GetInstance(void);
53
54 private:
55         std::unique_ptr< Tizen::Io::_IpcClient >        __pIpcClient;
56         _ICommunicationDispatcherListener* __pDeviceManagerMsgListener;
57 private:
58         static _DeviceManagerMsgClient* __pDeviceManagerMsgClient;
59 };
60
61 }} // Tizen::System
62
63 #endif //_FSYS_INTERNAL_DEVICE_MANAGER_MESSAGE_CLIENT_IMPL_H_