2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
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/
34 #include "CECCommandHandler.h"
36 #include "lib/devices/CECBusDevice.h"
37 #include "lib/devices/CECAudioSystem.h"
38 #include "lib/devices/CECPlaybackDevice.h"
39 #include "lib/CECClient.h"
40 #include "lib/CECProcessor.h"
41 #include "lib/LibCEC.h"
42 #include "lib/CECTypeUtils.h"
43 #include "lib/platform/util/util.h"
47 using namespace PLATFORM
;
49 #define LIB_CEC m_busDevice->GetProcessor()->GetLib()
50 #define ToString(p) CCECTypeUtils::ToString(p)
51 #define REQUEST_POWER_STATUS_TIMEOUT 5000
53 CCECCommandHandler::CCECCommandHandler(CCECBusDevice
*busDevice
,
54 int32_t iTransmitTimeout
/* = CEC_DEFAULT_TRANSMIT_TIMEOUT */,
55 int32_t iTransmitWait
/* = CEC_DEFAULT_TRANSMIT_WAIT */,
56 int8_t iTransmitRetries
/* = CEC_DEFAULT_TRANSMIT_RETRIES */,
57 int64_t iActiveSourcePending
/* = 0 */) :
58 m_busDevice(busDevice
),
59 m_processor(m_busDevice
->GetProcessor()),
60 m_iTransmitTimeout(iTransmitTimeout
),
61 m_iTransmitWait(iTransmitWait
),
62 m_iTransmitRetries(iTransmitRetries
),
63 m_bHandlerInited(false),
64 m_bOPTSendDeckStatusUpdateOnActiveSource(false),
65 m_vendorId(CEC_VENDOR_UNKNOWN
),
66 m_iActiveSourcePending(iActiveSourcePending
),
67 m_iPowerStatusRequested(0)
71 bool CCECCommandHandler::HandleCommand(const cec_command
&command
)
73 if (command
.opcode_set
== 0)
74 return HandlePoll(command
);
76 int iHandled(CEC_ABORT_REASON_UNRECOGNIZED_OPCODE
);
78 LIB_CEC
->AddCommand(command
);
80 switch(command
.opcode
)
82 case CEC_OPCODE_REPORT_POWER_STATUS
:
83 iHandled
= HandleReportPowerStatus(command
);
85 case CEC_OPCODE_CEC_VERSION
:
86 iHandled
= HandleDeviceCecVersion(command
);
88 case CEC_OPCODE_SET_MENU_LANGUAGE
:
89 iHandled
= HandleSetMenuLanguage(command
);
91 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS
:
92 iHandled
= HandleGivePhysicalAddress(command
);
94 case CEC_OPCODE_GET_MENU_LANGUAGE
:
95 iHandled
= HandleGiveMenuLanguage(command
);
97 case CEC_OPCODE_GIVE_OSD_NAME
:
98 iHandled
= HandleGiveOSDName(command
);
100 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
:
101 iHandled
= HandleGiveDeviceVendorId(command
);
103 case CEC_OPCODE_DEVICE_VENDOR_ID
:
104 iHandled
= HandleDeviceVendorId(command
);
106 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID
:
107 iHandled
= HandleDeviceVendorCommandWithId(command
);
109 case CEC_OPCODE_GIVE_DECK_STATUS
:
110 iHandled
= HandleGiveDeckStatus(command
);
112 case CEC_OPCODE_DECK_CONTROL
:
113 iHandled
= HandleDeckControl(command
);
115 case CEC_OPCODE_MENU_REQUEST
:
116 iHandled
= HandleMenuRequest(command
);
118 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
:
119 iHandled
= HandleGiveDevicePowerStatus(command
);
121 case CEC_OPCODE_GET_CEC_VERSION
:
122 iHandled
= HandleGetCecVersion(command
);
124 case CEC_OPCODE_USER_CONTROL_PRESSED
:
125 iHandled
= HandleUserControlPressed(command
);
127 case CEC_OPCODE_USER_CONTROL_RELEASE
:
128 iHandled
= HandleUserControlRelease(command
);
130 case CEC_OPCODE_GIVE_AUDIO_STATUS
:
131 iHandled
= HandleGiveAudioStatus(command
);
133 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS
:
134 iHandled
= HandleGiveSystemAudioModeStatus(command
);
136 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST
:
137 iHandled
= HandleSystemAudioModeRequest(command
);
139 case CEC_OPCODE_REPORT_AUDIO_STATUS
:
140 iHandled
= HandleReportAudioStatus(command
);
142 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS
:
143 iHandled
= HandleSystemAudioModeStatus(command
);
145 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE
:
146 iHandled
= HandleSetSystemAudioMode(command
);
148 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE
:
149 iHandled
= HandleRequestActiveSource(command
);
151 case CEC_OPCODE_SET_STREAM_PATH
:
152 iHandled
= HandleSetStreamPath(command
);
154 case CEC_OPCODE_ROUTING_CHANGE
:
155 iHandled
= HandleRoutingChange(command
);
157 case CEC_OPCODE_ROUTING_INFORMATION
:
158 iHandled
= HandleRoutingInformation(command
);
160 case CEC_OPCODE_STANDBY
:
161 iHandled
= HandleStandby(command
);
163 case CEC_OPCODE_ACTIVE_SOURCE
:
164 iHandled
= HandleActiveSource(command
);
166 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS
:
167 iHandled
= HandleReportPhysicalAddress(command
);
169 case CEC_OPCODE_SET_OSD_NAME
:
170 iHandled
= HandleSetOSDName(command
);
172 case CEC_OPCODE_IMAGE_VIEW_ON
:
173 iHandled
= HandleImageViewOn(command
);
175 case CEC_OPCODE_TEXT_VIEW_ON
:
176 iHandled
= HandleTextViewOn(command
);
178 case CEC_OPCODE_FEATURE_ABORT
:
179 iHandled
= HandleFeatureAbort(command
);
181 case CEC_OPCODE_VENDOR_COMMAND
:
182 iHandled
= HandleVendorCommand(command
);
184 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN
:
185 iHandled
= HandleVendorRemoteButtonDown(command
);
187 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP
:
188 iHandled
= HandleVendorRemoteButtonUp(command
);
190 case CEC_OPCODE_PLAY
:
191 // libCEC (currently) doesn't need to do anything with this, since player applications handle it
192 // but it should not respond with a feature abort
193 iHandled
= COMMAND_HANDLED
;
199 if (iHandled
== COMMAND_HANDLED
)
200 m_busDevice
->SignalOpcode((command
.opcode
== CEC_OPCODE_FEATURE_ABORT
&& command
.parameters
.size
> 0) ? (cec_opcode
)command
.parameters
[0] : command
.opcode
);
202 UnhandledCommand(command
, (cec_abort_reason
)iHandled
);
204 return iHandled
== COMMAND_HANDLED
;
207 int CCECCommandHandler::HandleActiveSource(const cec_command
&command
)
209 if (command
.parameters
.size
== 2)
211 uint16_t iAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
212 CCECBusDevice
*device
= m_processor
->GetDeviceByPhysicalAddress(iAddress
);
215 device
->MarkAsActiveSource();
216 return COMMAND_HANDLED
;
220 return CEC_ABORT_REASON_INVALID_OPERAND
;
223 int CCECCommandHandler::HandleDeckControl(const cec_command
&command
)
225 CCECPlaybackDevice
*device
= CCECBusDevice::AsPlaybackDevice(GetDevice(command
.destination
));
226 if (device
&& command
.parameters
.size
> 0)
228 device
->SetDeckControlMode((cec_deck_control_mode
) command
.parameters
[0]);
229 return COMMAND_HANDLED
;
232 return CEC_ABORT_REASON_INVALID_OPERAND
;
235 int CCECCommandHandler::HandleDeviceCecVersion(const cec_command
&command
)
237 if (command
.parameters
.size
== 1)
239 CCECBusDevice
*device
= GetDevice(command
.initiator
);
241 device
->SetCecVersion((cec_version
) command
.parameters
[0]);
243 return COMMAND_HANDLED
;
246 return CEC_ABORT_REASON_INVALID_OPERAND
;
249 int CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command
& UNUSED(command
))
251 return CEC_ABORT_REASON_INVALID_OPERAND
;
254 int CCECCommandHandler::HandleDeviceVendorId(const cec_command
&command
)
256 SetVendorId(command
);
257 return COMMAND_HANDLED
;
260 int CCECCommandHandler::HandleFeatureAbort(const cec_command
&command
)
262 if (command
.parameters
.size
== 2 &&
263 (command
.parameters
[1] == CEC_ABORT_REASON_UNRECOGNIZED_OPCODE
||
264 command
.parameters
[1] == CEC_ABORT_REASON_REFUSED
))
265 m_processor
->GetDevice(command
.initiator
)->SetUnsupportedFeature((cec_opcode
)command
.parameters
[0]);
266 return COMMAND_HANDLED
;
269 int CCECCommandHandler::HandleGetCecVersion(const cec_command
&command
)
271 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
273 CCECBusDevice
*device
= GetDevice(command
.destination
);
274 if (device
&& device
->TransmitCECVersion(command
.initiator
, true))
275 return COMMAND_HANDLED
;
276 return CEC_ABORT_REASON_INVALID_OPERAND
;
279 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
282 int CCECCommandHandler::HandleGiveAudioStatus(const cec_command
&command
)
284 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
286 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.destination
));
287 if (device
&& device
->TransmitAudioStatus(command
.initiator
, true))
288 return COMMAND_HANDLED
;
289 return CEC_ABORT_REASON_INVALID_OPERAND
;
292 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
295 int CCECCommandHandler::HandleGiveDeckStatus(const cec_command
&command
)
297 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
299 CCECPlaybackDevice
*device
= CCECBusDevice::AsPlaybackDevice(GetDevice(command
.destination
));
300 if (device
&& device
->TransmitDeckStatus(command
.initiator
, true))
301 return COMMAND_HANDLED
;
302 return CEC_ABORT_REASON_INVALID_OPERAND
;
305 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
308 int CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command
&command
)
310 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
312 CCECBusDevice
*device
= GetDevice(command
.destination
);
313 if (device
&& device
->TransmitPowerState(command
.initiator
, true))
314 return COMMAND_HANDLED
;
315 return CEC_ABORT_REASON_INVALID_OPERAND
;
318 return CEC_ABORT_REASON_INVALID_OPERAND
;
321 int CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command
&command
)
323 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
325 CCECBusDevice
*device
= GetDevice(command
.destination
);
326 if (device
&& device
->TransmitVendorID(command
.initiator
, true, true))
327 return COMMAND_HANDLED
;
330 return CEC_ABORT_REASON_INVALID_OPERAND
;
333 int CCECCommandHandler::HandleGiveOSDName(const cec_command
&command
)
335 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
337 CCECBusDevice
*device
= GetDevice(command
.destination
);
338 if (device
&& device
->TransmitOSDName(command
.initiator
, true))
339 return COMMAND_HANDLED
;
342 return CEC_ABORT_REASON_INVALID_OPERAND
;
345 int CCECCommandHandler::HandleGivePhysicalAddress(const cec_command
&command
)
347 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
349 CCECBusDevice
*device
= GetDevice(command
.destination
);
350 if (device
&& device
->TransmitPhysicalAddress(true))
351 return COMMAND_HANDLED
;
352 return CEC_ABORT_REASON_INVALID_OPERAND
;
355 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
358 int CCECCommandHandler::HandleGiveMenuLanguage(const cec_command
&command
)
360 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
362 CCECBusDevice
*device
= GetDevice(command
.destination
);
363 if (device
&& device
->TransmitSetMenuLanguage(command
.initiator
, true))
364 return COMMAND_HANDLED
;
365 return CEC_ABORT_REASON_INVALID_OPERAND
;
368 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
371 int CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command
&command
)
373 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
375 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.destination
));
376 if (device
&& device
->TransmitSystemAudioModeStatus(command
.initiator
, true))
377 return COMMAND_HANDLED
;
378 return CEC_ABORT_REASON_INVALID_OPERAND
;
381 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
384 int CCECCommandHandler::HandleImageViewOn(const cec_command
&command
)
386 CCECBusDevice
*device
= GetDevice(command
.destination
);
387 if (device
&& (device
->GetCurrentStatus() == CEC_DEVICE_STATUS_PRESENT
||
388 device
->GetCurrentStatus() == CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
))
390 if (device
->GetCurrentPowerStatus() == CEC_POWER_STATUS_STANDBY
||
391 device
->GetCurrentPowerStatus() == CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY
)
392 device
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
394 return COMMAND_HANDLED
;
397 int CCECCommandHandler::HandleMenuRequest(const cec_command
&command
)
399 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
401 CCECBusDevice
*device
= GetDevice(command
.destination
);
404 CCECClient
*client
= device
->GetClient();
407 if (command
.parameters
[0] == CEC_MENU_REQUEST_TYPE_ACTIVATE
)
409 if (client
->MenuStateChanged(CEC_MENU_STATE_ACTIVATED
) == 1)
410 device
->SetMenuState(CEC_MENU_STATE_ACTIVATED
);
412 else if (command
.parameters
[0] == CEC_MENU_REQUEST_TYPE_DEACTIVATE
)
414 if (client
->MenuStateChanged(CEC_MENU_STATE_DEACTIVATED
) == 1)
415 device
->SetMenuState(CEC_MENU_STATE_DEACTIVATED
);
418 if (device
->TransmitMenuState(command
.initiator
, true))
419 return COMMAND_HANDLED
;
421 return CEC_ABORT_REASON_INVALID_OPERAND
;
424 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
427 bool CCECCommandHandler::HandlePoll(const cec_command
&command
)
429 m_busDevice
->HandlePoll(command
.destination
);
433 int CCECCommandHandler::HandleReportAudioStatus(const cec_command
&command
)
435 if (command
.parameters
.size
== 1)
437 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.initiator
));
440 device
->SetAudioStatus(command
.parameters
[0]);
441 return COMMAND_HANDLED
;
444 return CEC_ABORT_REASON_INVALID_OPERAND
;
447 int CCECCommandHandler::HandleReportPhysicalAddress(const cec_command
&command
)
449 if (command
.parameters
.size
== 3)
451 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
452 SetPhysicalAddress(command
.initiator
, iNewAddress
);
453 return COMMAND_HANDLED
;
455 return CEC_ABORT_REASON_INVALID_OPERAND
;
458 int CCECCommandHandler::HandleReportPowerStatus(const cec_command
&command
)
460 if (command
.parameters
.size
== 1)
462 CCECBusDevice
*device
= GetDevice(command
.initiator
);
465 device
->SetPowerStatus((cec_power_status
) command
.parameters
[0]);
466 return COMMAND_HANDLED
;
469 return CEC_ABORT_REASON_INVALID_OPERAND
;
472 int CCECCommandHandler::HandleRequestActiveSource(const cec_command
&command
)
474 if (m_processor
->CECInitialised())
476 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %i requests active source", (uint8_t) command
.initiator
);
477 m_processor
->GetDevice(command
.initiator
)->SetPowerStatus(CEC_POWER_STATUS_ON
);
479 vector
<CCECBusDevice
*> devices
;
480 for (size_t iDevicePtr
= 0; iDevicePtr
< GetMyDevices(devices
); iDevicePtr
++)
481 devices
[iDevicePtr
]->TransmitActiveSource(true);
484 return COMMAND_HANDLED
;
487 int CCECCommandHandler::HandleRoutingChange(const cec_command
&command
)
489 if (command
.parameters
.size
== 4)
491 uint16_t iOldAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
492 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[2] << 8) | ((uint16_t)command
.parameters
[3]);
494 CCECBusDevice
*device
= GetDevice(command
.initiator
);
497 device
->SetStreamPath(iNewAddress
, iOldAddress
);
498 return COMMAND_HANDLED
;
502 return CEC_ABORT_REASON_INVALID_OPERAND
;
505 int CCECCommandHandler::HandleRoutingInformation(const cec_command
&command
)
507 if (command
.parameters
.size
== 2)
509 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
510 CCECBusDevice
*device
= m_processor
->GetDeviceByPhysicalAddress(iNewAddress
);
513 device
->MarkAsActiveSource();
514 return COMMAND_HANDLED
;
518 return CEC_ABORT_REASON_INVALID_OPERAND
;
521 int CCECCommandHandler::HandleSetMenuLanguage(const cec_command
&command
)
523 if (command
.parameters
.size
== 3)
525 CCECBusDevice
*device
= GetDevice(command
.initiator
);
528 cec_menu_language language
;
529 language
.device
= command
.initiator
;
530 for (uint8_t iPtr
= 0; iPtr
< 4; iPtr
++)
531 language
.language
[iPtr
] = command
.parameters
[iPtr
];
532 language
.language
[3] = 0;
533 device
->SetMenuLanguage(language
);
534 return COMMAND_HANDLED
;
538 return CEC_ABORT_REASON_INVALID_OPERAND
;
541 int CCECCommandHandler::HandleSetOSDName(const cec_command
&command
)
543 if (command
.parameters
.size
> 0)
545 CCECBusDevice
*device
= GetDevice(command
.initiator
);
549 for (uint8_t iPtr
= 0; iPtr
< command
.parameters
.size
; iPtr
++)
550 buf
[iPtr
] = (char)command
.parameters
[iPtr
];
551 buf
[command
.parameters
.size
] = 0;
553 CStdString
strName(buf
);
554 device
->SetOSDName(strName
);
556 return COMMAND_HANDLED
;
560 return CEC_ABORT_REASON_INVALID_OPERAND
;
563 int CCECCommandHandler::HandleSetStreamPath(const cec_command
&command
)
565 if (!m_processor
->CECInitialised())
566 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
568 if (command
.parameters
.size
>= 2)
570 uint16_t iStreamAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
571 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%x) sets stream path to physical address %04x", ToString(command
.initiator
), command
.initiator
, iStreamAddress
);
573 // a device will only change the stream path when it's powered on
574 m_busDevice
->SetPowerStatus(CEC_POWER_STATUS_ON
);
576 /* one of the device handled by libCEC has been made active */
577 CCECBusDevice
*device
= GetDeviceByPhysicalAddress(iStreamAddress
);
578 if (device
&& device
->IsHandledByLibCEC())
580 device
->ActivateSource();
581 return COMMAND_HANDLED
;
585 return CEC_ABORT_REASON_INVALID_OPERAND
;
588 int CCECCommandHandler::HandleSystemAudioModeRequest(const cec_command
&command
)
590 if (m_processor
->CECInitialised() && m_processor
->IsHandledByLibCEC(command
.destination
))
592 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.destination
));
595 if (command
.parameters
.size
>= 2)
597 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
598 device
->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_ON
);
599 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
600 CCECBusDevice
*newActiveDevice
= GetDeviceByPhysicalAddress(iNewAddress
);
602 newActiveDevice
->MarkAsActiveSource();
603 if (device
->TransmitSetSystemAudioMode(command
.initiator
, true))
604 return COMMAND_HANDLED
;
608 device
->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_OFF
);
609 if (device
->TransmitSetSystemAudioMode(command
.initiator
, true))
610 return COMMAND_HANDLED
;
615 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
618 int CCECCommandHandler::HandleStandby(const cec_command
&command
)
620 CCECBusDevice
*device
= GetDevice(command
.initiator
);
622 device
->SetPowerStatus(CEC_POWER_STATUS_STANDBY
);
624 return COMMAND_HANDLED
;
627 int CCECCommandHandler::HandleSystemAudioModeStatus(const cec_command
&command
)
629 if (command
.parameters
.size
== 1)
631 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.initiator
));
634 device
->SetSystemAudioModeStatus((cec_system_audio_status
)command
.parameters
[0]);
635 return COMMAND_HANDLED
;
639 return CEC_ABORT_REASON_INVALID_OPERAND
;
642 int CCECCommandHandler::HandleSetSystemAudioMode(const cec_command
&command
)
644 if (command
.parameters
.size
== 1)
646 CCECAudioSystem
*device
= CCECBusDevice::AsAudioSystem(GetDevice(command
.initiator
));
649 device
->SetSystemAudioModeStatus((cec_system_audio_status
)command
.parameters
[0]);
650 return COMMAND_HANDLED
;
654 return CEC_ABORT_REASON_INVALID_OPERAND
;
657 int CCECCommandHandler::HandleTextViewOn(const cec_command
&command
)
659 m_processor
->GetDevice(command
.initiator
)->MarkAsActiveSource();
660 return COMMAND_HANDLED
;
663 int CCECCommandHandler::HandleUserControlPressed(const cec_command
&command
)
665 if (!m_processor
->CECInitialised() ||
666 !m_processor
->IsHandledByLibCEC(command
.destination
))
667 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
669 if (command
.parameters
.size
== 0)
670 return CEC_ABORT_REASON_INVALID_OPERAND
;
672 CCECBusDevice
*device
= GetDevice(command
.destination
);
674 return CEC_ABORT_REASON_INVALID_OPERAND
;
676 CCECClient
*client
= device
->GetClient();
678 client
->SetCurrentButton((cec_user_control_code
) command
.parameters
[0]);
680 if (command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER
||
681 command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION
)
685 // CEC_USER_CONTROL_CODE_POWER operates as a toggle
686 // assume CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION does not
687 if (command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER
)
689 cec_power_status status
= device
->GetCurrentPowerStatus();
690 bPowerOn
= !(status
== CEC_POWER_STATUS_ON
|| status
== CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
695 device
->ActivateSource();
699 device
->MarkAsInactiveSource();
700 device
->TransmitInactiveSource();
701 device
->SetMenuState(CEC_MENU_STATE_DEACTIVATED
);
705 return COMMAND_HANDLED
;
708 int CCECCommandHandler::HandleUserControlRelease(const cec_command
&command
)
710 if (!m_processor
->CECInitialised() ||
711 !m_processor
->IsHandledByLibCEC(command
.destination
))
712 return CEC_ABORT_REASON_NOT_IN_CORRECT_MODE_TO_RESPOND
;
714 CCECClient
*client
= m_processor
->GetClient(command
.destination
);
718 return COMMAND_HANDLED
;
721 int CCECCommandHandler::HandleVendorCommand(const cec_command
& UNUSED(command
))
723 return CEC_ABORT_REASON_INVALID_OPERAND
;
726 void CCECCommandHandler::UnhandledCommand(const cec_command
&command
, const cec_abort_reason reason
)
728 if (m_processor
->IsHandledByLibCEC(command
.destination
))
730 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "sending abort with opcode %02x and reason '%s' to %s", command
.opcode
, ToString(reason
), ToString(command
.initiator
));
731 m_processor
->TransmitAbort(command
.destination
, command
.initiator
, command
.opcode
, reason
);
735 size_t CCECCommandHandler::GetMyDevices(vector
<CCECBusDevice
*> &devices
) const
739 cec_logical_addresses addresses
= m_processor
->GetLogicalAddresses();
740 for (uint8_t iPtr
= CECDEVICE_TV
; iPtr
< CECDEVICE_BROADCAST
; iPtr
++)
744 devices
.push_back(GetDevice((cec_logical_address
) iPtr
));
752 CCECBusDevice
*CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress
) const
754 return m_processor
->GetDevice(iLogicalAddress
);
757 CCECBusDevice
*CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress
) const
759 return m_processor
->GetDeviceByPhysicalAddress(iPhysicalAddress
);
762 bool CCECCommandHandler::SetVendorId(const cec_command
&command
)
764 bool bChanged(false);
765 if (command
.parameters
.size
< 3)
767 LIB_CEC
->AddLog(CEC_LOG_WARNING
, "invalid vendor ID received");
771 uint64_t iVendorId
= ((uint64_t)command
.parameters
[0] << 16) +
772 ((uint64_t)command
.parameters
[1] << 8) +
773 (uint64_t)command
.parameters
[2];
775 CCECBusDevice
*device
= GetDevice((cec_logical_address
) command
.initiator
);
777 bChanged
= device
->SetVendorId(iVendorId
);
781 void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress
, uint16_t iNewAddress
)
783 if (!m_processor
->IsHandledByLibCEC(iAddress
))
785 CCECBusDevice
*otherDevice
= m_processor
->GetDeviceByPhysicalAddress(iNewAddress
);
786 CCECClient
*client
= otherDevice
? otherDevice
->GetClient() : NULL
;
788 CCECBusDevice
*device
= m_processor
->GetDevice(iAddress
);
790 device
->SetPhysicalAddress(iNewAddress
);
793 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device with logical address %X not found", iAddress
);
796 /* another device reported the same physical address as ours */
798 client
->ResetPhysicalAddress();
802 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
);
806 bool CCECCommandHandler::PowerOn(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
808 if (iDestination
== CECDEVICE_TV
)
809 return TransmitImageViewOn(iInitiator
, iDestination
);
811 return TransmitKeypress(iInitiator
, iDestination
, CEC_USER_CONTROL_CODE_POWER
) &&
812 TransmitKeyRelease(iInitiator
, iDestination
);
815 bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
818 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_IMAGE_VIEW_ON
);
820 if (Transmit(command
, false, false))
822 CCECBusDevice
* dest
= m_processor
->GetDevice(iDestination
);
823 if (dest
&& dest
->GetCurrentPowerStatus() != CEC_POWER_STATUS_ON
)
824 dest
->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
830 bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
833 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_STANDBY
);
835 return Transmit(command
, false, false);
838 bool CCECCommandHandler::TransmitRequestActiveSource(const cec_logical_address iInitiator
, bool bWaitForResponse
/* = true */)
841 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_REQUEST_ACTIVE_SOURCE
);
843 return Transmit(command
, !bWaitForResponse
, false);
846 bool CCECCommandHandler::TransmitRequestCecVersion(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
849 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GET_CEC_VERSION
);
851 return Transmit(command
, !bWaitForResponse
, false);
854 bool CCECCommandHandler::TransmitRequestMenuLanguage(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
857 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GET_MENU_LANGUAGE
);
859 return Transmit(command
, !bWaitForResponse
, false);
862 bool CCECCommandHandler::TransmitRequestOSDName(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
865 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_OSD_NAME
);
867 return Transmit(command
, !bWaitForResponse
, false);
870 bool CCECCommandHandler::TransmitRequestPhysicalAddress(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
873 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS
);
875 return Transmit(command
, !bWaitForResponse
, false);
878 bool CCECCommandHandler::TransmitRequestPowerStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
880 if (iDestination
== CECDEVICE_TV
)
882 int64_t now(GetTimeMs());
883 if (now
- m_iPowerStatusRequested
< REQUEST_POWER_STATUS_TIMEOUT
)
885 m_iPowerStatusRequested
= now
;
888 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting power status of '%s' (%X)", m_busDevice
->GetLogicalAddressName(), iDestination
);
891 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
);
893 return Transmit(command
, !bWaitForResponse
, false);
896 bool CCECCommandHandler::TransmitRequestVendorId(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
899 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
901 return Transmit(command
, !bWaitForResponse
, false);
904 bool CCECCommandHandler::TransmitActiveSource(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
, bool bIsReply
)
907 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_ACTIVE_SOURCE
);
908 command
.parameters
.PushBack((uint8_t) ((iPhysicalAddress
>> 8) & 0xFF));
909 command
.parameters
.PushBack((uint8_t) (iPhysicalAddress
& 0xFF));
911 return Transmit(command
, false, bIsReply
);
914 bool CCECCommandHandler::TransmitCECVersion(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_version cecVersion
, bool bIsReply
)
917 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_CEC_VERSION
);
918 command
.parameters
.PushBack((uint8_t)cecVersion
);
920 return Transmit(command
, false, bIsReply
);
923 bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
)
926 cec_command::Format(command
, iInitiator
, CECDEVICE_TV
, CEC_OPCODE_INACTIVE_SOURCE
);
927 command
.parameters
.PushBack((iPhysicalAddress
>> 8) & 0xFF);
928 command
.parameters
.PushBack(iPhysicalAddress
& 0xFF);
930 return Transmit(command
, false, false);
933 bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_menu_state menuState
, bool bIsReply
)
936 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_MENU_STATUS
);
937 command
.parameters
.PushBack((uint8_t)menuState
);
939 return Transmit(command
, false, bIsReply
);
942 bool CCECCommandHandler::TransmitOSDName(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, std::string strDeviceName
, bool bIsReply
)
945 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_OSD_NAME
);
946 for (size_t iPtr
= 0; iPtr
< strDeviceName
.length(); iPtr
++)
947 command
.parameters
.PushBack(strDeviceName
.at(iPtr
));
949 return Transmit(command
, false, bIsReply
);
952 bool CCECCommandHandler::TransmitOSDString(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_display_control duration
, const char *strMessage
, bool bIsReply
)
955 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_OSD_STRING
);
956 command
.parameters
.PushBack((uint8_t)duration
);
958 size_t iLen
= strlen(strMessage
);
959 if (iLen
> 13) iLen
= 13;
961 for (size_t iPtr
= 0; iPtr
< iLen
; iPtr
++)
962 command
.parameters
.PushBack(strMessage
[iPtr
]);
964 return Transmit(command
, false, bIsReply
);
967 bool CCECCommandHandler::TransmitPhysicalAddress(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
, cec_device_type type
, bool bIsReply
)
970 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS
);
971 command
.parameters
.PushBack((uint8_t) ((iPhysicalAddress
>> 8) & 0xFF));
972 command
.parameters
.PushBack((uint8_t) (iPhysicalAddress
& 0xFF));
973 command
.parameters
.PushBack((uint8_t) (type
));
975 return Transmit(command
, false, bIsReply
);
978 bool CCECCommandHandler::TransmitSetMenuLanguage(const cec_logical_address iInitiator
, const char lang
[3], bool bIsReply
)
981 command
.Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_SET_MENU_LANGUAGE
);
982 command
.parameters
.PushBack((uint8_t) lang
[0]);
983 command
.parameters
.PushBack((uint8_t) lang
[1]);
984 command
.parameters
.PushBack((uint8_t) lang
[2]);
986 return Transmit(command
, false, bIsReply
);
989 bool CCECCommandHandler::TransmitPoll(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bIsReply
)
992 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_NONE
);
994 return Transmit(command
, false, bIsReply
);
997 bool CCECCommandHandler::TransmitPowerState(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_power_status state
, bool bIsReply
)
1000 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_REPORT_POWER_STATUS
);
1001 command
.parameters
.PushBack((uint8_t) state
);
1003 return Transmit(command
, false, bIsReply
);
1006 bool CCECCommandHandler::TransmitVendorID(const cec_logical_address iInitiator
, uint64_t iVendorId
, bool bIsReply
)
1008 cec_command command
;
1009 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_DEVICE_VENDOR_ID
);
1011 command
.parameters
.PushBack((uint8_t) (((uint64_t)iVendorId
>> 16) & 0xFF));
1012 command
.parameters
.PushBack((uint8_t) (((uint64_t)iVendorId
>> 8) & 0xFF));
1013 command
.parameters
.PushBack((uint8_t) ((uint64_t)iVendorId
& 0xFF));
1015 return Transmit(command
, false, bIsReply
);
1018 bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, uint8_t state
, bool bIsReply
)
1020 cec_command command
;
1021 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_REPORT_AUDIO_STATUS
);
1022 command
.parameters
.PushBack(state
);
1024 return Transmit(command
, false, bIsReply
);
1027 bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_system_audio_status state
, bool bIsReply
)
1029 cec_command command
;
1030 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_SYSTEM_AUDIO_MODE
);
1031 command
.parameters
.PushBack((uint8_t)state
);
1033 return Transmit(command
, false, bIsReply
);
1036 bool CCECCommandHandler::TransmitSetStreamPath(uint16_t iStreamPath
, bool bIsReply
)
1038 if (m_busDevice
->GetLogicalAddress() != CECDEVICE_TV
)
1040 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "only the TV is allowed to send CEC_OPCODE_SET_STREAM_PATH");
1043 cec_command command
;
1044 cec_command::Format(command
, m_busDevice
->GetLogicalAddress(), CECDEVICE_BROADCAST
, CEC_OPCODE_SET_STREAM_PATH
);
1045 command
.parameters
.PushBack((uint8_t) ((iStreamPath
>> 8) & 0xFF));
1046 command
.parameters
.PushBack((uint8_t) (iStreamPath
& 0xFF));
1048 return Transmit(command
, false, bIsReply
);
1051 bool CCECCommandHandler::TransmitSystemAudioModeStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_system_audio_status state
, bool bIsReply
)
1053 cec_command command
;
1054 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS
);
1055 command
.parameters
.PushBack((uint8_t)state
);
1057 return Transmit(command
, false, bIsReply
);
1060 bool CCECCommandHandler::TransmitDeckStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_deck_info state
, bool bIsReply
)
1062 cec_command command
;
1063 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_DECK_STATUS
);
1064 command
.PushBack((uint8_t)state
);
1066 return Transmit(command
, false, bIsReply
);
1069 bool CCECCommandHandler::TransmitKeypress(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_user_control_code key
, bool bWait
/* = true */)
1071 cec_command command
;
1072 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_USER_CONTROL_PRESSED
);
1073 command
.parameters
.PushBack((uint8_t)key
);
1075 return Transmit(command
, !bWait
, false);
1078 bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWait
/* = true */)
1080 cec_command command
;
1081 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_USER_CONTROL_RELEASE
);
1083 return Transmit(command
, !bWait
, false);
1086 bool CCECCommandHandler::Transmit(cec_command
&command
, bool bSuppressWait
, bool bIsReply
)
1088 bool bReturn(false);
1089 cec_opcode
expectedResponse(cec_command::GetResponseOpcode(command
.opcode
));
1090 bool bExpectResponse(expectedResponse
!= CEC_OPCODE_NONE
&& !bSuppressWait
);
1091 command
.transmit_timeout
= m_iTransmitTimeout
;
1093 if (command
.initiator
== CECDEVICE_UNKNOWN
)
1095 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "not transmitting a command without a valid initiator");
1099 // check whether the destination is not marked as not present or handled by libCEC
1100 if (command
.destination
!= CECDEVICE_BROADCAST
&& command
.opcode_set
)
1102 CCECBusDevice
* destinationDevice
= m_processor
->GetDevice(command
.destination
);
1103 cec_bus_device_status status
= destinationDevice
? destinationDevice
->GetStatus() : CEC_DEVICE_STATUS_NOT_PRESENT
;
1104 if (status
== CEC_DEVICE_STATUS_NOT_PRESENT
)
1106 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "not sending command '%s': destination device '%s' marked as not present", ToString(command
.opcode
),ToString(command
.destination
));
1109 else if (status
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
1111 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "not sending command '%s': destination device '%s' marked as handled by libCEC", ToString(command
.opcode
),ToString(command
.destination
));
1117 uint8_t iTries(0), iMaxTries(!command
.opcode_set
? 1 : m_iTransmitRetries
+ 1);
1118 while (!bReturn
&& ++iTries
<= iMaxTries
&& !m_busDevice
->IsUnsupportedFeature(command
.opcode
))
1120 if ((bReturn
= m_processor
->Transmit(command
, bIsReply
)) == true)
1122 #ifdef CEC_DEBUGGING
1123 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "command transmitted");
1125 if (bExpectResponse
)
1127 bReturn
= m_busDevice
->WaitForOpcode(expectedResponse
);
1128 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, bReturn
? "expected response received (%X: %s)" : "expected response not received (%X: %s)", (int)expectedResponse
, ToString(expectedResponse
));
1137 bool CCECCommandHandler::ActivateSource(bool bTransmitDelayedCommandsOnly
/* = false */)
1139 if (m_busDevice
->IsActiveSource() &&
1140 m_busDevice
->IsHandledByLibCEC())
1143 CLockObject
lock(m_mutex
);
1144 // check if we need to send a delayed source switch
1145 if (bTransmitDelayedCommandsOnly
)
1147 if (m_iActiveSourcePending
== 0 || GetTimeMs() < m_iActiveSourcePending
)
1150 #ifdef CEC_DEBUGGING
1151 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "transmitting delayed activate source command");
1156 // update the power state and menu state
1157 if (!bTransmitDelayedCommandsOnly
)
1159 m_busDevice
->SetPowerStatus(CEC_POWER_STATUS_ON
);
1160 m_busDevice
->SetMenuState(CEC_MENU_STATE_ACTIVATED
);
1163 // vendor specific hook
1164 VendorPreActivateSourceHook();
1167 CCECBusDevice
* tv
= m_processor
->GetDevice(CECDEVICE_TV
);
1168 bool bTvPresent
= (tv
&& tv
->GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
1169 bool bActiveSourceFailed(false);
1172 if (tv
->GetCurrentPowerStatus() != CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
)
1173 bActiveSourceFailed
= !m_busDevice
->TransmitImageViewOn();
1176 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "TV not present, not sending 'image view on'");
1178 // check if we're allowed to switch sources
1179 bool bSourceSwitchAllowed
= SourceSwitchAllowed();
1180 if (!bSourceSwitchAllowed
)
1181 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "source switch is currently not allowed by command handler");
1183 // switch sources (if allowed)
1184 if (!bActiveSourceFailed
&& bSourceSwitchAllowed
)
1186 bActiveSourceFailed
= !m_busDevice
->TransmitActiveSource(false);
1187 if (bTvPresent
&& !bActiveSourceFailed
)
1188 bActiveSourceFailed
= !m_busDevice
->TransmitMenuState(CECDEVICE_TV
, false);
1190 // update the deck status for playback devices
1191 if (bTvPresent
&& !bActiveSourceFailed
)
1193 CCECPlaybackDevice
*playbackDevice
= m_busDevice
->AsPlaybackDevice();
1194 if (playbackDevice
&& SendDeckStatusUpdateOnActiveSource())
1195 bActiveSourceFailed
= !playbackDevice
->TransmitDeckStatus(CECDEVICE_TV
, false);
1200 if (bActiveSourceFailed
|| !bSourceSwitchAllowed
)
1202 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "failed to make '%s' the active source. will retry later", m_busDevice
->GetLogicalAddressName());
1203 int64_t now(GetTimeMs());
1204 CLockObject
lock(m_mutex
);
1205 if (m_iActiveSourcePending
== 0 || m_iActiveSourcePending
< now
)
1206 m_iActiveSourcePending
= now
+ (int64_t)CEC_ACTIVE_SOURCE_SWITCH_RETRY_TIME_MS
;
1211 CLockObject
lock(m_mutex
);
1212 // clear previous pending active source command
1213 m_iActiveSourcePending
= 0;
1216 // mark the handler as initialised
1217 CLockObject
lock(m_mutex
);
1218 m_bHandlerInited
= true;
1223 void CCECCommandHandler::ScheduleActivateSource(uint64_t iDelay
)
1225 CLockObject
lock(m_mutex
);
1226 m_iActiveSourcePending
= GetTimeMs() + iDelay
;