cec: wait for messages to be transmitted before continueing in CCECProcessor::Transmit()
[deb_libcec.git] / src / lib / CECProcessor.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 "CECProcessor.h"
34
35 #include "AdapterCommunication.h"
36 #include "devices/CECBusDevice.h"
37 #include "LibCEC.h"
38 #include "util/StdString.h"
39 #include "platform/timeutils.h"
40
41 using namespace CEC;
42 using namespace std;
43
44 CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
45 m_iLogicalAddress(iLogicalAddress),
46 m_strDeviceName(strDeviceName),
47 m_communication(serComm),
48 m_controller(controller),
49 m_bMonitor(false)
50 {
51 for (int iPtr = 0; iPtr < 16; iPtr++)
52 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, iPtr == iLogicalAddress ? iPhysicalAddress : 0);
53 }
54
55 CCECProcessor::~CCECProcessor(void)
56 {
57 StopThread();
58 m_communication = NULL;
59 m_controller = NULL;
60 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
61 delete m_busDevices[iPtr];
62 }
63
64 bool CCECProcessor::Start(void)
65 {
66 if (!m_communication || !m_communication->IsOpen())
67 {
68 m_controller->AddLog(CEC_LOG_ERROR, "connection is closed");
69 return false;
70 }
71
72 if (!SetLogicalAddress(m_iLogicalAddress))
73 {
74 m_controller->AddLog(CEC_LOG_ERROR, "could not set the logical address");
75 return false;
76 }
77
78 if (CreateThread())
79 return true;
80 else
81 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
82
83 return false;
84 }
85
86 void *CCECProcessor::Process(void)
87 {
88 m_controller->AddLog(CEC_LOG_DEBUG, "processor thread started");
89
90 cec_command command;
91 CCECAdapterMessage msg;
92 CCECAdapterMessagePtr msgPtr;
93
94 while (!IsStopped())
95 {
96 bool bParseFrame(false);
97 command.clear();
98 msg.clear();
99
100 {
101 CLockObject lock(&m_mutex);
102 if (m_frameBuffer.Pop(msgPtr))
103 bParseFrame = ParseMessage(msgPtr);
104 else if (m_communication->IsOpen() && m_communication->Read(msg, 50))
105 {
106 msgPtr = CCECAdapterMessagePtr(new CCECAdapterMessage(msg));
107 bParseFrame = ParseMessage(msgPtr);
108 }
109
110 bParseFrame &= !IsStopped();
111 if (bParseFrame)
112 command = m_currentframe;
113 }
114
115 if (bParseFrame)
116 ParseCommand(command);
117
118 m_controller->CheckKeypressTimeout();
119
120 for (unsigned int iDevicePtr = 0; iDevicePtr < 16; iDevicePtr++)
121 m_busDevices[iDevicePtr]->PollVendorId();
122
123 if (!IsStopped())
124 Sleep(5);
125 }
126
127 return NULL;
128 }
129
130 bool CCECProcessor::SetActiveView(void)
131 {
132 if (!IsRunning())
133 return false;
134
135 return m_busDevices[m_iLogicalAddress]->BroadcastActiveView();
136 }
137
138 bool CCECProcessor::SetInactiveView(void)
139 {
140 if (!IsRunning())
141 return false;
142
143 return m_busDevices[m_iLogicalAddress]->BroadcastInactiveView();
144 }
145
146 void CCECProcessor::LogOutput(const cec_command &data)
147 {
148 CStdString strTx;
149 strTx.Format("<< %02x:%02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination, (uint8_t)data.opcode);
150
151 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
152 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
153 m_controller->AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
154 }
155
156 bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
157 {
158 if (m_iLogicalAddress != iLogicalAddress)
159 {
160 CStdString strLog;
161 strLog.Format("<< setting logical address to %1x", iLogicalAddress);
162 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
163
164 m_iLogicalAddress = iLogicalAddress;
165 return m_communication && m_communication->SetAckMask(0x1 << (uint8_t)m_iLogicalAddress);
166 }
167
168 return true;
169 }
170
171 bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress)
172 {
173 m_busDevices[m_iLogicalAddress]->SetPhysicalAddress(iPhysicalAddress);
174 return m_busDevices[m_iLogicalAddress]->BroadcastActiveView();
175 }
176
177 bool CCECProcessor::SwitchMonitoring(bool bEnable)
178 {
179 CStdString strLog;
180 strLog.Format("== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
181 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
182
183 m_bMonitor = bEnable;
184 if (bEnable)
185 return m_communication && m_communication->SetAckMask(0);
186 else
187 return m_communication && m_communication->SetAckMask(0x1 << (uint8_t)m_iLogicalAddress);
188 }
189
190 bool CCECProcessor::Transmit(const cec_command &data, bool bWaitForAck /* = true */)
191 {
192 bool bReturn(false);
193 LogOutput(data);
194
195 CCECAdapterMessagePtr output(new CCECAdapterMessage(data));
196
197 CLockObject lock(&m_mutex);
198 {
199 CLockObject msgLock(&output->mutex);
200 if (!m_communication || !m_communication->Write(output))
201 return bReturn;
202 else
203 output->condition.Wait(&output->mutex);
204 }
205
206 if (bWaitForAck)
207 {
208 bool bError(false);
209 if ((bReturn = WaitForAck(&bError, output->size(), 1000)) == false)
210 m_controller->AddLog(CEC_LOG_ERROR, "did not receive ack");
211 }
212 else
213 {
214 bReturn = true;
215 }
216
217 return bReturn;
218 }
219
220 void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, ECecAbortReason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
221 {
222 m_controller->AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
223
224 cec_command command;
225 cec_command::format(command, m_iLogicalAddress, address, CEC_OPCODE_FEATURE_ABORT);
226 command.parameters.push_back((uint8_t)opcode);
227 command.parameters.push_back((uint8_t)reason);
228
229 Transmit(command);
230 }
231
232 bool CCECProcessor::WaitForAck(bool *bError, uint8_t iLength, uint32_t iTimeout /* = 1000 */)
233 {
234 bool bTransmitSucceeded = false;
235 uint8_t iPacketsLeft(iLength / 4);
236 *bError = false;
237
238 int64_t iNow = GetTimeMs();
239 int64_t iTargetTime = iNow + (uint64_t) iTimeout;
240
241 while (!bTransmitSucceeded && !*bError && (iTimeout == 0 || iNow < iTargetTime))
242 {
243 CCECAdapterMessage msg;
244
245 if (!m_communication->Read(msg, iTimeout > 0 ? (int32_t)(iTargetTime - iNow) : 1000))
246 {
247 iNow = GetTimeMs();
248 continue;
249 }
250
251 switch(msg.message())
252 {
253 case MSGCODE_TIMEOUT_ERROR:
254 case MSGCODE_HIGH_ERROR:
255 case MSGCODE_LOW_ERROR:
256 {
257 CStdString logStr;
258 if (msg.message() == MSGCODE_TIMEOUT_ERROR)
259 logStr = "MSGCODE_TIMEOUT";
260 else if (msg.message() == MSGCODE_HIGH_ERROR)
261 logStr = "MSGCODE_HIGH_ERROR";
262 else
263 logStr = "MSGCODE_LOW_ERROR";
264
265 int iLine = (msg.size() >= 3) ? (msg[1] << 8) | (msg[2]) : 0;
266 uint32_t iTime = (msg.size() >= 7) ? (msg[3] << 24) | (msg[4] << 16) | (msg[5] << 8) | (msg[6]) : 0;
267 logStr.AppendFormat(" line:%i", iLine);
268 logStr.AppendFormat(" time:%u", iTime);
269 m_controller->AddLog(CEC_LOG_WARNING, logStr.c_str());
270 *bError = true;
271 }
272 break;
273 case MSGCODE_COMMAND_ACCEPTED:
274 m_controller->AddLog(CEC_LOG_DEBUG, "MSGCODE_COMMAND_ACCEPTED");
275 iPacketsLeft--;
276 break;
277 case MSGCODE_TRANSMIT_SUCCEEDED:
278 m_controller->AddLog(CEC_LOG_DEBUG, "MSGCODE_TRANSMIT_SUCCEEDED");
279 bTransmitSucceeded = (iPacketsLeft == 0);
280 *bError = !bTransmitSucceeded;
281 break;
282 case MSGCODE_RECEIVE_FAILED:
283 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_RECEIVE_FAILED");
284 *bError = true;
285 break;
286 case MSGCODE_COMMAND_REJECTED:
287 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_COMMAND_REJECTED");
288 *bError = true;
289 break;
290 case MSGCODE_TRANSMIT_FAILED_LINE:
291 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_LINE");
292 *bError = true;
293 break;
294 case MSGCODE_TRANSMIT_FAILED_ACK:
295 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_ACK");
296 *bError = true;
297 break;
298 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA:
299 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA");
300 *bError = true;
301 break;
302 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE:
303 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE");
304 *bError = true;
305 break;
306 default:
307 CCECAdapterMessagePtr msgPtr = CCECAdapterMessagePtr(new CCECAdapterMessage(msg));
308 m_frameBuffer.Push(msgPtr);
309 break;
310 }
311
312 iNow = GetTimeMs();
313 }
314
315 return bTransmitSucceeded && !*bError;
316 }
317
318 bool CCECProcessor::ParseMessage(CCECAdapterMessagePtr msg)
319 {
320 bool bEom = false;
321
322 if (msg->empty())
323 return bEom;
324
325 CStdString logStr;
326
327 switch(msg->message())
328 {
329 case MSGCODE_NOTHING:
330 m_controller->AddLog(CEC_LOG_DEBUG, "MSGCODE_NOTHING");
331 break;
332 case MSGCODE_TIMEOUT_ERROR:
333 case MSGCODE_HIGH_ERROR:
334 case MSGCODE_LOW_ERROR:
335 {
336 if (msg->message() == MSGCODE_TIMEOUT_ERROR)
337 logStr = "MSGCODE_TIMEOUT";
338 else if (msg->message() == MSGCODE_HIGH_ERROR)
339 logStr = "MSGCODE_HIGH_ERROR";
340 else
341 logStr = "MSGCODE_LOW_ERROR";
342
343 int iLine = (msg->size() >= 3) ? (msg->at(1) << 8) | (msg->at(2)) : 0;
344 uint32_t iTime = (msg->size() >= 7) ? (msg->at(3) << 24) | (msg->at(4) << 16) | (msg->at(5) << 8) | (msg->at(6)) : 0;
345 logStr.AppendFormat(" line:%i", iLine);
346 logStr.AppendFormat(" time:%u", iTime);
347 m_controller->AddLog(CEC_LOG_WARNING, logStr.c_str());
348 }
349 break;
350 case MSGCODE_FRAME_START:
351 {
352 logStr = "MSGCODE_FRAME_START";
353 m_currentframe.clear();
354 if (msg->size() >= 2)
355 {
356 logStr.AppendFormat(" initiator:%u destination:%u ack:%s %s", msg->initiator(), msg->destination(), msg->ack() ? "high" : "low", msg->eom() ? "eom" : "");
357 m_currentframe.initiator = msg->initiator();
358 m_currentframe.destination = msg->destination();
359 m_currentframe.ack = msg->ack();
360 m_currentframe.eom = msg->eom();
361 }
362 m_controller->AddLog(CEC_LOG_DEBUG, logStr.c_str());
363 }
364 break;
365 case MSGCODE_FRAME_DATA:
366 {
367 logStr = "MSGCODE_FRAME_DATA";
368 if (msg->size() >= 2)
369 {
370 uint8_t iData = msg->at(1);
371 logStr.AppendFormat(" %02x", iData);
372 m_currentframe.push_back(iData);
373 m_currentframe.eom = msg->eom();
374 }
375 m_controller->AddLog(CEC_LOG_DEBUG, logStr.c_str());
376
377 bEom = msg->eom();
378 }
379 break;
380 case MSGCODE_COMMAND_ACCEPTED:
381 m_controller->AddLog(CEC_LOG_DEBUG, "MSGCODE_COMMAND_ACCEPTED");
382 break;
383 case MSGCODE_TRANSMIT_SUCCEEDED:
384 m_controller->AddLog(CEC_LOG_DEBUG, "MSGCODE_TRANSMIT_SUCCEEDED");
385 break;
386 case MSGCODE_RECEIVE_FAILED:
387 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_RECEIVE_FAILED");
388 break;
389 case MSGCODE_COMMAND_REJECTED:
390 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_COMMAND_REJECTED");
391 break;
392 case MSGCODE_TRANSMIT_FAILED_LINE:
393 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_LINE");
394 break;
395 case MSGCODE_TRANSMIT_FAILED_ACK:
396 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_ACK");
397 break;
398 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA:
399 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA");
400 break;
401 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE:
402 m_controller->AddLog(CEC_LOG_WARNING, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE");
403 break;
404 default:
405 break;
406 }
407
408 return bEom;
409 }
410
411 void CCECProcessor::ParseCommand(cec_command &command)
412 {
413 CStdString dataStr;
414 dataStr.Format(">> %1x%1x:%02x", command.initiator, command.destination, command.opcode);
415 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
416 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
417 m_controller->AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
418
419 if (!m_bMonitor)
420 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
421 }
422
423 uint16_t CCECProcessor::GetPhysicalAddress(void) const
424 {
425 return m_busDevices[m_iLogicalAddress]->GetPhysicalAddress();
426 }
427
428 void CCECProcessor::SetCurrentButton(cec_user_control_code iButtonCode)
429 {
430 m_controller->SetCurrentButton(iButtonCode);
431 }
432
433 void CCECProcessor::AddCommand(const cec_command &command)
434 {
435 m_controller->AddCommand(command);
436 }
437
438 void CCECProcessor::AddKey(void)
439 {
440 m_controller->AddKey();
441 }
442
443 void CCECProcessor::AddLog(cec_log_level level, const CStdString &strMessage)
444 {
445 m_controller->AddLog(level, strMessage);
446 }