sync with tizen_2.0
[platform/framework/native/appfw.git] / src / io / inc / FIo_LocalMessagePortImpl.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_LocalMessagePortImpl.h
20  * @brief       This is the header file for the _LocalMessagePortImpl class.
21  *
22  * This file contains the declarations of  _LocalMessagePortImpl
23  */
24
25
26 #ifndef _FIO_LOCAL_MESSAGE_PORT_IMPL_H_
27 #define _FIO_LOCAL_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 <FBaseRtEvent.h>
36 #include <FAppTypes.h>
37
38 #include "FIo_IMessagePortListener.h"
39
40
41 namespace Tizen { namespace Io
42 {
43
44 class LocalMessagePort;
45 class IMessagePortListener;
46
47 class _LocalMessagePortImpl
48         : public _IMessagePortListener
49 {
50 public:
51         _LocalMessagePortImpl(void);
52
53         virtual ~_LocalMessagePortImpl(void);
54
55         result Construct(const Tizen::Base::String& port, bool isTrusted = false);
56
57         result AddMessagePortListener(IMessagePortListener& listener);
58
59         result RemoveMessagePortListener(IMessagePortListener& listener);
60
61         Tizen::Base::String GetName(void) const;
62
63         bool IsTrusted(void) const;
64
65         virtual void OnMessageReceivedN(Tizen::Base::Collection::IMap* pMap);
66
67         virtual void OnMessageReceivedN(const Tizen::App::AppId& remoteAppId, const Tizen::Base::String& remotePort, bool isTrusted, Tizen::Base::Collection::IMap* pMap);
68
69         static LocalMessagePort* GetMessagePort(const Tizen::Base::String& port, bool isTrusted = false);
70
71 private:
72         _LocalMessagePortImpl(const _LocalMessagePortImpl& value);
73
74         _LocalMessagePortImpl& operator =(const _LocalMessagePortImpl& value);
75
76 private:
77         Tizen::Base::String __port;
78         bool __isTrusted;
79
80         Tizen::Base::Runtime::Event* __pEvent;
81
82 }; // _LocalMessagePortImpl
83
84 } } // Tizen::Io
85
86 #endif //_FIO_LOCAL_MESSAGE_PORT_IMPL_H_