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