Remove the web 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 class _ChannelCAppStub;
47
48 enum _ChannelType
49 {
50         OSPAPP_CHANNEL = 0,
51         CAPP_CHANNEL,
52 };
53
54 class _OSP_EXPORT_ _ChannelService
55         : public Tizen::Base::Object
56         , public Tizen::Io::_IChannelService
57 {
58 public:
59         _ChannelService(void);
60
61         virtual ~_ChannelService(void);
62
63         virtual result Construct(_IChannelServiceStub& stub);
64
65         // _IChannelService
66         virtual result RegisterChannel(const Tizen::Base::String& channelId, const _IChannelServiceEventListener& listener);
67         virtual result UnregisterChannel(const Tizen::Base::String& channelId);
68
69         virtual result SendRequest(const Tizen::Base::String& src, const Tizen::Base::String& dest, const Tizen::Base::Collection::ArrayList& args, int messageId);
70         virtual result SendNullRequest(const Tizen::Base::String& src, const Tizen::Base::String& dest, int messageId);
71
72         virtual result SendResponse(const Tizen::Base::String& src, const Tizen::Base::String& dest, const Tizen::Base::Collection::ArrayList& args, int messageId);
73         virtual result SendNullResponse(const Tizen::Base::String& src, const Tizen::Base::String& dest, int messageId);
74
75
76         bool IsChannelRegistered(const Tizen::Base::String& channelId);
77
78         result RegisterChannel(const Tizen::Base::String& channelId, int clientId, unsigned int type = OSPAPP_CHANNEL);
79
80         result RegisterChannel(const Tizen::Base::String& channelId, int clientId, void* pGIOChannel);
81
82         result UnregisterChannel(int clientId);
83
84 private:
85
86         struct _ChannelInfo
87         {
88                 Tizen::Base::String channelId;
89                 int clientId;
90                 void* pGIOChannel;
91                 unsigned int type;
92         };
93
94         class _StringHashProvider
95                 : public Tizen::Base::Collection::IHashCodeProviderT<Tizen::Base::String>
96         {
97         public:
98                 virtual int GetHashCode(const Tizen::Base::String& value) const
99                 {
100                         return value.GetHashCode();
101                 }
102         };
103
104         class _StringComparer
105                 : public Tizen::Base::Collection::IComparerT<Tizen::Base::String>
106         {
107         public:
108                 virtual result Compare(const Tizen::Base::String& string1, const Tizen::Base::String& string2, int& cmp) const
109                 {
110                         cmp = string1.CompareTo(string2);
111                         return E_SUCCESS;
112                 }
113         };
114 private:
115         _IChannelServiceStub* __pIChannelServiceStub;
116         Tizen::Base::Collection::HashMapT <Tizen::Base::String, _ChannelInfo*> __channels;
117
118 }; // _ChannelService
119
120
121 } } // Tizen::Io
122
123 #endif // _FIO_INTERNAL_CHANNEL_SERVICE_STUB_H_