Remove the C-Channel
[platform/framework/native/channel-service.git] / inc / FIo_ChannelService.h
1 //
2 // Open Service Platform
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  * @file        FIo_ChannelService.h
20  * @brief       This is the header file for the _ChannelService class.
21  *
22  * This file contains the declarations of _ChannelService.
23  */
24
25 #ifndef _FIO_INTERNAL_CHANNEL_SERVICE_H_
26 #define _FIO_INTERNAL_CHANNEL_SERVICE_H_
27
28 #include <vector>
29
30 #include <FBaseResult.h>
31 #include <FBaseObject.h>
32 #include <FBaseColIList.h>
33 #include <FBaseColHashMapT.h>
34 #include <FOspConfig.h>
35 #include "FIo_IChannelService.h"
36 #include "FIo_IChannelServiceEventListener.h"
37
38 namespace IPC
39 {
40 class Message;
41 }
42
43 namespace Tizen { namespace Io
44 {
45 class _IChannelServiceStub;
46
47 class _OSP_EXPORT_ _ChannelService
48         : public Tizen::Base::Object
49         , public Tizen::Io::_IChannelService
50 {
51 public:
52         _ChannelService(void);
53
54         virtual ~_ChannelService(void);
55
56         virtual result Construct(_IChannelServiceStub& stub);
57
58         // _IChannelService
59         virtual result RegisterChannel(const Tizen::Base::String& channelId, const _IChannelServiceEventListener& listener);
60         virtual result UnregisterChannel(const Tizen::Base::String& channelId);
61
62         virtual result SendRequest(const Tizen::Base::String& src, const Tizen::Base::String& dest, const Tizen::Base::Collection::ArrayList& args, int messageId);
63         virtual result SendNullRequest(const Tizen::Base::String& src, const Tizen::Base::String& dest, int messageId);
64
65         virtual result SendResponse(const Tizen::Base::String& src, const Tizen::Base::String& dest, const Tizen::Base::Collection::ArrayList& args, int messageId);
66         virtual result SendNullResponse(const Tizen::Base::String& src, const Tizen::Base::String& dest, int messageId);
67
68
69         bool IsChannelRegistered(const Tizen::Base::String& channelId);
70
71         result RegisterChannel(const Tizen::Base::String& channelId, int clientId);
72
73         result UnregisterChannel(int clientId);
74
75 private:
76
77         struct _ChannelInfo
78         {
79                 Tizen::Base::String channelId;
80                 int clientId;
81                 void* pGIOChannel;
82         };
83
84         class _StringHashProvider
85                 : public Tizen::Base::Collection::IHashCodeProviderT<Tizen::Base::String>
86         {
87         public:
88                 virtual int GetHashCode(const Tizen::Base::String& value) const
89                 {
90                         return value.GetHashCode();
91                 }
92         };
93
94         class _StringComparer
95                 : public Tizen::Base::Collection::IComparerT<Tizen::Base::String>
96         {
97         public:
98                 virtual result Compare(const Tizen::Base::String& string1, const Tizen::Base::String& string2, int& cmp) const
99                 {
100                         cmp = string1.CompareTo(string2);
101                         return E_SUCCESS;
102                 }
103         };
104 private:
105         _IChannelServiceStub* __pIChannelServiceStub;
106         Tizen::Base::Collection::HashMapT <Tizen::Base::String, _ChannelInfo*> __channels;
107
108 }; // _ChannelService
109
110
111 } } // Tizen::Io
112
113 #endif // _FIO_INTERNAL_CHANNEL_SERVICE_STUB_H_