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