cec: fixed - correct source for broadcast messages
[deb_libcec.git] / src / lib / AdapterCommunication.cpp
1 /*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 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 "AdapterCommunication.h"
34
35 #include "LibCEC.h"
36 #include "platform/serialport.h"
37 #include "util/StdString.h"
38
39 using namespace std;
40 using namespace CEC;
41
42 CAdapterCommunication::CAdapterCommunication(CLibCEC *controller) :
43 m_port(NULL),
44 m_controller(controller),
45 m_inbuf(NULL),
46 m_iInbufSize(0),
47 m_iInbufUsed(0)
48 {
49 m_port = new CSerialPort;
50 }
51
52 CAdapterCommunication::~CAdapterCommunication(void)
53 {
54 Close();
55
56 if (m_port)
57 {
58 delete m_port;
59 m_port = NULL;
60 }
61
62 if (m_inbuf)
63 free(m_inbuf);
64 }
65
66 bool CAdapterCommunication::Open(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
67 {
68 CLockObject lock(&m_commMutex);
69 if (!m_port)
70 {
71 m_controller->AddLog(CEC_LOG_ERROR, "port is NULL");
72 return false;
73 }
74
75 if (IsOpen())
76 {
77 m_controller->AddLog(CEC_LOG_ERROR, "port is already open");
78 }
79
80 if (!m_port->Open(strPort, iBaudRate))
81 {
82 CStdString strError;
83 strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
84 m_controller->AddLog(CEC_LOG_ERROR, strError);
85 return false;
86 }
87
88 m_controller->AddLog(CEC_LOG_DEBUG, "connection opened");
89
90 //clear any input bytes
91 uint8_t buff[1024];
92 m_port->Read(buff, sizeof(buff), 50);
93
94 if (CreateThread())
95 {
96 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread created");
97 return true;
98 }
99 else
100 {
101 m_controller->AddLog(CEC_LOG_DEBUG, "could not create a communication thread");
102 }
103
104 return false;
105 }
106
107 void CAdapterCommunication::Close(void)
108 {
109 CLockObject lock(&m_commMutex);
110 StopThread();
111
112 if (m_inbuf)
113 {
114 free(m_inbuf);
115 m_inbuf = NULL;
116 m_iInbufSize = 0;
117 m_iInbufUsed = 0;
118 }
119
120 m_rcvCondition.Broadcast();
121 }
122
123 void *CAdapterCommunication::Process(void)
124 {
125 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread started");
126
127 while (!IsStopped())
128 {
129 {
130 CLockObject lock(&m_commMutex);
131 ReadFromDevice(100);
132 }
133
134 if (!IsStopped())
135 Sleep(5);
136 }
137
138 return NULL;
139 }
140
141 bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
142 {
143 int32_t iBytesRead;
144 uint8_t buff[1024];
145 if (!m_port)
146 return false;
147
148 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
149 if (iBytesRead < 0 || iBytesRead > 256)
150 {
151 CStdString strError;
152 strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
153 m_controller->AddLog(CEC_LOG_ERROR, strError);
154 return false;
155 }
156 else if (iBytesRead > 0)
157 AddData(buff, (uint8_t) iBytesRead);
158
159 return iBytesRead > 0;
160 }
161
162 void CAdapterCommunication::AddData(uint8_t *data, uint8_t iLen)
163 {
164 CLockObject lock(&m_bufferMutex);
165 if (m_iInbufUsed + iLen > m_iInbufSize)
166 {
167 m_iInbufSize = m_iInbufUsed + iLen;
168 m_inbuf = (uint8_t*)realloc(m_inbuf, m_iInbufSize);
169 }
170
171 memcpy(m_inbuf + m_iInbufUsed, data, iLen);
172 m_iInbufUsed += iLen;
173
174 m_rcvCondition.Signal();
175 }
176
177 bool CAdapterCommunication::Write(const cec_adapter_message &data)
178 {
179 CLockObject lock(&m_commMutex);
180 if (m_port->Write(data) != (int32_t) data.size())
181 {
182 CStdString strError;
183 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
184 m_controller->AddLog(CEC_LOG_ERROR, strError);
185 return false;
186 }
187
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)*/);
190
191 return true;
192 }
193
194 bool CAdapterCommunication::Read(cec_adapter_message &msg, uint32_t iTimeout)
195 {
196 CLockObject lock(&m_bufferMutex);
197
198 if (m_iInbufUsed < 1)
199 {
200 if (!m_rcvCondition.Wait(&m_bufferMutex, iTimeout))
201 return false;
202 }
203
204 if (m_iInbufUsed < 1 || IsStopped())
205 return false;
206
207 //search for first start of message
208 int16_t startpos = -1;
209 for (int16_t iPtr = 0; iPtr < m_iInbufUsed; iPtr++)
210 {
211 if (m_inbuf[iPtr] == MSGSTART)
212 {
213 startpos = iPtr;
214 break;
215 }
216 }
217
218 if (startpos == -1)
219 return false;
220
221 //move anything from the first start of message to the beginning of the buffer
222 if (startpos > 0)
223 {
224 memmove(m_inbuf, m_inbuf + startpos, m_iInbufUsed - startpos);
225 m_iInbufUsed -= startpos;
226 }
227
228 if (m_iInbufUsed < 2)
229 return false;
230
231 //look for end of message
232 startpos = -1;
233 int16_t endpos = -1;
234 for (int16_t iPtr = 1; iPtr < m_iInbufUsed; iPtr++)
235 {
236 if (m_inbuf[iPtr] == MSGEND)
237 {
238 endpos = iPtr;
239 break;
240 }
241 else if (m_inbuf[iPtr] == MSGSTART)
242 {
243 startpos = iPtr;
244 break;
245 }
246 }
247
248 if (startpos > 0) //we found a msgstart before msgend, this is not right, remove
249 {
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;
253 return false;
254 }
255
256 if (endpos > 0) //found a MSGEND
257 {
258 msg.clear();
259 bool isesc = false;
260 for (int16_t iPtr = 1; iPtr < endpos; iPtr++)
261 {
262 if (isesc)
263 {
264 msg.push_back(m_inbuf[iPtr] + (uint8_t)ESCOFFSET);
265 isesc = false;
266 }
267 else if (m_inbuf[iPtr] == MSGESC)
268 {
269 isesc = true;
270 }
271 else
272 {
273 msg.push_back(m_inbuf[iPtr]);
274 }
275 }
276
277 if (endpos + 1 < m_iInbufUsed)
278 memmove(m_inbuf, m_inbuf + endpos + 1, m_iInbufUsed - endpos - 1);
279
280 m_iInbufUsed -= endpos + 1;
281
282 return true;
283 }
284
285 return false;
286 }
287
288 std::string CAdapterCommunication::GetError(void) const
289 {
290 return m_port->GetError();
291 }
292
293 bool CAdapterCommunication::StartBootloader(void)
294 {
295 if (!IsRunning())
296 return false;
297
298 m_controller->AddLog(CEC_LOG_DEBUG, "starting the bootloader");
299 cec_adapter_message output;
300 output.clear();
301
302 output.push_back(MSGSTART);
303 PushEscaped(output, MSGCODE_START_BOOTLOADER);
304 output.push_back(MSGEND);
305
306 if (!Write(output))
307 {
308 m_controller->AddLog(CEC_LOG_ERROR, "could not start the bootloader");
309 return false;
310 }
311 m_controller->AddLog(CEC_LOG_DEBUG, "bootloader start command transmitted");
312 return true;
313 }
314
315 void CAdapterCommunication::PushEscaped(cec_adapter_message &vec, uint8_t byte)
316 {
317 if (byte >= MSGESC && byte != MSGSTART)
318 {
319 vec.push_back(MSGESC);
320 vec.push_back(byte - ESCOFFSET);
321 }
322 else
323 {
324 vec.push_back(byte);
325 }
326 }
327
328 bool CAdapterCommunication::SetAckMask(uint16_t iMask)
329 {
330 if (!IsRunning())
331 return false;
332
333 CStdString strLog;
334 strLog.Format("setting ackmask to %2x", iMask);
335 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
336
337 cec_adapter_message output;
338 output.clear();
339
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);
345
346 if (!Write(output))
347 {
348 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
349 return false;
350 }
351
352 return true;
353 }
354
355 bool CAdapterCommunication::PingAdapter(void)
356 {
357 if (!IsRunning())
358 return false;
359
360 m_controller->AddLog(CEC_LOG_DEBUG, "sending ping");
361 cec_adapter_message output;
362 output.clear();
363
364 output.push_back(MSGSTART);
365 PushEscaped(output, MSGCODE_PING);
366 output.push_back(MSGEND);
367
368 if (!Write(output))
369 {
370 m_controller->AddLog(CEC_LOG_ERROR, "could not send ping command");
371 return false;
372 }
373
374 m_controller->AddLog(CEC_LOG_DEBUG, "ping tranmitted");
375
376 // TODO check for pong
377 return true;
378 }
379
380 bool CAdapterCommunication::IsOpen(void) const
381 {
382 return !IsStopped() && m_port->IsOpen();
383 }
384
385 void CAdapterCommunication::FormatAdapterMessage(const cec_command &command, cec_adapter_message &packet)
386 {
387 packet.clear();
388
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);
395 else
396 PushEscaped(packet, CEC_FALSE);
397 packet.push_back(MSGEND);
398
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);
404
405 // add opcode
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);
410
411 // add parameters
412 for (int8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
413 {
414 packet.push_back(MSGSTART);
415
416 if (iPtr == command.parameters.size - 1)
417 PushEscaped(packet, MSGCODE_TRANSMIT_EOM);
418 else
419 PushEscaped(packet, MSGCODE_TRANSMIT);
420
421 PushEscaped(packet, command.parameters[iPtr]);
422
423 packet.push_back(MSGEND);
424 }
425 }
426