cec: added SetMenuState()
[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 "devices/CECAudioSystem.h"
38 #include "devices/CECPlaybackDevice.h"
39 #include "devices/CECRecordingDevice.h"
40 #include "devices/CECTuner.h"
41 #include "devices/CECTV.h"
42 #include "implementations/CECCommandHandler.h"
43 #include "LibCEC.h"
44 #include "util/StdString.h"
45 #include "platform/timeutils.h"
46
47 using namespace CEC;
48 using namespace std;
49
50 CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
51 m_bStarted(false),
52 m_strDeviceName(strDeviceName),
53 m_communication(serComm),
54 m_controller(controller),
55 m_bMonitor(false)
56 {
57 m_logicalAddresses.clear();
58 m_logicalAddresses.set(iLogicalAddress);
59 m_types.clear();
60 for (int iPtr = 0; iPtr < 16; iPtr++)
61 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, iPtr == iLogicalAddress ? iPhysicalAddress : 0);
62 }
63
64 CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, const cec_device_type_list &types) :
65 m_bStarted(false),
66 m_strDeviceName(strDeviceName),
67 m_types(types),
68 m_communication(serComm),
69 m_controller(controller),
70 m_bMonitor(false)
71 {
72 m_logicalAddresses.clear();
73 for (int iPtr = 0; iPtr < 16; iPtr++)
74 {
75 switch(iPtr)
76 {
77 case CECDEVICE_AUDIOSYSTEM:
78 m_busDevices[iPtr] = new CCECAudioSystem(this, (cec_logical_address) iPtr, 0xFFFF);
79 break;
80 case CECDEVICE_PLAYBACKDEVICE1:
81 case CECDEVICE_PLAYBACKDEVICE2:
82 case CECDEVICE_PLAYBACKDEVICE3:
83 m_busDevices[iPtr] = new CCECPlaybackDevice(this, (cec_logical_address) iPtr, 0xFFFF);
84 break;
85 case CECDEVICE_RECORDINGDEVICE1:
86 case CECDEVICE_RECORDINGDEVICE2:
87 case CECDEVICE_RECORDINGDEVICE3:
88 m_busDevices[iPtr] = new CCECRecordingDevice(this, (cec_logical_address) iPtr, 0xFFFF);
89 break;
90 case CECDEVICE_TUNER1:
91 case CECDEVICE_TUNER2:
92 case CECDEVICE_TUNER3:
93 case CECDEVICE_TUNER4:
94 m_busDevices[iPtr] = new CCECTuner(this, (cec_logical_address) iPtr, 0xFFFF);
95 break;
96 case CECDEVICE_TV:
97 m_busDevices[iPtr] = new CCECTV(this, (cec_logical_address) iPtr, 0);
98 break;
99 default:
100 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, 0xFFFF);
101 break;
102 }
103 }
104 }
105
106 CCECProcessor::~CCECProcessor(void)
107 {
108 m_startCondition.Broadcast();
109 StopThread();
110 m_communication = NULL;
111 m_controller = NULL;
112 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
113 delete m_busDevices[iPtr];
114 }
115
116 bool CCECProcessor::Start(void)
117 {
118 CLockObject lock(&m_mutex);
119 if (!m_communication || !m_communication->IsOpen())
120 {
121 m_controller->AddLog(CEC_LOG_ERROR, "connection is closed");
122 return false;
123 }
124
125 if (CreateThread())
126 {
127 if (!m_startCondition.Wait(&m_mutex) || !m_bStarted)
128 {
129 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
130 return false;
131 }
132 return true;
133 }
134 else
135 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
136
137 return false;
138 }
139
140 bool CCECProcessor::TryLogicalAddress(cec_logical_address address, unsigned int iIndex)
141 {
142 const char *strLabel = CCECCommandHandler::ToString(address);
143 CStdString strLog;
144 strLog.Format("trying logical address '%s'", strLabel);
145 AddLog(CEC_LOG_DEBUG, strLog);
146
147 SetAckMask(0x1 << address);
148 if (!m_busDevices[address]->TransmitPoll(address))
149 {
150 strLog.Format("using logical address '%s'", strLabel);
151 AddLog(CEC_LOG_NOTICE, strLog);
152
153 /* only set our OSD name and active source for the primary device */
154 if (m_logicalAddresses.empty())
155 {
156 m_busDevices[address]->m_strDeviceName = m_strDeviceName;
157 m_busDevices[address]->m_bActiveSource = true;
158 }
159 m_busDevices[address]->m_powerStatus = CEC_POWER_STATUS_STANDBY;
160 m_busDevices[address]->m_cecVersion = CEC_VERSION_1_3A;
161
162 m_logicalAddresses.set(address);
163
164 // TODO
165 m_busDevices[address]->SetPhysicalAddress((uint16_t)CEC_DEFAULT_PHYSICAL_ADDRESS + ((uint16_t)iIndex * 0x100));
166
167 return true;
168 }
169
170 strLog.Format("logical address '%s' already taken", strLabel);
171 AddLog(CEC_LOG_DEBUG, strLog);
172 return false;
173 }
174
175 bool CCECProcessor::FindLogicalAddressRecordingDevice(unsigned int iIndex)
176 {
177 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
178 return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1, iIndex) ||
179 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2, iIndex) ||
180 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3, iIndex);
181 }
182
183 bool CCECProcessor::FindLogicalAddressTuner(unsigned int iIndex)
184 {
185 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
186 return TryLogicalAddress(CECDEVICE_TUNER1, iIndex) ||
187 TryLogicalAddress(CECDEVICE_TUNER2, iIndex) ||
188 TryLogicalAddress(CECDEVICE_TUNER3, iIndex) ||
189 TryLogicalAddress(CECDEVICE_TUNER4, iIndex);
190 }
191
192 bool CCECProcessor::FindLogicalAddressPlaybackDevice(unsigned int iIndex)
193 {
194 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
195 return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1, iIndex) ||
196 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2, iIndex) ||
197 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3, iIndex);
198 }
199
200 bool CCECProcessor::FindLogicalAddressAudioSystem(unsigned int iIndex)
201 {
202 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audio'");
203 return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM, iIndex);
204 }
205
206 bool CCECProcessor::FindLogicalAddresses(void)
207 {
208 bool bReturn(true);
209 m_logicalAddresses.clear();
210 CStdString strLog;
211
212 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
213 {
214 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
215 continue;
216
217 strLog.Format("%s - device %d: type %d", __FUNCTION__, iPtr, m_types.types[iPtr]);
218 AddLog(CEC_LOG_DEBUG, strLog);
219
220 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_RECORDING_DEVICE)
221 bReturn &= FindLogicalAddressRecordingDevice(iPtr);
222 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_TUNER)
223 bReturn &= FindLogicalAddressTuner(iPtr);
224 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
225 bReturn &= FindLogicalAddressPlaybackDevice(iPtr);
226 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
227 bReturn &= FindLogicalAddressAudioSystem(iPtr);
228 }
229
230 return bReturn;
231 }
232
233 void *CCECProcessor::Process(void)
234 {
235 bool bParseFrame(false);
236 cec_command command;
237 CCECAdapterMessage msg;
238
239 {
240 if (m_logicalAddresses.empty() && !FindLogicalAddresses())
241 {
242 CLockObject lock(&m_mutex);
243 m_controller->AddLog(CEC_LOG_ERROR, "could not detect our logical addressed");
244 m_startCondition.Signal();
245 return NULL;
246 }
247
248 SetAckMask(m_logicalAddresses.ackmask());
249
250 {
251 CLockObject lock(&m_mutex);
252 m_controller->AddLog(CEC_LOG_DEBUG, "processor thread started");
253 m_bStarted = true;
254 m_startCondition.Signal();
255 }
256 }
257
258 while (!IsStopped())
259 {
260 command.clear();
261 msg.clear();
262
263 {
264 CLockObject lock(&m_mutex);
265 if (m_commandBuffer.Pop(command))
266 {
267 bParseFrame = true;
268 }
269 else if (m_communication->IsOpen() && m_communication->Read(msg, 50))
270 {
271 m_controller->AddLog(msg.is_error() ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
272 if ((bParseFrame = (ParseMessage(msg) && !IsStopped())) == true)
273 command = m_currentframe;
274 }
275 }
276
277 if (bParseFrame)
278 ParseCommand(command);
279 bParseFrame = false;
280
281 Sleep(5);
282
283 m_controller->CheckKeypressTimeout();
284
285 for (unsigned int iDevicePtr = 0; iDevicePtr < 16; iDevicePtr++)
286 m_busDevices[iDevicePtr]->PollVendorId();
287
288 Sleep(5);
289 }
290
291 return NULL;
292 }
293
294 bool CCECProcessor::SetActiveSource(cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
295 {
296 bool bReturn(false);
297
298 if (!IsRunning())
299 return bReturn;
300
301 cec_logical_address addr = m_logicalAddresses.primary;
302
303 if (type != CEC_DEVICE_TYPE_RESERVED)
304 {
305 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
306 {
307 if (m_logicalAddresses[iPtr] && m_busDevices[iPtr]->m_type == type)
308 {
309 addr = (cec_logical_address) iPtr;
310 break;
311 }
312 }
313 }
314
315 return SetStreamPath(m_busDevices[addr]->GetPhysicalAddress());
316 }
317
318 bool CCECProcessor::SetActiveView(void)
319 {
320 return SetActiveSource();
321 }
322
323 bool CCECProcessor::SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate /* = true */)
324 {
325 bool bReturn(false);
326
327 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
328 if (device)
329 {
330 ((CCECPlaybackDevice *) device)->SetDeckControlMode(mode);
331 if (bSendUpdate)
332 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
333 bReturn = true;
334 }
335
336 return bReturn;
337 }
338
339 bool CCECProcessor::SetDeckInfo(cec_deck_info info, bool bSendUpdate /* = true */)
340 {
341 bool bReturn(false);
342
343 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
344 if (device)
345 {
346 ((CCECPlaybackDevice *) device)->SetDeckStatus(info);
347 if (bSendUpdate)
348 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
349 bReturn = true;
350 }
351
352 return bReturn;
353 }
354
355 bool CCECProcessor::SetStreamPath(uint16_t iStreamPath)
356 {
357 bool bReturn(false);
358
359 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamPath);
360 if (device)
361 {
362 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
363 m_busDevices[iPtr]->m_bActiveSource = false;
364
365 device->m_bActiveSource = true;
366 device->m_powerStatus = CEC_POWER_STATUS_ON;
367
368 if (m_logicalAddresses.isset(device->m_iLogicalAddress))
369 bReturn = device->TransmitActiveSource();
370 else
371 bReturn = true;
372 }
373
374 return bReturn;
375 }
376
377 bool CCECProcessor::SetInactiveView(void)
378 {
379 if (!IsRunning())
380 return false;
381
382 if (!m_logicalAddresses.empty() && m_busDevices[m_logicalAddresses.primary])
383 return m_busDevices[m_logicalAddresses.primary]->TransmitInactiveView();
384 return false;
385 }
386
387 void CCECProcessor::LogOutput(const cec_command &data)
388 {
389 CStdString strTx;
390 strTx.Format("<< %02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination);
391 if (data.opcode_set)
392 strTx.AppendFormat(":%02x", (uint8_t)data.opcode);
393
394 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
395 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
396 m_controller->AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
397 }
398
399 bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
400 {
401 if (m_logicalAddresses.primary != iLogicalAddress)
402 {
403 CStdString strLog;
404 strLog.Format("<< setting primary logical address to %1x", iLogicalAddress);
405 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
406 m_logicalAddresses.primary = iLogicalAddress;
407 m_logicalAddresses.set(iLogicalAddress);
408 return SetAckMask(m_logicalAddresses.ackmask());
409 }
410
411 return true;
412 }
413
414 bool CCECProcessor::SetMenuState(cec_menu_state state, bool bSendUpdate /* = true */)
415 {
416 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
417 {
418 if (m_logicalAddresses[iPtr])
419 m_busDevices[iPtr]->SetMenuState(state);
420 }
421
422 if (bSendUpdate)
423 m_busDevices[m_logicalAddresses.primary]->TransmitMenuState(CECDEVICE_TV);
424
425 return true;
426 }
427
428 bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress)
429 {
430 if (!m_logicalAddresses.empty() && m_busDevices[m_logicalAddresses.primary])
431 {
432 m_busDevices[m_logicalAddresses.primary]->SetPhysicalAddress(iPhysicalAddress);
433 return SetActiveView();
434 }
435 return false;
436 }
437
438 bool CCECProcessor::SwitchMonitoring(bool bEnable)
439 {
440 CStdString strLog;
441 strLog.Format("== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
442 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
443
444 m_bMonitor = bEnable;
445 if (bEnable)
446 return SetAckMask(0);
447 else
448 return SetAckMask(m_logicalAddresses.ackmask());
449 }
450
451 bool CCECProcessor::PollDevice(cec_logical_address iAddress)
452 {
453 if (iAddress != CECDEVICE_UNKNOWN && m_busDevices[iAddress])
454 return m_busDevices[m_logicalAddresses.primary]->TransmitPoll(iAddress);
455 return false;
456 }
457
458 CCECBusDevice *CCECProcessor::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
459 {
460 CCECBusDevice *device = NULL;
461
462 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
463 {
464 if (m_busDevices[iPtr]->GetPhysicalAddress() == iPhysicalAddress)
465 {
466 device = m_busDevices[iPtr];
467 break;
468 }
469 }
470
471 return device;
472 }
473
474 CCECBusDevice *CCECProcessor::GetDeviceByType(cec_device_type type) const
475 {
476 CCECBusDevice *device = NULL;
477
478 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
479 {
480 if (m_busDevices[iPtr]->m_type == type)
481 {
482 device = m_busDevices[iPtr];
483 break;
484 }
485 }
486
487 return device;
488 }
489
490 cec_version CCECProcessor::GetDeviceCecVersion(cec_logical_address iAddress)
491 {
492 return m_busDevices[iAddress]->GetCecVersion();
493 }
494
495 bool CCECProcessor::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
496 {
497 if (m_busDevices[iAddress])
498 {
499 *language = m_busDevices[iAddress]->GetMenuLanguage();
500 return (strcmp(language->language, "???") != 0);
501 }
502 return false;
503 }
504
505 uint64_t CCECProcessor::GetDeviceVendorId(cec_logical_address iAddress)
506 {
507 if (m_busDevices[iAddress])
508 return m_busDevices[iAddress]->GetVendorId();
509 return false;
510 }
511
512 cec_power_status CCECProcessor::GetDevicePowerStatus(cec_logical_address iAddress)
513 {
514 if (m_busDevices[iAddress])
515 return m_busDevices[iAddress]->GetPowerStatus();
516 return CEC_POWER_STATUS_UNKNOWN;
517 }
518
519 bool CCECProcessor::Transmit(const cec_command &data)
520 {
521 bool bReturn(false);
522 LogOutput(data);
523
524 CCECAdapterMessage *output = new CCECAdapterMessage(data);
525 bReturn = Transmit(output);
526 delete output;
527
528 return bReturn;
529 }
530
531 bool CCECProcessor::Transmit(CCECAdapterMessage *output)
532 {
533 bool bReturn(false);
534 CLockObject lock(&m_mutex);
535 {
536 CLockObject msgLock(&output->mutex);
537 if (!m_communication || !m_communication->Write(output))
538 return bReturn;
539 else
540 {
541 output->condition.Wait(&output->mutex);
542 if (output->state != ADAPTER_MESSAGE_STATE_SENT)
543 {
544 m_controller->AddLog(CEC_LOG_ERROR, "command was not sent");
545 return bReturn;
546 }
547 }
548
549 if (output->transmit_timeout > 0)
550 {
551 if ((bReturn = WaitForTransmitSucceeded(output->size(), output->transmit_timeout)) == false)
552 m_controller->AddLog(CEC_LOG_DEBUG, "did not receive ack");
553 }
554 else
555 bReturn = true;
556 }
557
558 return bReturn;
559 }
560
561 void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, cec_abort_reason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
562 {
563 m_controller->AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
564
565 cec_command command;
566 // TODO
567 cec_command::format(command, m_logicalAddresses.primary, address, CEC_OPCODE_FEATURE_ABORT);
568 command.parameters.push_back((uint8_t)opcode);
569 command.parameters.push_back((uint8_t)reason);
570
571 Transmit(command);
572 }
573
574 bool CCECProcessor::WaitForTransmitSucceeded(uint8_t iLength, uint32_t iTimeout /* = 1000 */)
575 {
576 bool bError(false);
577 bool bTransmitSucceeded(false);
578 uint8_t iPacketsLeft(iLength / 4);
579
580 int64_t iNow = GetTimeMs();
581 int64_t iTargetTime = iNow + (uint64_t) iTimeout;
582
583 while (!bTransmitSucceeded && !bError && (iTimeout == 0 || iNow < iTargetTime))
584 {
585 CCECAdapterMessage msg;
586
587 if (!m_communication->Read(msg, iTimeout > 0 ? (int32_t)(iTargetTime - iNow) : 1000))
588 {
589 iNow = GetTimeMs();
590 continue;
591 }
592
593 if ((bError = msg.is_error()) == false)
594 {
595 m_controller->AddLog(bError ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
596
597 switch(msg.message())
598 {
599 case MSGCODE_COMMAND_ACCEPTED:
600 if (iPacketsLeft > 0)
601 iPacketsLeft--;
602 break;
603 case MSGCODE_TRANSMIT_SUCCEEDED:
604 bTransmitSucceeded = (iPacketsLeft == 0);
605 bError = !bTransmitSucceeded;
606 break;
607 default:
608 if (ParseMessage(msg))
609 m_commandBuffer.Push(m_currentframe);
610 }
611
612 iNow = GetTimeMs();
613 }
614 }
615
616 return bTransmitSucceeded && !bError;
617 }
618
619 bool CCECProcessor::ParseMessage(const CCECAdapterMessage &msg)
620 {
621 bool bEom = false;
622
623 if (msg.empty())
624 return bEom;
625
626 switch(msg.message())
627 {
628 case MSGCODE_FRAME_START:
629 {
630 m_currentframe.clear();
631 if (msg.size() >= 2)
632 {
633 m_currentframe.initiator = msg.initiator();
634 m_currentframe.destination = msg.destination();
635 m_currentframe.ack = msg.ack();
636 m_currentframe.eom = msg.eom();
637 }
638 }
639 break;
640 case MSGCODE_FRAME_DATA:
641 {
642 if (msg.size() >= 2)
643 {
644 m_currentframe.push_back(msg[1]);
645 m_currentframe.eom = msg.eom();
646 }
647 bEom = msg.eom();
648 }
649 break;
650 default:
651 break;
652 }
653
654 return bEom;
655 }
656
657 void CCECProcessor::ParseCommand(cec_command &command)
658 {
659 CStdString dataStr;
660 dataStr.Format(">> %1x%1x:%02x", command.initiator, command.destination, command.opcode);
661 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
662 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
663 m_controller->AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
664
665 if (!m_bMonitor)
666 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
667 }
668
669 uint16_t CCECProcessor::GetPhysicalAddress(void) const
670 {
671 if (!m_logicalAddresses.empty() && m_busDevices[m_logicalAddresses.primary])
672 return m_busDevices[m_logicalAddresses.primary]->GetPhysicalAddress();
673 return false;
674 }
675
676 void CCECProcessor::SetCurrentButton(cec_user_control_code iButtonCode)
677 {
678 m_controller->SetCurrentButton(iButtonCode);
679 }
680
681 void CCECProcessor::AddCommand(const cec_command &command)
682 {
683 m_controller->AddCommand(command);
684 }
685
686 void CCECProcessor::AddKey(cec_keypress &key)
687 {
688 m_controller->AddKey(key);
689 }
690
691 void CCECProcessor::AddKey(void)
692 {
693 m_controller->AddKey();
694 }
695
696 void CCECProcessor::AddLog(cec_log_level level, const CStdString &strMessage)
697 {
698 m_controller->AddLog(level, strMessage);
699 }
700
701 bool CCECProcessor::SetAckMask(uint16_t iMask)
702 {
703 bool bReturn(false);
704 CStdString strLog;
705 strLog.Format("setting ackmask to %2x", iMask);
706 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
707
708 CCECAdapterMessage *output = new CCECAdapterMessage;
709
710 output->push_back(MSGSTART);
711 output->push_escaped(MSGCODE_SET_ACK_MASK);
712 output->push_escaped(iMask >> 8);
713 output->push_escaped((uint8_t)iMask);
714 output->push_back(MSGEND);
715
716 if ((bReturn = Transmit(output)) == false)
717 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
718
719 delete output;
720
721 return bReturn;
722 }