cec: don't send deck status updates when sending an active source message for samsung
[deb_libcec.git] / src / lib / implementations / CECCommandHandler.cpp
CommitLineData
e9de9629
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
33#include "CECCommandHandler.h"
eafa9d46 34#include "../devices/CECBusDevice.h"
a1f8fb1b 35#include "../devices/CECAudioSystem.h"
28089abc 36#include "../devices/CECPlaybackDevice.h"
387b6f6f 37#include "../CECProcessor.h"
e9de9629
LOK
38
39using namespace CEC;
8747dd4f 40using namespace std;
e9de9629 41
8fa35473
LOK
42CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice) :
43 m_busDevice(busDevice),
44 m_processor(m_busDevice->GetProcessor()),
ae693aaa
LOK
45 m_iTransmitTimeout(CEC_DEFAULT_TRANSMIT_TIMEOUT),
46 m_iTransmitWait(CEC_DEFAULT_TRANSMIT_WAIT),
89a726fa 47 m_iTransmitRetries(CEC_DEFAULT_TRANSMIT_RETRIES),
b64db02e 48 m_bHandlerInited(false),
446c0cfc 49 m_iUseCounter(0),
7b74fdfb 50 m_expectedResponse(CEC_OPCODE_NONE),
cf4931be
LOK
51 m_bOPTSendDeckStatusUpdateOnActiveSource(true),
52 m_vendorId(CEC_VENDOR_UNKNOWN)
e9de9629 53{
8fa35473
LOK
54}
55
56CCECCommandHandler::~CCECCommandHandler(void)
57{
b64db02e
LOK
58 CLockObject lock(&m_processor->m_transmitMutex);
59 CLockObject receiveLock(&m_receiveMutex);
8fa35473 60 m_condition.Broadcast();
e9de9629
LOK
61}
62
63bool CCECCommandHandler::HandleCommand(const cec_command &command)
64{
3e61b350 65 bool bHandled(true);
e9de9629 66
b64db02e 67 MarkBusy();
5e822b09 68 CStdString strLog;
fcf10e27 69 strLog.Format(">> %s (%X) -> %s (%X): %s (%2X)", m_processor->ToString(command.initiator), command.initiator, m_processor->ToString(command.destination), command.destination, m_processor->ToString(command.opcode), command.opcode);
5e822b09
LOK
70 m_busDevice->AddLog(CEC_LOG_NOTICE, strLog);
71
855a3a98
LOK
72 m_processor->AddCommand(command);
73
6b72afcd 74 switch(command.opcode)
e9de9629 75 {
6b72afcd
LOK
76 case CEC_OPCODE_REPORT_POWER_STATUS:
77 HandleReportPowerStatus(command);
78 break;
79 case CEC_OPCODE_CEC_VERSION:
80 HandleDeviceCecVersion(command);
81 break;
82 case CEC_OPCODE_SET_MENU_LANGUAGE:
83 HandleSetMenuLanguage(command);
84 break;
85 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
3e61b350
LOK
86 if (m_processor->IsInitialised())
87 HandleGivePhysicalAddress(command);
6b72afcd
LOK
88 break;
89 case CEC_OPCODE_GIVE_OSD_NAME:
3e61b350
LOK
90 if (m_processor->IsInitialised())
91 HandleGiveOSDName(command);
6b72afcd
LOK
92 break;
93 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
3e61b350
LOK
94 if (m_processor->IsInitialised())
95 HandleGiveDeviceVendorId(command);
6b72afcd
LOK
96 break;
97 case CEC_OPCODE_DEVICE_VENDOR_ID:
3e61b350 98 HandleDeviceVendorId(command);
6b72afcd
LOK
99 break;
100 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
101 HandleDeviceVendorCommandWithId(command);
102 break;
103 case CEC_OPCODE_GIVE_DECK_STATUS:
3e61b350
LOK
104 if (m_processor->IsInitialised())
105 HandleGiveDeckStatus(command);
6b72afcd
LOK
106 break;
107 case CEC_OPCODE_DECK_CONTROL:
108 HandleDeckControl(command);
109 break;
110 case CEC_OPCODE_MENU_REQUEST:
3e61b350
LOK
111 if (m_processor->IsInitialised())
112 HandleMenuRequest(command);
6b72afcd
LOK
113 break;
114 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
3e61b350
LOK
115 if (m_processor->IsInitialised())
116 HandleGiveDevicePowerStatus(command);
6b72afcd
LOK
117 break;
118 case CEC_OPCODE_GET_CEC_VERSION:
3e61b350
LOK
119 if (m_processor->IsInitialised())
120 HandleGetCecVersion(command);
6b72afcd
LOK
121 break;
122 case CEC_OPCODE_USER_CONTROL_PRESSED:
3e61b350
LOK
123 if (m_processor->IsInitialised())
124 HandleUserControlPressed(command);
6b72afcd
LOK
125 break;
126 case CEC_OPCODE_USER_CONTROL_RELEASE:
3e61b350
LOK
127 if (m_processor->IsInitialised())
128 HandleUserControlRelease(command);
6b72afcd
LOK
129 break;
130 case CEC_OPCODE_GIVE_AUDIO_STATUS:
3e61b350
LOK
131 if (m_processor->IsInitialised())
132 HandleGiveAudioStatus(command);
6b72afcd
LOK
133 break;
134 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
3e61b350
LOK
135 if (m_processor->IsInitialised())
136 HandleGiveSystemAudioModeStatus(command);
6b72afcd
LOK
137 break;
138 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
3e61b350
LOK
139 if (m_processor->IsInitialised())
140 HandleSystemAudioModeRequest(command);
aa517a0d
LOK
141 break;
142 case CEC_OPCODE_REPORT_AUDIO_STATUS:
855a3a98 143 HandleReportAudioStatus(command);
aa517a0d
LOK
144 break;
145 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
855a3a98 146 HandleSystemAudioModeStatus(command);
aa517a0d
LOK
147 break;
148 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
855a3a98 149 HandleSetSystemAudioMode(command);
6b72afcd
LOK
150 break;
151 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
3e61b350
LOK
152 if (m_processor->IsInitialised())
153 HandleRequestActiveSource(command);
6b72afcd
LOK
154 break;
155 case CEC_OPCODE_SET_STREAM_PATH:
156 HandleSetStreamPath(command);
157 break;
158 case CEC_OPCODE_ROUTING_CHANGE:
159 HandleRoutingChange(command);
160 break;
907bd60f
LOK
161 case CEC_OPCODE_ROUTING_INFORMATION:
162 HandleRoutingInformation(command);
163 break;
6b72afcd 164 case CEC_OPCODE_STANDBY:
3e61b350
LOK
165 if (m_processor->IsInitialised())
166 HandleStandby(command);
6b72afcd
LOK
167 break;
168 case CEC_OPCODE_ACTIVE_SOURCE:
169 HandleActiveSource(command);
170 break;
907bd60f
LOK
171 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
172 HandleReportPhysicalAddress(command);
173 break;
15d1a84c
LOK
174 case CEC_OPCODE_SET_OSD_NAME:
175 HandleSetOSDName(command);
176 break;
1a6669b8
LOK
177 case CEC_OPCODE_IMAGE_VIEW_ON:
178 HandleImageViewOn(command);
179 break;
180 case CEC_OPCODE_TEXT_VIEW_ON:
181 HandleTextViewOn(command);
182 break;
4d738fe3
LOK
183 case CEC_OPCODE_FEATURE_ABORT:
184 HandleFeatureAbort(command);
185 break;
468a1414
LOK
186 case CEC_OPCODE_VENDOR_COMMAND:
187 HandleVendorCommand(command);
188 break;
6b72afcd
LOK
189 default:
190 UnhandledCommand(command);
e9de9629 191 bHandled = false;
6b72afcd 192 break;
e9de9629
LOK
193 }
194
3e61b350 195 if (bHandled)
8fa35473 196 {
6359ffd1 197 CLockObject lock(&m_receiveMutex);
446c0cfc
LOK
198 if (m_expectedResponse == CEC_OPCODE_NONE ||
199 m_expectedResponse == command.opcode)
200 m_condition.Signal();
8fa35473
LOK
201 }
202
b64db02e 203 MarkReady();
e9de9629
LOK
204 return bHandled;
205}
206
be5b0e24
LOK
207bool CCECCommandHandler::HandleActiveSource(const cec_command &command)
208{
209 if (command.parameters.size == 2)
210 {
211 uint16_t iAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
37b0c572 212 return m_processor->SetActiveSource(iAddress);
be5b0e24
LOK
213 }
214
215 return true;
216}
217
a9232a79
LOK
218bool CCECCommandHandler::HandleDeckControl(const cec_command &command)
219{
220 CCECBusDevice *device = GetDevice(command.destination);
88e5de6f 221 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE) && command.parameters.size > 0)
a9232a79
LOK
222 {
223 ((CCECPlaybackDevice *) device)->SetDeckControlMode((cec_deck_control_mode) command.parameters[0]);
224 return true;
225 }
226
227 return false;
228}
229
6a1c0009
LOK
230bool CCECCommandHandler::HandleDeviceCecVersion(const cec_command &command)
231{
232 if (command.parameters.size == 1)
233 {
234 CCECBusDevice *device = GetDevice(command.initiator);
235 if (device)
236 device->SetCecVersion((cec_version) command.parameters[0]);
237 }
238
239 return true;
240}
241
e9de9629
LOK
242bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command)
243{
5f316715 244 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
fcf10e27 245 m_processor->TransmitAbort(command.initiator, command.opcode, CEC_ABORT_REASON_REFUSED);
6b72afcd 246
6a1c0009 247 return true;
e9de9629
LOK
248}
249
250bool CCECCommandHandler::HandleDeviceVendorId(const cec_command &command)
251{
8fa35473 252 return SetVendorId(command);
e9de9629
LOK
253}
254
4d738fe3
LOK
255bool CCECCommandHandler::HandleFeatureAbort(const cec_command &command)
256{
257 if (command.parameters.size == 2)
258 {
259 m_processor->m_busDevices[command.initiator]->SetUnsupportedFeature((cec_opcode)command.parameters[0]);
260 }
7de6ad36 261 return true;
4d738fe3
LOK
262}
263
e9de9629
LOK
264bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)
265{
5f316715 266 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
267 {
268 CCECBusDevice *device = GetDevice(command.destination);
269 if (device)
270 return device->TransmitCECVersion(command.initiator);
271 }
0f23c85c
LOK
272
273 return false;
e9de9629
LOK
274}
275
a1f8fb1b
LOK
276bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command &command)
277{
5f316715 278 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
279 {
280 CCECBusDevice *device = GetDevice(command.destination);
281 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
282 return ((CCECAudioSystem *) device)->TransmitAudioStatus(command.initiator);
283 }
a1f8fb1b
LOK
284
285 return false;
286}
287
e9de9629
LOK
288bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command &command)
289{
5f316715 290 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
291 {
292 CCECBusDevice *device = GetDevice(command.destination);
293 if (device && (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE))
294 return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator);
295 }
0f23c85c
LOK
296
297 return false;
e9de9629
LOK
298}
299
300bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
301{
5f316715 302 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
303 {
304 CCECBusDevice *device = GetDevice(command.destination);
305 if (device)
306 return device->TransmitPowerState(command.initiator);
307 }
0f23c85c
LOK
308
309 return false;
e9de9629
LOK
310}
311
312bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
313{
5f316715 314 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
315 {
316 CCECBusDevice *device = GetDevice(command.destination);
317 if (device)
318 return device->TransmitVendorID(command.initiator);
319 }
0f23c85c
LOK
320
321 return false;
e9de9629
LOK
322}
323
324bool CCECCommandHandler::HandleGiveOSDName(const cec_command &command)
325{
5f316715 326 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
327 {
328 CCECBusDevice *device = GetDevice(command.destination);
329 if (device)
330 return device->TransmitOSDName(command.initiator);
331 }
0f23c85c
LOK
332
333 return false;
e9de9629
LOK
334}
335
336bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command &command)
337{
5f316715 338 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
6b72afcd
LOK
339 {
340 CCECBusDevice *device = GetDevice(command.destination);
341 if (device)
3c20db73
LOK
342 {
343 device->SetActiveSource();
344 return device->TransmitPhysicalAddress() &&
345 device->TransmitActiveSource();
346 }
6b72afcd 347 }
09c10b66
LOK
348
349 return false;
e9de9629
LOK
350}
351
1a6669b8
LOK
352bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command &command)
353{
5f316715 354 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
1a6669b8
LOK
355 {
356 CCECBusDevice *device = GetDevice(command.destination);
357 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
358 return ((CCECAudioSystem *) device)->TransmitSystemAudioModeStatus(command.initiator);
359 }
360
361 return false;
362}
363
364bool CCECCommandHandler::HandleImageViewOn(const cec_command &command)
365{
37b0c572 366 m_processor->m_busDevices[command.initiator]->SetActiveSource();
1a6669b8
LOK
367 return true;
368}
369
e9de9629
LOK
370bool CCECCommandHandler::HandleMenuRequest(const cec_command &command)
371{
5f316715 372 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
0f23c85c 373 {
6b72afcd
LOK
374 if (command.parameters[0] == CEC_MENU_REQUEST_TYPE_QUERY)
375 {
376 CCECBusDevice *device = GetDevice(command.destination);
377 if (device)
378 return device->TransmitMenuState(command.initiator);
379 }
15d1a84c
LOK
380 }
381
382 return false;
383}
384
385bool CCECCommandHandler::HandleReportAudioStatus(const cec_command &command)
386{
387 if (command.parameters.size == 1)
388 {
389 CCECBusDevice *device = GetDevice(command.initiator);
390 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
6b72afcd 391 {
15d1a84c
LOK
392 ((CCECAudioSystem *)device)->SetAudioStatus(command.parameters[0]);
393 return true;
6b72afcd 394 }
0f23c85c
LOK
395 }
396 return false;
e9de9629
LOK
397}
398
907bd60f
LOK
399bool CCECCommandHandler::HandleReportPhysicalAddress(const cec_command &command)
400{
0bfce006 401 if (command.parameters.size == 3)
907bd60f
LOK
402 {
403 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
16b1e052 404 SetPhysicalAddress(command.initiator, iNewAddress);
907bd60f
LOK
405 }
406 return true;
407}
408
e55f3f70
LOK
409bool CCECCommandHandler::HandleReportPowerStatus(const cec_command &command)
410{
411 if (command.parameters.size == 1)
412 {
413 CCECBusDevice *device = GetDevice(command.initiator);
414 if (device)
415 device->SetPowerStatus((cec_power_status) command.parameters[0]);
416 }
417 return true;
418}
419
e9de9629
LOK
420bool CCECCommandHandler::HandleRequestActiveSource(const cec_command &command)
421{
5f316715
LOK
422 if (m_processor->IsStarted())
423 {
424 CStdString strLog;
425 strLog.Format(">> %i requests active source", (uint8_t) command.initiator);
426 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
8747dd4f 427
5f316715
LOK
428 vector<CCECBusDevice *> devices;
429 for (int iDevicePtr = (int)GetMyDevices(devices)-1; iDevicePtr >=0; iDevicePtr--)
430 devices[iDevicePtr]->TransmitActiveSource();
c4098482 431
5f316715
LOK
432 return true;
433 }
434 return false;
e9de9629
LOK
435}
436
437bool CCECCommandHandler::HandleRoutingChange(const cec_command &command)
438{
439 if (command.parameters.size == 4)
440 {
441 uint16_t iOldAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
442 uint16_t iNewAddress = ((uint16_t)command.parameters[2] << 8) | ((uint16_t)command.parameters[3]);
e9de9629 443
0f23c85c
LOK
444 CCECBusDevice *device = GetDevice(command.initiator);
445 if (device)
9dc04b07 446 device->SetStreamPath(iNewAddress, iOldAddress);
e9de9629
LOK
447 }
448 return true;
449}
450
907bd60f
LOK
451bool CCECCommandHandler::HandleRoutingInformation(const cec_command &command)
452{
453 if (command.parameters.size == 2)
454 {
455 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
37b0c572 456 m_processor->SetActiveSource(iNewAddress);
907bd60f 457 }
15d1a84c
LOK
458
459 return false;
907bd60f
LOK
460}
461
a3269a0a
LOK
462bool CCECCommandHandler::HandleSetMenuLanguage(const cec_command &command)
463{
464 if (command.parameters.size == 3)
465 {
466 CCECBusDevice *device = GetDevice(command.initiator);
467 if (device)
468 {
469 cec_menu_language language;
470 language.device = command.initiator;
56701628 471 for (uint8_t iPtr = 0; iPtr < 4; iPtr++)
a3269a0a
LOK
472 language.language[iPtr] = command.parameters[iPtr];
473 language.language[3] = 0;
474 device->SetMenuLanguage(language);
15d1a84c
LOK
475 return true;
476 }
477 }
478 return false;
479}
480
481bool CCECCommandHandler::HandleSetOSDName(const cec_command &command)
482{
483 if (command.parameters.size > 0)
484 {
485 CCECBusDevice *device = GetDevice(command.initiator);
486 if (device)
487 {
488 char buf[1024];
489 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
490 buf[iPtr] = (char)command.parameters[iPtr];
491 buf[command.parameters.size] = 0;
492
493 CStdString strName(buf);
494 device->SetOSDName(strName);
6b72afcd 495
15d1a84c 496 return true;
a3269a0a
LOK
497 }
498 }
15d1a84c 499 return false;
a3269a0a
LOK
500}
501
e9de9629
LOK
502bool CCECCommandHandler::HandleSetStreamPath(const cec_command &command)
503{
5f316715 504 if (m_processor->IsStarted() && command.parameters.size >= 2)
e9de9629 505 {
b6c7bc94 506 uint16_t iStreamAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
e9de9629 507 CStdString strLog;
b6c7bc94 508 strLog.Format(">> %i sets stream path to physical address %04x", command.initiator, iStreamAddress);
e9de9629 509 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
72689600
LOK
510
511 /* one of the device handled by libCEC has been made active */
512 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamAddress);
513 if (device && m_busDevice->MyLogicalAddressContains(device->GetLogicalAddress()))
514 {
515 device->SetActiveSource();
516 device->TransmitActiveSource();
517 }
e9de9629 518 }
15d1a84c 519 return false;
e9de9629
LOK
520}
521
aa517a0d 522bool CCECCommandHandler::HandleSystemAudioModeRequest(const cec_command &command)
e5e86c76 523{
5f316715 524 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
e5e86c76
LOK
525 {
526 CCECBusDevice *device = GetDevice(command.destination);
aa517a0d
LOK
527 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
528 {
529 if (command.parameters.size >= 2)
530 {
531 device->SetPowerStatus(CEC_POWER_STATUS_ON);
532 ((CCECAudioSystem *) device)->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_ON);
533 uint16_t iNewAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
534 CCECBusDevice *newActiveDevice = GetDeviceByPhysicalAddress(iNewAddress);
535 if (newActiveDevice)
37b0c572 536 newActiveDevice->SetActiveSource();
aa517a0d
LOK
537 return ((CCECAudioSystem *) device)->TransmitSetSystemAudioMode(command.initiator);
538 }
539 else
540 {
541 ((CCECAudioSystem *) device)->SetSystemAudioModeStatus(CEC_SYSTEM_AUDIO_STATUS_OFF);
542 return ((CCECAudioSystem *) device)->TransmitSetSystemAudioMode(command.initiator);
543 }
544 }
e5e86c76 545 }
6b72afcd 546 return false;
e5e86c76
LOK
547}
548
4d6b4433
LOK
549bool CCECCommandHandler::HandleStandby(const cec_command &command)
550{
551 CCECBusDevice *device = GetDevice(command.initiator);
552 if (device)
553 device->SetPowerStatus(CEC_POWER_STATUS_STANDBY);
6b72afcd 554
4d6b4433
LOK
555 return true;
556}
557
aa517a0d 558bool CCECCommandHandler::HandleSystemAudioModeStatus(const cec_command &command)
868dc71f 559{
aa517a0d 560 if (command.parameters.size == 1)
868dc71f 561 {
aa517a0d
LOK
562 CCECBusDevice *device = GetDevice(command.initiator);
563 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
564 {
565 ((CCECAudioSystem *)device)->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
566 return true;
567 }
568 }
569
570 return false;
571}
572
573bool CCECCommandHandler::HandleSetSystemAudioMode(const cec_command &command)
574{
575 if (command.parameters.size == 1)
576 {
577 CCECBusDevice *device = GetDevice(command.initiator);
578 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
579 {
580 ((CCECAudioSystem *)device)->SetSystemAudioModeStatus((cec_system_audio_status)command.parameters[0]);
581 return true;
582 }
868dc71f
LOK
583 }
584
585 return false;
586}
587
1a6669b8 588bool CCECCommandHandler::HandleTextViewOn(const cec_command &command)
cf0ecd85 589{
37b0c572 590 m_processor->m_busDevices[command.initiator]->SetActiveSource();
1a6669b8 591 return true;
cf0ecd85
LOK
592}
593
e9de9629
LOK
594bool CCECCommandHandler::HandleUserControlPressed(const cec_command &command)
595{
5f316715 596 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination) && command.parameters.size > 0)
e9de9629 597 {
fcf10e27 598 m_processor->AddKey();
e9de9629
LOK
599
600 if (command.parameters[0] <= CEC_USER_CONTROL_CODE_MAX)
601 {
602 CStdString strLog;
68391d4f 603 strLog.Format("key pressed: %x", command.parameters[0]);
e9de9629
LOK
604 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
605
68391d4f
LOK
606 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER ||
607 command.parameters[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION)
608 {
609 CCECBusDevice *device = GetDevice(command.destination);
610 if (device)
3fd2a2b8 611 {
68391d4f 612 device->SetPowerStatus(CEC_POWER_STATUS_ON);
3fd2a2b8
LOK
613 if (device->MyLogicalAddressContains(device->GetLogicalAddress()))
614 {
615 device->SetActiveSource();
616 device->TransmitActiveSource();
617
618 if (device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE ||
619 device->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE)
620 ((CCECPlaybackDevice *)device)->TransmitDeckStatus(command.initiator);
621 }
622 }
68391d4f 623 }
d1ab114f
LOK
624 else
625 {
626 m_processor->SetCurrentButton((cec_user_control_code) command.parameters[0]);
627 }
15d1a84c 628 return true;
e9de9629
LOK
629 }
630 }
15d1a84c 631 return false;
e9de9629
LOK
632}
633
634bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
635{
5f316715 636 if (m_processor->IsStarted() && m_busDevice->MyLogicalAddressContains(command.destination))
fcf10e27 637 m_processor->AddKey();
6b72afcd 638
e9de9629
LOK
639 return true;
640}
641
642void CCECCommandHandler::UnhandledCommand(const cec_command &command)
643{
b5b53c7d
LOK
644 CStdString strLog;
645 strLog.Format("unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
646 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog);
0f23c85c
LOK
647}
648
8747dd4f
LOK
649unsigned int CCECCommandHandler::GetMyDevices(vector<CCECBusDevice *> &devices) const
650{
651 unsigned int iReturn(0);
652
fcf10e27 653 cec_logical_addresses addresses = m_processor->GetLogicalAddresses();
f2198ab5 654 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
8747dd4f
LOK
655 {
656 if (addresses[iPtr])
657 {
658 devices.push_back(GetDevice((cec_logical_address) iPtr));
659 ++iReturn;
660 }
661 }
662
663 return iReturn;
664}
665
0f23c85c
LOK
666CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
667{
668 CCECBusDevice *device = NULL;
669
670 if (iLogicalAddress >= CECDEVICE_TV && iLogicalAddress <= CECDEVICE_BROADCAST)
fcf10e27 671 device = m_processor->m_busDevices[iLogicalAddress];
0f23c85c
LOK
672
673 return device;
e9de9629 674}
6685ae07
LOK
675
676CCECBusDevice *CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
677{
fcf10e27 678 return m_processor->GetDeviceByPhysicalAddress(iPhysicalAddress);
6685ae07 679}
181b3475 680
c4098482
LOK
681CCECBusDevice *CCECCommandHandler::GetDeviceByType(cec_device_type type) const
682{
fcf10e27 683 return m_processor->GetDeviceByType(type);
c4098482
LOK
684}
685
8fa35473 686bool CCECCommandHandler::SetVendorId(const cec_command &command)
181b3475 687{
8fa35473 688 bool bChanged(false);
181b3475
LOK
689 if (command.parameters.size < 3)
690 {
691 m_busDevice->AddLog(CEC_LOG_WARNING, "invalid vendor ID received");
8fa35473 692 return bChanged;
181b3475
LOK
693 }
694
bae71306
LOK
695 uint64_t iVendorId = ((uint64_t)command.parameters[0] << 16) +
696 ((uint64_t)command.parameters[1] << 8) +
181b3475
LOK
697 (uint64_t)command.parameters[2];
698
699 CCECBusDevice *device = GetDevice((cec_logical_address) command.initiator);
700 if (device)
8fa35473
LOK
701 bChanged = device->SetVendorId(iVendorId);
702 return bChanged;
181b3475 703}
5e822b09 704
16b1e052
LOK
705void CCECCommandHandler::SetPhysicalAddress(cec_logical_address iAddress, uint16_t iNewAddress)
706{
707 if (!m_busDevice->MyLogicalAddressContains(iAddress))
708 {
fcf10e27 709 bool bOurAddress(m_processor->GetPhysicalAddress() == iNewAddress);
16b1e052
LOK
710 GetDevice(iAddress)->SetPhysicalAddress(iNewAddress);
711 if (bOurAddress)
712 {
713 /* another device reported the same physical address as ours
714 * since we don't have physical address detection yet, we'll just use the
715 * given address, increased by 0x100 for now */
fcf10e27 716 m_processor->SetPhysicalAddress(iNewAddress + 0x100);
16b1e052
LOK
717 }
718 }
719}
855a3a98
LOK
720
721void CCECCommandHandler::HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
722{
723 CStdString strLog;
724 strLog.Format("<< POLL: %s (%x) -> %s (%x)", m_processor->ToString(iInitiator), iInitiator, m_processor->ToString(iDestination), iDestination);
725 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
726}
727
728bool CCECCommandHandler::HandleReceiveFailed(void)
729{
730 /* default = error */
731 return true;
732}
8fa35473 733
b64db02e 734bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator, const cec_logical_address iDestination)
8fa35473
LOK
735{
736 cec_command command;
ae693aaa 737 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_IMAGE_VIEW_ON);
8fa35473 738
19cbfa8f 739 return Transmit(command, false);
8fa35473
LOK
740}
741
742bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator, const cec_logical_address iDestination)
743{
744 cec_command command;
ae693aaa 745 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_STANDBY);
8fa35473 746
19cbfa8f 747 return Transmit(command, false);
8fa35473
LOK
748}
749
750bool CCECCommandHandler::TransmitRequestCecVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination)
751{
752 cec_command command;
ae693aaa 753 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_CEC_VERSION);
8fa35473 754
5e526919 755 return Transmit(command, true, CEC_OPCODE_CEC_VERSION);
8fa35473
LOK
756}
757
758bool CCECCommandHandler::TransmitRequestMenuLanguage(const cec_logical_address iInitiator, const cec_logical_address iDestination)
759{
760 cec_command command;
ae693aaa 761 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GET_MENU_LANGUAGE);
8fa35473 762
5e526919 763 return Transmit(command, true, CEC_OPCODE_SET_MENU_LANGUAGE);
8fa35473
LOK
764}
765
766bool CCECCommandHandler::TransmitRequestOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination)
767{
768 cec_command command;
ae693aaa 769 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_OSD_NAME);
8fa35473 770
5e526919 771 return Transmit(command, true, CEC_OPCODE_SET_OSD_NAME);
8fa35473
LOK
772}
773
774bool CCECCommandHandler::TransmitRequestPhysicalAddress(const cec_logical_address iInitiator, const cec_logical_address iDestination)
775{
776 cec_command command;
ae693aaa 777 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS);
8fa35473 778
5e526919 779 return Transmit(command, true, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS);
8fa35473
LOK
780}
781
782bool CCECCommandHandler::TransmitRequestPowerStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination)
783{
784 cec_command command;
ae693aaa 785 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS);
8fa35473 786
5e526919 787 return Transmit(command, true, CEC_OPCODE_REPORT_POWER_STATUS);
8fa35473
LOK
788}
789
790bool CCECCommandHandler::TransmitRequestVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination)
791{
792 cec_command command;
ae693aaa 793 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
8fa35473 794
5e526919 795 return Transmit(command, true, CEC_OPCODE_DEVICE_VENDOR_ID);
8fa35473
LOK
796}
797
798bool CCECCommandHandler::TransmitActiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
799{
800 cec_command command;
ae693aaa 801 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE);
8fa35473
LOK
802 command.parameters.PushBack((uint8_t) ((iPhysicalAddress >> 8) & 0xFF));
803 command.parameters.PushBack((uint8_t) (iPhysicalAddress & 0xFF));
804
19cbfa8f 805 return Transmit(command, false);
8fa35473
LOK
806}
807
808bool CCECCommandHandler::TransmitCECVersion(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_version cecVersion)
809{
810 cec_command command;
ae693aaa 811 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_CEC_VERSION);
8fa35473
LOK
812 command.parameters.PushBack((uint8_t)cecVersion);
813
19cbfa8f 814 return Transmit(command, false);
8fa35473
LOK
815}
816
817bool CCECCommandHandler::TransmitInactiveSource(const cec_logical_address iInitiator, uint16_t iPhysicalAddress)
818{
819 cec_command command;
ae693aaa 820 cec_command::Format(command, iInitiator, CECDEVICE_TV, CEC_OPCODE_INACTIVE_SOURCE);
8fa35473
LOK
821 command.parameters.PushBack((iPhysicalAddress >> 8) & 0xFF);
822 command.parameters.PushBack(iPhysicalAddress & 0xFF);
823
19cbfa8f 824 return Transmit(command, false);
8fa35473
LOK
825}
826
827bool CCECCommandHandler::TransmitMenuState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_menu_state menuState)
828{
829 cec_command command;
ae693aaa 830 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_MENU_STATUS);
8fa35473
LOK
831 command.parameters.PushBack((uint8_t)menuState);
832
19cbfa8f 833 return Transmit(command, false);
8fa35473
LOK
834}
835
836bool CCECCommandHandler::TransmitOSDName(const cec_logical_address iInitiator, const cec_logical_address iDestination, CStdString strDeviceName)
837{
838 cec_command command;
ae693aaa 839 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_NAME);
8fa35473
LOK
840 for (unsigned int iPtr = 0; iPtr < strDeviceName.length(); iPtr++)
841 command.parameters.PushBack(strDeviceName.at(iPtr));
842
19cbfa8f 843 return Transmit(command, false);
8fa35473
LOK
844}
845
846bool CCECCommandHandler::TransmitOSDString(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_display_control duration, const char *strMessage)
847{
848 cec_command command;
ae693aaa 849 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_OSD_STRING);
8fa35473
LOK
850 command.parameters.PushBack((uint8_t)duration);
851
852 unsigned int iLen = strlen(strMessage);
853 if (iLen > 13) iLen = 13;
854
855 for (unsigned int iPtr = 0; iPtr < iLen; iPtr++)
856 command.parameters.PushBack(strMessage[iPtr]);
857
19cbfa8f 858 return Transmit(command, false);
8fa35473
LOK
859}
860
861bool CCECCommandHandler::TransmitPhysicalAddress(const cec_logical_address iInitiator, uint16_t iPhysicalAddress, cec_device_type type)
862{
863 cec_command command;
ae693aaa 864 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS);
8fa35473
LOK
865 command.parameters.PushBack((uint8_t) ((iPhysicalAddress >> 8) & 0xFF));
866 command.parameters.PushBack((uint8_t) (iPhysicalAddress & 0xFF));
867 command.parameters.PushBack((uint8_t) (type));
868
19cbfa8f 869 return Transmit(command, false);
8fa35473
LOK
870}
871
872bool CCECCommandHandler::TransmitPoll(const cec_logical_address iInitiator, const cec_logical_address iDestination)
873{
874 cec_command command;
ae693aaa 875 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_NONE);
8fa35473 876
ae693aaa 877 return Transmit(command, false);
8fa35473
LOK
878}
879
880bool CCECCommandHandler::TransmitPowerState(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_power_status state)
881{
882 cec_command command;
ae693aaa 883 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_POWER_STATUS);
8fa35473
LOK
884 command.parameters.PushBack((uint8_t) state);
885
19cbfa8f 886 return Transmit(command, false);
8fa35473
LOK
887}
888
889bool CCECCommandHandler::TransmitVendorID(const cec_logical_address iInitiator, uint64_t iVendorId)
890{
891 cec_command command;
ae693aaa 892 cec_command::Format(command, iInitiator, CECDEVICE_BROADCAST, CEC_OPCODE_DEVICE_VENDOR_ID);
8fa35473
LOK
893
894 command.parameters.PushBack((uint8_t) (((uint64_t)iVendorId >> 16) & 0xFF));
895 command.parameters.PushBack((uint8_t) (((uint64_t)iVendorId >> 8) & 0xFF));
896 command.parameters.PushBack((uint8_t) ((uint64_t)iVendorId & 0xFF));
897
19cbfa8f 898 return Transmit(command, false);
8fa35473
LOK
899}
900
901bool CCECCommandHandler::TransmitAudioStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, uint8_t state)
902{
903 cec_command command;
ae693aaa 904 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_REPORT_AUDIO_STATUS);
8fa35473
LOK
905 command.parameters.PushBack(state);
906
19cbfa8f 907 return Transmit(command, false);
8fa35473
LOK
908}
909
910bool CCECCommandHandler::TransmitSetSystemAudioMode(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
911{
912 cec_command command;
ae693aaa 913 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SET_SYSTEM_AUDIO_MODE);
8fa35473
LOK
914 command.parameters.PushBack((uint8_t)state);
915
19cbfa8f 916 return Transmit(command, false);
8fa35473
LOK
917}
918
919bool CCECCommandHandler::TransmitSystemAudioModeStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_system_audio_status state)
920{
921 cec_command command;
ae693aaa 922 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS);
8fa35473
LOK
923 command.parameters.PushBack((uint8_t)state);
924
19cbfa8f 925 return Transmit(command, false);
8fa35473
LOK
926}
927
928bool CCECCommandHandler::TransmitDeckStatus(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_deck_info state)
929{
930 cec_command command;
ae693aaa 931 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_DECK_STATUS);
8fa35473
LOK
932 command.PushBack((uint8_t)state);
933
19cbfa8f 934 return Transmit(command, false);
8fa35473
LOK
935}
936
4bec9d79 937bool CCECCommandHandler::TransmitKeypress(const cec_logical_address iInitiator, const cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
8fa35473
LOK
938{
939 cec_command command;
ae693aaa 940 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_PRESSED);
8fa35473
LOK
941 command.parameters.PushBack((uint8_t)key);
942
4bec9d79 943 return Transmit(command, bWait);
8fa35473
LOK
944}
945
4bec9d79 946bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWait /* = true */)
8fa35473
LOK
947{
948 cec_command command;
ae693aaa 949 cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_RELEASE);
8fa35473 950
4bec9d79 951 return Transmit(command, bWait);
8fa35473
LOK
952}
953
446c0cfc 954bool CCECCommandHandler::Transmit(cec_command &command, bool bExpectResponse /* = true */, cec_opcode expectedResponse /* = CEC_OPCODE_NONE */)
8fa35473 955{
b64db02e 956 bool bReturn(false);
3e61b350 957 MarkBusy();
ae693aaa 958 command.transmit_timeout = m_iTransmitTimeout;
ae693aaa 959
ae693aaa 960 {
861832f6 961 uint8_t iTries(0), iMaxTries(command.opcode == CEC_OPCODE_NONE ? 1 : m_iTransmitRetries + 1);
b64db02e
LOK
962 CLockObject writeLock(&m_processor->m_transmitMutex);
963 CLockObject receiveLock(&m_receiveMutex);
964 ++m_iUseCounter;
19cbfa8f 965 while (!bReturn && ++iTries <= iMaxTries)
b64db02e 966 {
446c0cfc 967 m_expectedResponse = expectedResponse;
19cbfa8f
LOK
968 if (m_processor->Transmit(command))
969 {
970 m_processor->AddLog(CEC_LOG_DEBUG, "command transmitted");
971 bReturn = bExpectResponse ?
972 m_condition.Wait(&m_receiveMutex, m_iTransmitWait) :
973 true;
974 }
b64db02e
LOK
975 }
976 --m_iUseCounter;
ae693aaa 977 }
8fa35473 978
3e61b350 979 MarkReady();
b64db02e 980 return bReturn;
8fa35473 981}
83be0701 982
3e61b350 983bool CCECCommandHandler::ActivateSource(void)
83be0701
LOK
984{
985 if (m_busDevice->GetLogicalAddress() == CECDEVICE_TV)
986 {
842262d8 987 CCECBusDevice *primary = m_processor->GetPrimaryDevice();
6b1eea98
LOK
988 primary->SetPowerStatus(CEC_POWER_STATUS_ON);
989 primary->SetMenuState(CEC_MENU_STATE_ACTIVATED);
990
89a726fa
LOK
991 if (m_processor->GetPrimaryDevice()->GetPhysicalAddress(false) != 0xffff)
992 {
993 m_processor->SetActiveSource();
994 primary->TransmitMenuState(m_busDevice->GetLogicalAddress());
995 m_bHandlerInited = true;
996 }
83be0701 997 }
7dc58c9f 998 return true;
83be0701 999}
b64db02e
LOK
1000
1001void CCECCommandHandler::MarkBusy(void)
1002{
1003 CLockObject receiveLock(&m_receiveMutex);
1004 ++m_iUseCounter;
1005}
1006
1007bool CCECCommandHandler::MarkReady(void)
1008{
1009 CLockObject receiveLock(&m_receiveMutex);
1010 return m_iUseCounter > 0 ? (--m_iUseCounter == 0) : true;
1011}
1012
1013bool CCECCommandHandler::InUse(void)
1014{
1015 CLockObject receiveLock(&m_receiveMutex);
1016 return m_iUseCounter > 0;
1017}