cec: don't make libCEC the active source when changing the physical address. don...
[deb_libcec.git] / src / lib / devices / CECBusDevice.cpp
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 "CECBusDevice.h"
34 #include "../CECProcessor.h"
35 #include "../implementations/ANCommandHandler.h"
36 #include "../implementations/CECCommandHandler.h"
37 #include "../implementations/SLCommandHandler.h"
38 #include "../implementations/VLCommandHandler.h"
39 #include "../platform/timeutils.h"
40
41 using namespace CEC;
42
43 #define ToString(p) m_processor->ToString(p)
44
45 CCECBusDevice::CCECBusDevice(CCECProcessor *processor, cec_logical_address iLogicalAddress, uint16_t iPhysicalAddress) :
46 m_type(CEC_DEVICE_TYPE_RESERVED),
47 m_iPhysicalAddress(iPhysicalAddress),
48 m_iStreamPath(0),
49 m_iLogicalAddress(iLogicalAddress),
50 m_powerStatus(CEC_POWER_STATUS_UNKNOWN),
51 m_processor(processor),
52 m_vendor(CEC_VENDOR_UNKNOWN),
53 m_bReplaceHandler(false),
54 m_menuState(CEC_MENU_STATE_ACTIVATED),
55 m_bActiveSource(false),
56 m_iLastActive(0),
57 m_cecVersion(CEC_VERSION_UNKNOWN),
58 m_deviceStatus(CEC_DEVICE_STATUS_UNKNOWN),
59 m_handlerMutex(false)
60 {
61 m_handler = new CCECCommandHandler(this);
62
63 for (unsigned int iPtr = 0; iPtr < 4; iPtr++)
64 m_menuLanguage.language[iPtr] = '?';
65 m_menuLanguage.language[3] = 0;
66 m_menuLanguage.device = iLogicalAddress;
67
68 m_strDeviceName = ToString(m_iLogicalAddress);
69 }
70
71 CCECBusDevice::~CCECBusDevice(void)
72 {
73 delete m_handler;
74 }
75
76 void CCECBusDevice::AddLog(cec_log_level level, const CStdString &strMessage)
77 {
78 m_processor->AddLog(level, strMessage);
79 }
80
81 bool CCECBusDevice::HandleCommand(const cec_command &command)
82 {
83 bool bHandled(false);
84
85 /* update "last active" */
86 {
87 CLockObject lock(&m_mutex);
88 m_iLastActive = GetTimeMs();
89
90 if (m_deviceStatus != CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC)
91 m_deviceStatus = CEC_DEVICE_STATUS_PRESENT;
92 }
93
94 /* handle the command */
95 bHandled = m_handler->HandleCommand(command);
96
97 /* change status to present */
98 if (bHandled)
99 {
100 CLockObject lock(&m_mutex);
101 if (m_deviceStatus != CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC)
102 {
103 if (m_deviceStatus != CEC_DEVICE_STATUS_PRESENT)
104 {
105 CStdString strLog;
106 strLog.Format("device %s (%x) status changed to present after command %s", GetLogicalAddressName(), (uint8_t)GetLogicalAddress(), ToString(command.opcode));
107 AddLog(CEC_LOG_DEBUG, strLog);
108 }
109 m_deviceStatus = CEC_DEVICE_STATUS_PRESENT;
110 }
111 }
112
113 return bHandled;
114 }
115
116 bool CCECBusDevice::PowerOn(void)
117 {
118 CStdString strLog;
119 strLog.Format("<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
120 AddLog(CEC_LOG_DEBUG, strLog.c_str());
121
122 if (m_handler->TransmitImageViewOn(GetMyLogicalAddress(), m_iLogicalAddress))
123 {
124 {
125 CLockObject lock(&m_mutex);
126 // m_powerStatus = CEC_POWER_STATUS_UNKNOWN;
127 m_powerStatus = CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON;
128 }
129 // cec_power_status status = GetPowerStatus();
130 // if (status == CEC_POWER_STATUS_STANDBY || status == CEC_POWER_STATUS_UNKNOWN)
131 // {
132 // /* sending the normal power on command appears to have failed */
133 // CStdString strLog;
134 // strLog.Format("<< sending power on keypress to '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
135 // AddLog(CEC_LOG_DEBUG, strLog.c_str());
136 //
137 // TransmitKeypress(CEC_USER_CONTROL_CODE_POWER);
138 // return TransmitKeyRelease();
139 // }
140 return true;
141 }
142
143 return false;
144 }
145
146 bool CCECBusDevice::Standby(void)
147 {
148 CStdString strLog;
149 strLog.Format("<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress);
150 AddLog(CEC_LOG_DEBUG, strLog.c_str());
151
152 return m_handler->TransmitStandby(GetMyLogicalAddress(), m_iLogicalAddress);
153 }
154
155 /** @name Getters */
156 //@{
157 cec_version CCECBusDevice::GetCecVersion(bool bUpdate /* = false */)
158 {
159 bool bRequestUpdate(false);
160 {
161 CLockObject lock(&m_mutex);
162 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
163 (bUpdate || m_cecVersion == CEC_VERSION_UNKNOWN));
164 }
165
166 if (bRequestUpdate)
167 RequestCecVersion();
168
169 CLockObject lock(&m_mutex);
170 return m_cecVersion;
171 }
172
173 bool CCECBusDevice::RequestCecVersion(void)
174 {
175 bool bReturn(false);
176
177 if (!MyLogicalAddressContains(m_iLogicalAddress))
178 {
179 m_handler->MarkBusy();
180 CStdString strLog;
181 strLog.Format("<< requesting CEC version of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
182 AddLog(CEC_LOG_NOTICE, strLog);
183
184 bReturn = m_handler->TransmitRequestCecVersion(GetMyLogicalAddress(), m_iLogicalAddress);
185 m_handler->MarkReady();
186 }
187 return bReturn;
188 }
189
190 const char* CCECBusDevice::GetLogicalAddressName(void) const
191 {
192 return ToString(m_iLogicalAddress);
193 }
194
195 cec_menu_language &CCECBusDevice::GetMenuLanguage(bool bUpdate /* = false */)
196 {
197 bool bRequestUpdate(false);
198 {
199 CLockObject lock(&m_mutex);
200 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
201 (bUpdate || !strcmp(m_menuLanguage.language, "???")));
202 }
203
204 if (bRequestUpdate)
205 RequestMenuLanguage();
206
207 CLockObject lock(&m_mutex);
208 return m_menuLanguage;
209 }
210
211 bool CCECBusDevice::RequestMenuLanguage(void)
212 {
213 bool bReturn(false);
214
215 if (!MyLogicalAddressContains(m_iLogicalAddress) &&
216 !IsUnsupportedFeature(CEC_OPCODE_GET_MENU_LANGUAGE))
217 {
218 m_handler->MarkBusy();
219 CStdString strLog;
220 strLog.Format("<< requesting menu language of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
221 AddLog(CEC_LOG_NOTICE, strLog);
222 bReturn = m_handler->TransmitRequestMenuLanguage(GetMyLogicalAddress(), m_iLogicalAddress);
223 m_handler->MarkReady();
224 }
225 return bReturn;
226 }
227
228 cec_menu_state CCECBusDevice::GetMenuState(void)
229 {
230 CLockObject lock(&m_mutex);
231 return m_menuState;
232 }
233
234 cec_logical_address CCECBusDevice::GetMyLogicalAddress(void) const
235 {
236 return m_processor->GetLogicalAddress();
237 }
238
239 uint16_t CCECBusDevice::GetMyPhysicalAddress(void) const
240 {
241 return m_processor->GetPhysicalAddress();
242 }
243
244 CStdString CCECBusDevice::GetOSDName(bool bUpdate /* = false */)
245 {
246 bool bRequestUpdate(false);
247 {
248 CLockObject lock(&m_mutex);
249 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
250 (bUpdate || m_strDeviceName.Equals(ToString(m_iLogicalAddress))) &&
251 m_type != CEC_DEVICE_TYPE_TV);
252 }
253
254 if (bRequestUpdate)
255 RequestOSDName();
256
257 CLockObject lock(&m_mutex);
258 return m_strDeviceName;
259 }
260
261 bool CCECBusDevice::RequestOSDName(void)
262 {
263 bool bReturn(false);
264
265 if (!MyLogicalAddressContains(m_iLogicalAddress) &&
266 !IsUnsupportedFeature(CEC_OPCODE_GIVE_OSD_NAME))
267 {
268 m_handler->MarkBusy();
269 CStdString strLog;
270 strLog.Format("<< requesting OSD name of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
271 AddLog(CEC_LOG_NOTICE, strLog);
272 bReturn = m_handler->TransmitRequestOSDName(GetMyLogicalAddress(), m_iLogicalAddress);
273 m_handler->MarkReady();
274 }
275 return bReturn;
276 }
277
278 uint16_t CCECBusDevice::GetPhysicalAddress(bool bUpdate /* = false */)
279 {
280 bool bRequestUpdate(false);
281 {
282 CLockObject lock(&m_mutex);
283 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
284 (m_iPhysicalAddress == 0xFFFF || bUpdate));
285 }
286
287 if (bRequestUpdate && !RequestPhysicalAddress())
288 AddLog(CEC_LOG_ERROR, "failed to request the physical address (1)");
289
290 CLockObject lock(&m_mutex);
291 return m_iPhysicalAddress;
292 }
293
294 bool CCECBusDevice::RequestPhysicalAddress(void)
295 {
296 bool bReturn(false);
297
298 if (!MyLogicalAddressContains(m_iLogicalAddress))
299 {
300 m_handler->MarkBusy();
301 CStdString strLog;
302 strLog.Format("<< requesting physical address of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
303 AddLog(CEC_LOG_NOTICE, strLog);
304 bReturn = m_handler->TransmitRequestPhysicalAddress(GetMyLogicalAddress(), m_iLogicalAddress);
305 m_handler->MarkReady();
306 }
307 return bReturn;
308 }
309
310 cec_power_status CCECBusDevice::GetPowerStatus(bool bUpdate /* = false */)
311 {
312 bool bRequestUpdate(false);
313 {
314 CLockObject lock(&m_mutex);
315 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
316 (bUpdate || m_powerStatus == CEC_POWER_STATUS_UNKNOWN ||
317 m_powerStatus == CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON));
318 }
319
320 if (bRequestUpdate)
321 RequestPowerStatus();
322
323 CLockObject lock(&m_mutex);
324 return m_powerStatus;
325 }
326
327 bool CCECBusDevice::RequestPowerStatus(void)
328 {
329 bool bReturn(false);
330
331 if (!MyLogicalAddressContains(m_iLogicalAddress) &&
332 !IsUnsupportedFeature(CEC_OPCODE_GIVE_DEVICE_POWER_STATUS))
333 {
334 m_handler->MarkBusy();
335 CStdString strLog;
336 strLog.Format("<< requesting power status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
337 AddLog(CEC_LOG_NOTICE, strLog);
338 bReturn = m_handler->TransmitRequestPowerStatus(GetMyLogicalAddress(), m_iLogicalAddress);
339 m_handler->MarkReady();
340 }
341 return bReturn;
342 }
343
344 cec_vendor_id CCECBusDevice::GetVendorId(bool bUpdate /* = false */)
345 {
346 bool bRequestUpdate(false);
347 {
348 CLockObject lock(&m_mutex);
349 bRequestUpdate = (GetStatus() == CEC_DEVICE_STATUS_PRESENT &&
350 (bUpdate || m_vendor == CEC_VENDOR_UNKNOWN));
351 }
352
353 if (bRequestUpdate)
354 RequestVendorId();
355
356 CLockObject lock(&m_mutex);
357 return m_vendor;
358 }
359
360 bool CCECBusDevice::RequestVendorId(void)
361 {
362 bool bReturn(false);
363
364 if (!MyLogicalAddressContains(m_iLogicalAddress))
365 {
366 m_handler->MarkBusy();
367 CStdString strLog;
368 strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
369 AddLog(CEC_LOG_NOTICE, strLog);
370 bReturn = m_handler->TransmitRequestVendorId(GetMyLogicalAddress(), m_iLogicalAddress);
371 m_handler->MarkReady();
372
373 ReplaceHandler(true);
374 }
375 return bReturn;
376 }
377
378 const char *CCECBusDevice::GetVendorName(bool bUpdate /* = false */)
379 {
380 return ToString(GetVendorId(bUpdate));
381 }
382
383 bool CCECBusDevice::MyLogicalAddressContains(cec_logical_address address) const
384 {
385 return m_processor->HasLogicalAddress(address);
386 }
387
388 bool CCECBusDevice::NeedsPoll(void)
389 {
390 bool bSendPoll(false);
391 switch (m_iLogicalAddress)
392 {
393 case CECDEVICE_PLAYBACKDEVICE3:
394 if (m_processor->m_busDevices[CECDEVICE_PLAYBACKDEVICE2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
395 bSendPoll = true;
396 break;
397 case CECDEVICE_PLAYBACKDEVICE2:
398 if (m_processor->m_busDevices[CECDEVICE_PLAYBACKDEVICE1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
399 bSendPoll = true;
400 break;
401 case CECDEVICE_RECORDINGDEVICE3:
402 if (m_processor->m_busDevices[CECDEVICE_RECORDINGDEVICE2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
403 bSendPoll = true;
404 break;
405 case CECDEVICE_RECORDINGDEVICE2:
406 if (m_processor->m_busDevices[CECDEVICE_RECORDINGDEVICE1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
407 bSendPoll = true;
408 break;
409 case CECDEVICE_TUNER4:
410 if (m_processor->m_busDevices[CECDEVICE_TUNER3]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
411 bSendPoll = true;
412 break;
413 case CECDEVICE_TUNER3:
414 if (m_processor->m_busDevices[CECDEVICE_TUNER2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
415 bSendPoll = true;
416 break;
417 case CECDEVICE_TUNER2:
418 if (m_processor->m_busDevices[CECDEVICE_TUNER1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
419 bSendPoll = true;
420 break;
421 case CECDEVICE_AUDIOSYSTEM:
422 case CECDEVICE_PLAYBACKDEVICE1:
423 case CECDEVICE_RECORDINGDEVICE1:
424 case CECDEVICE_TUNER1:
425 case CECDEVICE_TV:
426 bSendPoll = true;
427 break;
428 default:
429 break;
430 }
431
432 return bSendPoll;
433 }
434
435 cec_bus_device_status CCECBusDevice::GetStatus(bool bForcePoll /* = false */)
436 {
437 CLockObject lock(&m_mutex);
438 if (m_deviceStatus != CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC &&
439 (m_deviceStatus == CEC_DEVICE_STATUS_UNKNOWN || bForcePoll))
440 {
441 lock.Leave();
442 bool bPollAcked(false);
443 if (bForcePoll || NeedsPoll())
444 bPollAcked = m_processor->PollDevice(m_iLogicalAddress);
445
446 lock.Lock();
447 m_deviceStatus = bPollAcked ? CEC_DEVICE_STATUS_PRESENT : CEC_DEVICE_STATUS_NOT_PRESENT;
448 }
449
450 return m_deviceStatus;
451 }
452
453 //@}
454
455 /** @name Setters */
456 //@{
457 void CCECBusDevice::SetCecVersion(const cec_version newVersion)
458 {
459 m_cecVersion = newVersion;
460
461 CStdString strLog;
462 strLog.Format("%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(newVersion));
463 AddLog(CEC_LOG_DEBUG, strLog);
464 }
465
466 void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language)
467 {
468 CLockObject lock(&m_mutex);
469 if (language.device == m_iLogicalAddress)
470 {
471 CStdString strLog;
472 strLog.Format(">> %s (%X): menu language set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, language.language);
473 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
474 m_menuLanguage = language;
475 }
476 }
477
478 void CCECBusDevice::SetOSDName(CStdString strName)
479 {
480 CLockObject lock(&m_mutex);
481 if (m_strDeviceName != strName)
482 {
483 CStdString strLog;
484 strLog.Format(">> %s (%X): osd name set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, strName);
485 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
486 m_strDeviceName = strName;
487 }
488 }
489
490 void CCECBusDevice::SetMenuState(const cec_menu_state state)
491 {
492 CLockObject lock(&m_mutex);
493 if (m_menuState != state)
494 {
495 CStdString strLog;
496 strLog.Format(">> %s (%X): menu state set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_menuState));
497 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
498 m_menuState = state;
499 }
500 }
501
502 void CCECBusDevice::SetInactiveSource(void)
503 {
504 {
505 CLockObject lock(&m_mutex);
506 m_bActiveSource = false;
507 }
508
509 if (MyLogicalAddressContains(m_iLogicalAddress))
510 SetPowerStatus(CEC_POWER_STATUS_STANDBY);
511 }
512
513 void CCECBusDevice::SetActiveSource(void)
514 {
515 CLockObject lock(&m_mutex);
516 if (!m_bActiveSource)
517 {
518 CStdString strLog;
519 strLog.Format("making %s (%x) the active source", GetLogicalAddressName(), m_iLogicalAddress);
520 AddLog(CEC_LOG_DEBUG, strLog);
521 }
522
523 for (int iPtr = 0; iPtr < 16; iPtr++)
524 if (iPtr != m_iLogicalAddress)
525 m_processor->m_busDevices[iPtr]->SetInactiveSource();
526
527 m_bActiveSource = true;
528 m_powerStatus = CEC_POWER_STATUS_ON;
529 }
530
531 bool CCECBusDevice::TryLogicalAddress(void)
532 {
533 CStdString strLog;
534 strLog.Format("trying logical address '%s'", GetLogicalAddressName());
535 AddLog(CEC_LOG_DEBUG, strLog);
536
537 m_processor->SetAckMask(0x1 << m_iLogicalAddress);
538 if (!TransmitPoll(m_iLogicalAddress))
539 {
540 strLog.Format("using logical address '%s'", GetLogicalAddressName());
541 AddLog(CEC_LOG_NOTICE, strLog);
542 SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC);
543
544 return true;
545 }
546
547 strLog.Format("logical address '%s' already taken", GetLogicalAddressName());
548 AddLog(CEC_LOG_DEBUG, strLog);
549 SetDeviceStatus(CEC_DEVICE_STATUS_PRESENT);
550 return false;
551 }
552
553 void CCECBusDevice::SetDeviceStatus(const cec_bus_device_status newStatus)
554 {
555 CLockObject lock(&m_mutex);
556 switch (newStatus)
557 {
558 case CEC_DEVICE_STATUS_UNKNOWN:
559 m_iStreamPath = 0;
560 m_powerStatus = CEC_POWER_STATUS_UNKNOWN;
561 m_vendor = CEC_VENDOR_UNKNOWN;
562 m_menuState = CEC_MENU_STATE_ACTIVATED;
563 m_bActiveSource = false;
564 m_iLastActive = 0;
565 m_cecVersion = CEC_VERSION_UNKNOWN;
566 m_deviceStatus = newStatus;
567 break;
568 case CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC:
569 m_iStreamPath = 0;
570 m_powerStatus = CEC_POWER_STATUS_ON;
571 m_vendor = CEC_VENDOR_UNKNOWN;
572 m_menuState = CEC_MENU_STATE_ACTIVATED;
573 m_bActiveSource = false;
574 m_iLastActive = 0;
575 m_cecVersion = CEC_VERSION_1_3A;
576 m_deviceStatus = newStatus;
577 break;
578 case CEC_DEVICE_STATUS_PRESENT:
579 case CEC_DEVICE_STATUS_NOT_PRESENT:
580 m_deviceStatus = newStatus;
581 break;
582 }
583 }
584
585 void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress)
586 {
587 CLockObject lock(&m_mutex);
588 if (iNewAddress > 0 && m_iPhysicalAddress != iNewAddress)
589 {
590 CStdString strLog;
591 strLog.Format(">> %s (%X): physical address changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress, iNewAddress);
592 AddLog(CEC_LOG_DEBUG, strLog.c_str());
593
594 m_iPhysicalAddress = iNewAddress;
595 }
596 }
597
598 void CCECBusDevice::SetStreamPath(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */)
599 {
600 CLockObject lock(&m_mutex);
601 if (iNewAddress > 0)
602 {
603 CStdString strLog;
604 strLog.Format(">> %s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, iOldAddress == 0 ? m_iStreamPath : iOldAddress, iNewAddress);
605 AddLog(CEC_LOG_DEBUG, strLog.c_str());
606
607 m_iStreamPath = iNewAddress;
608
609 if (iNewAddress > 0)
610 {
611 lock.Leave();
612 SetPowerStatus(CEC_POWER_STATUS_ON);
613 }
614 }
615 }
616
617 void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus)
618 {
619 CLockObject lock(&m_mutex);
620 if (m_powerStatus != powerStatus)
621 {
622 CStdString strLog;
623 strLog.Format(">> %s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_powerStatus), ToString(powerStatus));
624 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
625 m_powerStatus = powerStatus;
626 }
627 }
628
629 bool CCECBusDevice::ReplaceHandler(bool bActivateSource /* = true */)
630 {
631 CLockObject lock(&m_mutex);
632 CLockObject handlerLock(&m_handlerMutex);
633
634 if (m_vendor != m_handler->GetVendorId())
635 {
636 if (CCECCommandHandler::HasSpecificHandler(m_vendor))
637 {
638 CStdString strLog;
639 if (m_handler->InUse())
640 {
641 strLog.Format("handler for device '%s' (%x) is being used. not replacing the command handler", GetLogicalAddressName(), GetLogicalAddress());
642 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
643 return false;
644 }
645
646 strLog.Format("replacing the command handler for device '%s' (%x)", GetLogicalAddressName(), GetLogicalAddress());
647 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
648 delete m_handler;
649
650 switch (m_vendor)
651 {
652 case CEC_VENDOR_SAMSUNG:
653 m_handler = new CANCommandHandler(this);
654 break;
655 case CEC_VENDOR_LG:
656 m_handler = new CSLCommandHandler(this);
657 break;
658 case CEC_VENDOR_PANASONIC:
659 m_handler = new CVLCommandHandler(this);
660 break;
661 default:
662 m_handler = new CCECCommandHandler(this);
663 break;
664 }
665
666 m_handler->SetVendorId(m_vendor);
667 m_handler->InitHandler();
668
669 if (bActivateSource && m_processor->GetLogicalAddresses().IsSet(m_iLogicalAddress) && m_processor->IsInitialised() && IsActiveSource())
670 m_handler->ActivateSource();
671 }
672 }
673
674 return true;
675 }
676
677 bool CCECBusDevice::SetVendorId(uint64_t iVendorId)
678 {
679 bool bVendorChanged(false);
680
681 {
682 CLockObject lock(&m_mutex);
683 bVendorChanged = (m_vendor != (cec_vendor_id)iVendorId);
684 m_vendor = (cec_vendor_id)iVendorId;
685 }
686
687 CStdString strLog;
688 strLog.Format("%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_vendor), m_vendor);
689 m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str());
690
691 return bVendorChanged;
692 }
693 //@}
694
695 /** @name Transmit methods */
696 //@{
697 bool CCECBusDevice::TransmitActiveSource(void)
698 {
699 bool bSendActiveSource(false);
700
701 {
702 CLockObject lock(&m_mutex);
703 if (m_powerStatus != CEC_POWER_STATUS_ON)
704 {
705 CStdString strLog;
706 strLog.Format("<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress);
707 AddLog(CEC_LOG_DEBUG, strLog);
708 }
709 else if (m_bActiveSource)
710 {
711 CStdString strLog;
712 strLog.Format("<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
713 AddLog(CEC_LOG_NOTICE, strLog);
714 bSendActiveSource = true;
715 }
716 else
717 {
718 CStdString strLog;
719 strLog.Format("<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress);
720 AddLog(CEC_LOG_DEBUG, strLog);
721 }
722 }
723
724 if (bSendActiveSource)
725 {
726 m_handler->TransmitImageViewOn(m_iLogicalAddress, CECDEVICE_TV);
727 m_handler->TransmitActiveSource(m_iLogicalAddress, m_iPhysicalAddress);
728 return true;
729 }
730
731 return false;
732 }
733
734 bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest)
735 {
736 cec_version version;
737 {
738 CLockObject lock(&m_mutex);
739 CStdString strLog;
740 strLog.Format("<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_cecVersion));
741 AddLog(CEC_LOG_NOTICE, strLog);
742 version = m_cecVersion;
743 }
744
745 return m_handler->TransmitCECVersion(m_iLogicalAddress, dest, version);
746 }
747
748 bool CCECBusDevice::TransmitInactiveSource(void)
749 {
750 uint16_t iPhysicalAddress;
751 {
752 CLockObject lock(&m_mutex);
753 CStdString strLog;
754 strLog.Format("<< %s (%X) -> broadcast (F): inactive source", GetLogicalAddressName(), m_iLogicalAddress);
755 AddLog(CEC_LOG_NOTICE, strLog);
756 iPhysicalAddress = m_iPhysicalAddress;
757 }
758
759 return m_handler->TransmitInactiveSource(m_iLogicalAddress, iPhysicalAddress);
760 }
761
762 bool CCECBusDevice::TransmitMenuState(cec_logical_address dest)
763 {
764 cec_menu_state menuState;
765 {
766 CLockObject lock(&m_mutex);
767 CStdString strLog;
768 strLog.Format("<< %s (%X) -> %s (%X): menu state '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_menuState));
769 AddLog(CEC_LOG_NOTICE, strLog);
770 menuState = m_menuState;
771 }
772
773 return m_handler->TransmitMenuState(m_iLogicalAddress, dest, menuState);
774 }
775
776 bool CCECBusDevice::TransmitOSDName(cec_logical_address dest)
777 {
778 CStdString strDeviceName;
779 {
780 CLockObject lock(&m_mutex);
781 CStdString strLog;
782 strLog.Format("<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, m_strDeviceName.c_str());
783 AddLog(CEC_LOG_NOTICE, strLog.c_str());
784 strDeviceName = m_strDeviceName;
785 }
786
787 return m_handler->TransmitOSDName(m_iLogicalAddress, dest, strDeviceName);
788 }
789
790 bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_control duration, const char *strMessage)
791 {
792 if (!IsUnsupportedFeature(CEC_OPCODE_SET_OSD_STRING))
793 {
794 CStdString strLog;
795 strLog.Format("<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, strMessage);
796 AddLog(CEC_LOG_NOTICE, strLog.c_str());
797
798 return m_handler->TransmitOSDString(m_iLogicalAddress, dest, duration, strMessage);
799 }
800 return false;
801 }
802
803 bool CCECBusDevice::TransmitPhysicalAddress(void)
804 {
805 uint16_t iPhysicalAddress;
806 cec_device_type type;
807 {
808 CLockObject lock(&m_mutex);
809 if (m_iPhysicalAddress == 0xffff)
810 return false;
811
812 CStdString strLog;
813 strLog.Format("<< %s (%X) -> broadcast (F): physical adddress %4x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
814 AddLog(CEC_LOG_NOTICE, strLog.c_str());
815
816 iPhysicalAddress = m_iPhysicalAddress;
817 type = m_type;
818 }
819
820 return m_handler->TransmitPhysicalAddress(m_iLogicalAddress, iPhysicalAddress, type);
821 }
822
823 bool CCECBusDevice::TransmitPoll(cec_logical_address dest)
824 {
825 bool bReturn(false);
826 if (dest == CECDEVICE_UNKNOWN)
827 dest = m_iLogicalAddress;
828
829 CCECBusDevice *destDevice = m_processor->m_busDevices[dest];
830 if (destDevice->m_deviceStatus == CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC)
831 return bReturn;
832
833 CStdString strLog;
834 strLog.Format("<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest);
835 AddLog(CEC_LOG_NOTICE, strLog.c_str());
836 bReturn = m_handler->TransmitPoll(m_iLogicalAddress, dest);
837 AddLog(CEC_LOG_DEBUG, bReturn ? ">> POLL sent" : ">> POLL not sent");
838
839 CLockObject lock(&m_mutex);
840 if (bReturn)
841 {
842 m_iLastActive = GetTimeMs();
843 destDevice->m_deviceStatus = CEC_DEVICE_STATUS_PRESENT;
844 }
845 else
846 destDevice->m_deviceStatus = CEC_DEVICE_STATUS_NOT_PRESENT;
847
848 return bReturn;
849 }
850
851 bool CCECBusDevice::TransmitPowerState(cec_logical_address dest)
852 {
853 cec_power_status state;
854 {
855 CLockObject lock(&m_mutex);
856 CStdString strLog;
857 strLog.Format("<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_powerStatus));
858 AddLog(CEC_LOG_NOTICE, strLog.c_str());
859 state = m_powerStatus;
860 }
861
862 return m_handler->TransmitPowerState(m_iLogicalAddress, dest, state);
863 }
864
865 bool CCECBusDevice::TransmitVendorID(cec_logical_address dest, bool bSendAbort /* = true */)
866 {
867 uint64_t iVendorId;
868 {
869 CLockObject lock(&m_mutex);
870 iVendorId = (uint64_t)m_vendor;
871 }
872
873 if (iVendorId == CEC_VENDOR_UNKNOWN)
874 {
875 if (bSendAbort)
876 {
877 CStdString strLog;
878 strLog.Format("<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest);
879 AddLog(CEC_LOG_NOTICE, strLog);
880
881 m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
882 }
883 return false;
884 }
885 else
886 {
887 CStdString strLog;
888 strLog.Format("<< %s (%X) -> %s (%X): vendor id %s (%x)", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString((cec_vendor_id)iVendorId), iVendorId);
889 AddLog(CEC_LOG_NOTICE, strLog);
890
891 return m_handler->TransmitVendorID(m_iLogicalAddress, iVendorId);
892 }
893 }
894
895 bool CCECBusDevice::TransmitKeypress(cec_user_control_code key, bool bWait /* = true */)
896 {
897 return m_handler->TransmitKeypress(m_processor->GetLogicalAddress(), m_iLogicalAddress, key, bWait);
898 }
899
900 bool CCECBusDevice::TransmitKeyRelease(bool bWait /* = true */)
901 {
902 return m_handler->TransmitKeyRelease(m_processor->GetLogicalAddress(), m_iLogicalAddress, bWait);
903 }
904
905 bool CCECBusDevice::IsUnsupportedFeature(cec_opcode opcode) const
906 {
907 return m_unsupportedFeatures.find(opcode) != m_unsupportedFeatures.end();
908 }
909
910 void CCECBusDevice::SetUnsupportedFeature(cec_opcode opcode)
911 {
912 m_unsupportedFeatures.insert(opcode);
913 }
914
915 bool CCECBusDevice::ActivateSource(void)
916 {
917 CLockObject lock(&m_mutex);
918 return m_handler->ActivateSource();
919 }
920
921 //@}