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