cec: include the ack timeout in the cec_command struct
[deb_libcec.git] / src / lib / AdapterCommunication.cpp
CommitLineData
a8f0bd18
LOK
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
828682d3 33#include "AdapterCommunication.h"
2abe74eb
LOK
34
35#include "LibCEC.h"
b9187cc6 36#include "platform/serialport.h"
a8f0bd18 37#include "util/StdString.h"
50aa01e6 38#include "platform/timeutils.h"
a8f0bd18
LOK
39
40using namespace std;
41using namespace CEC;
42
ad24cbaf
LOK
43CCECAdapterMessage::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
85CCECAdapterMessage &CCECAdapterMessage::operator =(const CCECAdapterMessage &msg)
86{
87 packet = msg.packet;
88 return *this;
89}
90
91void CCECAdapterMessage::push_escaped(int16_t byte)
92{
93 if (byte >= MSGESC && byte != MSGSTART)
94 {
95 push_back(MSGESC);
96 push_back(byte - ESCOFFSET);
97 }
98 else
99 push_back(byte);
100}
101
2abe74eb 102CAdapterCommunication::CAdapterCommunication(CLibCEC *controller) :
12027dbe 103 m_port(NULL),
50aa01e6 104 m_controller(controller)
a8f0bd18
LOK
105{
106 m_port = new CSerialPort;
107}
108
828682d3 109CAdapterCommunication::~CAdapterCommunication(void)
a8f0bd18 110{
12027dbe
LOK
111 Close();
112
113 if (m_port)
114 {
115 delete m_port;
116 m_port = NULL;
117 }
a8f0bd18
LOK
118}
119
25701fa6 120bool CAdapterCommunication::Open(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
a8f0bd18 121{
f077e8ed 122 CLockObject lock(&m_mutex);
13fd6a66
LOK
123 if (!m_port)
124 {
125 m_controller->AddLog(CEC_LOG_ERROR, "port is NULL");
a8f0bd18 126 return false;
13fd6a66
LOK
127 }
128
129 if (IsOpen())
130 {
131 m_controller->AddLog(CEC_LOG_ERROR, "port is already open");
132 }
a8f0bd18
LOK
133
134 if (!m_port->Open(strPort, iBaudRate))
135 {
136 CStdString strError;
137 strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
2abe74eb 138 m_controller->AddLog(CEC_LOG_ERROR, strError);
a8f0bd18
LOK
139 return false;
140 }
141
2abe74eb 142 m_controller->AddLog(CEC_LOG_DEBUG, "connection opened");
a8f0bd18
LOK
143
144 //clear any input bytes
145 uint8_t buff[1024];
59c9774c 146 m_port->Read(buff, sizeof(buff), 500);
a8f0bd18 147
828682d3 148 if (CreateThread())
a8f0bd18 149 {
13fd6a66 150 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread created");
a8f0bd18
LOK
151 return true;
152 }
153 else
154 {
13fd6a66 155 m_controller->AddLog(CEC_LOG_DEBUG, "could not create a communication thread");
a8f0bd18
LOK
156 }
157
158 return false;
159}
160
828682d3 161void CAdapterCommunication::Close(void)
a8f0bd18 162{
f077e8ed 163 CLockObject lock(&m_mutex);
828682d3 164 StopThread();
25701fa6 165
d5bffd3c 166 m_rcvCondition.Broadcast();
a8f0bd18
LOK
167}
168
828682d3 169void *CAdapterCommunication::Process(void)
a8f0bd18 170{
12027dbe
LOK
171 m_controller->AddLog(CEC_LOG_DEBUG, "communication thread started");
172
13fd6a66 173 while (!IsStopped())
a8f0bd18 174 {
b9abf920 175 ReadFromDevice(500);
3c53ac93
LOK
176 WriteNextCommand();
177 Sleep(5);
a8f0bd18
LOK
178 }
179
a8f0bd18
LOK
180 return NULL;
181}
182
25701fa6 183bool CAdapterCommunication::ReadFromDevice(uint32_t iTimeout)
a8f0bd18 184{
25701fa6 185 int32_t iBytesRead;
13fd6a66
LOK
186 uint8_t buff[1024];
187 if (!m_port)
188 return false;
b6c82769 189
13fd6a66
LOK
190 iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
191 if (iBytesRead < 0 || iBytesRead > 256)
a8f0bd18 192 {
13fd6a66
LOK
193 CStdString strError;
194 strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
195 m_controller->AddLog(CEC_LOG_ERROR, strError);
13fd6a66 196 return false;
a8f0bd18 197 }
13fd6a66
LOK
198 else if (iBytesRead > 0)
199 AddData(buff, (uint8_t) iBytesRead);
25701fa6 200
13fd6a66 201 return iBytesRead > 0;
a8f0bd18
LOK
202}
203
8bca69de 204void CAdapterCommunication::AddData(uint8_t *data, uint8_t iLen)
a8f0bd18 205{
f077e8ed 206 CLockObject lock(&m_mutex);
50aa01e6
LOK
207 for (unsigned int iPtr = 0; iPtr < iLen; iPtr++)
208 m_inBuffer.Push(data[iPtr]);
d5bffd3c
LOK
209
210 m_rcvCondition.Signal();
a8f0bd18
LOK
211}
212
3c53ac93 213void CAdapterCommunication::WriteNextCommand(void)
a8f0bd18 214{
5a1e87c8 215 CCECAdapterMessagePtr msg;
3c53ac93 216 if (m_outBuffer.Pop(msg))
a8f0bd18 217 {
eb35e4ca 218 CLockObject lock(&msg->mutex);
0e31a62c 219 if (m_port->Write(msg) != (int32_t) msg->size())
3c53ac93
LOK
220 {
221 CStdString strError;
222 strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
223 m_controller->AddLog(CEC_LOG_ERROR, strError);
0e31a62c 224 msg->state = ADAPTER_MESSAGE_STATE_ERROR;
3c53ac93
LOK
225 }
226 else
227 {
228 m_controller->AddLog(CEC_LOG_DEBUG, "command sent");
0e31a62c
LOK
229 CCondition::Sleep((uint32_t) msg->size() * (uint32_t)24 /*data*/ + (uint32_t)5 /*start bit (4.5 ms)*/);
230 msg->state = ADAPTER_MESSAGE_STATE_SENT;
3c53ac93 231 }
eb35e4ca 232 msg->condition.Signal();
25701fa6 233 }
3c53ac93 234}
2abe74eb 235
5a1e87c8 236bool CAdapterCommunication::Write(CCECAdapterMessagePtr data)
3c53ac93 237{
0e31a62c 238 data->state = ADAPTER_MESSAGE_STATE_WAITING;
3c53ac93 239 m_outBuffer.Push(data);
a8f0bd18
LOK
240 return true;
241}
242
220537f2 243bool CAdapterCommunication::Read(CCECAdapterMessage &msg, uint32_t iTimeout)
a8f0bd18 244{
f077e8ed 245 CLockObject lock(&m_mutex);
a8f0bd18 246
50aa01e6
LOK
247 msg.clear();
248 uint64_t iNow = GetTimeMs();
249 uint64_t iTarget = iNow + iTimeout;
250 bool bGotFullMessage(false);
251 bool bNextIsEscaped(false);
252 bool bGotStart(false);
a8f0bd18 253
50aa01e6 254 while(!bGotFullMessage && iNow < iTarget)
a8f0bd18 255 {
50aa01e6
LOK
256 uint8_t buf = 0;
257 if (!m_inBuffer.Pop(buf))
a8f0bd18 258 {
f077e8ed 259 if (!m_rcvCondition.Wait(&m_mutex, iTarget - iNow))
50aa01e6 260 return false;
a8f0bd18 261 }
a8f0bd18 262
50aa01e6 263 if (!bGotStart)
a8f0bd18 264 {
50aa01e6
LOK
265 if (buf == MSGSTART)
266 bGotStart = true;
267 continue;
a8f0bd18 268 }
50aa01e6 269 else if (buf == MSGSTART) //we found a msgstart before msgend, this is not right, remove
a8f0bd18 270 {
50aa01e6
LOK
271 m_controller->AddLog(CEC_LOG_ERROR, "received MSGSTART before MSGEND");
272 msg.clear();
273 bGotStart = true;
a8f0bd18 274 }
a8f0bd18 275
50aa01e6 276 if (buf == MSGEND)
a8f0bd18 277 {
50aa01e6 278 bGotFullMessage = true;
a8f0bd18 279 }
50aa01e6
LOK
280 else if (bNextIsEscaped)
281 {
282 msg.push_back(buf + (uint8_t)ESCOFFSET);
283 bNextIsEscaped = false;
284 }
285 else if (buf == MSGESC)
286 bNextIsEscaped = true;
287 else
288 msg.push_back(buf);
a8f0bd18
LOK
289 }
290
0e31a62c
LOK
291 if (bGotFullMessage)
292 msg.state = ADAPTER_MESSAGE_STATE_RECEIVED;
293
50aa01e6 294 return bGotFullMessage;
a8f0bd18
LOK
295}
296
828682d3 297std::string CAdapterCommunication::GetError(void) const
a8f0bd18
LOK
298{
299 return m_port->GetError();
300}
2abe74eb
LOK
301
302bool CAdapterCommunication::StartBootloader(void)
303{
304 if (!IsRunning())
305 return false;
306
307 m_controller->AddLog(CEC_LOG_DEBUG, "starting the bootloader");
5a1e87c8 308 CCECAdapterMessagePtr output(new CCECAdapterMessage);
25701fa6 309
5a1e87c8
LOK
310 output->push_back(MSGSTART);
311 output->push_escaped(MSGCODE_START_BOOTLOADER);
312 output->push_back(MSGEND);
2abe74eb
LOK
313
314 if (!Write(output))
315 {
316 m_controller->AddLog(CEC_LOG_ERROR, "could not start the bootloader");
317 return false;
318 }
319 m_controller->AddLog(CEC_LOG_DEBUG, "bootloader start command transmitted");
320 return true;
321}
322
2abe74eb
LOK
323bool CAdapterCommunication::SetAckMask(uint16_t iMask)
324{
325 if (!IsRunning())
326 return false;
327
328 CStdString strLog;
329 strLog.Format("setting ackmask to %2x", iMask);
330 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
331
5a1e87c8 332 CCECAdapterMessagePtr output(new CCECAdapterMessage);
2abe74eb 333
5a1e87c8
LOK
334 output->push_back(MSGSTART);
335 output->push_escaped(MSGCODE_SET_ACK_MASK);
336 output->push_escaped(iMask >> 8);
337 output->push_escaped((uint8_t)iMask);
338 output->push_back(MSGEND);
2abe74eb
LOK
339
340 if (!Write(output))
341 {
342 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
343 return false;
344 }
345
346 return true;
347}
348
349bool CAdapterCommunication::PingAdapter(void)
350{
351 if (!IsRunning())
352 return false;
353
354 m_controller->AddLog(CEC_LOG_DEBUG, "sending ping");
5a1e87c8 355 CCECAdapterMessagePtr output(new CCECAdapterMessage);
25701fa6 356
5a1e87c8
LOK
357 output->push_back(MSGSTART);
358 output->push_escaped(MSGCODE_PING);
359 output->push_back(MSGEND);
2abe74eb
LOK
360
361 if (!Write(output))
362 {
363 m_controller->AddLog(CEC_LOG_ERROR, "could not send ping command");
364 return false;
365 }
366
367 m_controller->AddLog(CEC_LOG_DEBUG, "ping tranmitted");
368
369 // TODO check for pong
370 return true;
371}
13fd6a66
LOK
372
373bool CAdapterCommunication::IsOpen(void) const
374{
375 return !IsStopped() && m_port->IsOpen();
376}