cec: use boost::shared_ptr for messages
[deb_libcec.git] / src / lib / AdapterCommunication.h
1 #pragma once
2 /*
3 * This file is part of the libCEC(R) library.
4 *
5 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
7 *
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 *
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 *
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
27 *
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
32 */
33
34 #include <cectypes.h>
35 #include "platform/threads.h"
36 #include "util/buffer.h"
37 #include <string>
38 #include <boost/enable_shared_from_this.hpp>
39 #include <boost/shared_ptr.hpp>
40
41 namespace CEC
42 {
43 class CCECAdapterMessage : public boost::enable_shared_from_this<CCECAdapterMessage>
44 {
45 public:
46 CCECAdapterMessage(void) {}
47 CCECAdapterMessage(const cec_command &command);
48 CCECAdapterMessage &operator =(const CCECAdapterMessage &msg);
49
50 bool empty(void) const { return packet.empty(); }
51 uint8_t operator[](uint8_t pos) const { return packet[pos]; }
52 uint8_t at(uint8_t pos) const { return packet[pos]; }
53 uint8_t size(void) const { return packet.size; }
54 void clear(void) { packet.clear(); }
55 void shift(uint8_t iShiftBy) { packet.shift(iShiftBy); }
56 void push_back(uint8_t add) { packet.push_back(add); }
57 cec_adapter_messagecode message(void) const { return packet.size >= 1 ? (cec_adapter_messagecode) (packet.at(0) & ~(MSGCODE_FRAME_EOM | MSGCODE_FRAME_ACK)) : MSGCODE_NOTHING; }
58 bool eom(void) const { return packet.size >= 1 ? (packet.at(0) & MSGCODE_FRAME_EOM) != 0 : false; }
59 bool ack(void) const { return packet.size >= 1 ? (packet.at(0) & MSGCODE_FRAME_ACK) != 0 : false; }
60 cec_logical_address initiator(void) const { return packet.size >= 2 ? (cec_logical_address) (packet.at(1) >> 4) : CECDEVICE_UNKNOWN; };
61 cec_logical_address destination(void) const { return packet.size >= 2 ? (cec_logical_address) (packet.at(1) & 0xF) : CECDEVICE_UNKNOWN; };
62 void push_escaped(int16_t byte);
63
64 cec_datapacket packet;
65 };
66 typedef boost::shared_ptr<CCECAdapterMessage> CCECAdapterMessagePtr;
67
68 class CSerialPort;
69 class CLibCEC;
70
71 class CAdapterCommunication : private CThread
72 {
73 public:
74 CAdapterCommunication(CLibCEC *controller);
75 virtual ~CAdapterCommunication();
76
77 bool Open(const char *strPort, uint16_t iBaudRate = 38400, uint32_t iTimeoutMs = 10000);
78 bool Read(CCECAdapterMessage &msg, uint32_t iTimeout = 1000);
79 bool Write(CCECAdapterMessagePtr data);
80 bool PingAdapter(void);
81 void Close(void);
82 bool IsOpen(void) const;
83 std::string GetError(void) const;
84
85 void *Process(void);
86
87 bool StartBootloader(void);
88 bool SetAckMask(uint16_t iMask);
89
90 private:
91 void WriteNextCommand(void);
92 void AddData(uint8_t *data, uint8_t iLen);
93 bool ReadFromDevice(uint32_t iTimeout);
94
95 CSerialPort * m_port;
96 CLibCEC * m_controller;
97 CecBuffer<uint8_t> m_inBuffer;
98 CecBuffer<CCECAdapterMessagePtr> m_outBuffer;
99 CMutex m_bufferMutex;
100 CCondition m_rcvCondition;
101 };
102 };