cec: scan the CEC bus for devices when starting libcec
[deb_libcec.git] / src / lib / CECProcessor.cpp
CommitLineData
abbca718
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
2abe74eb 33#include "CECProcessor.h"
abbca718 34
2abe74eb 35#include "AdapterCommunication.h"
eafa9d46 36#include "devices/CECBusDevice.h"
51b2a094
LOK
37#include "devices/CECAudioSystem.h"
38#include "devices/CECPlaybackDevice.h"
39#include "devices/CECRecordingDevice.h"
40#include "devices/CECTuner.h"
41#include "devices/CECTV.h"
62f5527d 42#include "implementations/CECCommandHandler.h"
2abe74eb 43#include "LibCEC.h"
abbca718 44#include "util/StdString.h"
b9187cc6 45#include "platform/timeutils.h"
abbca718
LOK
46
47using namespace CEC;
48using namespace std;
49
2b4d8297 50CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
f8513317 51 m_bStarted(false),
16b1e052 52 m_iHDMIPort(CEC_DEFAULT_HDMI_PORT),
2abe74eb
LOK
53 m_strDeviceName(strDeviceName),
54 m_communication(serComm),
8b7e5ff6 55 m_controller(controller),
06bfd4d7 56 m_bMonitor(false)
abbca718 57{
ab1469a0
LOK
58 m_logicalAddresses.Clear();
59 m_logicalAddresses.Set(iLogicalAddress);
20b8870a 60 m_types.clear();
7871d66e 61 for (int iPtr = 0; iPtr <= 16; iPtr++)
09c10b66 62 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, iPtr == iLogicalAddress ? iPhysicalAddress : 0);
abbca718
LOK
63}
64
f8513317
LOK
65CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, const cec_device_type_list &types) :
66 m_bStarted(false),
16b1e052 67 m_iHDMIPort(CEC_DEFAULT_HDMI_PORT),
f8513317
LOK
68 m_strDeviceName(strDeviceName),
69 m_types(types),
70 m_communication(serComm),
71 m_controller(controller),
72 m_bMonitor(false)
73{
ab1469a0 74 m_logicalAddresses.Clear();
f8513317 75 for (int iPtr = 0; iPtr < 16; iPtr++)
51b2a094
LOK
76 {
77 switch(iPtr)
78 {
79 case CECDEVICE_AUDIOSYSTEM:
5d5a2dc2 80 m_busDevices[iPtr] = new CCECAudioSystem(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
81 break;
82 case CECDEVICE_PLAYBACKDEVICE1:
83 case CECDEVICE_PLAYBACKDEVICE2:
84 case CECDEVICE_PLAYBACKDEVICE3:
5d5a2dc2 85 m_busDevices[iPtr] = new CCECPlaybackDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
86 break;
87 case CECDEVICE_RECORDINGDEVICE1:
88 case CECDEVICE_RECORDINGDEVICE2:
89 case CECDEVICE_RECORDINGDEVICE3:
5d5a2dc2 90 m_busDevices[iPtr] = new CCECRecordingDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
91 break;
92 case CECDEVICE_TUNER1:
93 case CECDEVICE_TUNER2:
94 case CECDEVICE_TUNER3:
95 case CECDEVICE_TUNER4:
5d5a2dc2 96 m_busDevices[iPtr] = new CCECTuner(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
97 break;
98 case CECDEVICE_TV:
99 m_busDevices[iPtr] = new CCECTV(this, (cec_logical_address) iPtr, 0);
100 break;
101 default:
5d5a2dc2 102 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
103 break;
104 }
105 }
f8513317
LOK
106}
107
2abe74eb 108CCECProcessor::~CCECProcessor(void)
abbca718 109{
8b0ee2cc 110 m_startCondition.Broadcast();
2abe74eb
LOK
111 StopThread();
112 m_communication = NULL;
113 m_controller = NULL;
d1998c7b
LOK
114 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
115 delete m_busDevices[iPtr];
abbca718
LOK
116}
117
2abe74eb 118bool CCECProcessor::Start(void)
abbca718 119{
8b0ee2cc 120 CLockObject lock(&m_mutex);
2abe74eb 121 if (!m_communication || !m_communication->IsOpen())
13fd6a66
LOK
122 {
123 m_controller->AddLog(CEC_LOG_ERROR, "connection is closed");
a8f0bd18 124 return false;
13fd6a66 125 }
abbca718 126
60fa4578 127 if (CreateThread())
8b0ee2cc 128 {
f8513317 129 if (!m_startCondition.Wait(&m_mutex) || !m_bStarted)
8b0ee2cc
LOK
130 {
131 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
132 return false;
133 }
a8f0bd18 134 return true;
8b0ee2cc 135 }
a8f0bd18 136 else
2abe74eb 137 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
abbca718 138
a8f0bd18 139 return false;
abbca718
LOK
140}
141
b58d9277 142bool CCECProcessor::TryLogicalAddress(cec_logical_address address)
f8513317 143{
93fff5c1 144 if (m_busDevices[address]->TryLogicalAddress())
f8513317 145 {
8747dd4f 146 /* only set our OSD name and active source for the primary device */
ab1469a0 147 if (m_logicalAddresses.IsEmpty())
8747dd4f 148 {
787a3cb8 149 m_busDevices[address]->m_strDeviceName = m_strDeviceName;
8747dd4f
LOK
150 m_busDevices[address]->m_bActiveSource = true;
151 }
ab1469a0 152 m_logicalAddresses.Set(address);
f8513317
LOK
153 return true;
154 }
155
f8513317
LOK
156 return false;
157}
158
b58d9277 159bool CCECProcessor::FindLogicalAddressRecordingDevice(void)
f8513317
LOK
160{
161 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
b58d9277
LOK
162 return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1) ||
163 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2) ||
164 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3);
f8513317
LOK
165}
166
b58d9277 167bool CCECProcessor::FindLogicalAddressTuner(void)
f8513317
LOK
168{
169 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
b58d9277
LOK
170 return TryLogicalAddress(CECDEVICE_TUNER1) ||
171 TryLogicalAddress(CECDEVICE_TUNER2) ||
172 TryLogicalAddress(CECDEVICE_TUNER3) ||
173 TryLogicalAddress(CECDEVICE_TUNER4);
f8513317
LOK
174}
175
b58d9277 176bool CCECProcessor::FindLogicalAddressPlaybackDevice(void)
f8513317
LOK
177{
178 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
b58d9277
LOK
179 return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1) ||
180 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2) ||
181 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3);
f8513317
LOK
182}
183
b58d9277 184bool CCECProcessor::FindLogicalAddressAudioSystem(void)
f8513317
LOK
185{
186 AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audio'");
b58d9277 187 return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM);
f8513317
LOK
188}
189
190bool CCECProcessor::FindLogicalAddresses(void)
191{
192 bool bReturn(true);
ab1469a0 193 m_logicalAddresses.Clear();
f8513317
LOK
194 CStdString strLog;
195
196 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
197 {
198 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
199 continue;
200
201 strLog.Format("%s - device %d: type %d", __FUNCTION__, iPtr, m_types.types[iPtr]);
202 AddLog(CEC_LOG_DEBUG, strLog);
203
204 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_RECORDING_DEVICE)
b58d9277 205 bReturn &= FindLogicalAddressRecordingDevice();
f8513317 206 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_TUNER)
b58d9277 207 bReturn &= FindLogicalAddressTuner();
f8513317 208 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
b58d9277 209 bReturn &= FindLogicalAddressPlaybackDevice();
f8513317 210 if (m_types.types[iPtr] == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
b58d9277 211 bReturn &= FindLogicalAddressAudioSystem();
f8513317
LOK
212 }
213
214 return bReturn;
215}
216
2abe74eb 217void *CCECProcessor::Process(void)
f99bc831 218{
8747dd4f 219 bool bParseFrame(false);
e0407d3d
LOK
220 cec_command command;
221 CCECAdapterMessage msg;
222
8b0ee2cc 223 {
ab1469a0 224 if (m_logicalAddresses.IsEmpty() && !FindLogicalAddresses())
f8513317
LOK
225 {
226 CLockObject lock(&m_mutex);
16b1e052 227 m_controller->AddLog(CEC_LOG_ERROR, "could not detect our logical addresses");
f8513317
LOK
228 m_startCondition.Signal();
229 return NULL;
230 }
231
ab1469a0 232 SetAckMask(m_logicalAddresses.AckMask());
f8513317 233
95a73fa7
LOK
234 ScanCECBus();
235
f8513317
LOK
236 {
237 CLockObject lock(&m_mutex);
f8513317 238 m_bStarted = true;
16b1e052
LOK
239 lock.Leave();
240
241 SetHDMIPort(m_iHDMIPort);
242
243 lock.Lock();
244 m_controller->AddLog(CEC_LOG_DEBUG, "processor thread started");
f8513317
LOK
245 m_startCondition.Signal();
246 }
8b0ee2cc 247 }
abbca718 248
13fd6a66 249 while (!IsStopped())
abbca718 250 {
ab1469a0 251 command.Clear();
76321de4
LOK
252 msg.clear();
253
60fa4578
LOK
254 {
255 CLockObject lock(&m_mutex);
8747dd4f
LOK
256 if (m_commandBuffer.Pop(command))
257 {
258 bParseFrame = true;
259 }
260 else if (m_communication->IsOpen() && m_communication->Read(msg, 50))
b5f34cf9
LOK
261 {
262 m_controller->AddLog(msg.is_error() ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
f2198ab5 263 if ((bParseFrame = (ParseMessage(msg) && !IsStopped())) == true)
8747dd4f 264 command = m_currentframe;
b5f34cf9 265 }
60fa4578
LOK
266 }
267
13fd6a66 268 if (bParseFrame)
9dee1670 269 ParseCommand(command);
8747dd4f 270 bParseFrame = false;
abbca718 271
b5f34cf9
LOK
272 Sleep(5);
273
13fd6a66
LOK
274 m_controller->CheckKeypressTimeout();
275
0ab58650 276 for (unsigned int iDevicePtr = 0; iDevicePtr < 16; iDevicePtr++)
678e227c
LOK
277 {
278 if (!m_logicalAddresses[iDevicePtr])
279 m_busDevices[iDevicePtr]->PollVendorId();
280 }
0ab58650 281
b5f34cf9 282 Sleep(5);
abbca718
LOK
283 }
284
60fa4578 285 return NULL;
abbca718
LOK
286}
287
18203d17 288bool CCECProcessor::SetActiveSource(cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
abbca718 289{
8ac9c610
LOK
290 bool bReturn(false);
291
60fa4578 292 if (!IsRunning())
8ac9c610 293 return bReturn;
f99bc831 294
18203d17 295 cec_logical_address addr = m_logicalAddresses.primary;
04437dcf 296
18203d17
LOK
297 if (type != CEC_DEVICE_TYPE_RESERVED)
298 {
f2198ab5 299 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
18203d17
LOK
300 {
301 if (m_logicalAddresses[iPtr] && m_busDevices[iPtr]->m_type == type)
302 {
303 addr = (cec_logical_address) iPtr;
304 break;
305 }
306 }
307 }
308
16b1e052 309 return SetStreamPath(m_busDevices[addr]->GetPhysicalAddress(false)) &&
4a870dc8 310 m_busDevices[addr]->TransmitActiveSource();
18203d17
LOK
311}
312
1a6669b8
LOK
313bool CCECProcessor::SetActiveSource(cec_logical_address iAddress)
314{
16b1e052 315 return SetStreamPath(m_busDevices[iAddress]->GetPhysicalAddress(false));
1a6669b8
LOK
316}
317
18203d17
LOK
318bool CCECProcessor::SetActiveView(void)
319{
4a870dc8 320 return SetActiveSource(m_types.IsEmpty() ? CEC_DEVICE_TYPE_RESERVED : m_types[0]);
8ac9c610
LOK
321}
322
28fa6c97 323bool CCECProcessor::SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate /* = true */)
a9232a79
LOK
324{
325 bool bReturn(false);
326
327 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
328 if (device)
329 {
330 ((CCECPlaybackDevice *) device)->SetDeckControlMode(mode);
28fa6c97
LOK
331 if (bSendUpdate)
332 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
333 bReturn = true;
334 }
335
336 return bReturn;
337}
338
28fa6c97 339bool CCECProcessor::SetDeckInfo(cec_deck_info info, bool bSendUpdate /* = true */)
a9232a79
LOK
340{
341 bool bReturn(false);
342
343 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
344 if (device)
345 {
346 ((CCECPlaybackDevice *) device)->SetDeckStatus(info);
28fa6c97
LOK
347 if (bSendUpdate)
348 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
349 bReturn = true;
350 }
351
352 return bReturn;
353}
354
16b1e052
LOK
355bool CCECProcessor::SetHDMIPort(uint8_t iPort)
356{
357 bool bReturn(false);
358
359 CStdString strLog;
360 strLog.Format("setting HDMI port to %d", iPort);
361 AddLog(CEC_LOG_DEBUG, strLog);
362
363 m_iHDMIPort = iPort;
364 if (!m_bStarted)
365 return true;
366
367 uint16_t iPhysicalAddress(0);
368 int iPos = 3;
369 while(!bReturn && iPos >= 0)
370 {
371 iPhysicalAddress += ((uint16_t)iPort * (0x1 << iPos*4));
372 strLog.Format("checking physical address %4x", iPhysicalAddress);
373 AddLog(CEC_LOG_DEBUG, strLog);
374 if (CheckPhysicalAddress(iPhysicalAddress))
375 {
376 strLog.Format("physical address %4x is in use", iPhysicalAddress);
377 AddLog(CEC_LOG_DEBUG, strLog);
378 iPos--;
379 }
380 else
381 {
382 SetPhysicalAddress(iPhysicalAddress);
383 bReturn = true;
384 }
385 }
386
387 return bReturn;
388}
389
95a73fa7
LOK
390void CCECProcessor::ScanCECBus(void)
391{
392 CCECBusDevice *device(NULL);
393 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
394 {
395 device = m_busDevices[iPtr];
396 if (device && device->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
397 {
398 device->GetPhysicalAddress();
399 device->GetVendorId();
400 device->GetCecVersion();
401 device->GetPowerStatus();
402 }
403 }
404}
405
16b1e052
LOK
406bool CCECProcessor::CheckPhysicalAddress(uint16_t iPhysicalAddress)
407{
408 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
409 {
410 if (m_busDevices[iPtr]->GetPhysicalAddress(false) == iPhysicalAddress)
411 return true;
412 }
413 return false;
414}
415
8ac9c610
LOK
416bool CCECProcessor::SetStreamPath(uint16_t iStreamPath)
417{
04437dcf
LOK
418 bool bReturn(false);
419
8ac9c610
LOK
420 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamPath);
421 if (device)
422 {
7856411b 423 device->SetActiveDevice();
91bea174 424 bReturn = true;
8ac9c610
LOK
425 }
426
04437dcf 427 return bReturn;
abbca718
LOK
428}
429
2abe74eb 430bool CCECProcessor::SetInactiveView(void)
abbca718 431{
60fa4578 432 if (!IsRunning())
f99bc831
LOK
433 return false;
434
ab1469a0 435 if (!m_logicalAddresses.IsEmpty() && m_busDevices[m_logicalAddresses.primary])
29912296 436 return m_busDevices[m_logicalAddresses.primary]->TransmitInactiveView();
cc60ab1c 437 return false;
abbca718
LOK
438}
439
9dee1670 440void CCECProcessor::LogOutput(const cec_command &data)
abbca718 441{
1d3ca3de 442 CStdString strTx;
57f45e6c
LOK
443 strTx.Format("<< %02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination);
444 if (data.opcode_set)
445 strTx.AppendFormat(":%02x", (uint8_t)data.opcode);
9dee1670 446
06a1f7ce 447 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
1d3ca3de
LOK
448 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
449 m_controller->AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
9dee1670 450}
2abe74eb 451
06bfd4d7 452bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
abbca718 453{
f8513317 454 if (m_logicalAddresses.primary != iLogicalAddress)
06775107
LOK
455 {
456 CStdString strLog;
f8513317 457 strLog.Format("<< setting primary logical address to %1x", iLogicalAddress);
06775107 458 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
f8513317 459 m_logicalAddresses.primary = iLogicalAddress;
ab1469a0
LOK
460 m_logicalAddresses.Set(iLogicalAddress);
461 return SetAckMask(m_logicalAddresses.AckMask());
06775107 462 }
2abe74eb 463
06bfd4d7 464 return true;
abbca718 465}
825ddb96 466
28fa6c97
LOK
467bool CCECProcessor::SetMenuState(cec_menu_state state, bool bSendUpdate /* = true */)
468{
469 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
470 {
471 if (m_logicalAddresses[iPtr])
472 m_busDevices[iPtr]->SetMenuState(state);
473 }
474
475 if (bSendUpdate)
476 m_busDevices[m_logicalAddresses.primary]->TransmitMenuState(CECDEVICE_TV);
477
478 return true;
479}
480
2492216a
LOK
481bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress)
482{
16b1e052 483 if (!m_logicalAddresses.IsEmpty())
cc60ab1c 484 {
16b1e052
LOK
485 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
486 if (m_logicalAddresses[iPtr])
487 m_busDevices[iPtr]->SetPhysicalAddress(iPhysicalAddress);
8ac9c610 488 return SetActiveView();
cc60ab1c
LOK
489 }
490 return false;
1969b140
LOK
491}
492
8b7e5ff6
LOK
493bool CCECProcessor::SwitchMonitoring(bool bEnable)
494{
495 CStdString strLog;
496 strLog.Format("== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
497 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
498
499 m_bMonitor = bEnable;
500 if (bEnable)
06bfd4d7 501 return SetAckMask(0);
8b7e5ff6 502 else
ab1469a0 503 return SetAckMask(m_logicalAddresses.AckMask());
8b7e5ff6
LOK
504}
505
57f45e6c
LOK
506bool CCECProcessor::PollDevice(cec_logical_address iAddress)
507{
508 if (iAddress != CECDEVICE_UNKNOWN && m_busDevices[iAddress])
95a73fa7
LOK
509 {
510 return m_logicalAddresses.primary == CECDEVICE_UNKNOWN ?
511 m_busDevices[iAddress]->TransmitPoll(iAddress) :
512 m_busDevices[m_logicalAddresses.primary]->TransmitPoll(iAddress);
513 }
57f45e6c
LOK
514 return false;
515}
516
9f332fe2 517uint8_t CCECProcessor::VolumeUp(bool bWait /* = true */)
04e637f9
LOK
518{
519 uint8_t status = 0;
520 if (IsActiveDevice(CECDEVICE_AUDIOSYSTEM))
9f332fe2 521 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeUp(bWait);
04e637f9
LOK
522
523 return status;
524}
525
9f332fe2 526uint8_t CCECProcessor::VolumeDown(bool bWait /* = true */)
04e637f9
LOK
527{
528 uint8_t status = 0;
529 if (IsActiveDevice(CECDEVICE_AUDIOSYSTEM))
9f332fe2 530 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeDown(bWait);
04e637f9
LOK
531
532 return status;
533}
534
9f332fe2 535uint8_t CCECProcessor::MuteAudio(bool bWait /* = true */)
04e637f9
LOK
536{
537 uint8_t status = 0;
538 if (IsActiveDevice(CECDEVICE_AUDIOSYSTEM))
9f332fe2 539 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->MuteAudio(bWait);
04e637f9
LOK
540
541 return status;
542}
543
16b1e052 544CCECBusDevice *CCECProcessor::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress, bool bRefresh /* = false */) const
8ac9c610 545{
16b1e052 546 if (m_busDevices[m_logicalAddresses.primary]->GetPhysicalAddress(false) == iPhysicalAddress)
b58d9277 547 return m_busDevices[m_logicalAddresses.primary];
8ac9c610 548
b58d9277 549 CCECBusDevice *device = NULL;
8ac9c610
LOK
550 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
551 {
16b1e052 552 if (m_busDevices[iPtr]->GetPhysicalAddress(bRefresh) == iPhysicalAddress)
8ac9c610
LOK
553 {
554 device = m_busDevices[iPtr];
555 break;
556 }
557 }
558
559 return device;
560}
561
a9232a79
LOK
562CCECBusDevice *CCECProcessor::GetDeviceByType(cec_device_type type) const
563{
564 CCECBusDevice *device = NULL;
565
566 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
567 {
568 if (m_busDevices[iPtr]->m_type == type)
569 {
570 device = m_busDevices[iPtr];
571 break;
572 }
573 }
574
575 return device;
576}
577
6a1c0009
LOK
578cec_version CCECProcessor::GetDeviceCecVersion(cec_logical_address iAddress)
579{
580 return m_busDevices[iAddress]->GetCecVersion();
581}
582
a3269a0a
LOK
583bool CCECProcessor::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
584{
cc60ab1c
LOK
585 if (m_busDevices[iAddress])
586 {
587 *language = m_busDevices[iAddress]->GetMenuLanguage();
5744fbba 588 return (strcmp(language->language, "???") != 0);
cc60ab1c
LOK
589 }
590 return false;
a3269a0a
LOK
591}
592
44c74256
LOK
593uint64_t CCECProcessor::GetDeviceVendorId(cec_logical_address iAddress)
594{
cc60ab1c
LOK
595 if (m_busDevices[iAddress])
596 return m_busDevices[iAddress]->GetVendorId();
597 return false;
44c74256
LOK
598}
599
e55f3f70
LOK
600cec_power_status CCECProcessor::GetDevicePowerStatus(cec_logical_address iAddress)
601{
cc60ab1c
LOK
602 if (m_busDevices[iAddress])
603 return m_busDevices[iAddress]->GetPowerStatus();
604 return CEC_POWER_STATUS_UNKNOWN;
e55f3f70
LOK
605}
606
8d84e2c0 607bool CCECProcessor::Transmit(const cec_command &data)
825ddb96 608{
28352a04 609 bool bReturn(false);
13929cff
LOK
610 LogOutput(data);
611
28352a04
LOK
612 CCECAdapterMessage *output = new CCECAdapterMessage(data);
613 bReturn = Transmit(output);
614 delete output;
615
616 return bReturn;
06bfd4d7 617}
13929cff 618
28352a04 619bool CCECProcessor::Transmit(CCECAdapterMessage *output)
06bfd4d7
LOK
620{
621 bool bReturn(false);
2abe74eb 622 CLockObject lock(&m_mutex);
eb35e4ca
LOK
623 {
624 CLockObject msgLock(&output->mutex);
625 if (!m_communication || !m_communication->Write(output))
626 return bReturn;
627 else
0e31a62c 628 {
3a0ca6e1 629 output->condition.Wait(&output->mutex);
0e31a62c
LOK
630 if (output->state != ADAPTER_MESSAGE_STATE_SENT)
631 {
632 m_controller->AddLog(CEC_LOG_ERROR, "command was not sent");
633 return bReturn;
634 }
635 }
2abe74eb 636
06bfd4d7 637 if (output->transmit_timeout > 0)
cd505625 638 {
06bfd4d7 639 if ((bReturn = WaitForTransmitSucceeded(output->size(), output->transmit_timeout)) == false)
0d8f286e 640 m_controller->AddLog(CEC_LOG_DEBUG, "did not receive ack");
cd505625
LOK
641 }
642 else
cd505625 643 bReturn = true;
2abe74eb
LOK
644 }
645
7ea0d558 646 return bReturn;
825ddb96 647}
abbca718 648
22b4e74a 649void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, cec_abort_reason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
abbca718 650{
9dee1670
LOK
651 m_controller->AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
652
06a1f7ce 653 cec_command command;
f8513317 654 // TODO
ab1469a0
LOK
655 cec_command::Format(command, m_logicalAddresses.primary, address, CEC_OPCODE_FEATURE_ABORT);
656 command.parameters.PushBack((uint8_t)opcode);
657 command.parameters.PushBack((uint8_t)reason);
9dee1670
LOK
658
659 Transmit(command);
abbca718
LOK
660}
661
1f0e9e0f 662bool CCECProcessor::WaitForTransmitSucceeded(uint8_t iLength, uint32_t iTimeout /* = 1000 */)
abbca718 663{
1f0e9e0f
LOK
664 bool bError(false);
665 bool bTransmitSucceeded(false);
7ea0d558 666 uint8_t iPacketsLeft(iLength / 4);
abbca718
LOK
667
668 int64_t iNow = GetTimeMs();
25701fa6 669 int64_t iTargetTime = iNow + (uint64_t) iTimeout;
abbca718 670
1f0e9e0f 671 while (!bTransmitSucceeded && !bError && (iTimeout == 0 || iNow < iTargetTime))
abbca718 672 {
220537f2 673 CCECAdapterMessage msg;
25701fa6 674
06a1f7ce 675 if (!m_communication->Read(msg, iTimeout > 0 ? (int32_t)(iTargetTime - iNow) : 1000))
abbca718 676 {
abbca718 677 iNow = GetTimeMs();
5d38b0b6
LOK
678 continue;
679 }
680
edab6137 681 if ((bError = msg.is_error()) == false)
7ea0d558 682 {
0544ff56
LOK
683 m_controller->AddLog(bError ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
684
edab6137
LOK
685 switch(msg.message())
686 {
687 case MSGCODE_COMMAND_ACCEPTED:
688 if (iPacketsLeft > 0)
689 iPacketsLeft--;
690 break;
691 case MSGCODE_TRANSMIT_SUCCEEDED:
692 bTransmitSucceeded = (iPacketsLeft == 0);
693 bError = !bTransmitSucceeded;
694 break;
695 default:
8747dd4f
LOK
696 if (ParseMessage(msg))
697 m_commandBuffer.Push(m_currentframe);
edab6137 698 }
7ea0d558 699
edab6137
LOK
700 iNow = GetTimeMs();
701 }
abbca718
LOK
702 }
703
1f0e9e0f 704 return bTransmitSucceeded && !bError;
abbca718
LOK
705}
706
0e7b6c54 707bool CCECProcessor::ParseMessage(const CCECAdapterMessage &msg)
abbca718 708{
7ea0d558 709 bool bEom = false;
60fa4578 710
0e7b6c54 711 if (msg.empty())
7ea0d558 712 return bEom;
abbca718 713
0e7b6c54 714 switch(msg.message())
abbca718 715 {
abbca718
LOK
716 case MSGCODE_FRAME_START:
717 {
ab1469a0 718 m_currentframe.Clear();
0e7b6c54 719 if (msg.size() >= 2)
abbca718 720 {
0e7b6c54
LOK
721 m_currentframe.initiator = msg.initiator();
722 m_currentframe.destination = msg.destination();
723 m_currentframe.ack = msg.ack();
724 m_currentframe.eom = msg.eom();
abbca718 725 }
abbca718
LOK
726 }
727 break;
728 case MSGCODE_FRAME_DATA:
729 {
0e7b6c54 730 if (msg.size() >= 2)
78e8010a 731 {
ab1469a0 732 m_currentframe.PushBack(msg[1]);
0e7b6c54 733 m_currentframe.eom = msg.eom();
abbca718 734 }
0e7b6c54 735 bEom = msg.eom();
abbca718 736 }
78e8010a 737 break;
abbca718
LOK
738 default:
739 break;
740 }
7ea0d558
LOK
741
742 return bEom;
abbca718
LOK
743}
744
e9de9629 745void CCECProcessor::ParseCommand(cec_command &command)
abbca718 746{
e9de9629 747 CStdString dataStr;
1d3ca3de 748 dataStr.Format(">> %1x%1x:%02x", command.initiator, command.destination, command.opcode);
e9de9629
LOK
749 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
750 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
1d3ca3de 751 m_controller->AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
dc113aca 752
7871d66e 753 if (!m_bMonitor && command.initiator >= CECDEVICE_TV && command.initiator <= CECDEVICE_BROADCAST)
e9de9629 754 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
dc113aca
LOK
755}
756
6d858ba4
LOK
757cec_logical_addresses CCECProcessor::GetActiveDevices(void)
758{
759 cec_logical_addresses addresses;
760 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
761 {
762 if (m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
763 addresses.Set((cec_logical_address) iPtr);
764 }
765 return addresses;
766}
767
768bool CCECProcessor::IsActiveDevice(cec_logical_address address)
769{
770 return m_busDevices[address]->GetStatus() == CEC_DEVICE_STATUS_PRESENT;
771}
772
773bool CCECProcessor::IsActiveDeviceType(cec_device_type type)
774{
6d858ba4 775 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
2813bd07
LOK
776 {
777 if (m_busDevices[iPtr]->GetType() == type && m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
6d858ba4 778 return true;
2813bd07
LOK
779 }
780
6d858ba4
LOK
781 return false;
782}
783
0f23c85c
LOK
784uint16_t CCECProcessor::GetPhysicalAddress(void) const
785{
ab1469a0 786 if (!m_logicalAddresses.IsEmpty() && m_busDevices[m_logicalAddresses.primary])
16b1e052 787 return m_busDevices[m_logicalAddresses.primary]->GetPhysicalAddress(false);
cc60ab1c 788 return false;
0f23c85c
LOK
789}
790
e9de9629 791void CCECProcessor::SetCurrentButton(cec_user_control_code iButtonCode)
dc113aca 792{
e9de9629 793 m_controller->SetCurrentButton(iButtonCode);
dc113aca
LOK
794}
795
e9de9629 796void CCECProcessor::AddCommand(const cec_command &command)
dc113aca 797{
0544ff56 798 m_controller->AddCommand(command);
dc113aca
LOK
799}
800
95ba7a09
LOK
801void CCECProcessor::AddKey(cec_keypress &key)
802{
803 m_controller->AddKey(key);
804}
805
e9de9629 806void CCECProcessor::AddKey(void)
dc113aca 807{
e9de9629 808 m_controller->AddKey();
abbca718 809}
acec5f48 810
e9de9629 811void CCECProcessor::AddLog(cec_log_level level, const CStdString &strMessage)
acec5f48 812{
e9de9629 813 m_controller->AddLog(level, strMessage);
acec5f48 814}
06bfd4d7
LOK
815
816bool CCECProcessor::SetAckMask(uint16_t iMask)
817{
28352a04 818 bool bReturn(false);
06bfd4d7
LOK
819 CStdString strLog;
820 strLog.Format("setting ackmask to %2x", iMask);
821 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
822
28352a04 823 CCECAdapterMessage *output = new CCECAdapterMessage;
06bfd4d7
LOK
824
825 output->push_back(MSGSTART);
826 output->push_escaped(MSGCODE_SET_ACK_MASK);
827 output->push_escaped(iMask >> 8);
828 output->push_escaped((uint8_t)iMask);
829 output->push_back(MSGEND);
830
28352a04 831 if ((bReturn = Transmit(output)) == false)
06bfd4d7 832 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
06bfd4d7 833
28352a04
LOK
834 delete output;
835
836 return bReturn;
06bfd4d7 837}
a33794d8
LOK
838
839bool CCECProcessor::SendKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = false */)
840{
841 return m_busDevices[iDestination]->SendKeypress(key, bWait);
842}
843
844bool CCECProcessor::SendKeyRelease(cec_logical_address iDestination, bool bWait /* = false */)
845{
846 return m_busDevices[iDestination]->SendKeyRelease(bWait);
847}