Merge "Fix DataSet for exception case" into tizen_2.1
[platform/framework/native/appfw.git] / src / io / FIo_SerialPortImpl.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://floralicense.org/license/
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_SerialPortImpl.h
20  * @brief       This is the header file for the %_SerialPortImpl class.
21  *
22  * This header file contains the declarations of the %_SerialPortImpl class.
23  */
24
25 #ifndef _FIO_INTERNAL_SERIALPORT_IMPL_H_
26 #define _FIO_INTERNAL_SERIALPORT_IMPL_H_
27
28 #include <FBaseRtEvent.h>
29 #include <FIo.h>
30 #include <FIoISerialPortEventListener.h>
31 #include <FIo_IIpcClientEventListener.h>
32
33 namespace Tizen { namespace Base { namespace Collection {
34 class ArrayList;
35 }}}
36
37 namespace Tizen { namespace Io
38 {
39
40 class _SerialPortImpl
41         : public _IIpcClientEventListener
42 {
43 public:
44         _SerialPortImpl(ISerialPortEventListener& listener);
45
46         virtual ~_SerialPortImpl(void);
47
48         result Write(const Tizen::Base::ByteBuffer &byteBuffer);
49         int GetWriteBufferSize(void) const;
50         void OnIpcResponseReceived(_IpcClient& client, const IPC::Message& message);
51         void OnDataReceived(const Tizen::Base::Collection::ArrayList& data);
52
53 private:
54         _IpcClient*                     __pIpcClient;
55         Tizen::Base::Runtime::Event*    __pEvent;
56
57         _SerialPortImpl(_SerialPortImpl& serialPortImpl);
58
59         _SerialPortImpl& operator =(const _SerialPortImpl& serialPortImpl);
60 };
61
62 }} //Tizen::Io
63
64 #endif // _FIO_INTERNAL_SERIALPORT_IMPL_H_