sync with tizen_2.0
[platform/framework/native/appfw.git] / src / io / inc / FIo_RemoteMessagePortImpl.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_RemoteMessagePortImpl.h
20  * @brief       This is the header file for the _RemoteMessagePortImpl class.
21  *
22  * This file contains the declarations of  _RemoteMessagePortImpl
23  */
24
25
26 #ifndef _FIO_REMOTE_MESSAGE_PORT_IMPL_H_
27 #define _FIO_REMOTE_MESSAGE_PORT_IMPL_H_
28
29 #include <FBaseResult.h>
30 #include <FBaseDataType.h>
31 #include <FBaseObject.h>
32 #include <FBaseString.h>
33 #include <FBaseColIMap.h>
34 #include <FBaseColLinkedListT.h>
35 #include <FAppTypes.h>
36
37
38 namespace Tizen { namespace Io
39 {
40
41 class RemoteMessagePort;
42 class IMessagePortListener;
43
44 class _RemoteMessagePortImpl
45 {
46 public:
47         _RemoteMessagePortImpl(void);
48
49         virtual ~_RemoteMessagePortImpl(void);
50
51         result Construct(const Tizen::App::AppId& remoteAppId, const Tizen::Base::String& remotePort, bool isTrusted = false);
52
53         Tizen::Base::String GetName(void) const;
54
55         Tizen::App::AppId GetAppId(void) const;
56
57         bool IsTrusted(void) const;
58
59         result SendMessage(const Tizen::Base::Collection::IMap* pMessage);
60
61         result SendMessage(const LocalMessagePort* pLocalMessagePort, const Tizen::Base::Collection::IMap* pMessage);
62
63         static RemoteMessagePort* GetMessagePort(const Tizen::App::AppId& remoteAppId, const Tizen::Base::String& remotePort, bool isTrusted = false);
64
65         static RemoteMessagePort* GetMessagePortOnly(const Tizen::App::AppId& remoteAppId, const Tizen::Base::String& remotePort, bool isTrusted = false);
66
67 private:
68         _RemoteMessagePortImpl(const _RemoteMessagePortImpl& value);
69
70         _RemoteMessagePortImpl& operator =(const _RemoteMessagePortImpl& value);
71
72         bool CheckMessageType(const Tizen::Base::Collection::IMap* pMessage);
73
74 private:
75         Tizen::App::AppId __remoteAppId;
76         Tizen::Base::String __remotePort;
77         bool __isTrusted;
78
79 }; // _RemoteMessagePortImpl
80
81 } } // Tizen::Io
82
83 #endif //_FIO_REMOTE_MESSAGE_PORT_IMPL_H_