cec: updated changelog for v1.1.0
[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
LOK
41
42CCECCommandHandler::CCECCommandHandler(CCECBusDevice *busDevice)
43{
44 m_busDevice = busDevice;
45}
46
47bool CCECCommandHandler::HandleCommand(const cec_command &command)
48{
49 bool bHandled(true);
50
5e822b09 51 CStdString strLog;
62f5527d 52 strLog.Format(">> %s (%X) -> %s (%X): %s (%2X)", ToString(command.initiator), command.initiator, ToString(command.destination), command.destination, ToString(command.opcode), command.opcode);
5e822b09
LOK
53 m_busDevice->AddLog(CEC_LOG_NOTICE, strLog);
54
f8513317 55 if (m_busDevice->MyLogicalAddressContains(command.destination))
e9de9629
LOK
56 {
57 switch(command.opcode)
58 {
e55f3f70
LOK
59 case CEC_OPCODE_REPORT_POWER_STATUS:
60 HandleReportPowerStatus(command);
61 break;
6a1c0009
LOK
62 case CEC_OPCODE_CEC_VERSION:
63 HandleDeviceCecVersion(command);
64 break;
a3269a0a
LOK
65 case CEC_OPCODE_SET_MENU_LANGUAGE:
66 HandleSetMenuLanguage(command);
4d6b4433 67 /* pass to listeners */
a9e03a86 68 m_busDevice->GetProcessor()->AddCommand(command);
a3269a0a 69 break;
e9de9629
LOK
70 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
71 HandleGivePhysicalAddress(command);
72 break;
73 case CEC_OPCODE_GIVE_OSD_NAME:
74 HandleGiveOSDName(command);
75 break;
76 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
77 HandleGiveDeviceVendorId(command);
78 break;
79 case CEC_OPCODE_DEVICE_VENDOR_ID:
80 HandleDeviceVendorId(command);
81 break;
82 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
83 HandleDeviceVendorCommandWithId(command);
84 break;
85 case CEC_OPCODE_GIVE_DECK_STATUS:
86 HandleGiveDeckStatus(command);
87 break;
a9232a79
LOK
88 case CEC_OPCODE_DECK_CONTROL:
89 HandleDeckControl(command);
90 break;
e9de9629
LOK
91 case CEC_OPCODE_MENU_REQUEST:
92 HandleMenuRequest(command);
93 break;
94 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
95 HandleGiveDevicePowerStatus(command);
96 break;
97 case CEC_OPCODE_GET_CEC_VERSION:
98 HandleGetCecVersion(command);
99 break;
100 case CEC_OPCODE_USER_CONTROL_PRESSED:
101 HandleUserControlPressed(command);
102 break;
103 case CEC_OPCODE_USER_CONTROL_RELEASE:
104 HandleUserControlRelease(command);
105 break;
a1f8fb1b
LOK
106 case CEC_OPCODE_GIVE_AUDIO_STATUS:
107 HandleGiveAudioStatus(command);
108 break;
cf0ecd85
LOK
109 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
110 HandleGiveSystemAudioModeStatus(command);
111 break;
e5e86c76
LOK
112 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
113 HandleSetSystemAudioModeRequest(command);
114 break;
e9de9629
LOK
115 default:
116 UnhandledCommand(command);
4d6b4433 117 /* pass to listeners */
a9e03a86 118 m_busDevice->GetProcessor()->AddCommand(command);
e9de9629
LOK
119 bHandled = false;
120 break;
121 }
122 }
123 else if (command.destination == CECDEVICE_BROADCAST)
124 {
125 CStdString strLog;
126 switch (command.opcode)
127 {
a3269a0a
LOK
128 case CEC_OPCODE_SET_MENU_LANGUAGE:
129 HandleSetMenuLanguage(command);
4d6b4433 130 /* pass to listeners */
a9e03a86 131 m_busDevice->GetProcessor()->AddCommand(command);
a3269a0a 132 break;
e9de9629
LOK
133 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
134 HandleRequestActiveSource(command);
135 break;
136 case CEC_OPCODE_SET_STREAM_PATH:
137 HandleSetStreamPath(command);
138 break;
139 case CEC_OPCODE_ROUTING_CHANGE:
140 HandleRoutingChange(command);
141 break;
142 case CEC_OPCODE_DEVICE_VENDOR_ID:
143 HandleDeviceVendorId(command);
144 break;
145 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
146 HandleDeviceVendorCommandWithId(command);
147 break;
4d6b4433
LOK
148 case CEC_OPCODE_STANDBY:
149 HandleStandby(command);
150 /* pass to listeners */
151 m_busDevice->GetProcessor()->AddCommand(command);
152 break;
be5b0e24
LOK
153 case CEC_OPCODE_ACTIVE_SOURCE:
154 HandleActiveSource(command);
155 /* pass to listeners */
156 m_busDevice->GetProcessor()->AddCommand(command);
157 break;
e9de9629
LOK
158 default:
159 UnhandledCommand(command);
4d6b4433 160 /* pass to listeners */
a9e03a86 161 m_busDevice->GetProcessor()->AddCommand(command);
e9de9629
LOK
162 bHandled = false;
163 break;
164 }
165 }
166 else
167 {
168 CStdString strLog;
f8513317 169 strLog.Format("ignoring frame: we're not at destination %x", command.destination);
e9de9629
LOK
170 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
171 bHandled = false;
172 }
173
174 return bHandled;
175}
176
be5b0e24
LOK
177bool CCECCommandHandler::HandleActiveSource(const cec_command &command)
178{
179 if (command.parameters.size == 2)
180 {
181 uint16_t iAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
182 return m_busDevice->GetProcessor()->SetStreamPath(iAddress);
183 }
184
185 return true;
186}
187
a9232a79
LOK
188bool CCECCommandHandler::HandleDeckControl(const cec_command &command)
189{
190 CCECBusDevice *device = GetDevice(command.destination);
191 if (device && device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE && command.parameters.size > 0)
192 {
193 ((CCECPlaybackDevice *) device)->SetDeckControlMode((cec_deck_control_mode) command.parameters[0]);
194 return true;
195 }
196
197 return false;
198}
199
6a1c0009
LOK
200bool CCECCommandHandler::HandleDeviceCecVersion(const cec_command &command)
201{
202 if (command.parameters.size == 1)
203 {
204 CCECBusDevice *device = GetDevice(command.initiator);
205 if (device)
206 device->SetCecVersion((cec_version) command.parameters[0]);
207 }
208
209 return true;
210}
211
e9de9629
LOK
212bool CCECCommandHandler::HandleDeviceVendorCommandWithId(const cec_command &command)
213{
181b3475 214 SetVendorId(command);
c4098482 215 m_busDevice->GetProcessor()->TransmitAbort(command.initiator, command.opcode, CEC_ABORT_REASON_REFUSED);
6a1c0009 216 return true;
e9de9629
LOK
217}
218
219bool CCECCommandHandler::HandleDeviceVendorId(const cec_command &command)
220{
181b3475 221 SetVendorId(command);
6a1c0009 222 return true;
e9de9629
LOK
223}
224
225bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)
226{
f8513317 227 CCECBusDevice *device = GetDevice(command.destination);
0f23c85c 228 if (device)
29912296 229 return device->TransmitCECVersion(command.initiator);
0f23c85c
LOK
230
231 return false;
e9de9629
LOK
232}
233
a1f8fb1b
LOK
234bool CCECCommandHandler::HandleGiveAudioStatus(const cec_command &command)
235{
236 CCECBusDevice *device = GetDevice(command.destination);
237 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
238 return ((CCECAudioSystem *) device)->TransmitAudioStatus(command.initiator);
239
240 return false;
241}
242
e9de9629
LOK
243bool CCECCommandHandler::HandleGiveDeckStatus(const cec_command &command)
244{
f8513317 245 CCECBusDevice *device = GetDevice(command.destination);
28089abc
LOK
246 if (device && device->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
247 return ((CCECPlaybackDevice *) device)->TransmitDeckStatus(command.initiator);
0f23c85c
LOK
248
249 return false;
e9de9629
LOK
250}
251
252bool CCECCommandHandler::HandleGiveDevicePowerStatus(const cec_command &command)
253{
f8513317 254 CCECBusDevice *device = GetDevice(command.destination);
0f23c85c 255 if (device)
29912296 256 return device->TransmitPowerState(command.initiator);
0f23c85c
LOK
257
258 return false;
e9de9629
LOK
259}
260
261bool CCECCommandHandler::HandleGiveDeviceVendorId(const cec_command &command)
262{
f8513317 263 CCECBusDevice *device = GetDevice(command.destination);
0f23c85c 264 if (device)
29912296 265 return device->TransmitVendorID(command.initiator);
0f23c85c
LOK
266
267 return false;
e9de9629
LOK
268}
269
270bool CCECCommandHandler::HandleGiveOSDName(const cec_command &command)
271{
f8513317 272 CCECBusDevice *device = GetDevice(command.destination);
0f23c85c 273 if (device)
29912296 274 return device->TransmitOSDName(command.initiator);
0f23c85c
LOK
275
276 return false;
e9de9629
LOK
277}
278
279bool CCECCommandHandler::HandleGivePhysicalAddress(const cec_command &command)
280{
f8513317 281 CCECBusDevice *device = GetDevice(command.destination);
09c10b66 282 if (device)
29912296 283 return device->TransmitPhysicalAddress();
09c10b66
LOK
284
285 return false;
e9de9629
LOK
286}
287
288bool CCECCommandHandler::HandleMenuRequest(const cec_command &command)
289{
290 if (command.parameters[0] == CEC_MENU_REQUEST_TYPE_QUERY)
0f23c85c 291 {
f8513317 292 CCECBusDevice *device = GetDevice(command.destination);
0f23c85c 293 if (device)
29912296 294 return device->TransmitMenuState(command.initiator);
0f23c85c
LOK
295 }
296 return false;
e9de9629
LOK
297}
298
e55f3f70
LOK
299bool CCECCommandHandler::HandleReportPowerStatus(const cec_command &command)
300{
301 if (command.parameters.size == 1)
302 {
303 CCECBusDevice *device = GetDevice(command.initiator);
304 if (device)
305 device->SetPowerStatus((cec_power_status) command.parameters[0]);
306 }
307 return true;
308}
309
e9de9629
LOK
310bool CCECCommandHandler::HandleRequestActiveSource(const cec_command &command)
311{
312 CStdString strLog;
313 strLog.Format(">> %i requests active source", (uint8_t) command.initiator);
314 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
8747dd4f
LOK
315
316 vector<CCECBusDevice *> devices;
317 for (int iDevicePtr = (int)GetMyDevices(devices)-1; iDevicePtr >=0; iDevicePtr--)
318 devices[iDevicePtr]->TransmitActiveSource();
c4098482 319
8747dd4f 320 return true;
e9de9629
LOK
321}
322
323bool CCECCommandHandler::HandleRoutingChange(const cec_command &command)
324{
325 if (command.parameters.size == 4)
326 {
327 uint16_t iOldAddress = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
328 uint16_t iNewAddress = ((uint16_t)command.parameters[2] << 8) | ((uint16_t)command.parameters[3]);
e9de9629 329
0f23c85c
LOK
330 CCECBusDevice *device = GetDevice(command.initiator);
331 if (device)
9dc04b07 332 device->SetStreamPath(iNewAddress, iOldAddress);
e9de9629
LOK
333 }
334 return true;
335}
336
a3269a0a
LOK
337bool CCECCommandHandler::HandleSetMenuLanguage(const cec_command &command)
338{
339 if (command.parameters.size == 3)
340 {
341 CCECBusDevice *device = GetDevice(command.initiator);
342 if (device)
343 {
344 cec_menu_language language;
345 language.device = command.initiator;
56701628 346 for (uint8_t iPtr = 0; iPtr < 4; iPtr++)
a3269a0a
LOK
347 language.language[iPtr] = command.parameters[iPtr];
348 language.language[3] = 0;
349 device->SetMenuLanguage(language);
350 }
351 }
352 return true;
353}
354
e9de9629
LOK
355bool CCECCommandHandler::HandleSetStreamPath(const cec_command &command)
356{
357 if (command.parameters.size >= 2)
358 {
f2198ab5 359 uint16_t streamaddr = ((uint16_t)command.parameters[0] << 8) | ((uint16_t)command.parameters[1]);
e9de9629 360 CStdString strLog;
04437dcf 361 strLog.Format(">> %i sets stream path to physical address %04x", command.initiator, streamaddr);
e9de9629 362 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
04437dcf
LOK
363
364 return m_busDevice->GetProcessor()->SetStreamPath(streamaddr);
e9de9629
LOK
365 }
366 return true;
367}
368
e5e86c76
LOK
369bool CCECCommandHandler::HandleSetSystemAudioModeRequest(const cec_command &command)
370{
371 if (command.parameters.size >= 1)
372 {
373 CCECBusDevice *device = GetDevice(command.destination);
374 if (device&& device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
375 return ((CCECAudioSystem *) device)->SetSystemAudioMode(command);
376 }
377 return true;
378}
379
4d6b4433
LOK
380bool CCECCommandHandler::HandleStandby(const cec_command &command)
381{
382 CCECBusDevice *device = GetDevice(command.initiator);
383 if (device)
384 device->SetPowerStatus(CEC_POWER_STATUS_STANDBY);
385 return true;
386}
387
cf0ecd85
LOK
388bool CCECCommandHandler::HandleGiveSystemAudioModeStatus(const cec_command &command)
389{
390 CCECBusDevice *device = GetDevice(command.destination);
391 if (device && device->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
392 return ((CCECAudioSystem *) device)->TransmitSystemAudioModeStatus(command.initiator);
393
394 return false;
395}
396
e9de9629
LOK
397bool CCECCommandHandler::HandleUserControlPressed(const cec_command &command)
398{
399 if (command.parameters.size > 0)
400 {
401 m_busDevice->GetProcessor()->AddKey();
402
403 if (command.parameters[0] <= CEC_USER_CONTROL_CODE_MAX)
404 {
405 CStdString strLog;
68391d4f 406 strLog.Format("key pressed: %x", command.parameters[0]);
e9de9629
LOK
407 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog.c_str());
408
68391d4f
LOK
409 if (command.parameters[0] == CEC_USER_CONTROL_CODE_POWER ||
410 command.parameters[0] == CEC_USER_CONTROL_CODE_POWER_ON_FUNCTION)
411 {
412 CCECBusDevice *device = GetDevice(command.destination);
413 if (device)
414 device->SetPowerStatus(CEC_POWER_STATUS_ON);
415 }
416
e9de9629
LOK
417 m_busDevice->GetProcessor()->SetCurrentButton((cec_user_control_code) command.parameters[0]);
418 }
419 }
420 return true;
421}
422
423bool CCECCommandHandler::HandleUserControlRelease(const cec_command &command)
424{
425 m_busDevice->GetProcessor()->AddKey();
426 return true;
427}
428
429void CCECCommandHandler::UnhandledCommand(const cec_command &command)
430{
b5b53c7d
LOK
431 CStdString strLog;
432 strLog.Format("unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
433 m_busDevice->AddLog(CEC_LOG_DEBUG, strLog);
0f23c85c
LOK
434}
435
8747dd4f
LOK
436unsigned int CCECCommandHandler::GetMyDevices(vector<CCECBusDevice *> &devices) const
437{
438 unsigned int iReturn(0);
439
440 cec_logical_addresses addresses = m_busDevice->GetProcessor()->GetLogicalAddresses();
f2198ab5 441 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
8747dd4f
LOK
442 {
443 if (addresses[iPtr])
444 {
445 devices.push_back(GetDevice((cec_logical_address) iPtr));
446 ++iReturn;
447 }
448 }
449
450 return iReturn;
451}
452
0f23c85c
LOK
453CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const
454{
455 CCECBusDevice *device = NULL;
456
457 if (iLogicalAddress >= CECDEVICE_TV && iLogicalAddress <= CECDEVICE_BROADCAST)
458 device = m_busDevice->GetProcessor()->m_busDevices[iLogicalAddress];
459
460 return device;
e9de9629 461}
6685ae07
LOK
462
463CCECBusDevice *CCECCommandHandler::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress) const
464{
8ac9c610 465 return m_busDevice->GetProcessor()->GetDeviceByPhysicalAddress(iPhysicalAddress);
6685ae07 466}
181b3475 467
c4098482
LOK
468CCECBusDevice *CCECCommandHandler::GetDeviceByType(cec_device_type type) const
469{
470 return m_busDevice->GetProcessor()->GetDeviceByType(type);
471}
472
181b3475
LOK
473void CCECCommandHandler::SetVendorId(const cec_command &command)
474{
475 if (command.parameters.size < 3)
476 {
477 m_busDevice->AddLog(CEC_LOG_WARNING, "invalid vendor ID received");
478 return;
479 }
480
bae71306
LOK
481 uint64_t iVendorId = ((uint64_t)command.parameters[0] << 16) +
482 ((uint64_t)command.parameters[1] << 8) +
181b3475
LOK
483 (uint64_t)command.parameters[2];
484
485 CCECBusDevice *device = GetDevice((cec_logical_address) command.initiator);
486 if (device)
c4098482 487 device->SetVendorId(iVendorId);
181b3475 488}
5e822b09 489
28fa6c97
LOK
490const char *CCECCommandHandler::ToString(const cec_menu_state state)
491{
492 switch (state)
493 {
494 case CEC_MENU_STATE_ACTIVATED:
495 return "activated";
496 case CEC_MENU_STATE_DEACTIVATED:
497 return "deactivated";
498 default:
499 return "unknown";
500 }
501}
502
c686413b
LOK
503const char *CCECCommandHandler::ToString(const cec_version version)
504{
505 switch (version)
506 {
507 case CEC_VERSION_1_2:
508 return "1.2";
509 case CEC_VERSION_1_2A:
510 return "1.2a";
511 case CEC_VERSION_1_3:
512 return "1.3";
513 case CEC_VERSION_1_3A:
514 return "1.3a";
c4098482
LOK
515 case CEC_VERSION_1_4:
516 return "1.4";
c686413b
LOK
517 default:
518 return "unknown";
519 }
520}
521
66c16b69
LOK
522const char *CCECCommandHandler::ToString(const cec_power_status status)
523{
524 switch (status)
525 {
526 case CEC_POWER_STATUS_ON:
527 return "on";
528 case CEC_POWER_STATUS_STANDBY:
529 return "standby";
530 case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY:
531 return "in transition from on to standby";
532 case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON:
533 return "in transition from standby to on";
534 default:
535 return "unknown";
536 }
537}
538
62f5527d
LOK
539const char *CCECCommandHandler::ToString(const cec_logical_address address)
540{
541 switch(address)
542 {
543 case CECDEVICE_AUDIOSYSTEM:
544 return "Audio";
545 case CECDEVICE_BROADCAST:
546 return "Broadcast";
547 case CECDEVICE_FREEUSE:
548 return "Free use";
549 case CECDEVICE_PLAYBACKDEVICE1:
550 return "Playback 1";
551 case CECDEVICE_PLAYBACKDEVICE2:
552 return "Playback 2";
553 case CECDEVICE_PLAYBACKDEVICE3:
554 return "Playback 3";
555 case CECDEVICE_RECORDINGDEVICE1:
556 return "Recorder 1";
557 case CECDEVICE_RECORDINGDEVICE2:
558 return "Recorder 2";
559 case CECDEVICE_RECORDINGDEVICE3:
560 return "Recorder 3";
561 case CECDEVICE_RESERVED1:
562 return "Reserved 1";
563 case CECDEVICE_RESERVED2:
564 return "Reserved 2";
565 case CECDEVICE_TUNER1:
566 return "Tuner 1";
567 case CECDEVICE_TUNER2:
568 return "Tuner 2";
569 case CECDEVICE_TUNER3:
570 return "Tuner 3";
571 case CECDEVICE_TUNER4:
572 return "Tuner 4";
573 case CECDEVICE_TV:
574 return "TV";
575 default:
576 return "unknown";
577 }
578}
579
a9232a79
LOK
580const char *CCECCommandHandler::ToString(const cec_deck_control_mode mode)
581{
582 switch (mode)
583 {
584 case CEC_DECK_CONTROL_MODE_SKIP_FORWARD_WIND:
585 return "skip forward wind";
586 case CEC_DECK_CONTROL_MODE_EJECT:
587 return "eject";
588 case CEC_DECK_CONTROL_MODE_SKIP_REVERSE_REWIND:
589 return "reverse rewind";
590 case CEC_DECK_CONTROL_MODE_STOP:
591 return "stop";
592 default:
593 return "unknown";
594 }
595}
596
8ac9c610
LOK
597const char *CCECCommandHandler::ToString(const cec_deck_info status)
598{
599 switch (status)
600 {
601 case CEC_DECK_INFO_PLAY:
602 return "play";
603 case CEC_DECK_INFO_RECORD:
604 return "record";
605 case CEC_DECK_INFO_PLAY_REVERSE:
606 return "play reverse";
607 case CEC_DECK_INFO_STILL:
608 return "still";
609 case CEC_DECK_INFO_SLOW:
610 return "slow";
611 case CEC_DECK_INFO_SLOW_REVERSE:
612 return "slow reverse";
613 case CEC_DECK_INFO_FAST_FORWARD:
614 return "fast forward";
615 case CEC_DECK_INFO_FAST_REVERSE:
616 return "fast reverse";
617 case CEC_DECK_INFO_NO_MEDIA:
618 return "no media";
619 case CEC_DECK_INFO_STOP:
620 return "stop";
621 case CEC_DECK_INFO_SKIP_FORWARD_WIND:
622 return "info skip forward wind";
623 case CEC_DECK_INFO_SKIP_REVERSE_REWIND:
624 return "info skip reverse rewind";
625 case CEC_DECK_INFO_INDEX_SEARCH_FORWARD:
626 return "info index search forward";
627 case CEC_DECK_INFO_INDEX_SEARCH_REVERSE:
628 return "info index search reverse";
629 case CEC_DECK_INFO_OTHER_STATUS:
630 return "other";
631 default:
632 return "unknown";
633 }
634}
635
5e822b09
LOK
636const char *CCECCommandHandler::ToString(const cec_opcode opcode)
637{
638 switch (opcode)
639 {
640 case CEC_OPCODE_ACTIVE_SOURCE:
641 return "active source";
642 case CEC_OPCODE_IMAGE_VIEW_ON:
643 return "image view on";
644 case CEC_OPCODE_TEXT_VIEW_ON:
645 return "text view on";
646 case CEC_OPCODE_INACTIVE_SOURCE:
647 return "inactive source";
648 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
649 return "request active source";
650 case CEC_OPCODE_ROUTING_CHANGE:
651 return "routing change";
652 case CEC_OPCODE_ROUTING_INFORMATION:
653 return "routing information";
654 case CEC_OPCODE_SET_STREAM_PATH:
655 return "set stream path";
656 case CEC_OPCODE_STANDBY:
657 return "standby";
658 case CEC_OPCODE_RECORD_OFF:
659 return "record off";
660 case CEC_OPCODE_RECORD_ON:
661 return "record on";
662 case CEC_OPCODE_RECORD_STATUS:
663 return "record status";
664 case CEC_OPCODE_RECORD_TV_SCREEN:
665 return "record tv screen";
666 case CEC_OPCODE_CLEAR_ANALOGUE_TIMER:
667 return "clear analogue timer";
668 case CEC_OPCODE_CLEAR_DIGITAL_TIMER:
669 return "clear digital timer";
670 case CEC_OPCODE_CLEAR_EXTERNAL_TIMER:
671 return "clear external timer";
672 case CEC_OPCODE_SET_ANALOGUE_TIMER:
673 return "set analogue timer";
674 case CEC_OPCODE_SET_DIGITAL_TIMER:
675 return "set digital timer";
676 case CEC_OPCODE_SET_EXTERNAL_TIMER:
677 return "set external timer";
678 case CEC_OPCODE_SET_TIMER_PROGRAM_TITLE:
679 return "set timer program title";
680 case CEC_OPCODE_TIMER_CLEARED_STATUS:
681 return "timer cleared status";
682 case CEC_OPCODE_TIMER_STATUS:
683 return "timer status";
684 case CEC_OPCODE_CEC_VERSION:
685 return "cec version";
686 case CEC_OPCODE_GET_CEC_VERSION:
687 return "get cec version";
688 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
689 return "give physical address";
690 case CEC_OPCODE_GET_MENU_LANGUAGE:
691 return "get menu language";
692 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
693 return "report physical address";
694 case CEC_OPCODE_SET_MENU_LANGUAGE:
695 return "set menu language";
696 case CEC_OPCODE_DECK_CONTROL:
697 return "deck control";
698 case CEC_OPCODE_DECK_STATUS:
699 return "deck status";
700 case CEC_OPCODE_GIVE_DECK_STATUS:
701 return "give deck status";
702 case CEC_OPCODE_PLAY:
703 return "play";
704 case CEC_OPCODE_GIVE_TUNER_DEVICE_STATUS:
705 return "give tuner status";
706 case CEC_OPCODE_SELECT_ANALOGUE_SERVICE:
707 return "select analogue service";
708 case CEC_OPCODE_SELECT_DIGITAL_SERVICE:
709 return "set digital service";
710 case CEC_OPCODE_TUNER_DEVICE_STATUS:
711 return "tuner device status";
712 case CEC_OPCODE_TUNER_STEP_DECREMENT:
713 return "tuner step decrement";
714 case CEC_OPCODE_TUNER_STEP_INCREMENT:
715 return "tuner step increment";
716 case CEC_OPCODE_DEVICE_VENDOR_ID:
717 return "device vendor id";
718 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
719 return "give device vendor id";
720 case CEC_OPCODE_VENDOR_COMMAND:
721 return "vendor command";
722 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
723 return "vendor command with id";
724 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN:
725 return "vendor remote button down";
726 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP:
727 return "vendor remote button up";
728 case CEC_OPCODE_SET_OSD_STRING:
729 return "set osd string";
730 case CEC_OPCODE_GIVE_OSD_NAME:
731 return "give osd name";
732 case CEC_OPCODE_SET_OSD_NAME:
733 return "set osd name";
734 case CEC_OPCODE_MENU_REQUEST:
735 return "menu request";
736 case CEC_OPCODE_MENU_STATUS:
737 return "menu status";
738 case CEC_OPCODE_USER_CONTROL_PRESSED:
739 return "user control pressed";
740 case CEC_OPCODE_USER_CONTROL_RELEASE:
741 return "user control release";
742 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
743 return "give device power status";
744 case CEC_OPCODE_REPORT_POWER_STATUS:
745 return "report power status";
746 case CEC_OPCODE_FEATURE_ABORT:
747 return "feature abort";
748 case CEC_OPCODE_ABORT:
749 return "abort";
750 case CEC_OPCODE_GIVE_AUDIO_STATUS:
751 return "give audio status";
752 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
753 return "give audio mode status";
754 case CEC_OPCODE_REPORT_AUDIO_STATUS:
755 return "report audio status";
756 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
757 return "set system audio mode";
758 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
759 return "system audio mode request";
760 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
761 return "system audio mode status";
762 case CEC_OPCODE_SET_AUDIO_RATE:
763 return "set audio rate";
764 default:
765 return "UNKNOWN";
766 }
767}
c4098482
LOK
768
769const char *CCECCommandHandler::ToString(const cec_system_audio_status mode)
770{
771 switch(mode)
772 {
773 case CEC_SYSTEM_AUDIO_STATUS_ON:
774 return "on";
775 case CEC_SYSTEM_AUDIO_STATUS_OFF:
776 return "off";
777 default:
778 return "unknown";
779 }
780}
781
782const char *CCECCommandHandler::ToString(const cec_audio_status status)
783{
784 // TODO this is a mask
785 return "TODO";
786}
787
788const char *CCECCommandHandler::ToString(const cec_vendor_id vendor)
789{
790 switch (vendor)
791 {
792 case CEC_VENDOR_SAMSUNG:
793 return "Samsung";
794 case CEC_VENDOR_LG:
795 return "LG";
796 case CEC_VENDOR_PANASONIC:
797 return "Panasonic";
798 case CEC_VENDOR_PIONEER:
799 return "Pioneer";
800 default:
801 return "Unknown";
802 }
803}