sync with tizen_2.0
[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 <FIo.h>
29 #include <FIoISerialPortEventListener.h>
30 #include <FIo_IIpcClientEventListener.h>
31
32 namespace Tizen { namespace Base { namespace Collection {
33 class ArrayList;
34 }}}
35
36 namespace Tizen { namespace Io
37 {
38
39 class _SerialPortImpl
40         : public _IIpcClientEventListener
41 {
42 public:
43         _SerialPortImpl(ISerialPortEventListener& listener);
44
45         virtual ~_SerialPortImpl(void);
46
47         result Write(const Tizen::Base::ByteBuffer &byteBuffer);
48         int GetWriteBufferSize(void) const;
49         void OnIpcResponseReceived(_IpcClient& client, const IPC::Message& message);
50         void OnDataReceived(const Tizen::Base::Collection::ArrayList& data);
51
52 private:
53         _IpcClient*                     __pIpcClient;
54         ISerialPortEventListener*       __pEventListener;
55
56         _SerialPortImpl(_SerialPortImpl& serialPortImpl);
57
58         _SerialPortImpl& operator =(const _SerialPortImpl& serialPortImpl);
59 };
60
61 }} //Tizen::Io
62
63 #endif // _FIO_INTERNAL_SERIALPORT_IMPL_H_