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/
33 #include "CECCommandHandler.h"
34 #include "../devices/CECBusDevice.h"
35 #include "../devices/CECAudioSystem.h"
36 #include "../devices/CECPlaybackDevice.h"
37 #include "../CECProcessor.h"
38 #include "../LibCEC.h"
42 using namespace PLATFORM
;
44 CCECCommandHandler::CCECCommandHandler(CCECBusDevice
*busDevice
) :
45 m_busDevice(busDevice
),
46 m_processor(m_busDevice
->GetProcessor()),
47 m_iTransmitTimeout(CEC_DEFAULT_TRANSMIT_TIMEOUT
),
48 m_iTransmitWait(CEC_DEFAULT_TRANSMIT_WAIT
),
49 m_iTransmitRetries(CEC_DEFAULT_TRANSMIT_RETRIES
),
50 m_bHandlerInited(false),
51 m_bOPTSendDeckStatusUpdateOnActiveSource(false),
52 m_vendorId(CEC_VENDOR_UNKNOWN
),
53 m_waitForResponse(new CWaitForResponse
)
57 CCECCommandHandler::~CCECCommandHandler(void)
59 delete m_waitForResponse
;
62 bool CCECCommandHandler::HandleCommand(const cec_command
&command
)
64 if (command
.opcode_set
== 0)
65 return HandlePoll(command
);
69 CLibCEC::AddCommand(command
);
71 switch(command
.opcode
)
73 case CEC_OPCODE_REPORT_POWER_STATUS
:
74 HandleReportPowerStatus(command
);
76 case CEC_OPCODE_CEC_VERSION
:
77 HandleDeviceCecVersion(command
);
79 case CEC_OPCODE_SET_MENU_LANGUAGE
:
80 HandleSetMenuLanguage(command
);
82 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS
:
83 if (m_processor
->IsInitialised())
84 HandleGivePhysicalAddress(command
);
86 case CEC_OPCODE_GET_MENU_LANGUAGE
:
87 if (m_processor
->IsInitialised())
88 HandleGiveMenuLanguage(command
);
90 case CEC_OPCODE_GIVE_OSD_NAME
:
91 if (m_processor
->IsInitialised())
92 HandleGiveOSDName(command
);
94 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
:
95 if (m_processor
->IsInitialised())
96 HandleGiveDeviceVendorId(command
);
98 case CEC_OPCODE_DEVICE_VENDOR_ID
:
99 HandleDeviceVendorId(command
);
101 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID
:
102 HandleDeviceVendorCommandWithId(command
);
104 case CEC_OPCODE_GIVE_DECK_STATUS
:
105 if (m_processor
->IsInitialised())
106 HandleGiveDeckStatus(command
);
108 case CEC_OPCODE_DECK_CONTROL
:
109 HandleDeckControl(command
);
111 case CEC_OPCODE_MENU_REQUEST
:
112 if (m_processor
->IsInitialised())
113 HandleMenuRequest(command
);
115 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
:
116 if (m_processor
->IsInitialised())
117 HandleGiveDevicePowerStatus(command
);
119 case CEC_OPCODE_GET_CEC_VERSION
:
120 if (m_processor
->IsInitialised())
121 HandleGetCecVersion(command
);
123 case CEC_OPCODE_USER_CONTROL_PRESSED
:
124 if (m_processor
->IsInitialised())
125 HandleUserControlPressed(command
);
127 case CEC_OPCODE_USER_CONTROL_RELEASE
:
128 if (m_processor
->IsInitialised())
129 HandleUserControlRelease(command
);
131 case CEC_OPCODE_GIVE_AUDIO_STATUS
:
132 if (m_processor
->IsInitialised())
133 HandleGiveAudioStatus(command
);
135 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS
:
136 if (m_processor
->IsInitialised())
137 HandleGiveSystemAudioModeStatus(command
);
139 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST
:
140 if (m_processor
->IsInitialised())
141 HandleSystemAudioModeRequest(command
);
143 case CEC_OPCODE_REPORT_AUDIO_STATUS
:
144 HandleReportAudioStatus(command
);
146 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS
:
147 HandleSystemAudioModeStatus(command
);
149 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE
:
150 HandleSetSystemAudioMode(command
);
152 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE
:
153 if (m_processor
->IsInitialised())
154 HandleRequestActiveSource(command
);
156 case CEC_OPCODE_SET_STREAM_PATH
:
157 HandleSetStreamPath(command
);
159 case CEC_OPCODE_ROUTING_CHANGE
:
160 HandleRoutingChange(command
);
162 case CEC_OPCODE_ROUTING_INFORMATION
:
163 HandleRoutingInformation(command
);
165 case CEC_OPCODE_STANDBY
:
166 if (m_processor
->IsInitialised())
167 HandleStandby(command
);
169 case CEC_OPCODE_ACTIVE_SOURCE
:
170 HandleActiveSource(command
);
172 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS
:
173 HandleReportPhysicalAddress(command
);
175 case CEC_OPCODE_SET_OSD_NAME
:
176 HandleSetOSDName(command
);
178 case CEC_OPCODE_IMAGE_VIEW_ON
:
179 HandleImageViewOn(command
);
181 case CEC_OPCODE_TEXT_VIEW_ON
:
182 HandleTextViewOn(command
);
184 case CEC_OPCODE_FEATURE_ABORT
:
185 HandleFeatureAbort(command
);
187 case CEC_OPCODE_VENDOR_COMMAND
:
188 HandleVendorCommand(command
);
191 UnhandledCommand(command
);
197 m_waitForResponse
->Received((command
.opcode
== CEC_OPCODE_FEATURE_ABORT
&& command
.parameters
.size
> 0) ? (cec_opcode
)command
.parameters
[0] : command
.opcode
);
202 bool CCECCommandHandler::HandleActiveSource(const cec_command
&command
)
204 if (command
.parameters
.size
== 2)
206 uint16_t iAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
207 return m_processor
->SetActiveSource(iAddress
);
213 bool CCECCommandHandler::HandleDeckControl(const cec_command
&command
)
215 CCECBusDevice
*device
= GetDevice(command
.destination
);
216 if (device
&& (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
|| device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
) && command
.parameters
.size
> 0)
218 ((CCECPlaybackDevice
*) device
)->SetDeckControlMode((cec_deck_control_mode
) command
.parameters
[0]);
225 bool CCECCommandHandler::HandleDeviceCecVersion(const cec_command
&command
)
227 if (command
.parameters
.size
== 1)
229 CCECBusDevice
*device
= GetDevice(command
.initiator
);
231 device
->SetCecVersion((cec_version
) command
.parameters
[0]);
237 bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command
&command
)
239 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
240 m_processor
->TransmitAbort(command
.initiator
, command
.opcode
, CEC_ABORT_REASON_REFUSED
);
245 bool CCECCommandHandler::HandleDeviceVendorId(const cec_command
&command
)
247 return SetVendorId(command
);
250 bool CCECCommandHandler::HandleFeatureAbort(const cec_command
&command
)
252 if (command
.parameters
.size
== 2 &&
253 (command
.parameters
[1] == CEC_ABORT_REASON_UNRECOGNIZED_OPCODE
||
254 command
.parameters
[1] == CEC_ABORT_REASON_REFUSED
))
255 m_processor
->m_busDevices
[command
.initiator
]->SetUnsupportedFeature((cec_opcode
)command
.parameters
[0]);
259 bool CCECCommandHandler::HandleGetCecVersion(const cec_command
&command
)
261 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
263 CCECBusDevice
*device
= GetDevice(command
.destination
);
265 return device
->TransmitCECVersion(command
.initiator
);
271 bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command
&command
)
273 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
275 CCECBusDevice
*device
= GetDevice(command
.destination
);
276 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
277 return ((CCECAudioSystem
*) device
)->TransmitAudioStatus(command
.initiator
);
283 bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command
&command
)
285 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
287 CCECBusDevice
*device
= GetDevice(command
.destination
);
288 if (device
&& (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
|| device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
))
289 return ((CCECPlaybackDevice
*) device
)->TransmitDeckStatus(command
.initiator
);
295 bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command
&command
)
297 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
299 CCECBusDevice
*device
= GetDevice(command
.destination
);
301 return device
->TransmitPowerState(command
.initiator
);
307 bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command
&command
)
309 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
311 CCECBusDevice
*device
= GetDevice(command
.destination
);
313 return device
->TransmitVendorID(command
.initiator
);
319 bool CCECCommandHandler::HandleGiveOSDName(const cec_command
&command
)
321 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
323 CCECBusDevice
*device
= GetDevice(command
.destination
);
325 return device
->TransmitOSDName(command
.initiator
);
331 bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command
&command
)
333 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
335 CCECBusDevice
*device
= GetDevice(command
.destination
);
338 device
->SetActiveSource();
339 return device
->TransmitPhysicalAddress() &&
340 device
->TransmitImageViewOn() &&
341 device
->TransmitActiveSource();
348 bool CCECCommandHandler::HandleGiveMenuLanguage(const cec_command
&command
)
350 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
352 CCECBusDevice
*device
= GetDevice(command
.destination
);
354 return device
->TransmitSetMenuLanguage(command
.initiator
);
360 bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command
&command
)
362 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
364 CCECBusDevice
*device
= GetDevice(command
.destination
);
365 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
366 return ((CCECAudioSystem
*) device
)->TransmitSystemAudioModeStatus(command
.initiator
);
372 bool CCECCommandHandler::HandleImageViewOn(const cec_command
&command
)
374 m_processor
->m_busDevices
[command
.initiator
]->SetActiveSource();
378 bool CCECCommandHandler::HandleMenuRequest(const cec_command
&command
)
380 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
382 CCECBusDevice
*device
= GetDevice(command
.destination
);
385 if (command
.parameters
[0] == CEC_MENU_REQUEST_TYPE_ACTIVATE
)
387 if (CLibCEC::MenuStateChanged(CEC_MENU_STATE_ACTIVATED
) == 1)
388 device
->SetMenuState(CEC_MENU_STATE_ACTIVATED
);
390 else if (command
.parameters
[0] == CEC_MENU_REQUEST_TYPE_DEACTIVATE
)
392 if (CLibCEC::MenuStateChanged(CEC_MENU_STATE_DEACTIVATED
) == 1)
393 device
->SetMenuState(CEC_MENU_STATE_DEACTIVATED
);
395 return device
->TransmitMenuState(command
.initiator
);
402 bool CCECCommandHandler::HandlePoll(const cec_command
&command
)
404 m_busDevice
->HandlePoll(command
.destination
);
408 bool CCECCommandHandler::HandleReportAudioStatus(const cec_command
&command
)
410 if (command
.parameters
.size
== 1)
412 CCECBusDevice
*device
= GetDevice(command
.initiator
);
413 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
415 ((CCECAudioSystem
*)device
)->SetAudioStatus(command
.parameters
[0]);
422 bool CCECCommandHandler::HandleReportPhysicalAddress(const cec_command
&command
)
424 if (command
.parameters
.size
== 3)
426 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
427 SetPhysicalAddress(command
.initiator
, iNewAddress
);
432 bool CCECCommandHandler::HandleReportPowerStatus(const cec_command
&command
)
434 if (command
.parameters
.size
== 1)
436 CCECBusDevice
*device
= GetDevice(command
.initiator
);
438 device
->SetPowerStatus((cec_power_status
) command
.parameters
[0]);
443 bool CCECCommandHandler::HandleRequestActiveSource(const cec_command
&command
)
445 if (m_processor
->IsRunning())
447 CLibCEC::AddLog(CEC_LOG_DEBUG
, ">> %i requests active source", (uint8_t) command
.initiator
);
449 vector
<CCECBusDevice
*> devices
;
450 for (size_t iDevicePtr
= 0; iDevicePtr
< GetMyDevices(devices
); iDevicePtr
++)
451 devices
[iDevicePtr
]->TransmitActiveSource();
458 bool CCECCommandHandler::HandleRoutingChange(const cec_command
&command
)
460 if (command
.parameters
.size
== 4)
462 uint16_t iOldAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
463 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[2] << 8) | ((uint16_t)command
.parameters
[3]);
465 CCECBusDevice
*device
= GetDevice(command
.initiator
);
467 device
->SetStreamPath(iNewAddress
, iOldAddress
);
472 bool CCECCommandHandler::HandleRoutingInformation(const cec_command
&command
)
474 if (command
.parameters
.size
== 2)
476 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
477 m_processor
->SetActiveSource(iNewAddress
);
483 bool CCECCommandHandler::HandleSetMenuLanguage(const cec_command
&command
)
485 if (command
.parameters
.size
== 3)
487 CCECBusDevice
*device
= GetDevice(command
.initiator
);
490 cec_menu_language language
;
491 language
.device
= command
.initiator
;
492 for (uint8_t iPtr
= 0; iPtr
< 4; iPtr
++)
493 language
.language
[iPtr
] = command
.parameters
[iPtr
];
494 language
.language
[3] = 0;
495 device
->SetMenuLanguage(language
);
502 bool CCECCommandHandler::HandleSetOSDName(const cec_command
&command
)
504 if (command
.parameters
.size
> 0)
506 CCECBusDevice
*device
= GetDevice(command
.initiator
);
510 for (uint8_t iPtr
= 0; iPtr
< command
.parameters
.size
; iPtr
++)
511 buf
[iPtr
] = (char)command
.parameters
[iPtr
];
512 buf
[command
.parameters
.size
] = 0;
514 CStdString
strName(buf
);
515 device
->SetOSDName(strName
);
523 bool CCECCommandHandler::HandleSetStreamPath(const cec_command
&command
)
525 if (m_processor
->IsRunning() && command
.parameters
.size
>= 2)
527 uint16_t iStreamAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
528 CLibCEC::AddLog(CEC_LOG_DEBUG
, ">> %i sets stream path to physical address %04x", command
.initiator
, iStreamAddress
);
530 /* one of the device handled by libCEC has been made active */
531 CCECBusDevice
*device
= GetDeviceByPhysicalAddress(iStreamAddress
);
532 if (device
&& m_busDevice
->MyLogicalAddressContains(device
->GetLogicalAddress()))
534 device
->SetActiveSource();
535 device
->TransmitImageViewOn();
536 device
->TransmitActiveSource();
538 device
->SetMenuState(CEC_MENU_STATE_ACTIVATED
);
539 device
->TransmitMenuState(command
.initiator
);
545 bool CCECCommandHandler::HandleSystemAudioModeRequest(const cec_command
&command
)
547 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
549 CCECBusDevice
*device
= GetDevice(command
.destination
);
550 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
552 if (command
.parameters
.size
>= 2)
554 device
->SetPowerStatus(CEC_POWER_STATUS_ON
);
555 ((CCECAudioSystem
*) device
)->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_ON
);
556 uint16_t iNewAddress
= ((uint16_t)command
.parameters
[0] << 8) | ((uint16_t)command
.parameters
[1]);
557 CCECBusDevice
*newActiveDevice
= GetDeviceByPhysicalAddress(iNewAddress
);
559 newActiveDevice
->SetActiveSource();
560 return ((CCECAudioSystem
*) device
)->TransmitSetSystemAudioMode(command
.initiator
);
564 ((CCECAudioSystem
*) device
)->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_OFF
);
565 return ((CCECAudioSystem
*) device
)->TransmitSetSystemAudioMode(command
.initiator
);
572 bool CCECCommandHandler::HandleStandby(const cec_command
&command
)
574 CCECBusDevice
*device
= GetDevice(command
.initiator
);
576 device
->SetPowerStatus(CEC_POWER_STATUS_STANDBY
);
581 bool CCECCommandHandler::HandleSystemAudioModeStatus(const cec_command
&command
)
583 if (command
.parameters
.size
== 1)
585 CCECBusDevice
*device
= GetDevice(command
.initiator
);
586 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
588 ((CCECAudioSystem
*)device
)->SetSystemAudioModeStatus((cec_system_audio_status
)command
.parameters
[0]);
596 bool CCECCommandHandler::HandleSetSystemAudioMode(const cec_command
&command
)
598 if (command
.parameters
.size
== 1)
600 CCECBusDevice
*device
= GetDevice(command
.initiator
);
601 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
603 ((CCECAudioSystem
*)device
)->SetSystemAudioModeStatus((cec_system_audio_status
)command
.parameters
[0]);
611 bool CCECCommandHandler::HandleTextViewOn(const cec_command
&command
)
613 m_processor
->m_busDevices
[command
.initiator
]->SetActiveSource();
617 bool CCECCommandHandler::HandleUserControlPressed(const cec_command
&command
)
619 if (m_processor
->IsRunning() &&
620 m_busDevice
->MyLogicalAddressContains(command
.destination
) &&
621 command
.parameters
.size
> 0)
624 if (command
.parameters
[0] <= CEC_USER_CONTROL_CODE_MAX
)
625 CLibCEC::SetCurrentButton((cec_user_control_code
) command
.parameters
[0]);
627 if (command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER
||
628 command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION
)
631 CCECBusDevice
*device
= GetDevice(command
.destination
);
635 // CEC_USER_CONTROL_CODE_POWER operates as a toggle
636 // assume CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION does not
637 if (command
.parameters
[0] == CEC_USER_CONTROL_CODE_POWER
)
639 cec_power_status status
= device
->GetPowerStatus();
640 bPowerOn
= !(status
== CEC_POWER_STATUS_ON
|| status
== CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
645 device
->SetActiveSource();
646 device
->TransmitImageViewOn();
647 device
->TransmitActiveSource();
649 if (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
||
650 device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
)
651 ((CCECPlaybackDevice
*)device
)->TransmitDeckStatus(command
.initiator
);
655 device
->SetInactiveSource();
656 device
->TransmitInactiveSource();
657 device
->SetMenuState(CEC_MENU_STATE_DEACTIVATED
);
666 bool CCECCommandHandler::HandleUserControlRelease(const cec_command
&command
)
668 if (m_processor
->IsRunning() && m_busDevice
->MyLogicalAddressContains(command
.destination
))
674 bool CCECCommandHandler::HandleVendorCommand(const cec_command
& UNUSED(command
))
679 void CCECCommandHandler::UnhandledCommand(const cec_command
&command
)
681 CLibCEC::AddLog(CEC_LOG_DEBUG
, "unhandled command with opcode %02x from address %d", command
.opcode
, command
.initiator
);
684 size_t CCECCommandHandler::GetMyDevices(vector
<CCECBusDevice
*> &devices
) const
688 cec_logical_addresses addresses
= m_processor
->GetLogicalAddresses();
689 for (uint8_t iPtr
= 0; iPtr
< 16; iPtr
++)
693 devices
.push_back(GetDevice((cec_logical_address
) iPtr
));
701 CCECBusDevice
*CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress
) const
703 CCECBusDevice
*device
= NULL
;
705 if (iLogicalAddress
>= CECDEVICE_TV
&& iLogicalAddress
<= CECDEVICE_BROADCAST
)
706 device
= m_processor
->m_busDevices
[iLogicalAddress
];
711 CCECBusDevice
*CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress
) const
713 return m_processor
->GetDeviceByPhysicalAddress(iPhysicalAddress
);
716 CCECBusDevice
*CCECCommandHandler::GetDeviceByType(cec_device_type type
) const
718 return m_processor
->GetDeviceByType(type
);
721 bool CCECCommandHandler::SetVendorId(const cec_command
&command
)
723 bool bChanged(false);
724 if (command
.parameters
.size
< 3)
726 CLibCEC::AddLog(CEC_LOG_WARNING
, "invalid vendor ID received");
730 uint64_t iVendorId
= ((uint64_t)command
.parameters
[0] << 16) +
731 ((uint64_t)command
.parameters
[1] << 8) +
732 (uint64_t)command
.parameters
[2];
734 CCECBusDevice
*device
= GetDevice((cec_logical_address
) command
.initiator
);
736 bChanged
= device
->SetVendorId(iVendorId
);
740 void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress
, uint16_t iNewAddress
)
742 if (!m_busDevice
->MyLogicalAddressContains(iAddress
))
744 bool bOurAddress(m_processor
->GetPhysicalAddress() == iNewAddress
);
745 GetDevice(iAddress
)->SetPhysicalAddress(iNewAddress
);
748 /* another device reported the same physical address as ours
749 * since we don't have physical address detection yet, we'll just use the
750 * given address, increased by 0x100 for now */
751 m_processor
->SetPhysicalAddress(iNewAddress
+ 0x100);
756 bool CCECCommandHandler::PowerOn(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
758 if (iDestination
== CECDEVICE_TV
)
759 return TransmitImageViewOn(iInitiator
, iDestination
);
761 return TransmitKeypress(iInitiator
, iDestination
, CEC_USER_CONTROL_CODE_POWER
) &&
762 TransmitKeyRelease(iInitiator
, iDestination
);
765 bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
768 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_IMAGE_VIEW_ON
);
770 return Transmit(command
, false);
773 bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
776 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_STANDBY
);
778 return Transmit(command
, false);
781 bool CCECCommandHandler::TransmitRequestCecVersion(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
784 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GET_CEC_VERSION
);
786 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_CEC_VERSION
);
789 bool CCECCommandHandler::TransmitRequestMenuLanguage(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
792 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GET_MENU_LANGUAGE
);
794 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_SET_MENU_LANGUAGE
);
797 bool CCECCommandHandler::TransmitRequestOSDName(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
800 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_OSD_NAME
);
802 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_SET_OSD_NAME
);
805 bool CCECCommandHandler::TransmitRequestPhysicalAddress(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
808 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS
);
810 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS
);
813 bool CCECCommandHandler::TransmitRequestPowerStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
816 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
);
818 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_REPORT_POWER_STATUS
);
821 bool CCECCommandHandler::TransmitRequestVendorId(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWaitForResponse
/* = true */)
824 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
826 return Transmit(command
, bWaitForResponse
, CEC_OPCODE_DEVICE_VENDOR_ID
);
829 bool CCECCommandHandler::TransmitActiveSource(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
)
832 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_ACTIVE_SOURCE
);
833 command
.parameters
.PushBack((uint8_t) ((iPhysicalAddress
>> 8) & 0xFF));
834 command
.parameters
.PushBack((uint8_t) (iPhysicalAddress
& 0xFF));
836 return Transmit(command
, false);
839 bool CCECCommandHandler::TransmitCECVersion(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_version cecVersion
)
842 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_CEC_VERSION
);
843 command
.parameters
.PushBack((uint8_t)cecVersion
);
845 return Transmit(command
, false);
848 bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
)
851 cec_command::Format(command
, iInitiator
, CECDEVICE_TV
, CEC_OPCODE_INACTIVE_SOURCE
);
852 command
.parameters
.PushBack((iPhysicalAddress
>> 8) & 0xFF);
853 command
.parameters
.PushBack(iPhysicalAddress
& 0xFF);
855 return Transmit(command
, false);
858 bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_menu_state menuState
)
861 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_MENU_STATUS
);
862 command
.parameters
.PushBack((uint8_t)menuState
);
864 return Transmit(command
, false);
867 bool CCECCommandHandler::TransmitOSDName(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, CStdString strDeviceName
)
870 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_OSD_NAME
);
871 for (size_t iPtr
= 0; iPtr
< strDeviceName
.length(); iPtr
++)
872 command
.parameters
.PushBack(strDeviceName
.at(iPtr
));
874 return Transmit(command
, false);
877 bool CCECCommandHandler::TransmitOSDString(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_display_control duration
, const char *strMessage
)
880 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_OSD_STRING
);
881 command
.parameters
.PushBack((uint8_t)duration
);
883 size_t iLen
= strlen(strMessage
);
884 if (iLen
> 13) iLen
= 13;
886 for (size_t iPtr
= 0; iPtr
< iLen
; iPtr
++)
887 command
.parameters
.PushBack(strMessage
[iPtr
]);
889 return Transmit(command
, false);
892 bool CCECCommandHandler::TransmitPhysicalAddress(const cec_logical_address iInitiator
, uint16_t iPhysicalAddress
, cec_device_type type
)
895 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS
);
896 command
.parameters
.PushBack((uint8_t) ((iPhysicalAddress
>> 8) & 0xFF));
897 command
.parameters
.PushBack((uint8_t) (iPhysicalAddress
& 0xFF));
898 command
.parameters
.PushBack((uint8_t) (type
));
900 return Transmit(command
, false);
903 bool CCECCommandHandler::TransmitSetMenuLanguage(const cec_logical_address iInitiator
, const char lang
[3])
906 command
.Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_SET_MENU_LANGUAGE
);
907 command
.parameters
.PushBack((uint8_t) lang
[0]);
908 command
.parameters
.PushBack((uint8_t) lang
[1]);
909 command
.parameters
.PushBack((uint8_t) lang
[2]);
911 return Transmit(command
, false);
914 bool CCECCommandHandler::TransmitPoll(const cec_logical_address iInitiator
, const cec_logical_address iDestination
)
917 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_NONE
);
919 return Transmit(command
, false);
922 bool CCECCommandHandler::TransmitPowerState(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_power_status state
)
925 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_REPORT_POWER_STATUS
);
926 command
.parameters
.PushBack((uint8_t) state
);
928 return Transmit(command
, false);
931 bool CCECCommandHandler::TransmitVendorID(const cec_logical_address iInitiator
, uint64_t iVendorId
)
934 cec_command::Format(command
, iInitiator
, CECDEVICE_BROADCAST
, CEC_OPCODE_DEVICE_VENDOR_ID
);
936 command
.parameters
.PushBack((uint8_t) (((uint64_t)iVendorId
>> 16) & 0xFF));
937 command
.parameters
.PushBack((uint8_t) (((uint64_t)iVendorId
>> 8) & 0xFF));
938 command
.parameters
.PushBack((uint8_t) ((uint64_t)iVendorId
& 0xFF));
940 return Transmit(command
, false);
943 bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, uint8_t state
)
946 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_REPORT_AUDIO_STATUS
);
947 command
.parameters
.PushBack(state
);
949 return Transmit(command
, false);
952 bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_system_audio_status state
)
955 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SET_SYSTEM_AUDIO_MODE
);
956 command
.parameters
.PushBack((uint8_t)state
);
958 return Transmit(command
, false);
961 bool CCECCommandHandler::TransmitSetStreamPath(uint16_t iStreamPath
)
964 cec_command::Format(command
, m_busDevice
->GetLogicalAddress(), CECDEVICE_BROADCAST
, CEC_OPCODE_SET_STREAM_PATH
);
965 command
.parameters
.PushBack((uint8_t) ((iStreamPath
>> 8) & 0xFF));
966 command
.parameters
.PushBack((uint8_t) (iStreamPath
& 0xFF));
968 return Transmit(command
, false);
971 bool CCECCommandHandler::TransmitSystemAudioModeStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_system_audio_status state
)
974 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS
);
975 command
.parameters
.PushBack((uint8_t)state
);
977 return Transmit(command
, false);
980 bool CCECCommandHandler::TransmitDeckStatus(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_deck_info state
)
983 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_DECK_STATUS
);
984 command
.PushBack((uint8_t)state
);
986 return Transmit(command
, false);
989 bool CCECCommandHandler::TransmitKeypress(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, cec_user_control_code key
, bool bWait
/* = true */)
992 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_USER_CONTROL_PRESSED
);
993 command
.parameters
.PushBack((uint8_t)key
);
995 return Transmit(command
, bWait
);
998 bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator
, const cec_logical_address iDestination
, bool bWait
/* = true */)
1000 cec_command command
;
1001 cec_command::Format(command
, iInitiator
, iDestination
, CEC_OPCODE_USER_CONTROL_RELEASE
);
1003 return Transmit(command
, bWait
);
1006 bool CCECCommandHandler::Transmit(cec_command
&command
, bool bExpectResponse
/* = true */, cec_opcode expectedResponse
/* = CEC_OPCODE_NONE */)
1008 bool bReturn(false);
1009 command
.transmit_timeout
= m_iTransmitTimeout
;
1011 if (command
.initiator
== CECDEVICE_UNKNOWN
)
1013 CLibCEC::AddLog(CEC_LOG_ERROR
, "not transmitting a command without a valid initiator");
1018 uint8_t iTries(0), iMaxTries(!command
.opcode_set
? 1 : m_iTransmitRetries
+ 1);
1019 while (!bReturn
&& ++iTries
<= iMaxTries
)
1021 if ((bReturn
= m_processor
->Transmit(command
)) == true)
1023 CLibCEC::AddLog(CEC_LOG_DEBUG
, "command transmitted");
1024 if (bExpectResponse
)
1026 bReturn
= m_waitForResponse
->Wait(expectedResponse
);
1027 CLibCEC::AddLog(CEC_LOG_DEBUG
, bReturn
? "expected response received (%X: %s)" : "expected response not received (%X: %s)", (int)expectedResponse
, m_processor
->ToString(expectedResponse
));
1036 bool CCECCommandHandler::ActivateSource(void)
1038 if (m_busDevice
->IsActiveSource() &&
1039 m_busDevice
->GetStatus(false) == CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
1041 m_busDevice
->SetPowerStatus(CEC_POWER_STATUS_ON
);
1042 m_busDevice
->SetMenuState(CEC_MENU_STATE_ACTIVATED
);
1044 m_busDevice
->TransmitImageViewOn();
1045 m_busDevice
->TransmitActiveSource();
1046 m_busDevice
->TransmitMenuState(CECDEVICE_TV
);
1047 if ((m_busDevice
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
||
1048 m_busDevice
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
) &&
1049 SendDeckStatusUpdateOnActiveSource())
1050 ((CCECPlaybackDevice
*)m_busDevice
)->TransmitDeckStatus(CECDEVICE_TV
);
1051 m_bHandlerInited
= true;