cec: check whether the adapter responds when connecting to it and report the firmware...
[deb_libcec.git] / src / lib / adapter / 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 "AdapterMessage.h"
36 #include "CECProcessor.h"
37 #include "platform/serialport/serialport.h"
38
39 using namespace std;
40 using namespace CEC;
41 using namespace PLATFORM;
42
43 CAdapterCommunication::CAdapterCommunication(CCECProcessor *processor) :
44 m_port(NULL),
45 m_processor(processor),
46 m_iLineTimeout(0),
47 m_iFirmwareVersion(CEC_FW_VERSION_UNKNOWN)
48 {
49 m_port = new PLATFORM::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
63 bool CAdapterCommunication::Open(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
64 {
65 uint64_t iNow = GetTimeMs();
66 uint64_t iTimeout = iNow + iTimeoutMs;
67
68 CLockObject lock(m_mutex);
69
70 if (!m_port)
71 {
72 m_processor->AddLog(CEC_LOG_ERROR, "port is NULL");
73 return false;
74 }
75
76 if (IsOpen())
77 {
78 m_processor->AddLog(CEC_LOG_ERROR, "port is already open");
79 return true;
80 }
81
82 CStdString strError;
83 bool bConnected(false);
84 while (!bConnected && iNow < iTimeout)
85 {
86 if ((bConnected = m_port->Open(strPort, iBaudRate)) == false)
87 {
88 strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
89 Sleep(250);
90 iNow = GetTimeMs();
91 }
92 }
93
94 if (!bConnected)
95 {
96 m_processor->AddLog(CEC_LOG_ERROR, strError);
97 return false;
98 }
99
100 m_processor->AddLog(CEC_LOG_DEBUG, "connection opened");
101
102 //clear any input bytes
103 uint8_t buff[1];
104 while (m_port->Read(buff, 1, 5) == 1) {}
105
106 if (CreateThread())
107 {
108 m_processor->AddLog(CEC_LOG_DEBUG, "communication thread started");
109 return true;
110 }
111 else
112 {
113 m_processor->AddLog(CEC_LOG_ERROR, "could not create a communication thread");
114 }
115
116 return false;
117 }
118
119 void CAdapterCommunication::Close(void)
120 {
121 CLockObject lock(m_mutex);
122 m_rcvCondition.Broadcast();
123 StopThread();
124 }
125
126 void *CAdapterCommunication::Process(void)
127 {
128 while (!IsStopped())
129 {
130 ReadFromDevice(50);
131 Sleep(5);
132 WriteNextCommand();
133 }
134
135 CCECAdapterMessage *msg(NULL);
136 if (m_outBuffer.Pop(msg))
137 msg->condition.Broadcast();
138
139 return NULL;
140 }
141
142 bool CAdapterCommunication::Write(CCECAdapterMessage *data)
143 {
144 bool bReturn(false);
145
146 CLockObject lock(data->mutex);
147 data->state = ADAPTER_MESSAGE_STATE_WAITING_TO_BE_SENT;
148 m_outBuffer.Push(data);
149 data->condition.Wait(data->mutex);
150
151 if (data->state != ADAPTER_MESSAGE_STATE_SENT)
152 {
153 m_processor->AddLog(CEC_LOG_ERROR, "command was not sent");
154 }
155 if (data->expectControllerAck && WaitForTransmitSucceeded(data))
156 {
157 if (data->isTransmission)
158 data->state = ADAPTER_MESSAGE_STATE_SENT_ACKED;
159 bReturn = true;
160 }
161 else
162 {
163 data->state = ADAPTER_MESSAGE_STATE_SENT_NOT_ACKED;
164 m_processor->AddLog(CEC_LOG_DEBUG, "did not receive ack");
165 }
166
167 return bReturn;
168 }
169
170 bool CAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
171 {
172 CLockObject lock(m_mutex);
173
174 msg.Clear();
175 uint64_t iNow = GetTimeMs();
176 uint64_t iTarget = iNow + iTimeout;
177 bool bGotFullMessage(false);
178 bool bNextIsEscaped(false);
179 bool bGotStart(false);
180
181 while(!bGotFullMessage && iNow < iTarget)
182 {
183 uint8_t buf = 0;
184 if (!m_inBuffer.Pop(buf))
185 {
186 if (!m_rcvCondition.Wait(m_mutex, (uint32_t) (iTarget - iNow)))
187 return false;
188 }
189
190 if (!bGotStart)
191 {
192 if (buf == MSGSTART)
193 bGotStart = true;
194 continue;
195 }
196 else if (buf == MSGSTART) //we found a msgstart before msgend, this is not right, remove
197 {
198 if (msg.Size() > 0)
199 m_processor->AddLog(CEC_LOG_WARNING, "received MSGSTART before MSGEND, removing previous buffer contents");
200 msg.Clear();
201 bGotStart = true;
202 }
203
204 if (buf == MSGEND)
205 {
206 bGotFullMessage = true;
207 }
208 else if (bNextIsEscaped)
209 {
210 msg.PushBack(buf + (uint8_t)ESCOFFSET);
211 bNextIsEscaped = false;
212 }
213 else if (buf == MSGESC)
214 bNextIsEscaped = true;
215 else
216 msg.PushBack(buf);
217 }
218
219 if (bGotFullMessage)
220 msg.state = ADAPTER_MESSAGE_STATE_INCOMING;
221
222 return bGotFullMessage;
223 }
224
225 std::string CAdapterCommunication::GetError(void) const
226 {
227 return m_port->GetError();
228 }
229
230 bool CAdapterCommunication::StartBootloader(void)
231 {
232 bool bReturn(false);
233 if (!IsRunning())
234 return bReturn;
235
236 m_processor->AddLog(CEC_LOG_DEBUG, "starting the bootloader");
237 CCECAdapterMessage *output = new CCECAdapterMessage;
238
239 output->PushBack(MSGSTART);
240 output->PushEscaped(MSGCODE_START_BOOTLOADER);
241 output->PushBack(MSGEND);
242 output->isTransmission = false;
243 output->expectControllerAck = false;
244
245 if ((bReturn = Write(output)) == false)
246 m_processor->AddLog(CEC_LOG_ERROR, "could not start the bootloader");
247 delete output;
248
249 return bReturn;
250 }
251
252 bool CAdapterCommunication::PingAdapter(void)
253 {
254 bool bReturn(false);
255 if (!IsRunning())
256 return bReturn;
257
258 m_processor->AddLog(CEC_LOG_DEBUG, "sending ping");
259 CCECAdapterMessage *output = new CCECAdapterMessage;
260
261 output->PushBack(MSGSTART);
262 output->PushEscaped(MSGCODE_PING);
263 output->PushBack(MSGEND);
264 output->isTransmission = false;
265
266 if ((bReturn = Write(output)) == false)
267 m_processor->AddLog(CEC_LOG_ERROR, "could not ping the adapter");
268 delete output;
269
270 return bReturn;
271 }
272
273 uint16_t CAdapterCommunication::GetFirmwareVersion(void)
274 {
275 uint16_t iReturn(m_iFirmwareVersion);
276 if (!IsRunning())
277 return iReturn;
278
279 if (iReturn == CEC_FW_VERSION_UNKNOWN)
280 {
281 m_processor->AddLog(CEC_LOG_DEBUG, "requesting the firmware version");
282 CCECAdapterMessage *output = new CCECAdapterMessage;
283
284 output->PushBack(MSGSTART);
285 output->PushEscaped(MSGCODE_FIRMWARE_VERSION);
286 output->PushBack(MSGEND);
287 output->isTransmission = false;
288 output->expectControllerAck = false;
289
290 SendMessageToAdapter(output);
291 delete output;
292
293 CCECAdapterMessage input;
294 if (!Read(input, CEC_DEFAULT_TRANSMIT_WAIT) || input.Message() != MSGCODE_FIRMWARE_VERSION || input.Size() != 3)
295 m_processor->AddLog(CEC_LOG_ERROR, "no or invalid firmware version");
296 else
297 {
298 m_iFirmwareVersion = (input[1] << 8 | input[2]);
299 iReturn = m_iFirmwareVersion;
300 }
301 }
302
303 return iReturn;
304 }
305
306 bool CAdapterCommunication::SetLineTimeout(uint8_t iTimeout)
307 {
308 bool bReturn(m_iLineTimeout != iTimeout);
309
310 if (!bReturn)
311 {
312 CCECAdapterMessage *output = new CCECAdapterMessage;
313
314 output->PushBack(MSGSTART);
315 output->PushEscaped(MSGCODE_TRANSMIT_IDLETIME);
316 output->PushEscaped(iTimeout);
317 output->PushBack(MSGEND);
318 output->isTransmission = false;
319
320 if ((bReturn = Write(output)) == false)
321 m_processor->AddLog(CEC_LOG_ERROR, "could not set the idletime");
322 delete output;
323 }
324
325 return bReturn;
326 }
327
328 bool CAdapterCommunication::SetAckMask(uint16_t iMask)
329 {
330 bool bReturn(false);
331 CStdString strLog;
332 strLog.Format("setting ackmask to %2x", iMask);
333 m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str());
334
335 CCECAdapterMessage *output = new CCECAdapterMessage;
336
337 output->PushBack(MSGSTART);
338 output->PushEscaped(MSGCODE_SET_ACK_MASK);
339 output->PushEscaped(iMask >> 8);
340 output->PushEscaped((uint8_t)iMask);
341 output->PushBack(MSGEND);
342 output->isTransmission = false;
343
344 if ((bReturn = Write(output)) == false)
345 m_processor->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
346 delete output;
347
348 return bReturn;
349 }
350
351 bool CAdapterCommunication::IsOpen(void)
352 {
353 return !IsStopped() && m_port->IsOpen() && IsRunning();
354 }
355
356 bool CAdapterCommunication::WaitForTransmitSucceeded(CCECAdapterMessage *message)
357 {
358 bool bError(false);
359 bool bTransmitSucceeded(false);
360 uint8_t iPacketsLeft(message->Size() / 4);
361
362 int64_t iNow = GetTimeMs();
363 int64_t iTargetTime = iNow + message->transmit_timeout;
364
365 while (!bTransmitSucceeded && !bError && (message->transmit_timeout == 0 || iNow < iTargetTime))
366 {
367 CCECAdapterMessage msg;
368
369 if (!Read(msg, message->transmit_timeout > 0 ? (int32_t)(iTargetTime - iNow) : 1000))
370 {
371 iNow = GetTimeMs();
372 continue;
373 }
374
375 if (msg.Message() == MSGCODE_FRAME_START && msg.IsACK())
376 {
377 m_processor->HandlePoll(msg.Initiator(), msg.Destination());
378 iNow = GetTimeMs();
379 continue;
380 }
381
382 if (msg.Message() == MSGCODE_RECEIVE_FAILED &&
383 m_processor->HandleReceiveFailed())
384 {
385 iNow = GetTimeMs();
386 continue;
387 }
388
389 bError = msg.IsError();
390 if (bError)
391 {
392 message->reply = msg.Message();
393 m_processor->AddLog(CEC_LOG_DEBUG, msg.ToString());
394 }
395 else
396 {
397 switch(msg.Message())
398 {
399 case MSGCODE_COMMAND_ACCEPTED:
400 m_processor->AddLog(CEC_LOG_DEBUG, msg.ToString());
401 if (iPacketsLeft > 0)
402 iPacketsLeft--;
403 if (!message->isTransmission && iPacketsLeft == 0)
404 bTransmitSucceeded = true;
405 break;
406 case MSGCODE_TRANSMIT_SUCCEEDED:
407 m_processor->AddLog(CEC_LOG_DEBUG, msg.ToString());
408 bTransmitSucceeded = (iPacketsLeft == 0);
409 bError = !bTransmitSucceeded;
410 message->reply = MSGCODE_TRANSMIT_SUCCEEDED;
411 break;
412 default:
413 // ignore other data while waiting
414 break;
415 }
416
417 iNow = GetTimeMs();
418 }
419 }
420
421 return bTransmitSucceeded && !bError;
422 }
423
424 void CAdapterCommunication::AddData(uint8_t *data, uint8_t iLen)
425 {
426 CLockObject lock(m_mutex);
427 for (uint8_t iPtr = 0; iPtr < iLen; iPtr++)
428 m_inBuffer.Push(data[iPtr]);
429
430 m_rcvCondition.Signal();
431 }
432
433 bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
434 {
435 int32_t iBytesRead;
436 uint8_t buff[1024];
437 if (!m_port)
438 return false;
439
440 CLockObject lock(m_mutex);
441 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
442 if (iBytesRead < 0 || iBytesRead > 256)
443 {
444 CStdString strError;
445 strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
446 m_processor->AddLog(CEC_LOG_ERROR, strError);
447 return false;
448 }
449 else if (iBytesRead > 0)
450 AddData(buff, (uint8_t) iBytesRead);
451
452 return iBytesRead > 0;
453 }
454
455 void CAdapterCommunication::SendMessageToAdapter(CCECAdapterMessage *msg)
456 {
457 CLockObject adapterLock(m_mutex);
458 CLockObject lock(msg->mutex);
459 if (m_port->Write(msg->packet.data, msg->Size()) != (int32_t) msg->Size())
460 {
461 CStdString strError;
462 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
463 m_processor->AddLog(CEC_LOG_ERROR, strError);
464 msg->state = ADAPTER_MESSAGE_STATE_ERROR;
465 }
466 else
467 {
468 m_processor->AddLog(CEC_LOG_DEBUG, "command sent");
469 msg->state = ADAPTER_MESSAGE_STATE_SENT;
470 }
471 msg->condition.Signal();
472 }
473
474 void CAdapterCommunication::WriteNextCommand(void)
475 {
476 CCECAdapterMessage *msg(NULL);
477 if (m_outBuffer.Pop(msg))
478 SendMessageToAdapter(msg);
479 }