cec: don't respond with a feature abort to opcode play messages. bugzid: 873
[deb_libcec.git] / src / lib / implementations / CECCommandHandler.cpp
1 /*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2012 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 "CECCommandHandler.h"
34 #include "../devices/CECBusDevice.h"
35 #include "../devices/CECAudioSystem.h"
36 #include "../devices/CECPlaybackDevice.h"
37 #include "../CECClient.h"
38 #include "../CECProcessor.h"
39 #include "../LibCEC.h"
40 #include "../CECTypeUtils.h"
41 #include "../platform/util/util.h"
42
43 using namespace CEC;
44 using namespace std;
45 using namespace PLATFORM;
46
47 #define LIB_CEC m_busDevice->GetProcessor()->GetLib()
48 #define ToString(p) CCECTypeUtils::ToString(p)
49
50 CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice) :
51 m_busDevice(busDevice),
52 m_processor(m_busDevice->GetProcessor()),
53 m_iTransmitTimeout(CEC_DEFAULT_TRANSMIT_TIMEOUT),
54 m_iTransmitWait(CEC_DEFAULT_TRANSMIT_WAIT),
55 m_iTransmitRetries(CEC_DEFAULT_TRANSMIT_RETRIES),
56 m_bHandlerInited(false),
57 m_bOPTSendDeckStatusUpdateOnActiveSource(false),
58 m_vendorId(CEC_VENDOR_UNKNOWN),
59 m_waitForResponse(new CWaitForResponse),
60 m_bActiveSourcePending(false)
61 {
62 }
63
64 CCECCommandHandler::~CCECCommandHandler(void)
65 {
66 DELETE_AND_NULL(m_waitForResponse);
67 }
68
69 bool CCECCommandHandler::HandleCommand(const cec_command &command)
70 {
71 if (command.opcode_set == 0)
72 return HandlePoll(command);
73
74 bool bHandled(true);
75
76 CCECClient *client = m_busDevice->GetClient();
77 if (client)
78 client->AddCommand(command);
79
80 switch(command.opcode)
81 {
82 case CEC_OPCODE_REPORT_POWER_STATUS:
83 HandleReportPowerStatus(command);
84 break;
85 case CEC_OPCODE_CEC_VERSION:
86 HandleDeviceCecVersion(command);
87 break;
88 case CEC_OPCODE_SET_MENU_LANGUAGE:
89 HandleSetMenuLanguage(command);
90 break;
91 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
92 if (m_processor->CECInitialised())
93 HandleGivePhysicalAddress(command);
94 break;
95 case CEC_OPCODE_GET_MENU_LANGUAGE:
96 if (m_processor->CECInitialised())
97 HandleGiveMenuLanguage(command);
98 break;
99 case CEC_OPCODE_GIVE_OSD_NAME:
100 if (m_processor->CECInitialised())
101 HandleGiveOSDName(command);
102 break;
103 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
104 if (m_processor->CECInitialised())
105 HandleGiveDeviceVendorId(command);
106 break;
107 case CEC_OPCODE_DEVICE_VENDOR_ID:
108 HandleDeviceVendorId(command);
109 break;
110 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
111 HandleDeviceVendorCommandWithId(command);
112 break;
113 case CEC_OPCODE_GIVE_DECK_STATUS:
114 if (m_processor->CECInitialised())
115 HandleGiveDeckStatus(command);
116 break;
117 case CEC_OPCODE_DECK_CONTROL:
118 HandleDeckControl(command);
119 break;
120 case CEC_OPCODE_MENU_REQUEST:
121 if (m_processor->CECInitialised())
122 HandleMenuRequest(command);
123 break;
124 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
125 if (m_processor->CECInitialised())
126 HandleGiveDevicePowerStatus(command);
127 break;
128 case CEC_OPCODE_GET_CEC_VERSION:
129 if (m_processor->CECInitialised())
130 HandleGetCecVersion(command);
131 break;
132 case CEC_OPCODE_USER_CONTROL_PRESSED:
133 if (m_processor->CECInitialised())
134 HandleUserControlPressed(command);
135 break;
136 case CEC_OPCODE_USER_CONTROL_RELEASE:
137 if (m_processor->CECInitialised())
138 HandleUserControlRelease(command);
139 break;
140 case CEC_OPCODE_GIVE_AUDIO_STATUS:
141 if (m_processor->CECInitialised())
142 HandleGiveAudioStatus(command);
143 break;
144 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
145 if (m_processor->CECInitialised())
146 HandleGiveSystemAudioModeStatus(command);
147 break;
148 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
149 if (m_processor->CECInitialised())
150 HandleSystemAudioModeRequest(command);
151 break;
152 case CEC_OPCODE_REPORT_AUDIO_STATUS:
153 HandleReportAudioStatus(command);
154 break;
155 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
156 HandleSystemAudioModeStatus(command);
157 break;
158 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
159 HandleSetSystemAudioMode(command);
160 break;
161 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
162 if (m_processor->CECInitialised())
163 HandleRequestActiveSource(command);
164 break;
165 case CEC_OPCODE_SET_STREAM_PATH:
166 HandleSetStreamPath(command);
167 break;
168 case CEC_OPCODE_ROUTING_CHANGE:
169 HandleRoutingChange(command);
170 break;
171 case CEC_OPCODE_ROUTING_INFORMATION:
172 HandleRoutingInformation(command);
173 break;
174 case CEC_OPCODE_STANDBY:
175 if (m_processor->CECInitialised())
176 HandleStandby(command);
177 break;
178 case CEC_OPCODE_ACTIVE_SOURCE:
179 HandleActiveSource(command);
180 break;
181 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
182 HandleReportPhysicalAddress(command);
183 break;
184 case CEC_OPCODE_SET_OSD_NAME:
185 HandleSetOSDName(command);
186 break;
187 case CEC_OPCODE_IMAGE_VIEW_ON:
188 HandleImageViewOn(command);
189 break;
190 case CEC_OPCODE_TEXT_VIEW_ON:
191 HandleTextViewOn(command);
192 break;
193 case CEC_OPCODE_FEATURE_ABORT:
194 HandleFeatureAbort(command);
195 break;
196 case CEC_OPCODE_VENDOR_COMMAND:
197 HandleVendorCommand(command);
198 break;
199 case CEC_OPCODE_PLAY:
200 // libCEC (currently) doesn't need to do anything with this, since player applications handle it
201 // but it should not respond with a feature abort
202 break;
203 default:
204 bHandled = false;
205 break;
206 }
207
208 if (bHandled)
209 m_waitForResponse->Received((command.opcode == CEC_OPCODE_FEATURE_ABORT && command.parameters.size > 0) ? (cec_opcode)command.parameters[0] : command.opcode);
210 else
211 UnhandledCommand(command);
212
213 return bHandled;
214 }
215
216 bool CCECCommandHandler::HandleActiveSource(const cec_command &command)
217 {
218 if (command.parameters.size == 2)
219 {
220 uint16_t iAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
221 CCECBusDevice *device = m_processor->GetDeviceByPhysicalAddress(iAddress);
222 if (device)
223 device->MarkAsActiveSource();
224 }
225
226 return true;
227 }
228
229 bool CCECCommandHandler::HandleDeckControl(const cec_command &command)
230 {
231 CCECPlaybackDevice *device = CCECBusDevice::AsPlaybackDevice(GetDevice(command.destination));
232 if (device && command.parameters.size > 0)
233 {
234 device->SetDeckControlMode((cec_deck_control_mode) command.parameters[0]);
235 return true;
236 }
237
238 return false;
239 }
240
241 bool CCECCommandHandler::HandleDeviceCecVersion(const cec_command &command)
242 {
243 if (command.parameters.size == 1)
244 {
245 CCECBusDevice *device = GetDevice(command.initiator);
246 if (device)
247 device->SetCecVersion((cec_version) command.parameters[0]);
248 }
249
250 return true;
251 }
252
253 bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command)
254 {
255 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
256 m_processor->TransmitAbort(command.destination, command.initiator, command.opcode, CEC_ABORT_REASON_REFUSED);
257
258 return true;
259 }
260
261 bool CCECCommandHandler::HandleDeviceVendorId(const cec_command &command)
262 {
263 return SetVendorId(command);
264 }
265
266 bool CCECCommandHandler::HandleFeatureAbort(const cec_command &command)
267 {
268 if (command.parameters.size == 2 &&
269 (command.parameters[1] == CEC_ABORT_REASON_UNRECOGNIZED_OPCODE ||
270 command.parameters[1] == CEC_ABORT_REASON_REFUSED))
271 m_processor->GetDevice(command.initiator)->SetUnsupportedFeature((cec_opcode)command.parameters[0]);
272 return true;
273 }
274
275 bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)
276 {
277 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
278 {
279 CCECBusDevice *device = GetDevice(command.destination);
280 if (device)
281 return device->TransmitCECVersion(command.initiator);
282 }
283
284 return false;
285 }
286
287 bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command &command)
288 {
289 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
290 {
291 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
292 if (device)
293 return device->TransmitAudioStatus(command.initiator);
294 }
295
296 return false;
297 }
298
299 bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command &command)
300 {
301 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
302 {
303 CCECPlaybackDevice *device = CCECBusDevice::AsPlaybackDevice(GetDevice(command.destination));
304 if (device)
305 return device->TransmitDeckStatus(command.initiator);
306 }
307
308 return false;
309 }
310
311 bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
312 {
313 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
314 {
315 CCECBusDevice *device = GetDevice(command.destination);
316 if (device)
317 return device->TransmitPowerState(command.initiator);
318 }
319
320 return false;
321 }
322
323 bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
324 {
325 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
326 {
327 CCECBusDevice *device = GetDevice(command.destination);
328 if (device)
329 return device->TransmitVendorID(command.initiator);
330 }
331
332 return false;
333 }
334
335 bool CCECCommandHandler::HandleGiveOSDName(const cec_command &command)
336 {
337 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
338 {
339 CCECBusDevice *device = GetDevice(command.destination);
340 if (device)
341 return device->TransmitOSDName(command.initiator);
342 }
343
344 return false;
345 }
346
347 bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command &command)
348 {
349 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
350 {
351 CCECBusDevice *device = GetDevice(command.destination);
352 if (device)
353 return device->TransmitPhysicalAddress();
354 }
355
356 return false;
357 }
358
359 bool CCECCommandHandler::HandleGiveMenuLanguage(const cec_command &command)
360 {
361 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
362 {
363 CCECBusDevice *device = GetDevice(command.destination);
364 if (device)
365 return device->TransmitSetMenuLanguage(command.initiator);
366 }
367
368 return false;
369 }
370
371 bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command &command)
372 {
373 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
374 {
375 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
376 if (device)
377 return device->TransmitSystemAudioModeStatus(command.initiator);
378 }
379
380 return false;
381 }
382
383 bool CCECCommandHandler::HandleImageViewOn(const cec_command &command)
384 {
385 m_processor->GetDevice(command.initiator)->MarkAsActiveSource();
386 return true;
387 }
388
389 bool CCECCommandHandler::HandleMenuRequest(const cec_command &command)
390 {
391 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
392 {
393 CCECBusDevice *device = GetDevice(command.destination);
394 if (device)
395 {
396 CCECClient *client = device->GetClient();
397 if (client)
398 {
399 if (command.parameters[0] == CEC_MENU_REQUEST_TYPE_ACTIVATE)
400 {
401 if (client->MenuStateChanged(CEC_MENU_STATE_ACTIVATED) == 1)
402 device->SetMenuState(CEC_MENU_STATE_ACTIVATED);
403 }
404 else if (command.parameters[0] == CEC_MENU_REQUEST_TYPE_DEACTIVATE)
405 {
406 if (client->MenuStateChanged(CEC_MENU_STATE_DEACTIVATED) == 1)
407 device->SetMenuState(CEC_MENU_STATE_DEACTIVATED);
408 }
409 }
410 return device->TransmitMenuState(command.initiator);
411 }
412 }
413
414 return false;
415 }
416
417 bool CCECCommandHandler::HandlePoll(const cec_command &command)
418 {
419 m_busDevice->HandlePoll(command.destination);
420 return true;
421 }
422
423 bool CCECCommandHandler::HandleReportAudioStatus(const cec_command &command)
424 {
425 if (command.parameters.size == 1)
426 {
427 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
428 if (device)
429 {
430 device->SetAudioStatus(command.parameters[0]);
431 return true;
432 }
433 }
434 return false;
435 }
436
437 bool CCECCommandHandler::HandleReportPhysicalAddress(const cec_command &command)
438 {
439 if (command.parameters.size == 3)
440 {
441 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
442 SetPhysicalAddress(command.initiator, iNewAddress);
443 }
444 return true;
445 }
446
447 bool CCECCommandHandler::HandleReportPowerStatus(const cec_command &command)
448 {
449 if (command.parameters.size == 1)
450 {
451 CCECBusDevice *device = GetDevice(command.initiator);
452 if (device)
453 device->SetPowerStatus((cec_power_status) command.parameters[0]);
454 }
455 return true;
456 }
457
458 bool CCECCommandHandler::HandleRequestActiveSource(const cec_command &command)
459 {
460 if (m_processor->CECInitialised())
461 {
462 LIB_CEC->AddLog(CEC_LOG_DEBUG, ">> %i requests active source", (uint8_t) command.initiator);
463 m_processor->GetDevice(command.initiator)->SetPowerStatus(CEC_POWER_STATUS_ON);
464
465 vector<CCECBusDevice *> devices;
466 for (size_t iDevicePtr = 0; iDevicePtr < GetMyDevices(devices); iDevicePtr++)
467 devices[iDevicePtr]->TransmitActiveSource();
468
469 return true;
470 }
471 return false;
472 }
473
474 bool CCECCommandHandler::HandleRoutingChange(const cec_command &command)
475 {
476 if (command.parameters.size == 4)
477 {
478 uint16_t iOldAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
479 uint16_t iNewAddress = ((uint16_t)command.parameters[2] << 8) | ((uint16_t)command.parameters[3]);
480
481 CCECBusDevice *device = GetDevice(command.initiator);
482 if (device)
483 device->SetStreamPath(iNewAddress, iOldAddress);
484 }
485 return true;
486 }
487
488 bool CCECCommandHandler::HandleRoutingInformation(const cec_command &command)
489 {
490 if (command.parameters.size == 2)
491 {
492 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
493 CCECBusDevice *device = m_processor->GetDeviceByPhysicalAddress(iNewAddress);
494 if (device)
495 device->MarkAsActiveSource();
496 }
497
498 return false;
499 }
500
501 bool CCECCommandHandler::HandleSetMenuLanguage(const cec_command &command)
502 {
503 if (command.parameters.size == 3)
504 {
505 CCECBusDevice *device = GetDevice(command.initiator);
506 if (device)
507 {
508 cec_menu_language language;
509 language.device = command.initiator;
510 for (uint8_t iPtr = 0; iPtr < 4; iPtr++)
511 language.language[iPtr] = command.parameters[iPtr];
512 language.language[3] = 0;
513 device->SetMenuLanguage(language);
514 return true;
515 }
516 }
517 return false;
518 }
519
520 bool CCECCommandHandler::HandleSetOSDName(const cec_command &command)
521 {
522 if (command.parameters.size > 0)
523 {
524 CCECBusDevice *device = GetDevice(command.initiator);
525 if (device)
526 {
527 char buf[1024];
528 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
529 buf[iPtr] = (char)command.parameters[iPtr];
530 buf[command.parameters.size] = 0;
531
532 CStdString strName(buf);
533 device->SetOSDName(strName);
534
535 return true;
536 }
537 }
538 return false;
539 }
540
541 bool CCECCommandHandler::HandleSetStreamPath(const cec_command &command)
542 {
543 if (m_processor->CECInitialised() && command.parameters.size >= 2)
544 {
545 uint16_t iStreamAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
546 LIB_CEC->AddLog(CEC_LOG_DEBUG, ">> %i sets stream path to physical address %04x", command.initiator, iStreamAddress);
547
548 /* one of the device handled by libCEC has been made active */
549 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamAddress);
550 if (device && device->IsHandledByLibCEC())
551 device->ActivateSource();
552 }
553 return false;
554 }
555
556 bool CCECCommandHandler::HandleSystemAudioModeRequest(const cec_command &command)
557 {
558 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
559 {
560 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
561 if (device)
562 {
563 if (command.parameters.size >= 2)
564 {
565 device->SetPowerStatus(CEC_POWER_STATUS_ON);
566 device->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_ON);
567 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
568 CCECBusDevice *newActiveDevice = GetDeviceByPhysicalAddress(iNewAddress);
569 if (newActiveDevice)
570 newActiveDevice->MarkAsActiveSource();
571 return device->TransmitSetSystemAudioMode(command.initiator);
572 }
573 else
574 {
575 device->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_OFF);
576 return device->TransmitSetSystemAudioMode(command.initiator);
577 }
578 }
579 }
580 return false;
581 }
582
583 bool CCECCommandHandler::HandleStandby(const cec_command &command)
584 {
585 CCECBusDevice *device = GetDevice(command.initiator);
586 if (device)
587 device->SetPowerStatus(CEC_POWER_STATUS_STANDBY);
588
589 return true;
590 }
591
592 bool CCECCommandHandler::HandleSystemAudioModeStatus(const cec_command &command)
593 {
594 if (command.parameters.size == 1)
595 {
596 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
597 if (device)
598 {
599 device->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
600 return true;
601 }
602 }
603
604 return false;
605 }
606
607 bool CCECCommandHandler::HandleSetSystemAudioMode(const cec_command &command)
608 {
609 if (command.parameters.size == 1)
610 {
611 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
612 if (device)
613 {
614 device->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
615 return true;
616 }
617 }
618
619 return false;
620 }
621
622 bool CCECCommandHandler::HandleTextViewOn(const cec_command &command)
623 {
624 m_processor->GetDevice(command.initiator)->MarkAsActiveSource();
625 return true;
626 }
627
628 bool CCECCommandHandler::HandleUserControlPressed(const cec_command &command)
629 {
630 if (m_processor->CECInitialised() &&
631 m_processor->IsHandledByLibCEC(command.destination) &&
632 command.parameters.size > 0)
633 {
634 CCECBusDevice *device = GetDevice(command.destination);
635 if (!device)
636 return true;
637
638 CCECClient *client = device->GetClient();
639 if (client)
640 client->AddKey();
641
642 if (command.parameters[0] <= CEC_USER_CONTROL_CODE_MAX)
643 client->SetCurrentButton((cec_user_control_code) command.parameters[0]);
644
645 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER ||
646 command.parameters[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION)
647 {
648 bool bPowerOn(true);
649 if (!device)
650 return true;
651
652 // CEC_USER_CONTROL_CODE_POWER operates as a toggle
653 // assume CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION does not
654 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER)
655 {
656 cec_power_status status = device->GetCurrentPowerStatus();
657 bPowerOn = !(status == CEC_POWER_STATUS_ON || status == CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
658 }
659
660 if (bPowerOn)
661 {
662 device->ActivateSource();
663 }
664 else
665 {
666 device->MarkAsInactiveSource();
667 device->TransmitInactiveSource();
668 device->SetMenuState(CEC_MENU_STATE_DEACTIVATED);
669 }
670 }
671
672 return true;
673 }
674 return false;
675 }
676
677 bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
678 {
679 CCECClient *client = m_processor->GetClient(command.destination);
680 if (client)
681 client->AddKey();
682 return true;
683 }
684
685 bool CCECCommandHandler::HandleVendorCommand(const cec_command & UNUSED(command))
686 {
687 return true;
688 }
689
690 void CCECCommandHandler::UnhandledCommand(const cec_command &command)
691 {
692 LIB_CEC->AddLog(CEC_LOG_DEBUG, "unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
693
694 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
695 m_processor->TransmitAbort(m_busDevice->GetLogicalAddress(), command.initiator, command.opcode, CEC_ABORT_REASON_UNRECOGNIZED_OPCODE);
696 }
697
698 size_t CCECCommandHandler::GetMyDevices(vector<CCECBusDevice *> &devices) const
699 {
700 size_t iReturn(0);
701
702 cec_logical_addresses addresses = m_processor->GetLogicalAddresses();
703 for (uint8_t iPtr = CECDEVICE_TV; iPtr < CECDEVICE_BROADCAST; iPtr++)
704 {
705 if (addresses[iPtr])
706 {
707 devices.push_back(GetDevice((cec_logical_address) iPtr));
708 ++iReturn;
709 }
710 }
711
712 return iReturn;
713 }
714
715 CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
716 {
717 return m_processor->GetDevice(iLogicalAddress);
718 }
719
720 CCECBusDevice *CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
721 {
722 return m_processor->GetDeviceByPhysicalAddress(iPhysicalAddress);
723 }
724
725 bool CCECCommandHandler::SetVendorId(const cec_command &command)
726 {
727 bool bChanged(false);
728 if (command.parameters.size < 3)
729 {
730 LIB_CEC->AddLog(CEC_LOG_WARNING, "invalid vendor ID received");
731 return bChanged;
732 }
733
734 uint64_t iVendorId = ((uint64_t)command.parameters[0] << 16) +
735 ((uint64_t)command.parameters[1] << 8) +
736 (uint64_t)command.parameters[2];
737
738 CCECBusDevice *device = GetDevice((cec_logical_address) command.initiator);
739 if (device)
740 bChanged = device->SetVendorId(iVendorId);
741 return bChanged;
742 }
743
744 void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress, uint16_t iNewAddress)
745 {
746 if (!m_processor->IsHandledByLibCEC(iAddress))
747 {
748 CCECBusDevice *otherDevice = m_processor->GetDeviceByPhysicalAddress(iNewAddress);
749 CCECClient *client = otherDevice ? otherDevice->GetClient() : NULL;
750
751 CCECBusDevice *device = m_processor->GetDevice(iAddress);
752 if (device)
753 device->SetPhysicalAddress(iNewAddress);
754 else
755 {
756 LIB_CEC->AddLog(CEC_LOG_DEBUG, "device with logical address %X not found", iAddress);
757 }
758
759 /* another device reported the same physical address as ours */
760 if (client)
761 client->ResetPhysicalAddress();
762 }
763 else
764 {
765 LIB_CEC->AddLog(CEC_LOG_DEBUG, "ignore physical address report for device %s (%X) because it's marked as handled by libCEC", ToString(iAddress), iAddress);
766 }
767 }
768
769 bool CCECCommandHandler::PowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
770 {
771 if (iDestination == CECDEVICE_TV)
772 return TransmitImageViewOn(iInitiator, iDestination);
773
774 return TransmitKeypress(iInitiator, iDestination, CEC_USER_CONTROL_CODE_POWER) &&
775 TransmitKeyRelease(iInitiator, iDestination);
776 }
777
778 bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
779 {
780 cec_command command;
781 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_IMAGE_VIEW_ON);
782
783 return Transmit(command);
784 }
785
786 bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator, const cec_logical_address iDestination)
787 {
788 cec_command command;
789 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_STANDBY);
790
791 return Transmit(command);
792 }
793
794 bool CCECCommandHandler::TransmitRequestActiveSource(const cec_logical_address iInitiator, bool bWaitForResponse /* = true */)
795 {
796 cec_command command;
797 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_REQUEST_ACTIVE_SOURCE);
798
799 return Transmit(command, !bWaitForResponse);
800 }
801
802 bool CCECCommandHandler::TransmitRequestCecVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
803 {
804 cec_command command;
805 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_CEC_VERSION);
806
807 return Transmit(command, !bWaitForResponse);
808 }
809
810 bool CCECCommandHandler::TransmitRequestMenuLanguage(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
811 {
812 cec_command command;
813 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_MENU_LANGUAGE);
814
815 return Transmit(command, !bWaitForResponse);
816 }
817
818 bool CCECCommandHandler::TransmitRequestOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
819 {
820 cec_command command;
821 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_OSD_NAME);
822
823 return Transmit(command, !bWaitForResponse);
824 }
825
826 bool CCECCommandHandler::TransmitRequestPhysicalAddress(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
827 {
828 cec_command command;
829 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS);
830
831 return Transmit(command, !bWaitForResponse);
832 }
833
834 bool CCECCommandHandler::TransmitRequestPowerStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
835 {
836 cec_command command;
837 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS);
838
839 return Transmit(command, !bWaitForResponse);
840 }
841
842 bool CCECCommandHandler::TransmitRequestVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
843 {
844 cec_command command;
845 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
846
847 return Transmit(command, !bWaitForResponse);
848 }
849
850 bool CCECCommandHandler::TransmitActiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
851 {
852 cec_command command;
853 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE);
854 command.parameters.PushBack((uint8_t) ((iPhysicalAddress >> 8) & 0xFF));
855 command.parameters.PushBack((uint8_t) (iPhysicalAddress & 0xFF));
856
857 return Transmit(command);
858 }
859
860 bool CCECCommandHandler::TransmitCECVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_version cecVersion)
861 {
862 cec_command command;
863 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_CEC_VERSION);
864 command.parameters.PushBack((uint8_t)cecVersion);
865
866 return Transmit(command);
867 }
868
869 bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
870 {
871 cec_command command;
872 cec_command::Format(command, iInitiator, CECDEVICE_TV, CEC_OPCODE_INACTIVE_SOURCE);
873 command.parameters.PushBack((iPhysicalAddress >> 8) & 0xFF);
874 command.parameters.PushBack(iPhysicalAddress & 0xFF);
875
876 return Transmit(command);
877 }
878
879 bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_menu_state menuState)
880 {
881 cec_command command;
882 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_MENU_STATUS);
883 command.parameters.PushBack((uint8_t)menuState);
884
885 return Transmit(command);
886 }
887
888 bool CCECCommandHandler::TransmitOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, CStdString strDeviceName)
889 {
890 cec_command command;
891 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_NAME);
892 for (size_t iPtr = 0; iPtr < strDeviceName.length(); iPtr++)
893 command.parameters.PushBack(strDeviceName.at(iPtr));
894
895 return Transmit(command);
896 }
897
898 bool CCECCommandHandler::TransmitOSDString(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_display_control duration, const char *strMessage)
899 {
900 cec_command command;
901 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_STRING);
902 command.parameters.PushBack((uint8_t)duration);
903
904 size_t iLen = strlen(strMessage);
905 if (iLen > 13) iLen = 13;
906
907 for (size_t iPtr = 0; iPtr < iLen; iPtr++)
908 command.parameters.PushBack(strMessage[iPtr]);
909
910 return Transmit(command);
911 }
912
913 bool CCECCommandHandler::TransmitPhysicalAddress(const cec_logical_address iInitiator, uint16_t iPhysicalAddress, cec_device_type type)
914 {
915 cec_command command;
916 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS);
917 command.parameters.PushBack((uint8_t) ((iPhysicalAddress >> 8) & 0xFF));
918 command.parameters.PushBack((uint8_t) (iPhysicalAddress & 0xFF));
919 command.parameters.PushBack((uint8_t) (type));
920
921 return Transmit(command);
922 }
923
924 bool CCECCommandHandler::TransmitSetMenuLanguage(const cec_logical_address iInitiator, const char lang[3])
925 {
926 cec_command command;
927 command.Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_SET_MENU_LANGUAGE);
928 command.parameters.PushBack((uint8_t) lang[0]);
929 command.parameters.PushBack((uint8_t) lang[1]);
930 command.parameters.PushBack((uint8_t) lang[2]);
931
932 return Transmit(command);
933 }
934
935 bool CCECCommandHandler::TransmitPoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
936 {
937 cec_command command;
938 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_NONE);
939
940 return Transmit(command);
941 }
942
943 bool CCECCommandHandler::TransmitPowerState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_power_status state)
944 {
945 cec_command command;
946 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_POWER_STATUS);
947 command.parameters.PushBack((uint8_t) state);
948
949 return Transmit(command);
950 }
951
952 bool CCECCommandHandler::TransmitVendorID(const cec_logical_address iInitiator, uint64_t iVendorId)
953 {
954 cec_command command;
955 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_DEVICE_VENDOR_ID);
956
957 command.parameters.PushBack((uint8_t) (((uint64_t)iVendorId >> 16) & 0xFF));
958 command.parameters.PushBack((uint8_t) (((uint64_t)iVendorId >> 8) & 0xFF));
959 command.parameters.PushBack((uint8_t) ((uint64_t)iVendorId & 0xFF));
960
961 return Transmit(command);
962 }
963
964 bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, uint8_t state)
965 {
966 cec_command command;
967 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_AUDIO_STATUS);
968 command.parameters.PushBack(state);
969
970 return Transmit(command);
971 }
972
973 bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
974 {
975 cec_command command;
976 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_SYSTEM_AUDIO_MODE);
977 command.parameters.PushBack((uint8_t)state);
978
979 return Transmit(command);
980 }
981
982 bool CCECCommandHandler::TransmitSetStreamPath(uint16_t iStreamPath)
983 {
984 cec_command command;
985 cec_command::Format(command, m_busDevice->GetLogicalAddress(), CECDEVICE_BROADCAST, CEC_OPCODE_SET_STREAM_PATH);
986 command.parameters.PushBack((uint8_t) ((iStreamPath >> 8) & 0xFF));
987 command.parameters.PushBack((uint8_t) (iStreamPath & 0xFF));
988
989 return Transmit(command);
990 }
991
992 bool CCECCommandHandler::TransmitSystemAudioModeStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
993 {
994 cec_command command;
995 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS);
996 command.parameters.PushBack((uint8_t)state);
997
998 return Transmit(command);
999 }
1000
1001 bool CCECCommandHandler::TransmitDeckStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_deck_info state)
1002 {
1003 cec_command command;
1004 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_DECK_STATUS);
1005 command.PushBack((uint8_t)state);
1006
1007 return Transmit(command);
1008 }
1009
1010 bool CCECCommandHandler::TransmitKeypress(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
1011 {
1012 cec_command command;
1013 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_PRESSED);
1014 command.parameters.PushBack((uint8_t)key);
1015
1016 return Transmit(command, !bWait);
1017 }
1018
1019 bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWait /* = true */)
1020 {
1021 cec_command command;
1022 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_RELEASE);
1023
1024 return Transmit(command, !bWait);
1025 }
1026
1027 bool CCECCommandHandler::Transmit(cec_command &command, bool bSuppressWait /* = false */)
1028 {
1029 bool bReturn(false);
1030 cec_opcode expectedResponse(cec_command::GetResponseOpcode(command.opcode));
1031 bool bExpectResponse(expectedResponse != CEC_OPCODE_NONE && !bSuppressWait);
1032 command.transmit_timeout = m_iTransmitTimeout;
1033
1034 if (command.initiator == CECDEVICE_UNKNOWN)
1035 {
1036 LIB_CEC->AddLog(CEC_LOG_ERROR, "not transmitting a command without a valid initiator");
1037 return bReturn;
1038 }
1039
1040 {
1041 uint8_t iTries(0), iMaxTries(!command.opcode_set ? 1 : m_iTransmitRetries + 1);
1042 while (!bReturn && ++iTries <= iMaxTries && !m_busDevice->IsUnsupportedFeature(command.opcode))
1043 {
1044 if ((bReturn = m_processor->Transmit(command)) == true)
1045 {
1046 LIB_CEC->AddLog(CEC_LOG_DEBUG, "command transmitted");
1047 if (bExpectResponse)
1048 {
1049 bReturn = m_waitForResponse->Wait(expectedResponse);
1050 LIB_CEC->AddLog(CEC_LOG_DEBUG, bReturn ? "expected response received (%X: %s)" : "expected response not received (%X: %s)", (int)expectedResponse, ToString(expectedResponse));
1051 }
1052 }
1053 }
1054 }
1055
1056 return bReturn;
1057 }
1058
1059 bool CCECCommandHandler::ActivateSource(void)
1060 {
1061 if (m_busDevice->IsActiveSource() &&
1062 m_busDevice->IsHandledByLibCEC())
1063 {
1064 {
1065 CLockObject lock(m_mutex);
1066 m_bActiveSourcePending = false;
1067 }
1068
1069 m_busDevice->SetPowerStatus(CEC_POWER_STATUS_ON);
1070 m_busDevice->SetMenuState(CEC_MENU_STATE_ACTIVATED);
1071
1072 if (!m_busDevice->TransmitImageViewOn() ||
1073 !m_busDevice->TransmitActiveSource() ||
1074 !m_busDevice->TransmitMenuState(CECDEVICE_TV))
1075 {
1076 CLockObject lock(m_mutex);
1077 m_bActiveSourcePending = true;
1078 return false;
1079 }
1080
1081 CCECPlaybackDevice *playbackDevice = m_busDevice->AsPlaybackDevice();
1082 if (playbackDevice && SendDeckStatusUpdateOnActiveSource())
1083 playbackDevice->TransmitDeckStatus(CECDEVICE_TV);
1084
1085 m_bHandlerInited = true;
1086 }
1087 return true;
1088 }
1089
1090 void CCECCommandHandler::SignalOpcode(cec_opcode opcode)
1091 {
1092 m_waitForResponse->Received(opcode);
1093 }
1094
1095 bool CCECCommandHandler::ActiveSourcePending(void)
1096 {
1097 CLockObject lock(m_mutex);
1098 return m_bActiveSourcePending;
1099 }