cec: get the vendor id of the TV before allocating logical addresses, so we can deter...
[deb_libcec.git] / src / lib / implementations / CECCommandHandler.cpp
CommitLineData
e9de9629
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
e9de9629
LOK
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"
eafa9d46 34#include "../devices/CECBusDevice.h"
a1f8fb1b 35#include "../devices/CECAudioSystem.h"
28089abc 36#include "../devices/CECPlaybackDevice.h"
004b8382 37#include "../CECClient.h"
387b6f6f 38#include "../CECProcessor.h"
5477a250 39#include "../LibCEC.h"
0d800fe5 40#include "../CECTypeUtils.h"
c9d15485 41#include "../platform/util/util.h"
e9de9629
LOK
42
43using namespace CEC;
8747dd4f 44using namespace std;
f00ff009 45using namespace PLATFORM;
e9de9629 46
004b8382 47#define LIB_CEC m_busDevice->GetProcessor()->GetLib()
0d800fe5 48#define ToString(p) CCECTypeUtils::ToString(p)
004b8382 49
8fa35473
LOK
50CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice) :
51 m_busDevice(busDevice),
52 m_processor(m_busDevice->GetProcessor()),
ae693aaa
LOK
53 m_iTransmitTimeout(CEC_DEFAULT_TRANSMIT_TIMEOUT),
54 m_iTransmitWait(CEC_DEFAULT_TRANSMIT_WAIT),
89a726fa 55 m_iTransmitRetries(CEC_DEFAULT_TRANSMIT_RETRIES),
b64db02e 56 m_bHandlerInited(false),
d79b67d8 57 m_bOPTSendDeckStatusUpdateOnActiveSource(false),
960f33c6 58 m_vendorId(CEC_VENDOR_UNKNOWN),
b0015449
LOK
59 m_waitForResponse(new CWaitForResponse),
60 m_bActiveSourcePending(false)
e9de9629 61{
8fa35473
LOK
62}
63
64CCECCommandHandler::~CCECCommandHandler(void)
65{
c9d15485 66 DELETE_AND_NULL(m_waitForResponse);
e9de9629
LOK
67}
68
69bool CCECCommandHandler::HandleCommand(const cec_command &command)
70{
d297cbd4
LOK
71 if (command.opcode_set == 0)
72 return HandlePoll(command);
73
3e61b350 74 bool bHandled(true);
e9de9629 75
004b8382
LOK
76 CCECClient *client = m_busDevice->GetClient();
77 if (client)
78 client->AddCommand(command);
855a3a98 79
6b72afcd 80 switch(command.opcode)
e9de9629 81 {
6b72afcd
LOK
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:
004b8382 92 if (m_processor->CECInitialised())
3e61b350 93 HandleGivePhysicalAddress(command);
6b72afcd 94 break;
fbdea54c 95 case CEC_OPCODE_GET_MENU_LANGUAGE:
004b8382 96 if (m_processor->CECInitialised())
fbdea54c
MK
97 HandleGiveMenuLanguage(command);
98 break;
6b72afcd 99 case CEC_OPCODE_GIVE_OSD_NAME:
004b8382 100 if (m_processor->CECInitialised())
3e61b350 101 HandleGiveOSDName(command);
6b72afcd
LOK
102 break;
103 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
004b8382 104 if (m_processor->CECInitialised())
3e61b350 105 HandleGiveDeviceVendorId(command);
6b72afcd
LOK
106 break;
107 case CEC_OPCODE_DEVICE_VENDOR_ID:
3e61b350 108 HandleDeviceVendorId(command);
6b72afcd
LOK
109 break;
110 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
111 HandleDeviceVendorCommandWithId(command);
112 break;
113 case CEC_OPCODE_GIVE_DECK_STATUS:
004b8382 114 if (m_processor->CECInitialised())
3e61b350 115 HandleGiveDeckStatus(command);
6b72afcd
LOK
116 break;
117 case CEC_OPCODE_DECK_CONTROL:
118 HandleDeckControl(command);
119 break;
120 case CEC_OPCODE_MENU_REQUEST:
004b8382 121 if (m_processor->CECInitialised())
3e61b350 122 HandleMenuRequest(command);
6b72afcd
LOK
123 break;
124 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
004b8382 125 if (m_processor->CECInitialised())
3e61b350 126 HandleGiveDevicePowerStatus(command);
6b72afcd
LOK
127 break;
128 case CEC_OPCODE_GET_CEC_VERSION:
004b8382 129 if (m_processor->CECInitialised())
3e61b350 130 HandleGetCecVersion(command);
6b72afcd
LOK
131 break;
132 case CEC_OPCODE_USER_CONTROL_PRESSED:
004b8382 133 if (m_processor->CECInitialised())
3e61b350 134 HandleUserControlPressed(command);
6b72afcd
LOK
135 break;
136 case CEC_OPCODE_USER_CONTROL_RELEASE:
004b8382 137 if (m_processor->CECInitialised())
3e61b350 138 HandleUserControlRelease(command);
6b72afcd
LOK
139 break;
140 case CEC_OPCODE_GIVE_AUDIO_STATUS:
004b8382 141 if (m_processor->CECInitialised())
3e61b350 142 HandleGiveAudioStatus(command);
6b72afcd
LOK
143 break;
144 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
004b8382 145 if (m_processor->CECInitialised())
3e61b350 146 HandleGiveSystemAudioModeStatus(command);
6b72afcd
LOK
147 break;
148 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
004b8382 149 if (m_processor->CECInitialised())
3e61b350 150 HandleSystemAudioModeRequest(command);
aa517a0d
LOK
151 break;
152 case CEC_OPCODE_REPORT_AUDIO_STATUS:
855a3a98 153 HandleReportAudioStatus(command);
aa517a0d
LOK
154 break;
155 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
855a3a98 156 HandleSystemAudioModeStatus(command);
aa517a0d
LOK
157 break;
158 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
855a3a98 159 HandleSetSystemAudioMode(command);
6b72afcd
LOK
160 break;
161 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
004b8382 162 if (m_processor->CECInitialised())
3e61b350 163 HandleRequestActiveSource(command);
6b72afcd
LOK
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;
907bd60f
LOK
171 case CEC_OPCODE_ROUTING_INFORMATION:
172 HandleRoutingInformation(command);
173 break;
6b72afcd 174 case CEC_OPCODE_STANDBY:
004b8382 175 if (m_processor->CECInitialised())
3e61b350 176 HandleStandby(command);
6b72afcd
LOK
177 break;
178 case CEC_OPCODE_ACTIVE_SOURCE:
179 HandleActiveSource(command);
180 break;
907bd60f
LOK
181 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
182 HandleReportPhysicalAddress(command);
183 break;
15d1a84c
LOK
184 case CEC_OPCODE_SET_OSD_NAME:
185 HandleSetOSDName(command);
186 break;
1a6669b8
LOK
187 case CEC_OPCODE_IMAGE_VIEW_ON:
188 HandleImageViewOn(command);
189 break;
190 case CEC_OPCODE_TEXT_VIEW_ON:
191 HandleTextViewOn(command);
192 break;
4d738fe3
LOK
193 case CEC_OPCODE_FEATURE_ABORT:
194 HandleFeatureAbort(command);
195 break;
468a1414
LOK
196 case CEC_OPCODE_VENDOR_COMMAND:
197 HandleVendorCommand(command);
198 break;
34fe491f
LOK
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;
6b72afcd 203 default:
e9de9629 204 bHandled = false;
6b72afcd 205 break;
e9de9629
LOK
206 }
207
3e61b350 208 if (bHandled)
24dd566c 209 m_waitForResponse->Received((command.opcode == CEC_OPCODE_FEATURE_ABORT && command.parameters.size > 0) ? (cec_opcode)command.parameters[0] : command.opcode);
004b8382
LOK
210 else
211 UnhandledCommand(command);
8fa35473 212
e9de9629
LOK
213 return bHandled;
214}
215
be5b0e24
LOK
216bool 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]);
004b8382
LOK
221 CCECBusDevice *device = m_processor->GetDeviceByPhysicalAddress(iAddress);
222 if (device)
223 device->MarkAsActiveSource();
be5b0e24
LOK
224 }
225
226 return true;
227}
228
a9232a79
LOK
229bool CCECCommandHandler::HandleDeckControl(const cec_command &command)
230{
aa40e0e2
LOK
231 CCECPlaybackDevice *device = CCECBusDevice::AsPlaybackDevice(GetDevice(command.destination));
232 if (device && command.parameters.size > 0)
a9232a79 233 {
aa40e0e2 234 device->SetDeckControlMode((cec_deck_control_mode) command.parameters[0]);
a9232a79
LOK
235 return true;
236 }
237
238 return false;
239}
240
6a1c0009
LOK
241bool 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
e9de9629
LOK
253bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command)
254{
0b8c7eab 255 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
1d2cc194 256 m_processor->TransmitAbort(command.destination, command.initiator, command.opcode, CEC_ABORT_REASON_REFUSED);
6b72afcd 257
6a1c0009 258 return true;
e9de9629
LOK
259}
260
261bool CCECCommandHandler::HandleDeviceVendorId(const cec_command &command)
262{
8fa35473 263 return SetVendorId(command);
e9de9629
LOK
264}
265
4d738fe3
LOK
266bool CCECCommandHandler::HandleFeatureAbort(const cec_command &command)
267{
69a1a673
LOK
268 if (command.parameters.size == 2 &&
269 (command.parameters[1] == CEC_ABORT_REASON_UNRECOGNIZED_OPCODE ||
270 command.parameters[1] == CEC_ABORT_REASON_REFUSED))
004b8382 271 m_processor->GetDevice(command.initiator)->SetUnsupportedFeature((cec_opcode)command.parameters[0]);
7de6ad36 272 return true;
4d738fe3
LOK
273}
274
e9de9629
LOK
275bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)
276{
0b8c7eab 277 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd
LOK
278 {
279 CCECBusDevice *device = GetDevice(command.destination);
280 if (device)
281 return device->TransmitCECVersion(command.initiator);
282 }
0f23c85c
LOK
283
284 return false;
e9de9629
LOK
285}
286
a1f8fb1b
LOK
287bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command &command)
288{
0b8c7eab 289 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd 290 {
aa40e0e2
LOK
291 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
292 if (device)
293 return device->TransmitAudioStatus(command.initiator);
6b72afcd 294 }
a1f8fb1b
LOK
295
296 return false;
297}
298
e9de9629
LOK
299bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command &command)
300{
0b8c7eab 301 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd 302 {
aa40e0e2
LOK
303 CCECPlaybackDevice *device = CCECBusDevice::AsPlaybackDevice(GetDevice(command.destination));
304 if (device)
305 return device->TransmitDeckStatus(command.initiator);
6b72afcd 306 }
0f23c85c
LOK
307
308 return false;
e9de9629
LOK
309}
310
311bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
312{
0b8c7eab 313 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd
LOK
314 {
315 CCECBusDevice *device = GetDevice(command.destination);
316 if (device)
317 return device->TransmitPowerState(command.initiator);
318 }
0f23c85c
LOK
319
320 return false;
e9de9629
LOK
321}
322
323bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
324{
0b8c7eab 325 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd
LOK
326 {
327 CCECBusDevice *device = GetDevice(command.destination);
328 if (device)
329 return device->TransmitVendorID(command.initiator);
330 }
0f23c85c
LOK
331
332 return false;
e9de9629
LOK
333}
334
335bool CCECCommandHandler::HandleGiveOSDName(const cec_command &command)
336{
0b8c7eab 337 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd
LOK
338 {
339 CCECBusDevice *device = GetDevice(command.destination);
340 if (device)
341 return device->TransmitOSDName(command.initiator);
342 }
0f23c85c
LOK
343
344 return false;
e9de9629
LOK
345}
346
347bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command &command)
348{
0b8c7eab 349 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
6b72afcd
LOK
350 {
351 CCECBusDevice *device = GetDevice(command.destination);
352 if (device)
7656096e 353 return device->TransmitPhysicalAddress();
6b72afcd 354 }
09c10b66
LOK
355
356 return false;
e9de9629
LOK
357}
358
fbdea54c
MK
359bool CCECCommandHandler::HandleGiveMenuLanguage(const cec_command &command)
360{
0b8c7eab 361 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
fbdea54c
MK
362 {
363 CCECBusDevice *device = GetDevice(command.destination);
364 if (device)
365 return device->TransmitSetMenuLanguage(command.initiator);
366 }
367
368 return false;
369}
370
1a6669b8
LOK
371bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command &command)
372{
0b8c7eab 373 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
1a6669b8 374 {
aa40e0e2
LOK
375 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
376 if (device)
377 return device->TransmitSystemAudioModeStatus(command.initiator);
1a6669b8
LOK
378 }
379
380 return false;
381}
382
383bool CCECCommandHandler::HandleImageViewOn(const cec_command &command)
384{
004b8382 385 m_processor->GetDevice(command.initiator)->MarkAsActiveSource();
1a6669b8
LOK
386 return true;
387}
388
e9de9629
LOK
389bool CCECCommandHandler::HandleMenuRequest(const cec_command &command)
390{
0b8c7eab 391 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
0f23c85c 392 {
e1804a4e
LOK
393 CCECBusDevice *device = GetDevice(command.destination);
394 if (device)
6b72afcd 395 {
004b8382
LOK
396 CCECClient *client = device->GetClient();
397 if (client)
e1804a4e 398 {
004b8382
LOK
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 }
e1804a4e
LOK
409 }
410 return device->TransmitMenuState(command.initiator);
6b72afcd 411 }
15d1a84c
LOK
412 }
413
414 return false;
415}
416
d297cbd4
LOK
417bool CCECCommandHandler::HandlePoll(const cec_command &command)
418{
a75e3a5a 419 m_busDevice->HandlePoll(command.destination);
d297cbd4
LOK
420 return true;
421}
422
15d1a84c
LOK
423bool CCECCommandHandler::HandleReportAudioStatus(const cec_command &command)
424{
425 if (command.parameters.size == 1)
426 {
aa40e0e2
LOK
427 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
428 if (device)
6b72afcd 429 {
aa40e0e2 430 device->SetAudioStatus(command.parameters[0]);
15d1a84c 431 return true;
6b72afcd 432 }
0f23c85c
LOK
433 }
434 return false;
e9de9629
LOK
435}
436
907bd60f
LOK
437bool CCECCommandHandler::HandleReportPhysicalAddress(const cec_command &command)
438{
0bfce006 439 if (command.parameters.size == 3)
907bd60f
LOK
440 {
441 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
16b1e052 442 SetPhysicalAddress(command.initiator, iNewAddress);
907bd60f
LOK
443 }
444 return true;
445}
446
e55f3f70
LOK
447bool 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
e9de9629
LOK
458bool CCECCommandHandler::HandleRequestActiveSource(const cec_command &command)
459{
0b8c7eab 460 if (m_processor->CECInitialised())
5f316715 461 {
004b8382
LOK
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);
8747dd4f 464
5f316715 465 vector<CCECBusDevice *> devices;
f00ff009 466 for (size_t iDevicePtr = 0; iDevicePtr < GetMyDevices(devices); iDevicePtr++)
5f316715 467 devices[iDevicePtr]->TransmitActiveSource();
c4098482 468
5f316715
LOK
469 return true;
470 }
471 return false;
e9de9629
LOK
472}
473
474bool 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]);
e9de9629 480
0f23c85c
LOK
481 CCECBusDevice *device = GetDevice(command.initiator);
482 if (device)
9dc04b07 483 device->SetStreamPath(iNewAddress, iOldAddress);
e9de9629
LOK
484 }
485 return true;
486}
487
907bd60f
LOK
488bool 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]);
004b8382
LOK
493 CCECBusDevice *device = m_processor->GetDeviceByPhysicalAddress(iNewAddress);
494 if (device)
495 device->MarkAsActiveSource();
907bd60f 496 }
15d1a84c
LOK
497
498 return false;
907bd60f
LOK
499}
500
a3269a0a
LOK
501bool 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;
56701628 510 for (uint8_t iPtr = 0; iPtr < 4; iPtr++)
a3269a0a
LOK
511 language.language[iPtr] = command.parameters[iPtr];
512 language.language[3] = 0;
513 device->SetMenuLanguage(language);
15d1a84c
LOK
514 return true;
515 }
516 }
517 return false;
518}
519
520bool 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);
6b72afcd 534
15d1a84c 535 return true;
a3269a0a
LOK
536 }
537 }
15d1a84c 538 return false;
a3269a0a
LOK
539}
540
e9de9629
LOK
541bool CCECCommandHandler::HandleSetStreamPath(const cec_command &command)
542{
0b8c7eab 543 if (m_processor->CECInitialised() && command.parameters.size >= 2)
e9de9629 544 {
b6c7bc94 545 uint16_t iStreamAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
004b8382 546 LIB_CEC->AddLog(CEC_LOG_DEBUG, ">> %i sets stream path to physical address %04x", command.initiator, iStreamAddress);
72689600
LOK
547
548 /* one of the device handled by libCEC has been made active */
549 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamAddress);
004b8382
LOK
550 if (device && device->IsHandledByLibCEC())
551 device->ActivateSource();
e9de9629 552 }
15d1a84c 553 return false;
e9de9629
LOK
554}
555
aa517a0d 556bool CCECCommandHandler::HandleSystemAudioModeRequest(const cec_command &command)
e5e86c76 557{
0b8c7eab 558 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
e5e86c76 559 {
aa40e0e2
LOK
560 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.destination));
561 if (device)
aa517a0d
LOK
562 {
563 if (command.parameters.size >= 2)
564 {
565 device->SetPowerStatus(CEC_POWER_STATUS_ON);
aa40e0e2 566 device->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_ON);
aa517a0d
LOK
567 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
568 CCECBusDevice *newActiveDevice = GetDeviceByPhysicalAddress(iNewAddress);
569 if (newActiveDevice)
004b8382 570 newActiveDevice->MarkAsActiveSource();
aa40e0e2 571 return device->TransmitSetSystemAudioMode(command.initiator);
aa517a0d
LOK
572 }
573 else
574 {
aa40e0e2
LOK
575 device->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_OFF);
576 return device->TransmitSetSystemAudioMode(command.initiator);
aa517a0d
LOK
577 }
578 }
e5e86c76 579 }
6b72afcd 580 return false;
e5e86c76
LOK
581}
582
4d6b4433
LOK
583bool CCECCommandHandler::HandleStandby(const cec_command &command)
584{
585 CCECBusDevice *device = GetDevice(command.initiator);
586 if (device)
587 device->SetPowerStatus(CEC_POWER_STATUS_STANDBY);
6b72afcd 588
4d6b4433
LOK
589 return true;
590}
591
aa517a0d 592bool CCECCommandHandler::HandleSystemAudioModeStatus(const cec_command &command)
868dc71f 593{
aa517a0d 594 if (command.parameters.size == 1)
868dc71f 595 {
aa40e0e2
LOK
596 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
597 if (device)
aa517a0d 598 {
aa40e0e2 599 device->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
aa517a0d
LOK
600 return true;
601 }
602 }
603
604 return false;
605}
606
607bool CCECCommandHandler::HandleSetSystemAudioMode(const cec_command &command)
608{
609 if (command.parameters.size == 1)
610 {
aa40e0e2
LOK
611 CCECAudioSystem *device = CCECBusDevice::AsAudioSystem(GetDevice(command.initiator));
612 if (device)
aa517a0d 613 {
aa40e0e2 614 device->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
aa517a0d
LOK
615 return true;
616 }
868dc71f
LOK
617 }
618
619 return false;
620}
621
1a6669b8 622bool CCECCommandHandler::HandleTextViewOn(const cec_command &command)
cf0ecd85 623{
004b8382 624 m_processor->GetDevice(command.initiator)->MarkAsActiveSource();
1a6669b8 625 return true;
cf0ecd85
LOK
626}
627
e9de9629
LOK
628bool CCECCommandHandler::HandleUserControlPressed(const cec_command &command)
629{
0b8c7eab 630 if (m_processor->CECInitialised() &&
004b8382 631 m_processor->IsHandledByLibCEC(command.destination) &&
e33e0d75 632 command.parameters.size > 0)
e9de9629 633 {
004b8382
LOK
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
e9de9629 642 if (command.parameters[0] <= CEC_USER_CONTROL_CODE_MAX)
004b8382 643 client->SetCurrentButton((cec_user_control_code) command.parameters[0]);
e33e0d75
MK
644
645 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER ||
646 command.parameters[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION)
e9de9629 647 {
e33e0d75 648 bool bPowerOn(true);
e33e0d75
MK
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)
68391d4f 655 {
004b8382 656 cec_power_status status = device->GetCurrentPowerStatus();
e33e0d75
MK
657 bPowerOn = !(status == CEC_POWER_STATUS_ON || status == CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
658 }
659
660 if (bPowerOn)
661 {
004b8382 662 device->ActivateSource();
68391d4f 663 }
d1ab114f
LOK
664 else
665 {
004b8382 666 device->MarkAsInactiveSource();
e33e0d75
MK
667 device->TransmitInactiveSource();
668 device->SetMenuState(CEC_MENU_STATE_DEACTIVATED);
d1ab114f 669 }
e9de9629 670 }
e33e0d75
MK
671
672 return true;
e9de9629 673 }
15d1a84c 674 return false;
e9de9629
LOK
675}
676
677bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
678{
004b8382
LOK
679 CCECClient *client = m_processor->GetClient(command.destination);
680 if (client)
681 client->AddKey();
e9de9629
LOK
682 return true;
683}
684
1de6617c
LOK
685bool CCECCommandHandler::HandleVendorCommand(const cec_command & UNUSED(command))
686{
687 return true;
688}
689
e9de9629
LOK
690void CCECCommandHandler::UnhandledCommand(const cec_command &command)
691{
004b8382
LOK
692 LIB_CEC->AddLog(CEC_LOG_DEBUG, "unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
693
0b8c7eab 694 if (m_processor->CECInitialised() && m_processor->IsHandledByLibCEC(command.destination))
004b8382 695 m_processor->TransmitAbort(m_busDevice->GetLogicalAddress(), command.initiator, command.opcode, CEC_ABORT_REASON_UNRECOGNIZED_OPCODE);
0f23c85c
LOK
696}
697
6f14b512 698size_t CCECCommandHandler::GetMyDevices(vector<CCECBusDevice *> &devices) const
8747dd4f 699{
6f14b512 700 size_t iReturn(0);
8747dd4f 701
fcf10e27 702 cec_logical_addresses addresses = m_processor->GetLogicalAddresses();
d2d1660c 703 for (uint8_t iPtr = CECDEVICE_TV; iPtr < CECDEVICE_BROADCAST; iPtr++)
8747dd4f
LOK
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
0f23c85c
LOK
715CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
716{
004b8382 717 return m_processor->GetDevice(iLogicalAddress);
e9de9629 718}
6685ae07
LOK
719
720CCECBusDevice *CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
721{
fcf10e27 722 return m_processor->GetDeviceByPhysicalAddress(iPhysicalAddress);
6685ae07 723}
181b3475 724
8fa35473 725bool CCECCommandHandler::SetVendorId(const cec_command &command)
181b3475 726{
8fa35473 727 bool bChanged(false);
181b3475
LOK
728 if (command.parameters.size < 3)
729 {
004b8382 730 LIB_CEC->AddLog(CEC_LOG_WARNING, "invalid vendor ID received");
8fa35473 731 return bChanged;
181b3475
LOK
732 }
733
bae71306
LOK
734 uint64_t iVendorId = ((uint64_t)command.parameters[0] << 16) +
735 ((uint64_t)command.parameters[1] << 8) +
181b3475
LOK
736 (uint64_t)command.parameters[2];
737
738 CCECBusDevice *device = GetDevice((cec_logical_address) command.initiator);
739 if (device)
8fa35473
LOK
740 bChanged = device->SetVendorId(iVendorId);
741 return bChanged;
181b3475 742}
5e822b09 743
16b1e052
LOK
744void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress, uint16_t iNewAddress)
745{
004b8382 746 if (!m_processor->IsHandledByLibCEC(iAddress))
16b1e052 747 {
c0152c09
LOK
748 CCECBusDevice *otherDevice = m_processor->GetDeviceByPhysicalAddress(iNewAddress);
749 CCECClient *client = otherDevice ? otherDevice->GetClient() : NULL;
004b8382 750
c0152c09
LOK
751 CCECBusDevice *device = m_processor->GetDevice(iAddress);
752 if (device)
753 device->SetPhysicalAddress(iNewAddress);
754 else
16b1e052 755 {
c0152c09 756 LIB_CEC->AddLog(CEC_LOG_DEBUG, "device with logical address %X not found", iAddress);
16b1e052 757 }
c0152c09
LOK
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);
16b1e052
LOK
766 }
767}
855a3a98 768
f4698390
LOK
769bool 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
b64db02e 778bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
8fa35473
LOK
779{
780 cec_command command;
ae693aaa 781 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_IMAGE_VIEW_ON);
8fa35473 782
4fde2fd0 783 return Transmit(command);
8fa35473
LOK
784}
785
786bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator, const cec_logical_address iDestination)
787{
788 cec_command command;
ae693aaa 789 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_STANDBY);
8fa35473 790
4fde2fd0 791 return Transmit(command);
8fa35473
LOK
792}
793
5734016c
LOK
794bool 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
a75e3a5a 802bool CCECCommandHandler::TransmitRequestCecVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
803{
804 cec_command command;
ae693aaa 805 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_CEC_VERSION);
8fa35473 806
4fde2fd0 807 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
808}
809
a75e3a5a 810bool CCECCommandHandler::TransmitRequestMenuLanguage(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
811{
812 cec_command command;
ae693aaa 813 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_MENU_LANGUAGE);
8fa35473 814
4fde2fd0 815 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
816}
817
a75e3a5a 818bool CCECCommandHandler::TransmitRequestOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
819{
820 cec_command command;
ae693aaa 821 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_OSD_NAME);
8fa35473 822
4fde2fd0 823 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
824}
825
a75e3a5a 826bool CCECCommandHandler::TransmitRequestPhysicalAddress(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
827{
828 cec_command command;
ae693aaa 829 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS);
8fa35473 830
4fde2fd0 831 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
832}
833
a75e3a5a 834bool CCECCommandHandler::TransmitRequestPowerStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
835{
836 cec_command command;
ae693aaa 837 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS);
8fa35473 838
4fde2fd0 839 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
840}
841
a75e3a5a 842bool CCECCommandHandler::TransmitRequestVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWaitForResponse /* = true */)
8fa35473
LOK
843{
844 cec_command command;
ae693aaa 845 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
8fa35473 846
4fde2fd0 847 return Transmit(command, !bWaitForResponse);
8fa35473
LOK
848}
849
850bool CCECCommandHandler::TransmitActiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
851{
852 cec_command command;
ae693aaa 853 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE);
8fa35473
LOK
854 command.parameters.PushBack((uint8_t) ((iPhysicalAddress >> 8) & 0xFF));
855 command.parameters.PushBack((uint8_t) (iPhysicalAddress & 0xFF));
856
4fde2fd0 857 return Transmit(command);
8fa35473
LOK
858}
859
860bool CCECCommandHandler::TransmitCECVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_version cecVersion)
861{
862 cec_command command;
ae693aaa 863 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_CEC_VERSION);
8fa35473
LOK
864 command.parameters.PushBack((uint8_t)cecVersion);
865
4fde2fd0 866 return Transmit(command);
8fa35473
LOK
867}
868
869bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
870{
871 cec_command command;
ae693aaa 872 cec_command::Format(command, iInitiator, CECDEVICE_TV, CEC_OPCODE_INACTIVE_SOURCE);
8fa35473
LOK
873 command.parameters.PushBack((iPhysicalAddress >> 8) & 0xFF);
874 command.parameters.PushBack(iPhysicalAddress & 0xFF);
875
4fde2fd0 876 return Transmit(command);
8fa35473
LOK
877}
878
879bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_menu_state menuState)
880{
881 cec_command command;
ae693aaa 882 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_MENU_STATUS);
8fa35473
LOK
883 command.parameters.PushBack((uint8_t)menuState);
884
4fde2fd0 885 return Transmit(command);
8fa35473
LOK
886}
887
888bool CCECCommandHandler::TransmitOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, CStdString strDeviceName)
889{
890 cec_command command;
ae693aaa 891 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_NAME);
6f14b512 892 for (size_t iPtr = 0; iPtr < strDeviceName.length(); iPtr++)
8fa35473
LOK
893 command.parameters.PushBack(strDeviceName.at(iPtr));
894
4fde2fd0 895 return Transmit(command);
8fa35473
LOK
896}
897
898bool CCECCommandHandler::TransmitOSDString(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_display_control duration, const char *strMessage)
899{
900 cec_command command;
ae693aaa 901 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_STRING);
8fa35473
LOK
902 command.parameters.PushBack((uint8_t)duration);
903
6f14b512 904 size_t iLen = strlen(strMessage);
8fa35473
LOK
905 if (iLen > 13) iLen = 13;
906
6f14b512 907 for (size_t iPtr = 0; iPtr < iLen; iPtr++)
8fa35473
LOK
908 command.parameters.PushBack(strMessage[iPtr]);
909
4fde2fd0 910 return Transmit(command);
8fa35473
LOK
911}
912
913bool CCECCommandHandler::TransmitPhysicalAddress(const cec_logical_address iInitiator, uint16_t iPhysicalAddress, cec_device_type type)
914{
915 cec_command command;
ae693aaa 916 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS);
8fa35473
LOK
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
4fde2fd0 921 return Transmit(command);
fbdea54c
MK
922}
923
924bool 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
4fde2fd0 932 return Transmit(command);
8fa35473
LOK
933}
934
935bool CCECCommandHandler::TransmitPoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
936{
937 cec_command command;
ae693aaa 938 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_NONE);
8fa35473 939
4fde2fd0 940 return Transmit(command);
8fa35473
LOK
941}
942
943bool CCECCommandHandler::TransmitPowerState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_power_status state)
944{
945 cec_command command;
ae693aaa 946 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_POWER_STATUS);
8fa35473
LOK
947 command.parameters.PushBack((uint8_t) state);
948
4fde2fd0 949 return Transmit(command);
8fa35473
LOK
950}
951
952bool CCECCommandHandler::TransmitVendorID(const cec_logical_address iInitiator, uint64_t iVendorId)
953{
954 cec_command command;
ae693aaa 955 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_DEVICE_VENDOR_ID);
8fa35473
LOK
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
4fde2fd0 961 return Transmit(command);
8fa35473
LOK
962}
963
964bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, uint8_t state)
965{
966 cec_command command;
ae693aaa 967 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_AUDIO_STATUS);
8fa35473
LOK
968 command.parameters.PushBack(state);
969
4fde2fd0 970 return Transmit(command);
8fa35473
LOK
971}
972
973bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
974{
975 cec_command command;
ae693aaa 976 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_SYSTEM_AUDIO_MODE);
8fa35473
LOK
977 command.parameters.PushBack((uint8_t)state);
978
4fde2fd0 979 return Transmit(command);
8fa35473
LOK
980}
981
f42d3e0f
LOK
982bool 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
4fde2fd0 989 return Transmit(command);
f42d3e0f
LOK
990}
991
8fa35473
LOK
992bool CCECCommandHandler::TransmitSystemAudioModeStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
993{
994 cec_command command;
ae693aaa 995 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS);
8fa35473
LOK
996 command.parameters.PushBack((uint8_t)state);
997
4fde2fd0 998 return Transmit(command);
8fa35473
LOK
999}
1000
1001bool CCECCommandHandler::TransmitDeckStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_deck_info state)
1002{
1003 cec_command command;
ae693aaa 1004 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_DECK_STATUS);
8fa35473
LOK
1005 command.PushBack((uint8_t)state);
1006
4fde2fd0 1007 return Transmit(command);
8fa35473
LOK
1008}
1009
4bec9d79 1010bool CCECCommandHandler::TransmitKeypress(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
8fa35473
LOK
1011{
1012 cec_command command;
ae693aaa 1013 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_PRESSED);
8fa35473
LOK
1014 command.parameters.PushBack((uint8_t)key);
1015
4fde2fd0 1016 return Transmit(command, !bWait);
8fa35473
LOK
1017}
1018
4bec9d79 1019bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWait /* = true */)
8fa35473
LOK
1020{
1021 cec_command command;
ae693aaa 1022 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_RELEASE);
8fa35473 1023
4fde2fd0 1024 return Transmit(command, !bWait);
8fa35473
LOK
1025}
1026
4fde2fd0 1027bool CCECCommandHandler::Transmit(cec_command &command, bool bSuppressWait /* = false */)
8fa35473 1028{
b64db02e 1029 bool bReturn(false);
4fde2fd0
LOK
1030 cec_opcode expectedResponse(cec_command::GetResponseOpcode(command.opcode));
1031 bool bExpectResponse(expectedResponse != CEC_OPCODE_NONE && !bSuppressWait);
ae693aaa 1032 command.transmit_timeout = m_iTransmitTimeout;
ae693aaa 1033
7e4558f1
LOK
1034 if (command.initiator == CECDEVICE_UNKNOWN)
1035 {
004b8382 1036 LIB_CEC->AddLog(CEC_LOG_ERROR, "not transmitting a command without a valid initiator");
7e4558f1
LOK
1037 return bReturn;
1038 }
1039
ae693aaa 1040 {
6c0ccaa5 1041 uint8_t iTries(0), iMaxTries(!command.opcode_set ? 1 : m_iTransmitRetries + 1);
ec15344c 1042 while (!bReturn && ++iTries <= iMaxTries && !m_busDevice->IsUnsupportedFeature(command.opcode))
b64db02e 1043 {
99666519 1044 if ((bReturn = m_processor->Transmit(command)) == true)
19cbfa8f 1045 {
004b8382 1046 LIB_CEC->AddLog(CEC_LOG_DEBUG, "command transmitted");
4478bc79 1047 if (bExpectResponse)
24dd566c
LOK
1048 {
1049 bReturn = m_waitForResponse->Wait(expectedResponse);
004b8382 1050 LIB_CEC->AddLog(CEC_LOG_DEBUG, bReturn ? "expected response received (%X: %s)" : "expected response not received (%X: %s)", (int)expectedResponse, ToString(expectedResponse));
24dd566c 1051 }
19cbfa8f 1052 }
b64db02e 1053 }
ae693aaa 1054 }
8fa35473 1055
b64db02e 1056 return bReturn;
8fa35473 1057}
83be0701 1058
3e61b350 1059bool CCECCommandHandler::ActivateSource(void)
83be0701 1060{
c4287bcd 1061 if (m_busDevice->IsActiveSource() &&
004b8382 1062 m_busDevice->IsHandledByLibCEC())
c4287bcd 1063 {
b0015449
LOK
1064 {
1065 CLockObject lock(m_mutex);
1066 m_bActiveSourcePending = false;
1067 }
1068
c4287bcd
LOK
1069 m_busDevice->SetPowerStatus(CEC_POWER_STATUS_ON);
1070 m_busDevice->SetMenuState(CEC_MENU_STATE_ACTIVATED);
1071
b0015449
LOK
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 }
aa40e0e2
LOK
1080
1081 CCECPlaybackDevice *playbackDevice = m_busDevice->AsPlaybackDevice();
1082 if (playbackDevice && SendDeckStatusUpdateOnActiveSource())
1083 playbackDevice->TransmitDeckStatus(CECDEVICE_TV);
b0015449 1084
c4287bcd 1085 m_bHandlerInited = true;
83be0701 1086 }
7dc58c9f 1087 return true;
83be0701 1088}
b499cf16
LOK
1089
1090void CCECCommandHandler::SignalOpcode(cec_opcode opcode)
1091{
1092 m_waitForResponse->Received(opcode);
1093}
b0015449
LOK
1094
1095bool CCECCommandHandler::ActiveSourcePending(void)
1096{
1097 CLockObject lock(m_mutex);
1098 return m_bActiveSourcePending;
1099}