8c0aca8164d20cc18c987a080cd365611a2b1271
[deb_libcec.git] / src / lib / LibCEC.cpp
1 /*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2012 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 "LibCEC.h"
34
35 #include "adapter/USBCECAdapterDetection.h"
36 #include "adapter/USBCECAdapterCommunication.h"
37 #include "CECProcessor.h"
38 #include "devices/CECBusDevice.h"
39 #include "platform/util/timeutils.h"
40 #include "platform/util/StdString.h"
41
42 using namespace std;
43 using namespace CEC;
44 using namespace PLATFORM;
45
46 CLibCEC::CLibCEC(const char *strDeviceName, cec_device_type_list types, uint16_t iPhysicalAddress /* = 0 */) :
47 m_iStartTime(GetTimeMs()),
48 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
49 m_buttontime(0),
50 m_callbacks(NULL),
51 m_cbParam(NULL)
52 {
53 m_cec = new CCECProcessor(this, strDeviceName, types, iPhysicalAddress);
54 }
55
56 CLibCEC::CLibCEC(libcec_configuration *configuration) :
57 m_iStartTime(GetTimeMs()),
58 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
59 m_buttontime(0),
60 m_callbacks(configuration->callbacks),
61 m_cbParam(configuration->callbackParam)
62 {
63 configuration->serverVersion = CEC_SERVER_VERSION_1_6_1;
64 m_cec = new CCECProcessor(this, configuration);
65 }
66
67 CLibCEC::~CLibCEC(void)
68 {
69 delete m_cec;
70 }
71
72 bool CLibCEC::Open(const char *strPort, uint32_t iTimeoutMs /* = 10000 */)
73 {
74 if (m_cec->IsRunning())
75 {
76 AddLog(CEC_LOG_ERROR, "connection already open");
77 return false;
78 }
79
80 if (!m_cec->Start(strPort, 38400, iTimeoutMs))
81 {
82 AddLog(CEC_LOG_ERROR, "could not start CEC communications");
83 return false;
84 }
85
86 return true;
87 }
88
89 void CLibCEC::Close(void)
90 {
91 if (m_cec)
92 m_cec->Close();
93 }
94
95 bool CLibCEC::EnableCallbacks(void *cbParam, ICECCallbacks *callbacks)
96 {
97 CLockObject lock(m_mutex);
98 if (m_cec)
99 {
100 m_cbParam = cbParam;
101 m_callbacks = callbacks;
102 }
103 return false;
104 }
105
106 int8_t CLibCEC::FindAdapters(cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath /* = NULL */)
107 {
108 CStdString strDebug;
109 if (strDevicePath)
110 strDebug.Format("trying to autodetect the com port for device path '%s'", strDevicePath);
111 else
112 strDebug.Format("trying to autodetect all CEC adapters");
113 AddLog(CEC_LOG_DEBUG, strDebug);
114
115 return CUSBCECAdapterDetection::FindAdapters(deviceList, iBufSize, strDevicePath);
116 }
117
118 bool CLibCEC::PingAdapter(void)
119 {
120 return m_cec ? m_cec->PingAdapter() : false;
121 }
122
123 bool CLibCEC::StartBootloader(void)
124 {
125 return m_cec ? m_cec->StartBootloader() : false;
126 }
127
128 bool CLibCEC::GetNextLogMessage(cec_log_message *message)
129 {
130 return (m_logBuffer.Pop(*message));
131 }
132
133 bool CLibCEC::GetNextKeypress(cec_keypress *key)
134 {
135 return m_keyBuffer.Pop(*key);
136 }
137
138 bool CLibCEC::GetNextCommand(cec_command *command)
139 {
140 return m_commandBuffer.Pop(*command);
141 }
142
143 bool CLibCEC::Transmit(const cec_command &data)
144 {
145 return m_cec ? m_cec->Transmit(data) : false;
146 }
147
148 bool CLibCEC::SetLogicalAddress(cec_logical_address iLogicalAddress)
149 {
150 return m_cec ? m_cec->SetLogicalAddress(iLogicalAddress) : false;
151 }
152
153 bool CLibCEC::SetPhysicalAddress(uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
154 {
155 return m_cec ? m_cec->SetPhysicalAddress(iPhysicalAddress) : false;
156 }
157
158 bool CLibCEC::SetHDMIPort(cec_logical_address iBaseDevice, uint8_t iPort /* = CEC_DEFAULT_HDMI_PORT */)
159 {
160 return m_cec ? m_cec->SetHDMIPort(iBaseDevice, iPort) : false;
161 }
162
163 bool CLibCEC::EnablePhysicalAddressDetection(void)
164 {
165 return m_cec ? m_cec->EnablePhysicalAddressDetection() : false;
166 }
167
168 bool CLibCEC::PowerOnDevices(cec_logical_address address /* = CECDEVICE_TV */)
169 {
170 return m_cec && address >= CECDEVICE_TV && address <= CECDEVICE_BROADCAST ? m_cec->PowerOnDevices(address) : false;
171 }
172
173 bool CLibCEC::StandbyDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
174 {
175 return m_cec && address >= CECDEVICE_TV && address <= CECDEVICE_BROADCAST ? m_cec->StandbyDevices(address) : false;
176 }
177
178 bool CLibCEC::SetActiveSource(cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
179 {
180 return m_cec ? m_cec->SetActiveSource(type) : false;
181 }
182
183 bool CLibCEC::SetActiveView(void)
184 {
185 return m_cec ? m_cec->SetActiveView() : false;
186 }
187
188 bool CLibCEC::SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate /* = true */)
189 {
190 return m_cec ? m_cec->SetDeckControlMode(mode, bSendUpdate) : false;
191 }
192
193 bool CLibCEC::SetDeckInfo(cec_deck_info info, bool bSendUpdate /* = true */)
194 {
195 return m_cec ? m_cec->SetDeckInfo(info, bSendUpdate) : false;
196 }
197
198 bool CLibCEC::SetInactiveView(void)
199 {
200 return m_cec ? m_cec->TransmitInactiveSource() : false;
201 }
202
203 bool CLibCEC::SetMenuState(cec_menu_state state, bool bSendUpdate /* = true */)
204 {
205 return m_cec ? m_cec->SetMenuState(state, bSendUpdate) : false;
206 }
207
208 bool CLibCEC::SetOSDString(cec_logical_address iLogicalAddress, cec_display_control duration, const char *strMessage)
209 {
210 return m_cec && iLogicalAddress >= CECDEVICE_TV && iLogicalAddress <= CECDEVICE_BROADCAST ?
211 m_cec->m_busDevices[m_cec->GetLogicalAddress()]->TransmitOSDString(iLogicalAddress, duration, strMessage) :
212 false;
213 }
214
215 bool CLibCEC::SwitchMonitoring(bool bEnable)
216 {
217 return m_cec ? m_cec->SwitchMonitoring(bEnable) : false;
218 }
219
220 cec_version CLibCEC::GetDeviceCecVersion(cec_logical_address iAddress)
221 {
222 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
223 return m_cec->GetDeviceCecVersion(iAddress);
224 return CEC_VERSION_UNKNOWN;
225 }
226
227 bool CLibCEC::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
228 {
229 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
230 return m_cec->GetDeviceMenuLanguage(iAddress, language);
231 return false;
232 }
233
234 uint64_t CLibCEC::GetDeviceVendorId(cec_logical_address iAddress)
235 {
236 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
237 return m_cec->GetDeviceVendorId(iAddress);
238 return 0;
239 }
240
241 uint16_t CLibCEC::GetDevicePhysicalAddress(cec_logical_address iAddress)
242 {
243 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
244 return m_cec->GetDevicePhysicalAddress(iAddress);
245 return 0;
246 }
247
248 cec_logical_address CLibCEC::GetActiveSource(void)
249 {
250 return m_cec ? m_cec->GetActiveSource() : CECDEVICE_UNKNOWN;
251 }
252
253 bool CLibCEC::IsActiveSource(cec_logical_address iAddress)
254 {
255 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
256 return m_cec->IsActiveSource(iAddress);
257 return false;
258 }
259
260 cec_power_status CLibCEC::GetDevicePowerStatus(cec_logical_address iAddress)
261 {
262 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
263 return m_cec->GetDevicePowerStatus(iAddress);
264 return CEC_POWER_STATUS_UNKNOWN;
265 }
266
267 bool CLibCEC::PollDevice(cec_logical_address iAddress)
268 {
269 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
270 return m_cec->PollDevice(iAddress);
271 return false;
272 }
273
274 cec_logical_addresses CLibCEC::GetActiveDevices(void)
275 {
276 cec_logical_addresses addresses;
277 addresses.Clear();
278 if (m_cec)
279 addresses = m_cec->GetActiveDevices();
280 return addresses;
281 }
282
283 bool CLibCEC::IsActiveDevice(cec_logical_address iAddress)
284 {
285 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
286 return m_cec->IsPresentDevice(iAddress);
287 return false;
288 }
289
290 bool CLibCEC::IsActiveDeviceType(cec_device_type type)
291 {
292 if (m_cec && type >= CEC_DEVICE_TYPE_TV && type <= CEC_DEVICE_TYPE_AUDIO_SYSTEM)
293 return m_cec->IsPresentDeviceType(type);
294 return false;
295 }
296
297 uint8_t CLibCEC::VolumeUp(bool bSendRelease /* = true */)
298 {
299 if (m_cec)
300 return m_cec->VolumeUp(bSendRelease);
301 return 0;
302 }
303
304 uint8_t CLibCEC::VolumeDown(bool bSendRelease /* = true */)
305 {
306 if (m_cec)
307 return m_cec->VolumeDown(bSendRelease);
308 return 0;
309 }
310
311
312 uint8_t CLibCEC::MuteAudio(bool bSendRelease /* = true */)
313 {
314 if (m_cec)
315 return m_cec->MuteAudio(bSendRelease);
316 return 0;
317 }
318
319 bool CLibCEC::SendKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
320 {
321 if (m_cec)
322 return m_cec->TransmitKeypress(iDestination, key, bWait);
323 return false;
324 }
325
326 bool CLibCEC::SendKeyRelease(cec_logical_address iDestination, bool bWait /* = true */)
327 {
328 if (m_cec)
329 return m_cec->TransmitKeyRelease(iDestination, bWait);
330 return false;
331 }
332
333 cec_osd_name CLibCEC::GetDeviceOSDName(cec_logical_address iAddress)
334 {
335 cec_osd_name retVal;
336 retVal.device = iAddress;
337 retVal.name[0] = 0;
338
339 if (m_cec)
340 retVal = m_cec->GetDeviceOSDName(iAddress);
341
342 return retVal;
343 }
344
345 void CLibCEC::AddLog(const cec_log_level level, const char *strFormat, ...)
346 {
347 CStdString strLog;
348
349 va_list argList;
350 va_start(argList, strFormat);
351 strLog.FormatV(strFormat, argList);
352 va_end(argList);
353
354 CLibCEC *instance = CLibCEC::GetInstance();
355 if (!instance)
356 return;
357 CLockObject lock(instance->m_mutex);
358
359 cec_log_message message;
360 message.level = level;
361 message.time = GetTimeMs() - instance->m_iStartTime;
362 snprintf(message.message, sizeof(message.message), "%s", strLog.c_str());
363
364 if (instance->m_callbacks)
365 instance->m_callbacks->CBCecLogMessage(instance->m_cbParam, message);
366 else
367 instance->m_logBuffer.Push(message);
368 }
369
370 void CLibCEC::AddKey(const cec_keypress &key)
371 {
372 CLibCEC *instance = CLibCEC::GetInstance();
373 if (!instance)
374 return;
375 CLockObject lock(instance->m_mutex);
376
377 AddLog(CEC_LOG_DEBUG, "key pressed: %1x", key.keycode);
378
379 if (instance->m_callbacks)
380 instance->m_callbacks->CBCecKeyPress(instance->m_cbParam, key);
381 else
382 instance->m_keyBuffer.Push(key);
383
384 instance->m_iCurrentButton = key.duration > 0 ? CEC_USER_CONTROL_CODE_UNKNOWN : key.keycode;
385 instance->m_buttontime = key.duration > 0 ? 0 : GetTimeMs();
386 }
387
388 void CLibCEC::ConfigurationChanged(const libcec_configuration &config)
389 {
390 CLibCEC *instance = CLibCEC::GetInstance();
391 CLockObject lock(instance->m_mutex);
392
393 if (instance->m_callbacks &&
394 config.clientVersion >= CEC_CLIENT_VERSION_1_5_0 &&
395 instance->m_callbacks->CBCecConfigurationChanged != NULL &&
396 instance->m_cec->IsInitialised())
397 instance->m_callbacks->CBCecConfigurationChanged(instance->m_cbParam, config);
398 }
399
400 void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode)
401 {
402 /* push keypress to the keybuffer with 0 duration.
403 push another press to the keybuffer with the duration set when the button is released */
404 cec_keypress key;
405 key.duration = 0;
406 key.keycode = iButtonCode;
407
408 AddKey(key);
409 }
410
411 void CLibCEC::AddKey(void)
412 {
413 CLibCEC *instance = CLibCEC::GetInstance();
414 if (!instance)
415 return;
416 CLockObject lock(instance->m_mutex);
417
418 if (instance->m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN)
419 {
420 cec_keypress key;
421
422 key.duration = (unsigned int) (GetTimeMs() - instance->m_buttontime);
423 key.keycode = instance->m_iCurrentButton;
424 AddLog(CEC_LOG_DEBUG, "key released: %1x", key.keycode);
425
426 if (instance->m_callbacks)
427 instance->m_callbacks->CBCecKeyPress(instance->m_cbParam, key);
428 else
429 instance->m_keyBuffer.Push(key);
430 instance->m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
431 }
432 instance->m_buttontime = 0;
433 }
434
435 void CLibCEC::AddCommand(const cec_command &command)
436 {
437 CLibCEC *instance = CLibCEC::GetInstance();
438 if (!instance)
439 return;
440 CLockObject lock(instance->m_mutex);
441
442 AddLog(CEC_LOG_NOTICE, ">> %s (%X) -> %s (%X): %s (%2X)", instance->m_cec->ToString(command.initiator), command.initiator, instance->m_cec->ToString(command.destination), command.destination, instance->m_cec->ToString(command.opcode), command.opcode);
443
444 if (instance->m_callbacks)
445 instance->m_callbacks->CBCecCommand(instance->m_cbParam, command);
446 else if (!instance->m_commandBuffer.Push(command))
447 AddLog(CEC_LOG_WARNING, "command buffer is full");
448 }
449
450 void CLibCEC::CheckKeypressTimeout(void)
451 {
452 if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN && GetTimeMs() - m_buttontime > CEC_BUTTON_TIMEOUT)
453 {
454 AddKey();
455 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
456 }
457 }
458
459 int CLibCEC::MenuStateChanged(const cec_menu_state newState)
460 {
461 int iReturn(0);
462
463 CLibCEC *instance = CLibCEC::GetInstance();
464 if (!instance)
465 return iReturn;
466 CLockObject lock(instance->m_mutex);
467
468 AddLog(CEC_LOG_NOTICE, ">> %s: %s", instance->m_cec->ToString(CEC_OPCODE_MENU_REQUEST), instance->m_cec->ToString(newState));
469
470 libcec_configuration config;
471 instance->GetCurrentConfiguration(&config);
472
473 if (instance->m_callbacks &&
474 config.clientVersion >= CEC_CLIENT_VERSION_1_6_2 &&
475 instance->m_callbacks->CBCecMenuStateChanged)
476 iReturn = instance->m_callbacks->CBCecMenuStateChanged(instance->m_cbParam, newState);
477
478 return iReturn;
479 }
480
481 bool CLibCEC::SetStreamPath(cec_logical_address iAddress)
482 {
483 uint16_t iPhysicalAddress = GetDevicePhysicalAddress(iAddress);
484 if (iPhysicalAddress != 0xFFFF)
485 return SetStreamPath(iPhysicalAddress);
486 return false;
487 }
488
489 bool CLibCEC::SetStreamPath(uint16_t iPhysicalAddress)
490 {
491 return m_cec->SetStreamPath(iPhysicalAddress);
492 }
493
494 cec_logical_addresses CLibCEC::GetLogicalAddresses(void)
495 {
496 cec_logical_addresses addr = m_cec->GetLogicalAddresses();
497 return addr;
498 }
499
500 static CLibCEC *g_libCEC_instance(NULL);
501 CLibCEC *CLibCEC::GetInstance(void)
502 {
503 return g_libCEC_instance;
504 }
505
506 void CLibCEC::SetInstance(CLibCEC *instance)
507 {
508 if (g_libCEC_instance)
509 delete g_libCEC_instance;
510 g_libCEC_instance = instance;
511 }
512
513 void * CECInit(const char *strDeviceName, CEC::cec_device_type_list types, uint16_t UNUSED(iPhysicalAddress) /* = 0 */)
514 {
515 CLibCEC *lib = new CLibCEC(strDeviceName, types);
516 CLibCEC::SetInstance(lib);
517 return static_cast< void* > (lib);
518 }
519
520 void * CECInitialise(libcec_configuration *configuration)
521 {
522 CLibCEC *lib = new CLibCEC(configuration);
523 CLibCEC::SetInstance(lib);
524 return static_cast< void* > (lib);
525 }
526
527 bool CECStartBootloader(void)
528 {
529 bool bReturn(false);
530 cec_adapter deviceList[1];
531 if (CUSBCECAdapterDetection::FindAdapters(deviceList, 1) > 0)
532 {
533 CUSBCECAdapterCommunication comm(NULL, deviceList[0].comm);
534 CTimeout timeout(10000);
535 while (timeout.TimeLeft() > 0 && (bReturn = comm.Open(timeout.TimeLeft() / CEC_CONNECT_TRIES, true)) == false)
536 {
537 comm.Close();
538 CEvent::Sleep(500);
539 }
540 if (comm.IsOpen())
541 bReturn = comm.StartBootloader();
542 }
543
544 return bReturn;
545 }
546
547 void CECDestroy(CEC::ICECAdapter *UNUSED(instance))
548 {
549 CLibCEC::SetInstance(NULL);
550 }
551
552 const char *CLibCEC::ToString(const cec_menu_state state)
553 {
554 return m_cec->ToString(state);
555 }
556
557 const char *CLibCEC::ToString(const cec_version version)
558 {
559 return m_cec->ToString(version);
560 }
561
562 const char *CLibCEC::ToString(const cec_power_status status)
563 {
564 return m_cec->ToString(status);
565 }
566
567 const char *CLibCEC::ToString(const cec_logical_address address)
568 {
569 return m_cec->ToString(address);
570 }
571
572 const char *CLibCEC::ToString(const cec_deck_control_mode mode)
573 {
574 return m_cec->ToString(mode);
575 }
576
577 const char *CLibCEC::ToString(const cec_deck_info status)
578 {
579 return m_cec->ToString(status);
580 }
581
582 const char *CLibCEC::ToString(const cec_opcode opcode)
583 {
584 return m_cec->ToString(opcode);
585 }
586
587 const char *CLibCEC::ToString(const cec_system_audio_status mode)
588 {
589 return m_cec->ToString(mode);
590 }
591
592 const char *CLibCEC::ToString(const cec_audio_status status)
593 {
594 return m_cec->ToString(status);
595 }
596
597 const char *CLibCEC::ToString(const cec_vendor_id vendor)
598 {
599 return m_cec->ToString(vendor);
600 }
601
602 const char *CLibCEC::ToString(const cec_client_version version)
603 {
604 return m_cec->ToString(version);
605 }
606
607 const char *CLibCEC::ToString(const cec_server_version version)
608 {
609 return m_cec->ToString(version);
610 }
611
612 const char *CLibCEC::ToString(const cec_device_type type)
613 {
614 return m_cec->ToString(type);
615 }
616
617 bool CLibCEC::GetCurrentConfiguration(libcec_configuration *configuration)
618 {
619 return m_cec->IsInitialised() && m_cec->GetCurrentConfiguration(configuration);
620 }
621
622 bool CLibCEC::SetConfiguration(const libcec_configuration *configuration)
623 {
624 return m_cec->SetConfiguration(configuration);
625 }
626
627 bool CLibCEC::CanPersistConfiguration(void)
628 {
629 return m_cec->CanPersistConfiguration();
630 }
631
632 bool CLibCEC::PersistConfiguration(libcec_configuration *configuration)
633 {
634 return m_cec->PersistConfiguration(configuration);
635 }
636
637 void CLibCEC::RescanActiveDevices(void)
638 {
639 return m_cec->RescanActiveDevices();
640 }
641
642 bool CLibCEC::IsLibCECActiveSource(void)
643 {
644 bool bReturn(false);
645 if (m_cec)
646 {
647 cec_logical_address activeSource = m_cec->GetActiveSource();
648 if (activeSource != CECDEVICE_UNKNOWN)
649 bReturn = m_cec->m_busDevices[activeSource]->GetStatus(false) == CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC;
650 }
651 return bReturn;
652 }
653
654 cec_device_type CLibCEC::GetType(cec_logical_address address)
655 {
656 switch (address)
657 {
658 case CECDEVICE_AUDIOSYSTEM:
659 return CEC_DEVICE_TYPE_AUDIO_SYSTEM;
660 case CECDEVICE_PLAYBACKDEVICE1:
661 case CECDEVICE_PLAYBACKDEVICE2:
662 case CECDEVICE_PLAYBACKDEVICE3:
663 return CEC_DEVICE_TYPE_PLAYBACK_DEVICE;
664 case CECDEVICE_RECORDINGDEVICE1:
665 case CECDEVICE_RECORDINGDEVICE2:
666 case CECDEVICE_RECORDINGDEVICE3:
667 return CEC_DEVICE_TYPE_RECORDING_DEVICE;
668 case CECDEVICE_TUNER1:
669 case CECDEVICE_TUNER2:
670 case CECDEVICE_TUNER3:
671 case CECDEVICE_TUNER4:
672 return CEC_DEVICE_TYPE_TUNER;
673 case CECDEVICE_TV:
674 return CEC_DEVICE_TYPE_TV;
675 default:
676 return CEC_DEVICE_TYPE_RESERVED;
677 }
678 }
679
680 uint16_t CLibCEC::GetMaskForType(cec_logical_address address)
681 {
682 return GetMaskForType(GetType(address));
683 }
684
685 uint16_t CLibCEC::GetMaskForType(cec_device_type type)
686 {
687 switch (type)
688 {
689 case CEC_DEVICE_TYPE_AUDIO_SYSTEM:
690 {
691 cec_logical_addresses addr;
692 addr.Clear();
693 addr.Set(CECDEVICE_AUDIOSYSTEM);
694 return addr.AckMask();
695 }
696 case CEC_DEVICE_TYPE_PLAYBACK_DEVICE:
697 {
698 cec_logical_addresses addr;
699 addr.Clear();
700 addr.Set(CECDEVICE_PLAYBACKDEVICE1);
701 addr.Set(CECDEVICE_PLAYBACKDEVICE2);
702 addr.Set(CECDEVICE_PLAYBACKDEVICE3);
703 return addr.AckMask();
704 }
705 case CEC_DEVICE_TYPE_RECORDING_DEVICE:
706 {
707 cec_logical_addresses addr;
708 addr.Clear();
709 addr.Set(CECDEVICE_RECORDINGDEVICE1);
710 addr.Set(CECDEVICE_RECORDINGDEVICE2);
711 addr.Set(CECDEVICE_RECORDINGDEVICE3);
712 return addr.AckMask();
713 }
714 case CEC_DEVICE_TYPE_TUNER:
715 {
716 cec_logical_addresses addr;
717 addr.Clear();
718 addr.Set(CECDEVICE_TUNER1);
719 addr.Set(CECDEVICE_TUNER2);
720 addr.Set(CECDEVICE_TUNER3);
721 addr.Set(CECDEVICE_TUNER4);
722 return addr.AckMask();
723 }
724 case CEC_DEVICE_TYPE_TV:
725 {
726 cec_logical_addresses addr;
727 addr.Clear();
728 addr.Set(CECDEVICE_TV);
729 return addr.AckMask();
730 }
731 default:
732 return 0;
733 }
734 }
735
736 bool CLibCEC::GetDeviceInformation(const char *strPort, libcec_configuration *config, uint32_t iTimeoutMs /* = 10000 */)
737 {
738 if (m_cec->IsRunning())
739 return false;
740
741 return m_cec->GetDeviceInformation(strPort, config, iTimeoutMs);
742 }