cec: changed - pass all commands that are directed at libcec to listeners. handle...
[deb_libcec.git] / src / lib / devices / CECBusDevice.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 "CECBusDevice.h"
eafa9d46
LOK
34#include "../CECProcessor.h"
35#include "../implementations/ANCommandHandler.h"
36#include "../implementations/CECCommandHandler.h"
37#include "../implementations/SLCommandHandler.h"
11621576 38#include "../implementations/VLCommandHandler.h"
eafa9d46 39#include "../platform/timeutils.h"
e9de9629
LOK
40
41using namespace CEC;
42
c4098482
LOK
43#define ToString(p) CCECCommandHandler::ToString(p)
44
e9de9629 45CCECBusDevice::CCECBusDevice(CCECProcessor *processor, cec_logical_address iLogicalAddress, uint16_t iPhysicalAddress) :
c4098482 46 m_type(CEC_DEVICE_TYPE_RESERVED),
e9de9629 47 m_iPhysicalAddress(iPhysicalAddress),
9dc04b07 48 m_iStreamPath(0),
e9de9629 49 m_iLogicalAddress(iLogicalAddress),
e55f3f70 50 m_powerStatus(CEC_POWER_STATUS_UNKNOWN),
e9de9629 51 m_processor(processor),
c4098482 52 m_vendor(CEC_VENDOR_UNKNOWN),
4abd6768 53 m_menuState(CEC_MENU_STATE_ACTIVATED),
8747dd4f 54 m_bActiveSource(false),
d54e8570 55 m_iLastCommandSent(0),
6a1c0009 56 m_iLastActive(0),
5e822b09 57 m_cecVersion(CEC_VERSION_UNKNOWN)
e9de9629
LOK
58{
59 m_handler = new CCECCommandHandler(this);
51b2a094 60
a3269a0a
LOK
61 for (unsigned int iPtr = 0; iPtr < 4; iPtr++)
62 m_menuLanguage.language[iPtr] = '?';
63 m_menuLanguage.language[3] = 0;
64 m_menuLanguage.device = iLogicalAddress;
1fcf5a3f 65
c4098482 66 m_strDeviceName = ToString(m_iLogicalAddress);
e9de9629
LOK
67}
68
69CCECBusDevice::~CCECBusDevice(void)
70{
6a1c0009 71 m_condition.Broadcast();
e9de9629
LOK
72 delete m_handler;
73}
74
93729720 75void CCECBusDevice::AddLog(cec_log_level level, const CStdString &strMessage)
e9de9629 76{
93729720 77 m_processor->AddLog(level, strMessage);
e9de9629
LOK
78}
79
93729720 80bool CCECBusDevice::HandleCommand(const cec_command &command)
f8513317 81{
81a1e39d 82 CLockObject lock(&m_transmitMutex);
93729720
LOK
83 m_iLastActive = GetTimeMs();
84 m_handler->HandleCommand(command);
85 m_condition.Signal();
86 return true;
87}
88
89void CCECBusDevice::PollVendorId(void)
90{
81a1e39d 91 CLockObject lock(&m_transmitMutex);
93729720 92 if (m_iLastActive > 0 && m_iLogicalAddress != CECDEVICE_BROADCAST &&
c4098482 93 m_vendor == CEC_VENDOR_UNKNOWN &&
d54e8570 94 GetTimeMs() - m_iLastCommandSent > 5000 &&
315ff809 95 !m_processor->IsMonitoring())
93729720 96 {
5e822b09 97 CStdString strLog;
62f5527d 98 strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
5e822b09 99 AddLog(CEC_LOG_NOTICE, strLog);
d54e8570 100 m_iLastCommandSent = GetTimeMs();
93729720
LOK
101
102 cec_command command;
ab1469a0 103 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
93729720 104 if (m_processor->Transmit(command))
81a1e39d 105 m_condition.Wait(&m_transmitMutex, 1000);
93729720
LOK
106 }
107}
108
109bool CCECBusDevice::PowerOn(void)
110{
f437e4be
LOK
111 cec_power_status current = GetPowerStatus();
112 if (current != CEC_POWER_STATUS_ON &&
113 current != CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON)
114 {
115 CStdString strLog;
116 strLog.Format("<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
117 AddLog(CEC_LOG_DEBUG, strLog.c_str());
93729720 118
f437e4be 119 SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
93729720 120
f437e4be 121 cec_command command;
ab1469a0 122 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_IMAGE_VIEW_ON);
f437e4be
LOK
123
124 return m_processor->Transmit(command);
125 }
126
127 return true;
93729720
LOK
128}
129
130bool CCECBusDevice::Standby(void)
131{
132 CStdString strLog;
62f5527d 133 strLog.Format("<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress);
93729720
LOK
134 AddLog(CEC_LOG_DEBUG, strLog.c_str());
135
136 cec_command command;
ab1469a0 137 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_STANDBY);
93729720
LOK
138
139 return m_processor->Transmit(command);
140}
141
142/** @name Getters */
143//@{
d7be392a 144cec_version CCECBusDevice::GetCecVersion(void)
93729720 145{
81a1e39d 146 if (!MyLogicalAddressContains(m_iLogicalAddress))
93729720 147 {
81a1e39d
LOK
148 CStdString strLog;
149 strLog.Format("<< requesting CEC version of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
150 AddLog(CEC_LOG_NOTICE, strLog);
151 cec_command command;
152 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GET_CEC_VERSION);
153 CLockObject lock(&m_transmitMutex);
154 if (m_processor->Transmit(command))
155 m_condition.Wait(&m_transmitMutex, 1000);
93729720
LOK
156 }
157
81a1e39d 158 CLockObject lock(&m_mutex);
93729720
LOK
159 return m_cecVersion;
160}
161
62f5527d
LOK
162const char* CCECBusDevice::GetLogicalAddressName(void) const
163{
c4098482 164 return ToString(m_iLogicalAddress);
62f5527d
LOK
165}
166
d7be392a 167cec_menu_language &CCECBusDevice::GetMenuLanguage(void)
93729720 168{
81a1e39d 169 if (!MyLogicalAddressContains(m_iLogicalAddress))
93729720 170 {
81a1e39d
LOK
171 CStdString strLog;
172 strLog.Format("<< requesting menu language of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
173 AddLog(CEC_LOG_NOTICE, strLog);
174 cec_command command;
175 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GET_MENU_LANGUAGE);
176 CLockObject lock(&m_transmitMutex);
177 if (m_processor->Transmit(command))
178 m_condition.Wait(&m_transmitMutex, 1000);
93729720
LOK
179 }
180
81a1e39d 181 CLockObject lock(&m_mutex);
93729720
LOK
182 return m_menuLanguage;
183}
184
185cec_logical_address CCECBusDevice::GetMyLogicalAddress(void) const
186{
187 return m_processor->GetLogicalAddress();
f8513317
LOK
188}
189
e9de9629
LOK
190uint16_t CCECBusDevice::GetMyPhysicalAddress(void) const
191{
192 return m_processor->GetPhysicalAddress();
193}
194
d7be392a 195cec_power_status CCECBusDevice::GetPowerStatus(void)
e9de9629 196{
81a1e39d 197 if (!MyLogicalAddressContains(m_iLogicalAddress))
93729720 198 {
81a1e39d
LOK
199 CStdString strLog;
200 strLog.Format("<< requesting power status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
201 AddLog(CEC_LOG_NOTICE, strLog);
202 cec_command command;
203 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS);
204 CLockObject lock(&m_transmitMutex);
205 if (m_processor->Transmit(command))
206 m_condition.Wait(&m_transmitMutex, 1000);
93729720
LOK
207 }
208
81a1e39d 209 CLockObject lock(&m_mutex);
93729720 210 return m_powerStatus;
e9de9629
LOK
211}
212
7856411b 213cec_vendor_id CCECBusDevice::GetVendorId(void)
a3269a0a 214{
81a1e39d 215 if (!MyLogicalAddressContains(m_iLogicalAddress))
a3269a0a 216 {
81a1e39d
LOK
217 CStdString strLog;
218 strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
219 AddLog(CEC_LOG_NOTICE, strLog);
220 cec_command command;
221 cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
222 CLockObject lock(&m_transmitMutex);
223
224 if (m_processor->Transmit(command))
225 m_condition.Wait(&m_transmitMutex, 1000);
a3269a0a 226 }
93729720 227
81a1e39d 228 CLockObject lock(&m_mutex);
93729720
LOK
229 return m_vendor;
230}
231
c4098482
LOK
232const char *CCECBusDevice::GetVendorName(void)
233{
81a1e39d 234 CLockObject lock(&m_mutex);
c4098482
LOK
235 return ToString(m_vendor);
236}
237
93729720
LOK
238bool CCECBusDevice::MyLogicalAddressContains(cec_logical_address address) const
239{
240 return m_processor->HasLogicalAddress(address);
a3269a0a
LOK
241}
242
93729720
LOK
243//@}
244
245/** @name Setters */
246//@{
e55f3f70 247void CCECBusDevice::SetCecVersion(const cec_version newVersion)
6a1c0009 248{
6a1c0009
LOK
249 m_cecVersion = newVersion;
250
c686413b 251 CStdString strLog;
c4098482 252 strLog.Format("%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(newVersion));
6a1c0009
LOK
253 AddLog(CEC_LOG_DEBUG, strLog);
254}
255
93729720
LOK
256void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language)
257{
81a1e39d 258 CLockObject lock(&m_mutex);
93729720
LOK
259 if (language.device == m_iLogicalAddress)
260 {
261 CStdString strLog;
62f5527d 262 strLog.Format(">> %s (%X): menu language set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, language.language);
93729720
LOK
263 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
264 m_menuLanguage = language;
265 }
266}
267
15d1a84c
LOK
268void CCECBusDevice::SetOSDName(CStdString strName)
269{
270 CLockObject lock(&m_mutex);
271 if (m_strDeviceName != strName)
272 {
273 CStdString strLog;
274 strLog.Format(">> %s (%X): osd name set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, strName);
275 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
276 m_strDeviceName = strName;
277 }
278}
279
28fa6c97
LOK
280void CCECBusDevice::SetMenuState(const cec_menu_state state)
281{
81a1e39d 282 CLockObject lock(&m_mutex);
28fa6c97
LOK
283 if (m_menuState != state)
284 {
285 CStdString strLog;
286 strLog.Format(">> %s (%X): menu state set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_menuState));
287 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
288 m_menuState = state;
289 }
290}
291
7856411b
LOK
292void CCECBusDevice::SetInactiveDevice(void)
293{
294 CLockObject lock(&m_mutex);
295 m_bActiveSource = false;
296}
297
298void CCECBusDevice::SetActiveDevice(void)
299{
300 CLockObject lock(&m_mutex);
301
302 for (int iPtr = 0; iPtr < 16; iPtr++)
303 if (iPtr != m_iLogicalAddress)
304 m_processor->m_busDevices[iPtr]->SetInactiveDevice();
305
306 m_bActiveSource = true;
307 m_powerStatus = CEC_POWER_STATUS_ON;
308}
309
9dc04b07 310void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress)
93729720 311{
81a1e39d 312 CLockObject lock(&m_mutex);
93729720
LOK
313 if (iNewAddress > 0)
314 {
315 CStdString strLog;
62f5527d 316 strLog.Format(">> %s (%X): physical address changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress, iNewAddress);
93729720
LOK
317 AddLog(CEC_LOG_DEBUG, strLog.c_str());
318
319 m_iPhysicalAddress = iNewAddress;
320 }
321}
322
9dc04b07
LOK
323void CCECBusDevice::SetStreamPath(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */)
324{
81a1e39d 325 CLockObject lock(&m_mutex);
9dc04b07
LOK
326 if (iNewAddress > 0)
327 {
328 CStdString strLog;
62f5527d 329 strLog.Format(">> %s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, iOldAddress, iNewAddress);
9dc04b07
LOK
330 AddLog(CEC_LOG_DEBUG, strLog.c_str());
331
332 m_iStreamPath = iNewAddress;
96274140
LOK
333
334 if (iNewAddress > 0)
81a1e39d
LOK
335 {
336 lock.Leave();
96274140 337 SetPowerStatus(CEC_POWER_STATUS_ON);
81a1e39d 338 }
9dc04b07
LOK
339 }
340}
341
e55f3f70
LOK
342void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus)
343{
81a1e39d 344 CLockObject lock(&m_mutex);
b0271d54
LOK
345 if (m_powerStatus != powerStatus)
346 {
347 CStdString strLog;
c4098482 348 strLog.Format(">> %s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_powerStatus), ToString(powerStatus));
b0271d54
LOK
349 m_processor->AddLog(CEC_LOG_DEBUG, strLog);
350 m_powerStatus = powerStatus;
351 }
e55f3f70
LOK
352}
353
c4098482 354void CCECBusDevice::SetVendorId(uint64_t iVendorId)
e9de9629 355{
e9de9629 356 {
81a1e39d
LOK
357 CLockObject lock(&m_mutex);
358 m_vendor = (cec_vendor_id)iVendorId;
359
360 switch (iVendorId)
0ab58650 361 {
81a1e39d
LOK
362 case CEC_VENDOR_SAMSUNG:
363 if (m_handler->GetVendorId() != CEC_VENDOR_SAMSUNG)
364 {
365 delete m_handler;
366 m_handler = new CANCommandHandler(this);
367 }
368 break;
369 case CEC_VENDOR_LG:
370 if (m_handler->GetVendorId() != CEC_VENDOR_LG)
371 {
372 delete m_handler;
373 m_handler = new CSLCommandHandler(this);
374 }
375 break;
376 case CEC_VENDOR_PANASONIC:
377 if (m_handler->GetVendorId() != CEC_VENDOR_PANASONIC)
378 {
379 delete m_handler;
380 m_handler = new CVLCommandHandler(this);
381 }
382 break;
383 default:
384 if (m_handler->GetVendorId() != CEC_VENDOR_UNKNOWN)
385 {
386 delete m_handler;
387 m_handler = new CCECCommandHandler(this);
388 }
389 break;
0ab58650 390 }
e9de9629
LOK
391 }
392
393 CStdString strLog;
81a1e39d 394 strLog.Format("%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress, GetVendorName(), m_vendor);
e9de9629
LOK
395 m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str());
396}
93729720 397//@}
e9de9629 398
93729720
LOK
399/** @name Transmit methods */
400//@{
401bool CCECBusDevice::TransmitActiveSource(void)
0f23c85c 402{
81a1e39d 403 CLockObject lock(&m_mutex);
58c1f6f5
LOK
404 if (m_powerStatus != CEC_POWER_STATUS_ON)
405 {
406 CStdString strLog;
407 strLog.Format("<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress);
408 AddLog(CEC_LOG_DEBUG, strLog);
409 }
410 else if (m_bActiveSource)
8747dd4f
LOK
411 {
412 CStdString strLog;
62f5527d 413 strLog.Format("<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
8747dd4f 414 AddLog(CEC_LOG_NOTICE, strLog);
0f23c85c 415
8747dd4f 416 cec_command command;
ab1469a0
LOK
417 cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE);
418 command.parameters.PushBack((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF));
419 command.parameters.PushBack((uint8_t) (m_iPhysicalAddress & 0xFF));
0f23c85c 420
81a1e39d 421 lock.Leave();
8747dd4f
LOK
422 return m_processor->Transmit(command);
423 }
424 else
425 {
426 CStdString strLog;
62f5527d 427 strLog.Format("<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress);
8747dd4f
LOK
428 AddLog(CEC_LOG_DEBUG, strLog);
429 }
430
431 return false;
0f23c85c
LOK
432}
433
29912296 434bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest)
0f23c85c 435{
81a1e39d 436 CLockObject lock(&m_mutex);
d7be392a 437 CStdString strLog;
c4098482 438 strLog.Format("<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_cecVersion));
d7be392a 439 AddLog(CEC_LOG_NOTICE, strLog);
0f23c85c
LOK
440
441 cec_command command;
ab1469a0
LOK
442 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_CEC_VERSION);
443 command.parameters.PushBack((uint8_t)m_cecVersion);
0f23c85c 444
81a1e39d 445 lock.Leave();
0f23c85c
LOK
446 return m_processor->Transmit(command);
447}
448
93729720
LOK
449bool CCECBusDevice::TransmitInactiveView(void)
450{
d7be392a 451 CStdString strLog;
62f5527d 452 strLog.Format("<< %s (%X) -> broadcast (F): inactive view", GetLogicalAddressName(), m_iLogicalAddress);
d7be392a 453 AddLog(CEC_LOG_NOTICE, strLog);
93729720
LOK
454
455 cec_command command;
ab1469a0
LOK
456 cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_INACTIVE_SOURCE);
457 command.parameters.PushBack((m_iPhysicalAddress >> 8) & 0xFF);
458 command.parameters.PushBack(m_iPhysicalAddress & 0xFF);
93729720
LOK
459
460 return m_processor->Transmit(command);
461}
462
29912296 463bool CCECBusDevice::TransmitMenuState(cec_logical_address dest)
0f23c85c 464{
d7be392a 465 CStdString strLog;
28fa6c97 466 strLog.Format("<< %s (%X) -> %s (%X): menu state '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_menuState));
d7be392a 467 AddLog(CEC_LOG_NOTICE, strLog);
0f23c85c
LOK
468
469 cec_command command;
ab1469a0
LOK
470 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_MENU_STATUS);
471 command.parameters.PushBack((uint8_t)m_menuState);
0f23c85c
LOK
472
473 return m_processor->Transmit(command);
474}
475
29912296 476bool CCECBusDevice::TransmitOSDName(cec_logical_address dest)
0f23c85c 477{
81a1e39d 478 CLockObject lock(&m_mutex);
0f23c85c 479 CStdString strLog;
c4098482 480 strLog.Format("<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, m_strDeviceName.c_str());
0f23c85c
LOK
481 AddLog(CEC_LOG_NOTICE, strLog.c_str());
482
483 cec_command command;
ab1469a0 484 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_SET_OSD_NAME);
787a3cb8 485 for (unsigned int iPtr = 0; iPtr < m_strDeviceName.length(); iPtr++)
ab1469a0 486 command.parameters.PushBack(m_strDeviceName.at(iPtr));
0f23c85c 487
81a1e39d 488 lock.Leave();
0f23c85c
LOK
489 return m_processor->Transmit(command);
490}
491
38bdb943
LOK
492bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_control duration, const char *strMessage)
493{
81a1e39d 494 CLockObject lock(&m_mutex);
38bdb943 495 CStdString strLog;
c4098482 496 strLog.Format("<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, strMessage);
38bdb943
LOK
497 AddLog(CEC_LOG_NOTICE, strLog.c_str());
498
499 cec_command command;
ab1469a0
LOK
500 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_SET_OSD_STRING);
501 command.parameters.PushBack((uint8_t)duration);
38bdb943
LOK
502
503 unsigned int iLen = strlen(strMessage);
504 if (iLen > 13) iLen = 13;
505
506 for (unsigned int iPtr = 0; iPtr < iLen; iPtr++)
ab1469a0 507 command.parameters.PushBack(strMessage[iPtr]);
38bdb943 508
81a1e39d 509 lock.Leave();
38bdb943
LOK
510 return m_processor->Transmit(command);
511}
512
29912296 513bool CCECBusDevice::TransmitPhysicalAddress(void)
0f23c85c 514{
81a1e39d 515 CLockObject lock(&m_mutex);
0f23c85c 516 CStdString strLog;
62f5527d 517 strLog.Format("<< %s (%X) -> broadcast (F): physical adddress %4x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
0f23c85c
LOK
518 AddLog(CEC_LOG_NOTICE, strLog.c_str());
519
520 cec_command command;
ab1469a0
LOK
521 cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS);
522 command.parameters.PushBack((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF));
523 command.parameters.PushBack((uint8_t) (m_iPhysicalAddress & 0xFF));
524 command.parameters.PushBack((uint8_t) (m_type));
0f23c85c 525
81a1e39d 526 lock.Leave();
0f23c85c
LOK
527 return m_processor->Transmit(command);
528}
529
93729720 530bool CCECBusDevice::TransmitPoll(cec_logical_address dest)
57f45e6c
LOK
531{
532 bool bReturn(false);
93729720
LOK
533 if (dest == CECDEVICE_UNKNOWN)
534 dest = m_iLogicalAddress;
f8513317 535
57f45e6c 536 CStdString strLog;
c4098482 537 strLog.Format("<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest);
d7be392a 538 AddLog(CEC_LOG_NOTICE, strLog.c_str());
57f45e6c
LOK
539
540 cec_command command;
ab1469a0 541 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_NONE);
81a1e39d 542 CLockObject lock(&m_transmitMutex);
57f45e6c
LOK
543
544 bReturn = m_processor->Transmit(command);
545 AddLog(CEC_LOG_DEBUG, bReturn ? ">> POLL sent" : ">> POLL not sent");
546 return bReturn;
547}
93729720
LOK
548
549bool CCECBusDevice::TransmitPowerState(cec_logical_address dest)
550{
81a1e39d 551 CLockObject lock(&m_mutex);
93729720 552 CStdString strLog;
c4098482 553 strLog.Format("<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_powerStatus));
d7be392a
LOK
554 AddLog(CEC_LOG_NOTICE, strLog.c_str());
555
93729720 556 cec_command command;
ab1469a0
LOK
557 cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_REPORT_POWER_STATUS);
558 command.parameters.PushBack((uint8_t) m_powerStatus);
93729720 559
81a1e39d 560 lock.Leave();
93729720
LOK
561 return m_processor->Transmit(command);
562}
563
564bool CCECBusDevice::TransmitVendorID(cec_logical_address dest)
565{
81a1e39d 566 CLockObject lock(&m_mutex);
c4098482
LOK
567 if (m_vendor == CEC_VENDOR_UNKNOWN)
568 {
569 CStdString strLog;
570 strLog.Format("<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest);
571 AddLog(CEC_LOG_NOTICE, strLog);
d7be392a 572
81a1e39d 573 lock.Leave();
c4098482
LOK
574 m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);
575 return false;
576 }
577 else
578 {
579 CStdString strLog;
580 strLog.Format("<< %s (%X) -> %s (%X): vendor id %s (%x)", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_vendor), (uint64_t)m_vendor);
581 AddLog(CEC_LOG_NOTICE, strLog);
582
583 cec_command command;
5e9b399e 584 cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_DEVICE_VENDOR_ID);
c4098482 585
ab1469a0
LOK
586 command.parameters.PushBack((uint8_t) (((uint64_t)m_vendor >> 16) & 0xFF));
587 command.parameters.PushBack((uint8_t) (((uint64_t)m_vendor >> 8) & 0xFF));
588 command.parameters.PushBack((uint8_t) ((uint64_t)m_vendor & 0xFF));
c4098482 589
81a1e39d 590 lock.Leave();
c4098482
LOK
591 return m_processor->Transmit(command);
592 }
93729720
LOK
593}
594//@}