2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
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/
33 #include "AdapterCommunication.h"
35 #include "CECProcessor.h"
36 #include "platform/serialport.h"
37 #include "util/StdString.h"
38 #include "platform/timeutils.h"
43 CCECAdapterMessage::CCECAdapterMessage(const cec_command
&command
)
47 //set ack polarity to high when transmitting to the broadcast address
48 //set ack polarity low when transmitting to any other address
50 push_escaped(MSGCODE_TRANSMIT_ACK_POLARITY
);
51 if (command
.destination
== CECDEVICE_BROADCAST
)
52 push_escaped(CEC_TRUE
);
54 push_escaped(CEC_FALSE
);
57 // add source and destination
59 push_escaped(command
.opcode_set
== 0 ? (uint8_t)MSGCODE_TRANSMIT_EOM
: (uint8_t)MSGCODE_TRANSMIT
);
60 push_back(((uint8_t)command
.initiator
<< 4) + (uint8_t)command
.destination
);
64 if (command
.opcode_set
== 1)
67 push_escaped(command
.parameters
.IsEmpty() ? (uint8_t)MSGCODE_TRANSMIT_EOM
: (uint8_t)MSGCODE_TRANSMIT
);
68 push_back((uint8_t) command
.opcode
);
72 for (int8_t iPtr
= 0; iPtr
< command
.parameters
.size
; iPtr
++)
76 if (iPtr
== command
.parameters
.size
- 1)
77 push_escaped( MSGCODE_TRANSMIT_EOM
);
79 push_escaped(MSGCODE_TRANSMIT
);
81 push_escaped(command
.parameters
[iPtr
]);
88 transmit_timeout
= command
.transmit_timeout
;
91 CCECAdapterMessage
&CCECAdapterMessage::operator =(const CCECAdapterMessage
&msg
)
98 CStdString
CCECAdapterMessage::MessageCodeAsString(void) const
103 case MSGCODE_NOTHING
:
109 case MSGCODE_TIMEOUT_ERROR
:
112 case MSGCODE_HIGH_ERROR
:
113 strMsg
= "HIGH_ERROR";
115 case MSGCODE_LOW_ERROR
:
116 strMsg
= "LOW_ERROR";
118 case MSGCODE_FRAME_START
:
119 strMsg
= "FRAME_START";
121 case MSGCODE_FRAME_DATA
:
122 strMsg
= "FRAME_DATA";
124 case MSGCODE_RECEIVE_FAILED
:
125 strMsg
= "RECEIVE_FAILED";
127 case MSGCODE_COMMAND_ACCEPTED
:
128 strMsg
= "COMMAND_ACCEPTED";
130 case MSGCODE_COMMAND_REJECTED
:
131 strMsg
= "COMMAND_REJECTED";
133 case MSGCODE_SET_ACK_MASK
:
134 strMsg
= "SET_ACK_MASK";
136 case MSGCODE_TRANSMIT
:
139 case MSGCODE_TRANSMIT_EOM
:
140 strMsg
= "TRANSMIT_EOM";
142 case MSGCODE_TRANSMIT_IDLETIME
:
143 strMsg
= "TRANSMIT_IDLETIME";
145 case MSGCODE_TRANSMIT_ACK_POLARITY
:
146 strMsg
= "TRANSMIT_ACK_POLARITY";
148 case MSGCODE_TRANSMIT_LINE_TIMEOUT
:
149 strMsg
= "TRANSMIT_LINE_TIMEOUT";
151 case MSGCODE_TRANSMIT_SUCCEEDED
:
152 strMsg
= "TRANSMIT_SUCCEEDED";
154 case MSGCODE_TRANSMIT_FAILED_LINE
:
155 strMsg
= "TRANSMIT_FAILED_LINE";
157 case MSGCODE_TRANSMIT_FAILED_ACK
:
158 strMsg
= "TRANSMIT_FAILED_ACK";
160 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA
:
161 strMsg
= "TRANSMIT_FAILED_TIMEOUT_DATA";
163 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE
:
164 strMsg
= "TRANSMIT_FAILED_TIMEOUT_LINE";
166 case MSGCODE_FIRMWARE_VERSION
:
167 strMsg
= "FIRMWARE_VERSION";
169 case MSGCODE_START_BOOTLOADER
:
170 strMsg
= "START_BOOTLOADER";
172 case MSGCODE_FRAME_EOM
:
173 strMsg
= "FRAME_EOM";
175 case MSGCODE_FRAME_ACK
:
176 strMsg
= "FRAME_ACK";
183 CStdString
CCECAdapterMessage::ToString(void) const
188 strMsg
= "empty message";
192 strMsg
= MessageCodeAsString();
196 case MSGCODE_TIMEOUT_ERROR
:
197 case MSGCODE_HIGH_ERROR
:
198 case MSGCODE_LOW_ERROR
:
200 int iLine
= (size() >= 3) ? (at(1) << 8) | at(2) : 0;
201 uint32_t iTime
= (size() >= 7) ? (at(3) << 24) | (at(4) << 16) | (at(5) << 8) | at(6) : 0;
202 strMsg
.AppendFormat(" line:%i", iLine
);
203 strMsg
.AppendFormat(" time:%u", iTime
);
206 case MSGCODE_FRAME_START
:
208 strMsg
.AppendFormat(" initiator:%1x destination:%1x ack:%s %s", initiator(), destination(), ack() ? "high" : "low", eom() ? "eom" : "");
210 case MSGCODE_FRAME_DATA
:
212 strMsg
.AppendFormat(" %02x %s", at(1), eom() ? "eom" : "");
222 bool CCECAdapterMessage::is_error(void) const
224 cec_adapter_messagecode code
= message();
225 return (code
== MSGCODE_HIGH_ERROR
||
226 code
== MSGCODE_LOW_ERROR
||
227 code
== MSGCODE_RECEIVE_FAILED
||
228 code
== MSGCODE_COMMAND_REJECTED
||
229 code
== MSGCODE_TRANSMIT_LINE_TIMEOUT
||
230 code
== MSGCODE_TRANSMIT_FAILED_LINE
||
231 code
== MSGCODE_TRANSMIT_FAILED_ACK
||
232 code
== MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA
||
233 code
== MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE
);
236 void CCECAdapterMessage::push_escaped(uint8_t byte
)
241 push_back(byte
- ESCOFFSET
);
247 CAdapterCommunication::CAdapterCommunication(CCECProcessor
*processor
) :
249 m_processor(processor
),
252 m_port
= new CSerialPort
;
255 CAdapterCommunication::~CAdapterCommunication(void)
266 bool CAdapterCommunication::Open(const char *strPort
, uint16_t iBaudRate
/* = 38400 */, uint32_t iTimeoutMs
/* = 10000 */)
268 CLockObject
lock(&m_mutex
);
271 m_processor
->AddLog(CEC_LOG_ERROR
, "port is NULL");
277 m_processor
->AddLog(CEC_LOG_ERROR
, "port is already open");
280 if (!m_port
->Open(strPort
, iBaudRate
))
283 strError
.Format("error opening serial port '%s': %s", strPort
, m_port
->GetError().c_str());
284 m_processor
->AddLog(CEC_LOG_ERROR
, strError
);
288 m_processor
->AddLog(CEC_LOG_DEBUG
, "connection opened");
290 //clear any input bytes
292 while (m_port
->Read(buff
, 1, 5) == 1) {}
296 m_startCondition
.Wait(&m_mutex
);
297 m_processor
->AddLog(CEC_LOG_DEBUG
, "communication thread started");
302 m_processor
->AddLog(CEC_LOG_DEBUG
, "could not create a communication thread");
308 void CAdapterCommunication::Close(void)
310 CLockObject
lock(&m_mutex
);
311 m_startCondition
.Broadcast();
312 m_rcvCondition
.Broadcast();
316 void *CAdapterCommunication::Process(void)
319 CLockObject
lock(&m_mutex
);
320 m_startCondition
.Signal();
330 CCECAdapterMessage
*msg
;
331 if (m_outBuffer
.Pop(msg
))
332 msg
->condition
.Broadcast();
337 bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout
)
344 iBytesRead
= m_port
->Read(buff
, sizeof(buff
), iTimeout
);
345 if (iBytesRead
< 0 || iBytesRead
> 256)
348 strError
.Format("error reading from serial port: %s", m_port
->GetError().c_str());
349 m_processor
->AddLog(CEC_LOG_ERROR
, strError
);
352 else if (iBytesRead
> 0)
353 AddData(buff
, (uint8_t) iBytesRead
);
355 return iBytesRead
> 0;
358 void CAdapterCommunication::AddData(uint8_t *data
, uint8_t iLen
)
360 CLockObject
lock(&m_mutex
);
361 for (unsigned int iPtr
= 0; iPtr
< iLen
; iPtr
++)
362 m_inBuffer
.Push(data
[iPtr
]);
364 m_rcvCondition
.Signal();
367 void CAdapterCommunication::WriteNextCommand(void)
369 CCECAdapterMessage
*msg
;
370 if (m_outBuffer
.Pop(msg
))
371 SendMessageToAdapter(msg
);
374 void CAdapterCommunication::SendMessageToAdapter(CCECAdapterMessage
*msg
)
376 CLockObject
lock(&msg
->mutex
);
377 if (m_port
->Write(msg
) != (int32_t) msg
->size())
380 strError
.Format("error writing to serial port: %s", m_port
->GetError().c_str());
381 m_processor
->AddLog(CEC_LOG_ERROR
, strError
);
382 msg
->state
= ADAPTER_MESSAGE_STATE_ERROR
;
386 m_processor
->AddLog(CEC_LOG_DEBUG
, "command sent");
387 msg
->state
= ADAPTER_MESSAGE_STATE_SENT
;
389 msg
->condition
.Signal();
392 bool CAdapterCommunication::Write(CCECAdapterMessage
*data
)
394 data
->state
= ADAPTER_MESSAGE_STATE_WAITING
;
395 m_outBuffer
.Push(data
);
399 bool CAdapterCommunication::Read(CCECAdapterMessage
&msg
, uint32_t iTimeout
)
401 CLockObject
lock(&m_mutex
);
404 uint64_t iNow
= GetTimeMs();
405 uint64_t iTarget
= iNow
+ iTimeout
;
406 bool bGotFullMessage(false);
407 bool bNextIsEscaped(false);
408 bool bGotStart(false);
410 while(!bGotFullMessage
&& iNow
< iTarget
)
413 if (!m_inBuffer
.Pop(buf
))
415 if (!m_rcvCondition
.Wait(&m_mutex
, (uint32_t) (iTarget
- iNow
)))
425 else if (buf
== MSGSTART
) //we found a msgstart before msgend, this is not right, remove
428 m_processor
->AddLog(CEC_LOG_WARNING
, "received MSGSTART before MSGEND, removing previous buffer contents");
435 bGotFullMessage
= true;
437 else if (bNextIsEscaped
)
439 msg
.push_back(buf
+ (uint8_t)ESCOFFSET
);
440 bNextIsEscaped
= false;
442 else if (buf
== MSGESC
)
443 bNextIsEscaped
= true;
449 msg
.state
= ADAPTER_MESSAGE_STATE_RECEIVED
;
451 return bGotFullMessage
;
454 std::string
CAdapterCommunication::GetError(void) const
456 return m_port
->GetError();
459 bool CAdapterCommunication::StartBootloader(void)
465 m_processor
->AddLog(CEC_LOG_DEBUG
, "starting the bootloader");
466 CCECAdapterMessage
*output
= new CCECAdapterMessage
;
468 output
->push_back(MSGSTART
);
469 output
->push_escaped(MSGCODE_START_BOOTLOADER
);
470 output
->push_back(MSGEND
);
472 CLockObject
lock(&output
->mutex
);
474 output
->condition
.Wait(&output
->mutex
);
475 bReturn
= output
->state
== ADAPTER_MESSAGE_STATE_SENT
;
481 bool CAdapterCommunication::PingAdapter(void)
487 m_processor
->AddLog(CEC_LOG_DEBUG
, "sending ping");
488 CCECAdapterMessage
*output
= new CCECAdapterMessage
;
490 output
->push_back(MSGSTART
);
491 output
->push_escaped(MSGCODE_PING
);
492 output
->push_back(MSGEND
);
494 CLockObject
lock(&output
->mutex
);
496 output
->condition
.Wait(&output
->mutex
);
497 bReturn
= output
->state
== ADAPTER_MESSAGE_STATE_SENT
;
503 bool CAdapterCommunication::SetLineTimeout(uint8_t iTimeout
)
505 bool bReturn(m_iLineTimeout
!= iTimeout
);
509 CCECAdapterMessage
*output
= new CCECAdapterMessage
;
511 output
->push_back(MSGSTART
);
512 output
->push_escaped(MSGCODE_TRANSMIT_IDLETIME
);
513 output
->push_escaped(iTimeout
);
514 output
->push_back(MSGEND
);
516 if ((bReturn
= Write(output
)) == false)
517 m_processor
->AddLog(CEC_LOG_ERROR
, "could not set the idletime");
524 bool CAdapterCommunication::IsOpen(void) const
526 return !IsStopped() && m_port
->IsOpen() && IsRunning();