cec: wait for messages to be transmitted before continueing in CCECProcessor::Transmit()
[deb_libcec.git] / src / lib / AdapterCommunication.cpp
CommitLineData
a8f0bd18
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
828682d3 33#include "AdapterCommunication.h"
2abe74eb
LOK
34
35#include "LibCEC.h"
b9187cc6 36#include "platform/serialport.h"
a8f0bd18 37#include "util/StdString.h"
50aa01e6 38#include "platform/timeutils.h"
a8f0bd18
LOK
39
40using namespace std;
41using namespace CEC;
42
ad24cbaf
LOK
43CCECAdapterMessage::CCECAdapterMessage(const cec_command &command)
44{
45 clear();
46
47 //set ack polarity to high when transmitting to the broadcast address
48 //set ack polarity low when transmitting to any other address
49 push_back(MSGSTART);
50 push_escaped(MSGCODE_TRANSMIT_ACK_POLARITY);
51 if (command.destination == CECDEVICE_BROADCAST)
52 push_escaped(CEC_TRUE);
53 else
54 push_escaped(CEC_FALSE);
55 push_back(MSGEND);
56
57 // add source and destination
58 push_back(MSGSTART);
59 push_escaped(MSGCODE_TRANSMIT);
60 push_back(((uint8_t)command.initiator << 4) + (uint8_t)command.destination);
61 push_back(MSGEND);
62
63 // add opcode
64 push_back(MSGSTART);
65 push_escaped(command.parameters.empty() ? (uint8_t)MSGCODE_TRANSMIT_EOM : (uint8_t)MSGCODE_TRANSMIT);
66 push_back((uint8_t) command.opcode);
67 push_back(MSGEND);
68
69 // add parameters
70 for (int8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
71 {
72 push_back(MSGSTART);
73
74 if (iPtr == command.parameters.size - 1)
75 push_escaped( MSGCODE_TRANSMIT_EOM);
76 else
77 push_escaped(MSGCODE_TRANSMIT);
78
79 push_escaped(command.parameters[iPtr]);
80
81 push_back(MSGEND);
82 }
83}
84
85CCECAdapterMessage &CCECAdapterMessage::operator =(const CCECAdapterMessage &msg)
86{
87 packet = msg.packet;
88 return *this;
89}
90
91void CCECAdapterMessage::push_escaped(int16_t byte)
92{
93 if (byte >= MSGESC && byte != MSGSTART)
94 {
95 push_back(MSGESC);
96 push_back(byte - ESCOFFSET);
97 }
98 else
99 push_back(byte);
100}
101
2abe74eb 102CAdapterCommunication::CAdapterCommunication(CLibCEC *controller) :
12027dbe 103 m_port(NULL),
50aa01e6 104 m_controller(controller)
a8f0bd18
LOK
105{
106 m_port = new CSerialPort;
107}
108
828682d3 109CAdapterCommunication::~CAdapterCommunication(void)
a8f0bd18 110{
12027dbe
LOK
111 Close();
112
113 if (m_port)
114 {
115 delete m_port;
116 m_port = NULL;
117 }
a8f0bd18
LOK
118}
119
25701fa6 120bool CAdapterCommunication::Open(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
a8f0bd18 121{
f077e8ed 122 CLockObject lock(&m_mutex);
13fd6a66
LOK
123 if (!m_port)
124 {
125 m_controller->AddLog(CEC_LOG_ERROR, "port is NULL");
a8f0bd18 126 return false;
13fd6a66
LOK
127 }
128
129 if (IsOpen())
130 {
131 m_controller->AddLog(CEC_LOG_ERROR, "port is already open");
132 }
a8f0bd18
LOK
133
134 if (!m_port->Open(strPort, iBaudRate))
135 {
136 CStdString strError;
137 strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
2abe74eb 138 m_controller->AddLog(CEC_LOG_ERROR, strError);
a8f0bd18
LOK
139 return false;
140 }
141
2abe74eb 142 m_controller->AddLog(CEC_LOG_DEBUG, "connection opened");
a8f0bd18
LOK
143
144 //clear any input bytes
145 uint8_t buff[1024];
59c9774c 146 m_port->Read(buff, sizeof(buff), 500);
a8f0bd18 147
828682d3 148 if (CreateThread())
a8f0bd18 149 {
13fd6a66 150 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread created");
a8f0bd18
LOK
151 return true;
152 }
153 else
154 {
13fd6a66 155 m_controller->AddLog(CEC_LOG_DEBUG, "could not create a communication thread");
a8f0bd18
LOK
156 }
157
158 return false;
159}
160
828682d3 161void CAdapterCommunication::Close(void)
a8f0bd18 162{
f077e8ed 163 CLockObject lock(&m_mutex);
828682d3 164 StopThread();
25701fa6 165
d5bffd3c 166 m_rcvCondition.Broadcast();
a8f0bd18
LOK
167}
168
828682d3 169void *CAdapterCommunication::Process(void)
a8f0bd18 170{
12027dbe
LOK
171 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread started");
172
13fd6a66 173 while (!IsStopped())
a8f0bd18 174 {
b9abf920 175 ReadFromDevice(500);
3c53ac93
LOK
176 WriteNextCommand();
177 Sleep(5);
a8f0bd18
LOK
178 }
179
a8f0bd18
LOK
180 return NULL;
181}
182
25701fa6 183bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
a8f0bd18 184{
25701fa6 185 int32_t iBytesRead;
13fd6a66
LOK
186 uint8_t buff[1024];
187 if (!m_port)
188 return false;
b6c82769 189
13fd6a66
LOK
190 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
191 if (iBytesRead < 0 || iBytesRead > 256)
a8f0bd18 192 {
13fd6a66
LOK
193 CStdString strError;
194 strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
195 m_controller->AddLog(CEC_LOG_ERROR, strError);
13fd6a66 196 return false;
a8f0bd18 197 }
13fd6a66
LOK
198 else if (iBytesRead > 0)
199 AddData(buff, (uint8_t) iBytesRead);
25701fa6 200
13fd6a66 201 return iBytesRead > 0;
a8f0bd18
LOK
202}
203
8bca69de 204void CAdapterCommunication::AddData(uint8_t *data, uint8_t iLen)
a8f0bd18 205{
f077e8ed 206 CLockObject lock(&m_mutex);
50aa01e6
LOK
207 for (unsigned int iPtr = 0; iPtr < iLen; iPtr++)
208 m_inBuffer.Push(data[iPtr]);
d5bffd3c
LOK
209
210 m_rcvCondition.Signal();
a8f0bd18
LOK
211}
212
3c53ac93 213void CAdapterCommunication::WriteNextCommand(void)
a8f0bd18 214{
5a1e87c8 215 CCECAdapterMessagePtr msg;
3c53ac93 216 if (m_outBuffer.Pop(msg))
a8f0bd18 217 {
eb35e4ca 218 CLockObject lock(&msg->mutex);
5a1e87c8 219 if (m_port->Write(msg) != (int32_t) msg.get()->size())
3c53ac93
LOK
220 {
221 CStdString strError;
222 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
223 m_controller->AddLog(CEC_LOG_ERROR, strError);
224 }
225 else
226 {
227 m_controller->AddLog(CEC_LOG_DEBUG, "command sent");
5a1e87c8 228 CCondition::Sleep((uint32_t) msg.get()->size() * (uint32_t)24 /*data*/ + (uint32_t)5 /*start bit (4.5 ms)*/);
3c53ac93 229 }
eb35e4ca 230 msg->condition.Signal();
25701fa6 231 }
3c53ac93 232}
2abe74eb 233
5a1e87c8 234bool CAdapterCommunication::Write(CCECAdapterMessagePtr data)
3c53ac93
LOK
235{
236 m_outBuffer.Push(data);
a8f0bd18
LOK
237 return true;
238}
239
220537f2 240bool CAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
a8f0bd18 241{
f077e8ed 242 CLockObject lock(&m_mutex);
a8f0bd18 243
50aa01e6
LOK
244 msg.clear();
245 uint64_t iNow = GetTimeMs();
246 uint64_t iTarget = iNow + iTimeout;
247 bool bGotFullMessage(false);
248 bool bNextIsEscaped(false);
249 bool bGotStart(false);
a8f0bd18 250
50aa01e6 251 while(!bGotFullMessage && iNow < iTarget)
a8f0bd18 252 {
50aa01e6
LOK
253 uint8_t buf = 0;
254 if (!m_inBuffer.Pop(buf))
a8f0bd18 255 {
f077e8ed 256 if (!m_rcvCondition.Wait(&m_mutex, iTarget - iNow))
50aa01e6 257 return false;
a8f0bd18 258 }
a8f0bd18 259
50aa01e6 260 if (!bGotStart)
a8f0bd18 261 {
50aa01e6
LOK
262 if (buf == MSGSTART)
263 bGotStart = true;
264 continue;
a8f0bd18 265 }
50aa01e6 266 else if (buf == MSGSTART) //we found a msgstart before msgend, this is not right, remove
a8f0bd18 267 {
50aa01e6
LOK
268 m_controller->AddLog(CEC_LOG_ERROR, "received MSGSTART before MSGEND");
269 msg.clear();
270 bGotStart = true;
a8f0bd18 271 }
a8f0bd18 272
50aa01e6 273 if (buf == MSGEND)
a8f0bd18 274 {
50aa01e6 275 bGotFullMessage = true;
a8f0bd18 276 }
50aa01e6
LOK
277 else if (bNextIsEscaped)
278 {
279 msg.push_back(buf + (uint8_t)ESCOFFSET);
280 bNextIsEscaped = false;
281 }
282 else if (buf == MSGESC)
283 bNextIsEscaped = true;
284 else
285 msg.push_back(buf);
a8f0bd18
LOK
286 }
287
50aa01e6 288 return bGotFullMessage;
a8f0bd18
LOK
289}
290
828682d3 291std::string CAdapterCommunication::GetError(void) const
a8f0bd18
LOK
292{
293 return m_port->GetError();
294}
2abe74eb
LOK
295
296bool CAdapterCommunication::StartBootloader(void)
297{
298 if (!IsRunning())
299 return false;
300
301 m_controller->AddLog(CEC_LOG_DEBUG, "starting the bootloader");
5a1e87c8 302 CCECAdapterMessagePtr output(new CCECAdapterMessage);
25701fa6 303
5a1e87c8
LOK
304 output->push_back(MSGSTART);
305 output->push_escaped(MSGCODE_START_BOOTLOADER);
306 output->push_back(MSGEND);
2abe74eb
LOK
307
308 if (!Write(output))
309 {
310 m_controller->AddLog(CEC_LOG_ERROR, "could not start the bootloader");
311 return false;
312 }
313 m_controller->AddLog(CEC_LOG_DEBUG, "bootloader start command transmitted");
314 return true;
315}
316
2abe74eb
LOK
317bool CAdapterCommunication::SetAckMask(uint16_t iMask)
318{
319 if (!IsRunning())
320 return false;
321
322 CStdString strLog;
323 strLog.Format("setting ackmask to %2x", iMask);
324 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
325
5a1e87c8 326 CCECAdapterMessagePtr output(new CCECAdapterMessage);
2abe74eb 327
5a1e87c8
LOK
328 output->push_back(MSGSTART);
329 output->push_escaped(MSGCODE_SET_ACK_MASK);
330 output->push_escaped(iMask >> 8);
331 output->push_escaped((uint8_t)iMask);
332 output->push_back(MSGEND);
2abe74eb
LOK
333
334 if (!Write(output))
335 {
336 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
337 return false;
338 }
339
340 return true;
341}
342
343bool CAdapterCommunication::PingAdapter(void)
344{
345 if (!IsRunning())
346 return false;
347
348 m_controller->AddLog(CEC_LOG_DEBUG, "sending ping");
5a1e87c8 349 CCECAdapterMessagePtr output(new CCECAdapterMessage);
25701fa6 350
5a1e87c8
LOK
351 output->push_back(MSGSTART);
352 output->push_escaped(MSGCODE_PING);
353 output->push_back(MSGEND);
2abe74eb
LOK
354
355 if (!Write(output))
356 {
357 m_controller->AddLog(CEC_LOG_ERROR, "could not send ping command");
358 return false;
359 }
360
361 m_controller->AddLog(CEC_LOG_DEBUG, "ping tranmitted");
362
363 // TODO check for pong
364 return true;
365}
13fd6a66
LOK
366
367bool CAdapterCommunication::IsOpen(void) const
368{
369 return !IsStopped() && m_port->IsOpen();
370}