Merge "[ACR][10/09/2013][Versioning]Enhancing Parse() and Decode() API to support...
[platform/framework/native/appfw.git] / src / system / FSys_SystemServiceMessageClient.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_SystemServiceMessageClient.h
19  * @brief               This is the header file for the _SystemServiceMessageClient class.
20  */
21
22 #ifndef _FSYS_INTERNAL_SYSTEM_SERVICE_MESSAGE_CLIENT_IMPL_H_
23 #define _FSYS_INTERNAL_SYSTEM_SERVICE_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 _SystemServiceMessageClient
39         : public Tizen::Io::_IIpcClientEventListener
40 {
41 private:
42         _SystemServiceMessageClient();
43 public:
44         _SystemServiceMessageClient(const Tizen::Base::String id);
45         ~_SystemServiceMessageClient();
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         void OnIpcServerDisconnected(Tizen::Io::_IpcClient& client);
51
52         Tizen::Io::_IpcClient* GetIpcClient(void);
53         static _SystemServiceMessageClient* CreateInstance(const Tizen::Base::String id);
54
55 private:
56         std::unique_ptr< Tizen::Io::_IpcClient >        __pIpcClient;
57         _ICommunicationDispatcherListener* __pSystemServiceMessageListener;
58 };
59
60 }} // Tizen::System
61
62 #endif //_FSYS_INTERNAL_SYSTEM_SERVICE_MESSAGE_CLIENT_IMPL_H_