added: set controlled mode on after opening a connection to the adapter
[deb_libcec.git] / src / lib / adapter / USBCECAdapterCommunication.cpp
CommitLineData
a8f0bd18
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
a8f0bd18
LOK
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
7bb4ed43 33#include "USBCECAdapterCommunication.h"
ba65909d
LOK
34#include "../platform/sockets/serialport.h"
35#include "../platform/util/timeutils.h"
5477a250 36#include "../LibCEC.h"
7bb4ed43 37#include "../CECProcessor.h"
a8f0bd18
LOK
38
39using namespace std;
40using namespace CEC;
f00ff009 41using namespace PLATFORM;
a8f0bd18 42
7bb4ed43 43CUSBCECAdapterCommunication::CUSBCECAdapterCommunication(CCECProcessor *processor, const char *strPort, uint16_t iBaudRate /* = 38400 */) :
12027dbe 44 m_port(NULL),
a171d2fd 45 m_processor(processor),
1fc16cfd 46 m_iLineTimeout(0),
7bb4ed43
LOK
47 m_iFirmwareVersion(CEC_FW_VERSION_UNKNOWN),
48 m_lastInitiator(CECDEVICE_UNKNOWN),
49 m_bNextIsEscaped(false),
50 m_bGotStart(false)
a8f0bd18 51{
99666519 52 m_port = new PLATFORM::CSerialPort(strPort, iBaudRate);
a8f0bd18
LOK
53}
54
7bb4ed43 55CUSBCECAdapterCommunication::~CUSBCECAdapterCommunication(void)
a8f0bd18 56{
12027dbe
LOK
57 Close();
58
59 if (m_port)
60 {
61 delete m_port;
62 m_port = NULL;
63 }
a8f0bd18
LOK
64}
65
7bb4ed43 66bool CUSBCECAdapterCommunication::Open(uint32_t iTimeoutMs /* = 10000 */)
a8f0bd18 67{
7b494bea
LOK
68 uint64_t iNow = GetTimeMs();
69 uint64_t iTimeout = iNow + iTimeoutMs;
70
f00ff009 71 CLockObject lock(m_mutex);
7b494bea 72
13fd6a66
LOK
73 if (!m_port)
74 {
5477a250 75 CLibCEC::AddLog(CEC_LOG_ERROR, "port is NULL");
a8f0bd18 76 return false;
13fd6a66
LOK
77 }
78
79 if (IsOpen())
80 {
5477a250 81 CLibCEC::AddLog(CEC_LOG_ERROR, "port is already open");
7b494bea 82 return true;
13fd6a66 83 }
a8f0bd18 84
7b494bea
LOK
85 CStdString strError;
86 bool bConnected(false);
87 while (!bConnected && iNow < iTimeout)
88 {
99666519 89 if ((bConnected = m_port->Open(iTimeout)) == false)
7b494bea 90 {
99666519 91 strError.Format("error opening serial port '%s': %s", m_port->GetName().c_str(), m_port->GetError().c_str());
7b494bea
LOK
92 Sleep(250);
93 iNow = GetTimeMs();
94 }
95 }
96
97 if (!bConnected)
a8f0bd18 98 {
5477a250 99 CLibCEC::AddLog(CEC_LOG_ERROR, strError);
a8f0bd18
LOK
100 return false;
101 }
102
2c780401 103 CLibCEC::AddLog(CEC_LOG_DEBUG, "connection opened, clearing any previous input and waiting for active transmissions to end before starting");
a8f0bd18
LOK
104
105 //clear any input bytes
2c780401
LOK
106 uint8_t buff[1024];
107 while (m_port->Read(buff, 1024, 100) > 0)
108 {
109 CLibCEC::AddLog(CEC_LOG_DEBUG, "data received, clearing it");
110 Sleep(250);
111 }
a8f0bd18 112
828682d3 113 if (CreateThread())
a8f0bd18 114 {
5477a250 115 CLibCEC::AddLog(CEC_LOG_DEBUG, "communication thread started");
a8f0bd18
LOK
116 return true;
117 }
118 else
119 {
5477a250 120 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a communication thread");
a8f0bd18
LOK
121 }
122
123 return false;
124}
125
7bb4ed43 126void CUSBCECAdapterCommunication::Close(void)
a8f0bd18 127{
f00ff009 128 CLockObject lock(m_mutex);
d5bffd3c 129 m_rcvCondition.Broadcast();
b9eea66d 130 StopThread();
a8f0bd18
LOK
131}
132
7bb4ed43 133void *CUSBCECAdapterCommunication::Process(void)
a8f0bd18 134{
13fd6a66 135 while (!IsStopped())
a8f0bd18 136 {
9e1cfa5c 137 ReadFromDevice(50);
c02980af 138 Sleep(5);
3c53ac93 139 WriteNextCommand();
a8f0bd18
LOK
140 }
141
ef7696f5 142 CCECAdapterMessage *msg(NULL);
a0878ee3
LOK
143 if (m_outBuffer.Pop(msg))
144 msg->condition.Broadcast();
145
a8f0bd18
LOK
146 return NULL;
147}
148
7bb4ed43
LOK
149cec_adapter_message_state CUSBCECAdapterCommunication::Write(const cec_command &data, uint8_t iMaxTries, uint8_t iLineTimeout /* = 3 */, uint8_t iRetryLineTimeout /* = 3 */)
150{
151 cec_adapter_message_state retVal(ADAPTER_MESSAGE_STATE_UNKNOWN);
152
153 CCECAdapterMessage *output = new CCECAdapterMessage(data);
154
155 /* set the number of retries */
156 if (data.opcode == CEC_OPCODE_NONE) //TODO
157 output->maxTries = 1;
158 else if (data.initiator != CECDEVICE_BROADCAST)
159 output->maxTries = iMaxTries;
160
161 output->lineTimeout = iLineTimeout;
162 output->retryTimeout = iRetryLineTimeout;
163 output->tries = 0;
164
165 bool bRetry(true);
166 while (bRetry && ++output->tries < output->maxTries)
167 {
168 bRetry = (!Write(output) || output->NeedsRetry()) && output->transmit_timeout > 0;
169 if (bRetry)
170 Sleep(CEC_DEFAULT_TRANSMIT_RETRY_WAIT);
171 }
172 retVal = output->state;
173
174 delete output;
175 return retVal;
176}
177
178bool CUSBCECAdapterCommunication::Write(CCECAdapterMessage *data)
3c53ac93 179{
5dcf9f25
LOK
180 bool bReturn(false);
181
182 CLockObject lock(data->mutex);
183 data->state = ADAPTER_MESSAGE_STATE_WAITING_TO_BE_SENT;
3c53ac93 184 m_outBuffer.Push(data);
5dcf9f25
LOK
185 data->condition.Wait(data->mutex);
186
187 if (data->state != ADAPTER_MESSAGE_STATE_SENT)
188 {
5477a250 189 CLibCEC::AddLog(CEC_LOG_ERROR, "command was not sent");
5dcf9f25 190 }
b2f0b1ab 191 else if (data->expectControllerAck)
5dcf9f25 192 {
b2f0b1ab 193 bReturn = WaitForAck(*data);
4060d525
LOK
194 if (bReturn)
195 {
196 if (data->isTransmission)
197 data->state = ADAPTER_MESSAGE_STATE_SENT_ACKED;
198 }
199 else
200 {
201 data->state = ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED;
5477a250 202 CLibCEC::AddLog(CEC_LOG_DEBUG, "did not receive ack");
4060d525 203 }
5dcf9f25
LOK
204 }
205 else
206 {
4060d525 207 bReturn = true;
5dcf9f25
LOK
208 }
209
210 return bReturn;
a8f0bd18
LOK
211}
212
7bb4ed43 213bool CUSBCECAdapterCommunication::Read(cec_command &command, uint32_t iTimeout)
a8f0bd18 214{
7bb4ed43
LOK
215 CCECAdapterMessage msg;
216 if (Read(msg, iTimeout))
a8f0bd18 217 {
7bb4ed43 218 if (ParseMessage(msg))
a8f0bd18 219 {
7bb4ed43
LOK
220 command = m_currentframe;
221 m_currentframe.Clear();
222 return true;
a8f0bd18 223 }
7bb4ed43
LOK
224 }
225 return false;
226}
a8f0bd18 227
7bb4ed43
LOK
228bool CUSBCECAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
229{
230 CLockObject lock(m_mutex);
a8f0bd18 231
7bb4ed43
LOK
232 msg.Clear();
233 CCECAdapterMessage *buf(NULL);
a8f0bd18 234
7bb4ed43
LOK
235 if (!m_inBuffer.Pop(buf))
236 {
237 if (!m_rcvCondition.Wait(m_mutex, iTimeout))
238 return false;
239 m_inBuffer.Pop(buf);
240 }
0e31a62c 241
7bb4ed43
LOK
242 if (buf)
243 {
244 msg.packet = buf->packet;
245 msg.state = msg.state = ADAPTER_MESSAGE_STATE_INCOMING;
246 delete buf;
247 return true;
248 }
249 return false;
a8f0bd18
LOK
250}
251
7bb4ed43 252CStdString CUSBCECAdapterCommunication::GetError(void) const
a8f0bd18 253{
ba65909d
LOK
254 CStdString strError;
255 strError = m_port->GetError();
256 return strError;
a8f0bd18 257}
2abe74eb 258
7bb4ed43 259bool CUSBCECAdapterCommunication::StartBootloader(void)
2abe74eb 260{
28352a04 261 bool bReturn(false);
2abe74eb 262 if (!IsRunning())
28352a04 263 return bReturn;
2abe74eb 264
5477a250 265 CLibCEC::AddLog(CEC_LOG_DEBUG, "starting the bootloader");
28352a04 266 CCECAdapterMessage *output = new CCECAdapterMessage;
25701fa6 267
ef7696f5
LOK
268 output->PushBack(MSGSTART);
269 output->PushEscaped(MSGCODE_START_BOOTLOADER);
270 output->PushBack(MSGEND);
5dcf9f25 271 output->isTransmission = false;
71c4a2f5 272 output->expectControllerAck = false;
2abe74eb 273
5dcf9f25 274 if ((bReturn = Write(output)) == false)
5477a250 275 CLibCEC::AddLog(CEC_LOG_ERROR, "could not start the bootloader");
28352a04
LOK
276 delete output;
277
278 return bReturn;
2abe74eb
LOK
279}
280
7bb4ed43 281bool CUSBCECAdapterCommunication::PingAdapter(void)
2abe74eb 282{
28352a04 283 bool bReturn(false);
2abe74eb 284 if (!IsRunning())
28352a04 285 return bReturn;
2abe74eb 286
5477a250 287 CLibCEC::AddLog(CEC_LOG_DEBUG, "sending ping");
28352a04 288 CCECAdapterMessage *output = new CCECAdapterMessage;
25701fa6 289
ef7696f5
LOK
290 output->PushBack(MSGSTART);
291 output->PushEscaped(MSGCODE_PING);
292 output->PushBack(MSGEND);
5dcf9f25 293 output->isTransmission = false;
2abe74eb 294
5dcf9f25 295 if ((bReturn = Write(output)) == false)
5477a250 296 CLibCEC::AddLog(CEC_LOG_ERROR, "could not ping the adapter");
28352a04
LOK
297 delete output;
298
299 return bReturn;
2abe74eb 300}
13fd6a66 301
7bb4ed43
LOK
302bool CUSBCECAdapterCommunication::ParseMessage(const CCECAdapterMessage &msg)
303{
304 bool bEom(false);
305 bool bIsError(msg.IsError());
306
307 if (msg.IsEmpty())
308 return bEom;
309
310 switch(msg.Message())
311 {
312 case MSGCODE_FRAME_START:
313 {
314 m_currentframe.Clear();
315 if (msg.Size() >= 2)
316 {
317 m_currentframe.initiator = msg.Initiator();
318 m_currentframe.destination = msg.Destination();
319 m_currentframe.ack = msg.IsACK();
320 m_currentframe.eom = msg.IsEOM();
321 }
322 if (m_currentframe.ack == 0x1)
323 {
324 m_lastInitiator = m_currentframe.initiator;
325 m_processor->HandlePoll(m_currentframe.initiator, m_currentframe.destination);
326 }
327 }
328 break;
329 case MSGCODE_RECEIVE_FAILED:
330 {
331 m_currentframe.Clear();
332 if (m_lastInitiator != CECDEVICE_UNKNOWN)
333 bIsError = m_processor->HandleReceiveFailed(m_lastInitiator);
334 }
335 break;
336 case MSGCODE_FRAME_DATA:
337 {
338 if (msg.Size() >= 2)
339 {
340 m_currentframe.PushBack(msg[1]);
341 m_currentframe.eom = msg.IsEOM();
342 }
343 bEom = msg.IsEOM();
344 }
345 break;
346 default:
347 break;
348 }
349
350 CLibCEC::AddLog(bIsError ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
351 return bEom;
352}
353
354uint16_t CUSBCECAdapterCommunication::GetFirmwareVersion(void)
1fc16cfd
LOK
355{
356 uint16_t iReturn(m_iFirmwareVersion);
357 if (!IsRunning())
358 return iReturn;
359
360 if (iReturn == CEC_FW_VERSION_UNKNOWN)
361 {
5477a250 362 CLibCEC::AddLog(CEC_LOG_DEBUG, "requesting the firmware version");
1fc16cfd
LOK
363 CCECAdapterMessage *output = new CCECAdapterMessage;
364
365 output->PushBack(MSGSTART);
366 output->PushEscaped(MSGCODE_FIRMWARE_VERSION);
367 output->PushBack(MSGEND);
368 output->isTransmission = false;
369 output->expectControllerAck = false;
370
371 SendMessageToAdapter(output);
372 delete output;
373
374 CCECAdapterMessage input;
375 if (!Read(input, CEC_DEFAULT_TRANSMIT_WAIT) || input.Message() != MSGCODE_FIRMWARE_VERSION || input.Size() != 3)
2c780401 376 CLibCEC::AddLog(CEC_LOG_ERROR, "no or invalid firmware version (size = %d, message = %d)", input.Size(), input.Message());
1fc16cfd
LOK
377 else
378 {
379 m_iFirmwareVersion = (input[1] << 8 | input[2]);
380 iReturn = m_iFirmwareVersion;
381 }
382 }
383
384 return iReturn;
385}
386
7bb4ed43 387bool CUSBCECAdapterCommunication::SetLineTimeout(uint8_t iTimeout)
a171d2fd 388{
7bb4ed43
LOK
389 m_iLineTimeout = iTimeout;
390 return true;
391 //TODO
392// bool bReturn(m_iLineTimeout != iTimeout);
393//
394// if (!bReturn)
395// {
396// CCECAdapterMessage *output = new CCECAdapterMessage;
397//
398// output->PushBack(MSGSTART);
399// output->PushEscaped(MSGCODE_TRANSMIT_IDLETIME);
400// output->PushEscaped(iTimeout);
401// output->PushBack(MSGEND);
402// output->isTransmission = false;
403//
404// if ((bReturn = Write(output)) == false)
405// CLibCEC::AddLog(CEC_LOG_ERROR, "could not set the idletime");
406// delete output;
407// }
408//
409// return bReturn;
a171d2fd
LOK
410}
411
7bb4ed43 412bool CUSBCECAdapterCommunication::SetAckMask(uint16_t iMask)
5dcf9f25
LOK
413{
414 bool bReturn(false);
415 CStdString strLog;
416 strLog.Format("setting ackmask to %2x", iMask);
5477a250 417 CLibCEC::AddLog(CEC_LOG_DEBUG, strLog.c_str());
5dcf9f25
LOK
418
419 CCECAdapterMessage *output = new CCECAdapterMessage;
420
421 output->PushBack(MSGSTART);
422 output->PushEscaped(MSGCODE_SET_ACK_MASK);
423 output->PushEscaped(iMask >> 8);
424 output->PushEscaped((uint8_t)iMask);
425 output->PushBack(MSGEND);
426 output->isTransmission = false;
427
428 if ((bReturn = Write(output)) == false)
5477a250 429 CLibCEC::AddLog(CEC_LOG_ERROR, "could not set the ackmask");
5dcf9f25
LOK
430 delete output;
431
432 return bReturn;
433}
434
b057edad
BL
435
436bool CUSBCECAdapterCommunication::SetControlledMode(bool controlled)
437{
438 bool bReturn(false);
439 CStdString strLog;
440 strLog.Format("turning controlled mode %s", controlled ? "on" : "off");
441 CLibCEC::AddLog(CEC_LOG_DEBUG, strLog.c_str());
442
443 CCECAdapterMessage *output = new CCECAdapterMessage;
444
445 output->PushBack(MSGSTART);
446 output->PushEscaped(MSGCODE_SET_CONTROLLED);
447 output->PushEscaped(controlled);
448 output->PushBack(MSGEND);
449 output->isTransmission = false;
450
451 if ((bReturn = Write(output)) == false)
452 CLibCEC::AddLog(CEC_LOG_ERROR, "could not set controlled mode");
453 delete output;
454
455 return bReturn;
456}
457
7bb4ed43 458bool CUSBCECAdapterCommunication::IsOpen(void)
13fd6a66 459{
b9eea66d 460 return !IsStopped() && m_port->IsOpen() && IsRunning();
13fd6a66 461}
ef7696f5 462
7bb4ed43 463bool CUSBCECAdapterCommunication::WaitForAck(CCECAdapterMessage &message)
6729ac71
LOK
464{
465 bool bError(false);
466 bool bTransmitSucceeded(false);
b2f0b1ab 467 uint8_t iPacketsLeft(message.Size() / 4);
6729ac71
LOK
468
469 int64_t iNow = GetTimeMs();
b2f0b1ab 470 int64_t iTargetTime = iNow + message.transmit_timeout;
6729ac71 471
b2f0b1ab 472 while (!bTransmitSucceeded && !bError && (message.transmit_timeout == 0 || iNow < iTargetTime))
6729ac71
LOK
473 {
474 CCECAdapterMessage msg;
e2800c15 475 int32_t iWait = (int32_t)(iTargetTime - iNow);
b2f0b1ab 476 if (iWait <= 5 || message.transmit_timeout <= 5)
e2800c15 477 iWait = CEC_DEFAULT_TRANSMIT_WAIT;
6729ac71 478
e2800c15 479 if (!Read(msg, iWait))
6729ac71
LOK
480 {
481 iNow = GetTimeMs();
482 continue;
483 }
484
485 if (msg.Message() == MSGCODE_FRAME_START && msg.IsACK())
486 {
487 m_processor->HandlePoll(msg.Initiator(), msg.Destination());
7bb4ed43 488 m_lastInitiator = msg.Initiator();
6729ac71
LOK
489 iNow = GetTimeMs();
490 continue;
491 }
492
493 if (msg.Message() == MSGCODE_RECEIVE_FAILED &&
7bb4ed43
LOK
494 m_lastInitiator != CECDEVICE_UNKNOWN &&
495 m_processor->HandleReceiveFailed(m_lastInitiator))
6729ac71
LOK
496 {
497 iNow = GetTimeMs();
498 continue;
499 }
500
501 bError = msg.IsError();
502 if (bError)
503 {
b2f0b1ab 504 message.reply = msg.Message();
5477a250 505 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
6729ac71
LOK
506 }
507 else
508 {
509 switch(msg.Message())
510 {
511 case MSGCODE_COMMAND_ACCEPTED:
5477a250 512 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
6729ac71
LOK
513 if (iPacketsLeft > 0)
514 iPacketsLeft--;
b2f0b1ab 515 if (!message.isTransmission && iPacketsLeft == 0)
5dcf9f25 516 bTransmitSucceeded = true;
6729ac71
LOK
517 break;
518 case MSGCODE_TRANSMIT_SUCCEEDED:
5477a250 519 CLibCEC::AddLog(CEC_LOG_DEBUG, msg.ToString());
6729ac71
LOK
520 bTransmitSucceeded = (iPacketsLeft == 0);
521 bError = !bTransmitSucceeded;
b2f0b1ab 522 message.reply = MSGCODE_TRANSMIT_SUCCEEDED;
6729ac71
LOK
523 break;
524 default:
525 // ignore other data while waiting
526 break;
527 }
528
529 iNow = GetTimeMs();
530 }
531 }
532
533 return bTransmitSucceeded && !bError;
534}
535
7bb4ed43 536void CUSBCECAdapterCommunication::AddData(uint8_t *data, size_t iLen)
ef7696f5
LOK
537{
538 CLockObject lock(m_mutex);
99666519 539 for (size_t iPtr = 0; iPtr < iLen; iPtr++)
7bb4ed43
LOK
540 {
541 if (!m_bGotStart)
542 {
543 if (data[iPtr] == MSGSTART)
544 m_bGotStart = true;
545 }
546 else if (data[iPtr] == MSGSTART) //we found a msgstart before msgend, this is not right, remove
547 {
548 if (m_currentAdapterMessage.Size() > 0)
549 CLibCEC::AddLog(CEC_LOG_WARNING, "received MSGSTART before MSGEND, removing previous buffer contents");
550 m_currentAdapterMessage.Clear();
551 m_bGotStart = true;
552 }
553 else if (data[iPtr] == MSGEND)
554 {
555 CCECAdapterMessage *newMessage = new CCECAdapterMessage;
556 newMessage->packet = m_currentAdapterMessage.packet;
557 m_inBuffer.Push(newMessage);
558 m_currentAdapterMessage.Clear();
559 m_bGotStart = false;
560 m_bNextIsEscaped = false;
561 m_rcvCondition.Signal();
562 }
563 else if (m_bNextIsEscaped)
564 {
565 m_currentAdapterMessage.PushBack(data[iPtr] + (uint8_t)ESCOFFSET);
566 m_bNextIsEscaped = false;
567 }
568 else if (data[iPtr] == MSGESC)
569 {
570 m_bNextIsEscaped = true;
571 }
572 else
573 {
574 m_currentAdapterMessage.PushBack(data[iPtr]);
575 }
576 }
ef7696f5
LOK
577}
578
7bb4ed43 579bool CUSBCECAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
ef7696f5 580{
99666519
LOK
581 ssize_t iBytesRead;
582 uint8_t buff[256];
ef7696f5
LOK
583 if (!m_port)
584 return false;
585
1fc16cfd 586 CLockObject lock(m_mutex);
ef7696f5
LOK
587 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
588 if (iBytesRead < 0 || iBytesRead > 256)
589 {
99666519 590 CLibCEC::AddLog(CEC_LOG_ERROR, "error reading from serial port: %s", m_port->GetError().c_str());
ef7696f5
LOK
591 return false;
592 }
593 else if (iBytesRead > 0)
99666519
LOK
594 {
595 AddData(buff, iBytesRead);
596 }
ef7696f5
LOK
597
598 return iBytesRead > 0;
599}
600
7bb4ed43 601void CUSBCECAdapterCommunication::SendMessageToAdapter(CCECAdapterMessage *msg)
ef7696f5 602{
1fc16cfd 603 CLockObject adapterLock(m_mutex);
ef7696f5 604 CLockObject lock(msg->mutex);
7bb4ed43
LOK
605 if (msg->tries == 1)
606 SetLineTimeout(msg->lineTimeout);
607 else
608 SetLineTimeout(msg->retryTimeout);
609
99666519 610 if (m_port->Write(msg->packet.data, msg->Size()) != (ssize_t) msg->Size())
ef7696f5
LOK
611 {
612 CStdString strError;
613 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
5477a250 614 CLibCEC::AddLog(CEC_LOG_ERROR, strError);
ef7696f5
LOK
615 msg->state = ADAPTER_MESSAGE_STATE_ERROR;
616 }
617 else
618 {
5477a250 619 CLibCEC::AddLog(CEC_LOG_DEBUG, "command sent");
ef7696f5
LOK
620 msg->state = ADAPTER_MESSAGE_STATE_SENT;
621 }
622 msg->condition.Signal();
623}
624
7bb4ed43 625void CUSBCECAdapterCommunication::WriteNextCommand(void)
ef7696f5
LOK
626{
627 CCECAdapterMessage *msg(NULL);
628 if (m_outBuffer.Pop(msg))
629 SendMessageToAdapter(msg);
630}