2286a01e57080e8c12663e7b6c5a48d0d628f1c0
[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 #include "platform/timeutils.h"
39
40 using namespace std;
41 using namespace CEC;
42
43 CCECAdapterMessage::CCECAdapterMessage(const cec_command &command)
44 {
45 clear();
46
47 //set ack polarity to high when transmitting to the broadcast address
48 //set ack polarity low when transmitting to any other address
49 push_back(MSGSTART);
50 push_escaped(MSGCODE_TRANSMIT_ACK_POLARITY);
51 if (command.destination == CECDEVICE_BROADCAST)
52 push_escaped(CEC_TRUE);
53 else
54 push_escaped(CEC_FALSE);
55 push_back(MSGEND);
56
57 // add source and destination
58 push_back(MSGSTART);
59 push_escaped(MSGCODE_TRANSMIT);
60 push_back(((uint8_t)command.initiator << 4) + (uint8_t)command.destination);
61 push_back(MSGEND);
62
63 // add opcode
64 push_back(MSGSTART);
65 push_escaped(command.parameters.empty() ? (uint8_t)MSGCODE_TRANSMIT_EOM : (uint8_t)MSGCODE_TRANSMIT);
66 push_back((uint8_t) command.opcode);
67 push_back(MSGEND);
68
69 // add parameters
70 for (int8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
71 {
72 push_back(MSGSTART);
73
74 if (iPtr == command.parameters.size - 1)
75 push_escaped( MSGCODE_TRANSMIT_EOM);
76 else
77 push_escaped(MSGCODE_TRANSMIT);
78
79 push_escaped(command.parameters[iPtr]);
80
81 push_back(MSGEND);
82 }
83
84 // set timeout
85 transmit_timeout = command.transmit_timeout;
86 }
87
88 CCECAdapterMessage &CCECAdapterMessage::operator =(const CCECAdapterMessage &msg)
89 {
90 packet = msg.packet;
91 state = msg.state;
92 return *this;
93 }
94
95 CStdString CCECAdapterMessage::MessageCodeAsString(void) const
96 {
97 CStdString strMsg;
98 switch (message())
99 {
100 case MSGCODE_NOTHING:
101 strMsg = "NOTHING";
102 break;
103 case MSGCODE_PING:
104 strMsg = "PING";
105 break;
106 case MSGCODE_TIMEOUT_ERROR:
107 strMsg = "TIMEOUT";
108 break;
109 case MSGCODE_HIGH_ERROR:
110 strMsg = "HIGH_ERROR";
111 break;
112 case MSGCODE_LOW_ERROR:
113 strMsg = "LOW_ERROR";
114 break;
115 case MSGCODE_FRAME_START:
116 strMsg = "FRAME_START";
117 break;
118 case MSGCODE_FRAME_DATA:
119 strMsg = "FRAME_DATA";
120 break;
121 case MSGCODE_RECEIVE_FAILED:
122 strMsg = "RECEIVE_FAILED";
123 break;
124 case MSGCODE_COMMAND_ACCEPTED:
125 strMsg = "COMMAND_ACCEPTED";
126 break;
127 case MSGCODE_COMMAND_REJECTED:
128 strMsg = "COMMAND_REJECTED";
129 break;
130 case MSGCODE_SET_ACK_MASK:
131 strMsg = "SET_ACK_MASK";
132 break;
133 case MSGCODE_TRANSMIT:
134 strMsg = "TRANSMIT";
135 break;
136 case MSGCODE_TRANSMIT_EOM:
137 strMsg = "TRANSMIT_EOM";
138 break;
139 case MSGCODE_TRANSMIT_IDLETIME:
140 strMsg = "TRANSMIT_IDLETIME";
141 break;
142 case MSGCODE_TRANSMIT_ACK_POLARITY:
143 strMsg = "TRANSMIT_ACK_POLARITY";
144 break;
145 case MSGCODE_TRANSMIT_LINE_TIMEOUT:
146 strMsg = "TRANSMIT_LINE_TIMEOUT";
147 break;
148 case MSGCODE_TRANSMIT_SUCCEEDED:
149 strMsg = "TRANSMIT_SUCCEEDED";
150 break;
151 case MSGCODE_TRANSMIT_FAILED_LINE:
152 strMsg = "TRANSMIT_FAILED_LINE";
153 break;
154 case MSGCODE_TRANSMIT_FAILED_ACK:
155 strMsg = "TRANSMIT_FAILED_ACK";
156 break;
157 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA:
158 strMsg = "TRANSMIT_FAILED_TIMEOUT_DATA";
159 break;
160 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE:
161 strMsg = "TRANSMIT_FAILED_TIMEOUT_LINE";
162 break;
163 case MSGCODE_FIRMWARE_VERSION:
164 strMsg = "FIRMWARE_VERSION";
165 break;
166 case MSGCODE_START_BOOTLOADER:
167 strMsg = "START_BOOTLOADER";
168 break;
169 case MSGCODE_FRAME_EOM:
170 strMsg = "FRAME_EOM";
171 break;
172 case MSGCODE_FRAME_ACK:
173 strMsg = "FRAME_ACK";
174 break;
175 }
176
177 return strMsg;
178 }
179
180 CStdString CCECAdapterMessage::ToString(void) const
181 {
182 CStdString strMsg;
183 strMsg = MessageCodeAsString();
184
185 switch (message())
186 {
187 case MSGCODE_TIMEOUT_ERROR:
188 case MSGCODE_HIGH_ERROR:
189 case MSGCODE_LOW_ERROR:
190 {
191 int iLine = (size() >= 3) ? (at(1) << 8) | at(2) : 0;
192 uint32_t iTime = (size() >= 7) ? (at(3) << 24) | (at(4) << 16) | (at(5) << 8) | at(6) : 0;
193 strMsg.AppendFormat(" line:%i", iLine);
194 strMsg.AppendFormat(" time:%u", iTime);
195 }
196 break;
197 case MSGCODE_FRAME_START:
198 if (size() >= 2)
199 strMsg.AppendFormat(" initiator:%1x destination:%1x ack:%s %s", initiator(), destination(), ack() ? "high" : "low", eom() ? "eom" : "");
200 break;
201 case MSGCODE_FRAME_DATA:
202 if (size() >= 2)
203 strMsg.AppendFormat(" %02x %s", at(1), eom() ? "eom" : "");
204 break;
205 default:
206 break;
207 }
208
209 return strMsg;
210 }
211
212 bool CCECAdapterMessage::is_error(void) const
213 {
214 cec_adapter_messagecode code = message();
215 return (code == MSGCODE_TIMEOUT_ERROR ||
216 code == MSGCODE_HIGH_ERROR ||
217 code == MSGCODE_LOW_ERROR ||
218 code == MSGCODE_RECEIVE_FAILED ||
219 code == MSGCODE_COMMAND_REJECTED ||
220 code == MSGCODE_TRANSMIT_LINE_TIMEOUT ||
221 code == MSGCODE_TRANSMIT_FAILED_LINE ||
222 code == MSGCODE_TRANSMIT_FAILED_ACK ||
223 code == MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA ||
224 code == MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE);
225 }
226
227 void CCECAdapterMessage::push_escaped(int16_t byte)
228 {
229 if (byte >= MSGESC && byte != MSGSTART)
230 {
231 push_back(MSGESC);
232 push_back((uint8_t) (byte - ESCOFFSET));
233 }
234 else
235 push_back((uint8_t) byte);
236 }
237
238 CAdapterCommunication::CAdapterCommunication(CLibCEC *controller) :
239 m_port(NULL),
240 m_controller(controller)
241 {
242 m_port = new CSerialPort;
243 }
244
245 CAdapterCommunication::~CAdapterCommunication(void)
246 {
247 Close();
248
249 if (m_port)
250 {
251 delete m_port;
252 m_port = NULL;
253 }
254 }
255
256 bool CAdapterCommunication::Open(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
257 {
258 CLockObject lock(&m_mutex);
259 if (!m_port)
260 {
261 m_controller->AddLog(CEC_LOG_ERROR, "port is NULL");
262 return false;
263 }
264
265 if (IsOpen())
266 {
267 m_controller->AddLog(CEC_LOG_ERROR, "port is already open");
268 }
269
270 if (!m_port->Open(strPort, iBaudRate))
271 {
272 CStdString strError;
273 strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
274 m_controller->AddLog(CEC_LOG_ERROR, strError);
275 return false;
276 }
277
278 m_controller->AddLog(CEC_LOG_DEBUG, "connection opened");
279
280 //clear any input bytes
281 uint8_t buff[1024];
282 m_port->Read(buff, sizeof(buff), 500);
283
284 if (CreateThread())
285 {
286 m_startCondition.Wait(&m_mutex);
287 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread started");
288 return true;
289 }
290 else
291 {
292 m_controller->AddLog(CEC_LOG_DEBUG, "could not create a communication thread");
293 }
294
295 return false;
296 }
297
298 void CAdapterCommunication::Close(void)
299 {
300 CLockObject lock(&m_mutex);
301 m_startCondition.Broadcast();
302 m_rcvCondition.Broadcast();
303 StopThread();
304 }
305
306 void *CAdapterCommunication::Process(void)
307 {
308 {
309 CLockObject lock(&m_mutex);
310 m_startCondition.Signal();
311 }
312
313 while (!IsStopped())
314 {
315 ReadFromDevice(500);
316 Sleep(5);
317 WriteNextCommand();
318 Sleep(5);
319 }
320
321 return NULL;
322 }
323
324 bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
325 {
326 int32_t iBytesRead;
327 uint8_t buff[1024];
328 if (!m_port)
329 return false;
330
331 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
332 if (iBytesRead < 0 || iBytesRead > 256)
333 {
334 CStdString strError;
335 strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
336 m_controller->AddLog(CEC_LOG_ERROR, strError);
337 return false;
338 }
339 else if (iBytesRead > 0)
340 AddData(buff, (uint8_t) iBytesRead);
341
342 return iBytesRead > 0;
343 }
344
345 void CAdapterCommunication::AddData(uint8_t *data, uint8_t iLen)
346 {
347 CLockObject lock(&m_mutex);
348 for (unsigned int iPtr = 0; iPtr < iLen; iPtr++)
349 m_inBuffer.Push(data[iPtr]);
350
351 m_rcvCondition.Signal();
352 }
353
354 void CAdapterCommunication::WriteNextCommand(void)
355 {
356 CCECAdapterMessagePtr msg;
357 if (m_outBuffer.Pop(msg))
358 {
359 CLockObject lock(&msg->mutex);
360 if (m_port->Write(msg) != (int32_t) msg->size())
361 {
362 CStdString strError;
363 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
364 m_controller->AddLog(CEC_LOG_ERROR, strError);
365 msg->state = ADAPTER_MESSAGE_STATE_ERROR;
366 }
367 else
368 {
369 m_controller->AddLog(CEC_LOG_DEBUG, "command sent");
370 CCondition::Sleep((uint32_t) msg->size() * 24 /*data*/ + 5 /*start bit (4.5 ms)*/ + 10);
371 msg->state = ADAPTER_MESSAGE_STATE_SENT;
372 }
373 msg->condition.Signal();
374 }
375 }
376
377 bool CAdapterCommunication::Write(CCECAdapterMessagePtr data)
378 {
379 data->state = ADAPTER_MESSAGE_STATE_WAITING;
380 m_outBuffer.Push(data);
381 return true;
382 }
383
384 bool CAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
385 {
386 CLockObject lock(&m_mutex);
387
388 msg.clear();
389 uint64_t iNow = GetTimeMs();
390 uint64_t iTarget = iNow + iTimeout;
391 bool bGotFullMessage(false);
392 bool bNextIsEscaped(false);
393 bool bGotStart(false);
394
395 while(!bGotFullMessage && iNow < iTarget)
396 {
397 uint8_t buf = 0;
398 if (!m_inBuffer.Pop(buf))
399 {
400 if (!m_rcvCondition.Wait(&m_mutex, (uint32_t) (iTarget - iNow)))
401 return false;
402 }
403
404 if (!bGotStart)
405 {
406 if (buf == MSGSTART)
407 bGotStart = true;
408 continue;
409 }
410 else if (buf == MSGSTART) //we found a msgstart before msgend, this is not right, remove
411 {
412 m_controller->AddLog(CEC_LOG_ERROR, "received MSGSTART before MSGEND");
413 msg.clear();
414 bGotStart = true;
415 }
416
417 if (buf == MSGEND)
418 {
419 bGotFullMessage = true;
420 }
421 else if (bNextIsEscaped)
422 {
423 msg.push_back(buf + (uint8_t)ESCOFFSET);
424 bNextIsEscaped = false;
425 }
426 else if (buf == MSGESC)
427 bNextIsEscaped = true;
428 else
429 msg.push_back(buf);
430 }
431
432 if (bGotFullMessage)
433 msg.state = ADAPTER_MESSAGE_STATE_RECEIVED;
434
435 return bGotFullMessage;
436 }
437
438 std::string CAdapterCommunication::GetError(void) const
439 {
440 return m_port->GetError();
441 }
442
443 bool CAdapterCommunication::StartBootloader(void)
444 {
445 if (!IsRunning())
446 return false;
447
448 m_controller->AddLog(CEC_LOG_DEBUG, "starting the bootloader");
449 CCECAdapterMessagePtr output(new CCECAdapterMessage);
450
451 output->push_back(MSGSTART);
452 output->push_escaped(MSGCODE_START_BOOTLOADER);
453 output->push_back(MSGEND);
454
455 if (!Write(output))
456 {
457 m_controller->AddLog(CEC_LOG_ERROR, "could not start the bootloader");
458 return false;
459 }
460 m_controller->AddLog(CEC_LOG_DEBUG, "bootloader start command transmitted");
461 return true;
462 }
463
464 bool CAdapterCommunication::PingAdapter(void)
465 {
466 if (!IsRunning())
467 return false;
468
469 m_controller->AddLog(CEC_LOG_DEBUG, "sending ping");
470 CCECAdapterMessagePtr output(new CCECAdapterMessage);
471
472 output->push_back(MSGSTART);
473 output->push_escaped(MSGCODE_PING);
474 output->push_back(MSGEND);
475
476 if (!Write(output))
477 {
478 m_controller->AddLog(CEC_LOG_ERROR, "could not send ping command");
479 return false;
480 }
481
482 m_controller->AddLog(CEC_LOG_DEBUG, "ping tranmitted");
483
484 // TODO check for pong
485 return true;
486 }
487
488 bool CAdapterCommunication::IsOpen(void) const
489 {
490 return !IsStopped() && m_port->IsOpen() && IsRunning();
491 }