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