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"
36 #include "platform/serialport.h"
37 #include "util/StdString.h"
42 CAdapterCommunication::CAdapterCommunication(CLibCEC
*controller
) :
44 m_controller(controller
),
49 m_port
= new CSerialPort
;
52 CAdapterCommunication::~CAdapterCommunication(void)
66 bool CAdapterCommunication::Open(const char *strPort
, uint16_t iBaudRate
/* = 38400 */, uint32_t iTimeoutMs
/* = 10000 */)
68 CLockObject
lock(&m_commMutex
);
71 m_controller
->AddLog(CEC_LOG_ERROR
, "port is NULL");
77 m_controller
->AddLog(CEC_LOG_ERROR
, "port is already open");
80 if (!m_port
->Open(strPort
, iBaudRate
))
83 strError
.Format("error opening serial port '%s': %s", strPort
, m_port
->GetError().c_str());
84 m_controller
->AddLog(CEC_LOG_ERROR
, strError
);
88 m_controller
->AddLog(CEC_LOG_DEBUG
, "connection opened");
90 //clear any input bytes
92 m_port
->Read(buff
, sizeof(buff
), 50);
96 m_controller
->AddLog(CEC_LOG_DEBUG
, "communication thread created");
101 m_controller
->AddLog(CEC_LOG_DEBUG
, "could not create a communication thread");
107 void CAdapterCommunication::Close(void)
109 CLockObject
lock(&m_commMutex
);
120 m_rcvCondition
.Broadcast();
123 void *CAdapterCommunication::Process(void)
125 m_controller
->AddLog(CEC_LOG_DEBUG
, "communication thread started");
130 CLockObject
lock(&m_commMutex
);
141 bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout
)
148 iBytesRead
= m_port
->Read(buff
, sizeof(buff
), iTimeout
);
149 if (iBytesRead
< 0 || iBytesRead
> 256)
152 strError
.Format("error reading from serial port: %s", m_port
->GetError().c_str());
153 m_controller
->AddLog(CEC_LOG_ERROR
, strError
);
156 else if (iBytesRead
> 0)
157 AddData(buff
, (uint8_t) iBytesRead
);
159 return iBytesRead
> 0;
162 void CAdapterCommunication::AddData(uint8_t *data
, uint8_t iLen
)
164 CLockObject
lock(&m_bufferMutex
);
165 if (m_iInbufUsed
+ iLen
> m_iInbufSize
)
167 m_iInbufSize
= m_iInbufUsed
+ iLen
;
168 m_inbuf
= (uint8_t*)realloc(m_inbuf
, m_iInbufSize
);
171 memcpy(m_inbuf
+ m_iInbufUsed
, data
, iLen
);
172 m_iInbufUsed
+= iLen
;
174 m_rcvCondition
.Signal();
177 bool CAdapterCommunication::Write(const cec_adapter_message
&data
)
179 CLockObject
lock(&m_commMutex
);
180 if (m_port
->Write(data
) != (int32_t) data
.size())
183 strError
.Format("error writing to serial port: %s", m_port
->GetError().c_str());
184 m_controller
->AddLog(CEC_LOG_ERROR
, strError
);
188 m_controller
->AddLog(CEC_LOG_DEBUG
, "command sent");
189 CCondition::Sleep((uint32_t) data
.size() * (uint32_t)24 /*data*/ + (uint32_t)5 /*start bit (4.5 ms)*/);
194 bool CAdapterCommunication::Read(cec_adapter_message
&msg
, uint32_t iTimeout
)
196 CLockObject
lock(&m_bufferMutex
);
198 if (m_iInbufUsed
< 1)
200 if (!m_rcvCondition
.Wait(&m_bufferMutex
, iTimeout
))
204 if (m_iInbufUsed
< 1 || IsStopped())
207 //search for first start of message
208 int16_t startpos
= -1;
209 for (int16_t iPtr
= 0; iPtr
< m_iInbufUsed
; iPtr
++)
211 if (m_inbuf
[iPtr
] == MSGSTART
)
221 //move anything from the first start of message to the beginning of the buffer
224 memmove(m_inbuf
, m_inbuf
+ startpos
, m_iInbufUsed
- startpos
);
225 m_iInbufUsed
-= startpos
;
228 if (m_iInbufUsed
< 2)
231 //look for end of message
234 for (int16_t iPtr
= 1; iPtr
< m_iInbufUsed
; iPtr
++)
236 if (m_inbuf
[iPtr
] == MSGEND
)
241 else if (m_inbuf
[iPtr
] == MSGSTART
)
248 if (startpos
> 0) //we found a msgstart before msgend, this is not right, remove
250 m_controller
->AddLog(CEC_LOG_ERROR
, "received MSGSTART before MSGEND");
251 memmove(m_inbuf
, m_inbuf
+ startpos
, m_iInbufUsed
- startpos
);
252 m_iInbufUsed
-= startpos
;
256 if (endpos
> 0) //found a MSGEND
260 for (int16_t iPtr
= 1; iPtr
< endpos
; iPtr
++)
264 msg
.push_back(m_inbuf
[iPtr
] + (uint8_t)ESCOFFSET
);
267 else if (m_inbuf
[iPtr
] == MSGESC
)
273 msg
.push_back(m_inbuf
[iPtr
]);
277 if (endpos
+ 1 < m_iInbufUsed
)
278 memmove(m_inbuf
, m_inbuf
+ endpos
+ 1, m_iInbufUsed
- endpos
- 1);
280 m_iInbufUsed
-= endpos
+ 1;
288 std::string
CAdapterCommunication::GetError(void) const
290 return m_port
->GetError();
293 bool CAdapterCommunication::StartBootloader(void)
298 m_controller
->AddLog(CEC_LOG_DEBUG
, "starting the bootloader");
299 cec_adapter_message output
;
302 output
.push_back(MSGSTART
);
303 PushEscaped(output
, MSGCODE_START_BOOTLOADER
);
304 output
.push_back(MSGEND
);
308 m_controller
->AddLog(CEC_LOG_ERROR
, "could not start the bootloader");
311 m_controller
->AddLog(CEC_LOG_DEBUG
, "bootloader start command transmitted");
315 void CAdapterCommunication::PushEscaped(cec_adapter_message
&vec
, uint8_t byte
)
317 if (byte
>= MSGESC
&& byte
!= MSGSTART
)
319 vec
.push_back(MSGESC
);
320 vec
.push_back(byte
- ESCOFFSET
);
328 bool CAdapterCommunication::SetAckMask(uint16_t iMask
)
334 strLog
.Format("setting ackmask to %2x", iMask
);
335 m_controller
->AddLog(CEC_LOG_DEBUG
, strLog
.c_str());
337 cec_adapter_message output
;
340 output
.push_back(MSGSTART
);
341 PushEscaped(output
, MSGCODE_SET_ACK_MASK
);
342 PushEscaped(output
, iMask
>> 8);
343 PushEscaped(output
, (uint8_t)iMask
);
344 output
.push_back(MSGEND
);
348 m_controller
->AddLog(CEC_LOG_ERROR
, "could not set the ackmask");
355 bool CAdapterCommunication::PingAdapter(void)
360 m_controller
->AddLog(CEC_LOG_DEBUG
, "sending ping");
361 cec_adapter_message output
;
364 output
.push_back(MSGSTART
);
365 PushEscaped(output
, MSGCODE_PING
);
366 output
.push_back(MSGEND
);
370 m_controller
->AddLog(CEC_LOG_ERROR
, "could not send ping command");
374 m_controller
->AddLog(CEC_LOG_DEBUG
, "ping tranmitted");
376 // TODO check for pong
380 bool CAdapterCommunication::IsOpen(void) const
382 return !IsStopped() && m_port
->IsOpen();
385 void CAdapterCommunication::FormatAdapterMessage(const cec_command
&command
, cec_adapter_message
&packet
)
389 //set ack polarity to high when transmitting to the broadcast address
390 //set ack polarity low when transmitting to any other address
391 packet
.push_back(MSGSTART
);
392 PushEscaped(packet
, MSGCODE_TRANSMIT_ACK_POLARITY
);
393 if (command
.destination
== CECDEVICE_BROADCAST
)
394 PushEscaped(packet
, CEC_TRUE
);
396 PushEscaped(packet
, CEC_FALSE
);
397 packet
.push_back(MSGEND
);
399 // add source and destination
400 packet
.push_back(MSGSTART
);
401 PushEscaped(packet
, MSGCODE_TRANSMIT
);
402 packet
.push_back(((uint8_t)command
.initiator
<< 4) + (uint8_t)command
.destination
);
403 packet
.push_back(MSGEND
);
406 packet
.push_back(MSGSTART
);
407 PushEscaped(packet
, command
.parameters
.empty() ? (uint8_t)MSGCODE_TRANSMIT_EOM
: (uint8_t)MSGCODE_TRANSMIT
);
408 packet
.push_back((uint8_t) command
.opcode
);
409 packet
.push_back(MSGEND
);
412 for (int8_t iPtr
= 0; iPtr
< command
.parameters
.size
; iPtr
++)
414 packet
.push_back(MSGSTART
);
416 if (iPtr
== command
.parameters
.size
- 1)
417 PushEscaped(packet
, MSGCODE_TRANSMIT_EOM
);
419 PushEscaped(packet
, MSGCODE_TRANSMIT
);
421 PushEscaped(packet
, command
.parameters
[iPtr
]);
423 packet
.push_back(MSGEND
);