cec: added GetSetting() to CUSBCECAdapterCommunication. bugzid: 543
[deb_libcec.git] / src / lib / CECProcessor.cpp
CommitLineData
abbca718
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
abbca718
LOK
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
7bb4ed43 35#include "adapter/USBCECAdapterCommunication.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"
ba65909d 44#include "platform/util/timeutils.h"
abbca718
LOK
45
46using namespace CEC;
47using namespace std;
f00ff009 48using namespace PLATFORM;
abbca718 49
3efda01a 50CCECProcessor::CCECProcessor(CLibCEC *controller, libcec_configuration *configuration) :
80726797 51 m_bConnectionOpened(false),
caca2d81 52 m_bInitialised(false),
caca2d81
LOK
53 m_communication(NULL),
54 m_controller(controller),
55 m_bMonitor(false),
56 m_iStandardLineTimeout(3),
57 m_iRetryLineTimeout(3),
30b4aac0 58 m_iLastTransmission(0)
caca2d81 59{
caca2d81 60 CreateBusDevices();
30b4aac0 61 m_configuration.Clear();
41e3372a 62 m_configuration.serverVersion = configuration->serverVersion;
30b4aac0
LOK
63 SetConfiguration(configuration);
64
65 if (m_configuration.tvVendor != CEC_VENDOR_UNKNOWN)
ed63a515 66 m_busDevices[CECDEVICE_TV]->ReplaceHandler(false);
caca2d81
LOK
67}
68
7bdfd76c 69CCECProcessor::CCECProcessor(CLibCEC *controller, const char *strDeviceName, const cec_device_type_list &types, uint16_t iPhysicalAddress) :
80726797 70 m_bConnectionOpened(false),
b64db02e 71 m_bInitialised(false),
99666519 72 m_communication(NULL),
f8513317 73 m_controller(controller),
dcd240b2
LOK
74 m_bMonitor(false),
75 m_iStandardLineTimeout(3),
5f316715 76 m_iRetryLineTimeout(3),
30b4aac0 77 m_iLastTransmission(0)
f8513317 78{
30b4aac0 79 m_configuration.Clear();
2e82cff0 80 m_configuration.serverVersion = CEC_SERVER_VERSION_1_5_2;
30b4aac0
LOK
81
82 // client version < 1.5.0
3efda01a 83 m_configuration.clientVersion = (uint32_t)CEC_CLIENT_VERSION_PRE_1_5;
30b4aac0
LOK
84 snprintf(m_configuration.strDeviceName, 13, "%s", strDeviceName);
85 m_configuration.deviceTypes = types;
86 m_configuration.iPhysicalAddress = iPhysicalAddress;
87 m_configuration.baseDevice = (cec_logical_address)CEC_DEFAULT_BASE_DEVICE;
88 m_configuration.iHDMIPort = CEC_DEFAULT_HDMI_PORT;
89
90 if (m_configuration.deviceTypes.IsEmpty())
91 m_configuration.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
caca2d81
LOK
92 CreateBusDevices();
93}
94
95void CCECProcessor::CreateBusDevices(void)
96{
f8513317 97 for (int iPtr = 0; iPtr < 16; iPtr++)
51b2a094
LOK
98 {
99 switch(iPtr)
100 {
101 case CECDEVICE_AUDIOSYSTEM:
5d5a2dc2 102 m_busDevices[iPtr] = new CCECAudioSystem(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
103 break;
104 case CECDEVICE_PLAYBACKDEVICE1:
105 case CECDEVICE_PLAYBACKDEVICE2:
106 case CECDEVICE_PLAYBACKDEVICE3:
5d5a2dc2 107 m_busDevices[iPtr] = new CCECPlaybackDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
108 break;
109 case CECDEVICE_RECORDINGDEVICE1:
110 case CECDEVICE_RECORDINGDEVICE2:
111 case CECDEVICE_RECORDINGDEVICE3:
5d5a2dc2 112 m_busDevices[iPtr] = new CCECRecordingDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
113 break;
114 case CECDEVICE_TUNER1:
115 case CECDEVICE_TUNER2:
116 case CECDEVICE_TUNER3:
117 case CECDEVICE_TUNER4:
5d5a2dc2 118 m_busDevices[iPtr] = new CCECTuner(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
119 break;
120 case CECDEVICE_TV:
121 m_busDevices[iPtr] = new CCECTV(this, (cec_logical_address) iPtr, 0);
122 break;
123 default:
5d5a2dc2 124 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
125 break;
126 }
127 }
f8513317
LOK
128}
129
2abe74eb 130CCECProcessor::~CCECProcessor(void)
abbca718 131{
eca71746 132 Close();
7c63a480 133
d1998c7b
LOK
134 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
135 delete m_busDevices[iPtr];
abbca718
LOK
136}
137
eca71746
LOK
138void CCECProcessor::Close(void)
139{
f9e01dac
LOK
140 StopThread(false);
141 SetInitialised(false);
eca71746
LOK
142 StopThread();
143
80726797
LOK
144 bool bClose(false);
145 {
146 CLockObject lock(m_mutex);
147 bClose = m_bConnectionOpened;
148 m_bConnectionOpened = false;
149 }
150
151 if (bClose && m_communication)
eca71746 152 {
cb4ee028 153 m_communication->PersistConfiguration(&m_configuration);
eca71746
LOK
154 m_communication->Close();
155 delete m_communication;
156 m_communication = NULL;
157 }
158}
159
578c3905 160bool CCECProcessor::OpenConnection(const char *strPort, uint16_t iBaudRate, uint32_t iTimeoutMs)
abbca718 161{
a674fd68 162 bool bReturn(false);
80726797
LOK
163 Close();
164
578c3905 165 {
80726797
LOK
166 CLockObject lock(m_mutex);
167 if (m_bConnectionOpened)
168 {
169 CLibCEC::AddLog(CEC_LOG_ERROR, "connection already opened");
170 return false;
171 }
172 m_communication = new CUSBCECAdapterCommunication(this, strPort, iBaudRate);
173 m_bConnectionOpened = (m_communication != NULL);
578c3905 174 }
1113cb7d 175
578c3905
LOK
176 /* check for an already opened connection */
177 if (m_communication->IsOpen())
1113cb7d 178 {
5477a250 179 CLibCEC::AddLog(CEC_LOG_ERROR, "connection already opened");
578c3905
LOK
180 return bReturn;
181 }
abbca718 182
3b5e433a 183 CTimeout timeout(iTimeoutMs > 0 ? iTimeoutMs : CEC_DEFAULT_TRANSMIT_WAIT);
c520af4f 184
578c3905 185 /* open a new connection */
efed01e1 186 unsigned iConnectTry(0);
3b5e433a 187 while (timeout.TimeLeft() > 0 && (bReturn = m_communication->Open(this, (timeout.TimeLeft() / CEC_CONNECT_TRIES))) == false)
3d78df91
LOK
188 {
189 CLibCEC::AddLog(CEC_LOG_ERROR, "could not open a connection (try %d)", ++iConnectTry);
d55f263f 190 m_communication->Close();
a88017b8 191 CEvent::Sleep(1000);
3d78df91 192 }
56035c86 193
efed01e1 194 if (bReturn)
3efda01a 195 CLibCEC::AddLog(CEC_LOG_NOTICE, "connected to the CEC adapter. firmware version = %d, client version = %s", m_communication->GetFirmwareVersion(), ToString((cec_client_version)m_configuration.clientVersion));
3d78df91 196
578c3905
LOK
197 return bReturn;
198}
199
0cfdeb5a
LOK
200bool CCECProcessor::IsInitialised(void)
201{
202 CLockObject lock(m_mutex);
203 return m_bInitialised;
204}
205
2db8981f 206void CCECProcessor::SetInitialised(bool bSetTo /* = true */)
578c3905 207{
578c3905 208 CLockObject lock(m_mutex);
2db8981f
LOK
209 m_bInitialised = bSetTo;
210}
578c3905 211
2db8981f
LOK
212bool CCECProcessor::Initialise(void)
213{
214 bool bReturn(false);
578c3905 215 {
2db8981f 216 CLockObject lock(m_mutex);
dd18e809
LOK
217 if (!m_configuration.logicalAddresses.IsEmpty())
218 m_configuration.logicalAddresses.Clear();
578c3905 219
2db8981f
LOK
220 if (!FindLogicalAddresses())
221 {
5477a250 222 CLibCEC::AddLog(CEC_LOG_ERROR, "could not detect our logical addresses");
2db8981f
LOK
223 return bReturn;
224 }
225
226 /* only set our OSD name for the primary device */
dd18e809 227 m_busDevices[m_configuration.logicalAddresses.primary]->m_strDeviceName = m_configuration.strDeviceName;
80726797
LOK
228
229 /* make the primary device the active source if the option is set */
230 if (m_configuration.bActivateSource == 1)
dd18e809 231 m_busDevices[m_configuration.logicalAddresses.primary]->m_bActiveSource = true;
2db8981f 232 }
578c3905
LOK
233
234 /* get the vendor id from the TV, so we are using the correct handler */
30b4aac0 235 m_busDevices[CECDEVICE_TV]->GetVendorId();
578c3905 236
30b4aac0 237 if (m_configuration.iPhysicalAddress != 0)
4f362964 238 {
30b4aac0 239 CLibCEC::AddLog(CEC_LOG_NOTICE, "setting the physical address to %4x", m_configuration.iPhysicalAddress);
dd18e809
LOK
240 m_busDevices[m_configuration.logicalAddresses.primary]->m_iPhysicalAddress = m_configuration.iPhysicalAddress;
241 if ((bReturn = m_busDevices[m_configuration.logicalAddresses.primary]->TransmitPhysicalAddress()) == false)
30b4aac0 242 CLibCEC::AddLog(CEC_LOG_ERROR, "unable to set the physical address to %4x", m_configuration.iPhysicalAddress);
4f362964 243 }
30b4aac0
LOK
244 else if (m_configuration.iPhysicalAddress == 0 && (bReturn = SetHDMIPort(m_configuration.baseDevice, m_configuration.iHDMIPort, true)) == false)
245 CLibCEC::AddLog(CEC_LOG_ERROR, "unable to set HDMI port %d on %s (%x)", m_configuration.iHDMIPort, ToString(m_configuration.baseDevice), (uint8_t)m_configuration.baseDevice);
2db8981f 246
80726797 247 if (m_configuration.bActivateSource == 1)
dd18e809 248 m_busDevices[m_configuration.logicalAddresses.primary]->ActivateSource();
80726797 249
2db8981f 250 SetInitialised(bReturn);
ba73be2f
LOK
251 if (bReturn)
252 CLibCEC::ConfigurationChanged(m_configuration);
578c3905
LOK
253
254 return bReturn;
255}
256
257bool CCECProcessor::Start(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
258{
259 bool bReturn(false);
260
261 {
262 CLockObject lock(m_mutex);
263 if (!OpenConnection(strPort, iBaudRate, iTimeoutMs))
a674fd68 264 return bReturn;
994dbaaa 265
a674fd68 266 /* create the processor thread */
8e57f83c 267 if (!CreateThread())
a674fd68 268 {
5477a250 269 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a processor thread");
a674fd68 270 return bReturn;
994dbaaa 271 }
a674fd68
LOK
272 }
273
578c3905 274 if ((bReturn = Initialise()) == false)
a674fd68 275 {
5477a250 276 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a processor thread");
578c3905 277 StopThread(true);
a674fd68
LOK
278 }
279 else
280 {
5477a250 281 CLibCEC::AddLog(CEC_LOG_DEBUG, "processor thread started");
a674fd68
LOK
282 }
283
284 return bReturn;
abbca718
LOK
285}
286
b58d9277 287bool CCECProcessor::TryLogicalAddress(cec_logical_address address)
f8513317 288{
93fff5c1 289 if (m_busDevices[address]->TryLogicalAddress())
f8513317 290 {
dd18e809 291 m_configuration.logicalAddresses.Set(address);
f8513317
LOK
292 return true;
293 }
294
f8513317
LOK
295 return false;
296}
297
b58d9277 298bool CCECProcessor::FindLogicalAddressRecordingDevice(void)
f8513317 299{
5477a250 300 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
b58d9277
LOK
301 return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1) ||
302 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2) ||
303 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3);
f8513317
LOK
304}
305
b58d9277 306bool CCECProcessor::FindLogicalAddressTuner(void)
f8513317 307{
5477a250 308 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
b58d9277
LOK
309 return TryLogicalAddress(CECDEVICE_TUNER1) ||
310 TryLogicalAddress(CECDEVICE_TUNER2) ||
311 TryLogicalAddress(CECDEVICE_TUNER3) ||
312 TryLogicalAddress(CECDEVICE_TUNER4);
f8513317
LOK
313}
314
b58d9277 315bool CCECProcessor::FindLogicalAddressPlaybackDevice(void)
f8513317 316{
5477a250 317 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
b58d9277
LOK
318 return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1) ||
319 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2) ||
320 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3);
f8513317
LOK
321}
322
b58d9277 323bool CCECProcessor::FindLogicalAddressAudioSystem(void)
f8513317 324{
5477a250 325 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audio'");
b58d9277 326 return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM);
f8513317
LOK
327}
328
3e61b350
LOK
329bool CCECProcessor::ChangeDeviceType(cec_device_type from, cec_device_type to)
330{
331 bool bChanged(false);
332
5477a250 333 CLibCEC::AddLog(CEC_LOG_NOTICE, "changing device type '%s' into '%s'", ToString(from), ToString(to));
3e61b350 334
f00ff009 335 CLockObject lock(m_mutex);
3e61b350 336 CCECBusDevice *previousDevice = GetDeviceByType(from);
dd18e809 337 m_configuration.logicalAddresses.primary = CECDEVICE_UNKNOWN;
3e61b350
LOK
338
339 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
340 {
30b4aac0 341 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
3e61b350
LOK
342 continue;
343
30b4aac0 344 if (m_configuration.deviceTypes.types[iPtr] == from)
3e61b350
LOK
345 {
346 bChanged = true;
30b4aac0 347 m_configuration.deviceTypes.types[iPtr] = to;
3e61b350 348 }
30b4aac0 349 else if (m_configuration.deviceTypes.types[iPtr] == to && bChanged)
3e61b350 350 {
30b4aac0 351 m_configuration.deviceTypes.types[iPtr] = CEC_DEVICE_TYPE_RESERVED;
3e61b350
LOK
352 }
353 }
354
355 if (bChanged)
356 {
357 FindLogicalAddresses();
358
359 CCECBusDevice *newDevice = GetDeviceByType(to);
360 if (previousDevice && newDevice)
361 {
362 newDevice->SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC);
4478bc79 363 previousDevice->SetDeviceStatus(CEC_DEVICE_STATUS_NOT_PRESENT);
3e61b350
LOK
364
365 newDevice->SetCecVersion(previousDevice->GetCecVersion(false));
366 previousDevice->SetCecVersion(CEC_VERSION_UNKNOWN);
367
368 newDevice->SetMenuLanguage(previousDevice->GetMenuLanguage(false));
369 cec_menu_language lang;
370 lang.device = previousDevice->GetLogicalAddress();
371 for (unsigned int iPtr = 0; iPtr < 4; iPtr++)
372 lang.language[iPtr] = '?';
373 lang.language[3] = 0;
374 previousDevice->SetMenuLanguage(lang);
375
376 newDevice->SetMenuState(previousDevice->GetMenuState());
377 previousDevice->SetMenuState(CEC_MENU_STATE_DEACTIVATED);
378
379 newDevice->SetOSDName(previousDevice->GetOSDName(false));
380 previousDevice->SetOSDName(ToString(previousDevice->GetLogicalAddress()));
381
382 newDevice->SetPhysicalAddress(previousDevice->GetPhysicalAddress(false));
383 previousDevice->SetPhysicalAddress(0xFFFF);
384
385 newDevice->SetPowerStatus(previousDevice->GetPowerStatus(false));
386 previousDevice->SetPowerStatus(CEC_POWER_STATUS_UNKNOWN);
387
388 newDevice->SetVendorId(previousDevice->GetVendorId(false));
389 previousDevice->SetVendorId(CEC_VENDOR_UNKNOWN);
390
391 if ((from == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || from == CEC_DEVICE_TYPE_RECORDING_DEVICE) &&
392 (to == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || to == CEC_DEVICE_TYPE_RECORDING_DEVICE))
393 {
394 ((CCECPlaybackDevice *) newDevice)->SetDeckControlMode(((CCECPlaybackDevice *) previousDevice)->GetDeckControlMode());
395 ((CCECPlaybackDevice *) previousDevice)->SetDeckControlMode(CEC_DECK_CONTROL_MODE_STOP);
396
397 ((CCECPlaybackDevice *) newDevice)->SetDeckStatus(((CCECPlaybackDevice *) previousDevice)->GetDeckStatus());
398 ((CCECPlaybackDevice *) previousDevice)->SetDeckStatus(CEC_DECK_INFO_STOP);
399 }
400 }
401 }
402
403 return true;
404}
405
f8513317
LOK
406bool CCECProcessor::FindLogicalAddresses(void)
407{
408 bool bReturn(true);
dd18e809 409 m_configuration.logicalAddresses.Clear();
f8513317 410
30b4aac0 411 if (m_configuration.deviceTypes.IsEmpty())
c39611ec
LOK
412 {
413 CLibCEC::AddLog(CEC_LOG_ERROR, "no device types set");
414 return false;
415 }
416
f8513317
LOK
417 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
418 {
30b4aac0 419 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
f8513317
LOK
420 continue;
421
30b4aac0 422 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - device %d: type %d", __FUNCTION__, iPtr, m_configuration.deviceTypes.types[iPtr]);
f8513317 423
30b4aac0 424 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RECORDING_DEVICE)
b58d9277 425 bReturn &= FindLogicalAddressRecordingDevice();
30b4aac0 426 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_TUNER)
b58d9277 427 bReturn &= FindLogicalAddressTuner();
30b4aac0 428 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
b58d9277 429 bReturn &= FindLogicalAddressPlaybackDevice();
30b4aac0 430 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
b58d9277 431 bReturn &= FindLogicalAddressAudioSystem();
f8513317
LOK
432 }
433
a674fd68 434 if (bReturn)
dd18e809 435 SetAckMask(m_configuration.logicalAddresses.AckMask());
a674fd68 436
f8513317
LOK
437 return bReturn;
438}
439
a3ffc068
LOK
440void CCECProcessor::ReplaceHandlers(void)
441{
0cfdeb5a
LOK
442 if (!IsInitialised())
443 return;
a3ffc068 444 for (uint8_t iPtr = 0; iPtr <= CECDEVICE_PLAYBACKDEVICE3; iPtr++)
591170fd 445 m_busDevices[iPtr]->ReplaceHandler(m_bInitialised);
a3ffc068
LOK
446}
447
b1f94db1
LOK
448bool CCECProcessor::OnCommandReceived(const cec_command &command)
449{
f6b94ad2 450 ParseCommand(command);
b1f94db1
LOK
451 return true;
452}
453
2abe74eb 454void *CCECProcessor::Process(void)
f99bc831 455{
8e57f83c 456 CLibCEC::AddLog(CEC_LOG_DEBUG, "processor thread started");
abbca718 457
b1f94db1 458 while (!IsStopped() && m_communication->IsOpen())
abbca718 459 {
f0154449
LOK
460 if (IsInitialised())
461 {
462 ReplaceHandlers();
b5f34cf9 463
f0154449
LOK
464 m_controller->CheckKeypressTimeout();
465 }
b1f94db1 466 Sleep(5);
abbca718
LOK
467 }
468
60fa4578 469 return NULL;
abbca718
LOK
470}
471
18203d17 472bool CCECProcessor::SetActiveSource(cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
abbca718 473{
8ac9c610
LOK
474 bool bReturn(false);
475
60fa4578 476 if (!IsRunning())
8ac9c610 477 return bReturn;
f99bc831 478
dd18e809 479 cec_logical_address addr = m_configuration.logicalAddresses.primary;
04437dcf 480
18203d17
LOK
481 if (type != CEC_DEVICE_TYPE_RESERVED)
482 {
90ea9066 483 for (uint8_t iPtr = 0; iPtr <= 11; iPtr++)
18203d17 484 {
dd18e809 485 if (m_configuration.logicalAddresses[iPtr] && m_busDevices[iPtr]->m_type == type)
18203d17
LOK
486 {
487 addr = (cec_logical_address) iPtr;
488 break;
489 }
490 }
491 }
492
37b0c572 493 m_busDevices[addr]->SetActiveSource();
d383d6d0 494 if (m_busDevices[addr]->GetPhysicalAddress(false) != 0xFFFF)
bbc71623 495 bReturn = m_busDevices[addr]->ActivateSource();
8d915412
LOK
496
497 return bReturn;
18203d17
LOK
498}
499
37b0c572
LOK
500bool CCECProcessor::SetActiveSource(uint16_t iStreamPath)
501{
502 bool bReturn(false);
503
504 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamPath);
505 if (device)
506 {
507 device->SetActiveSource();
508 bReturn = true;
509 }
510
511 return bReturn;
512}
513
dcd240b2
LOK
514void CCECProcessor::SetStandardLineTimeout(uint8_t iTimeout)
515{
f00ff009 516 CLockObject lock(m_mutex);
dcd240b2
LOK
517 m_iStandardLineTimeout = iTimeout;
518}
519
520void CCECProcessor::SetRetryLineTimeout(uint8_t iTimeout)
521{
f00ff009 522 CLockObject lock(m_mutex);
dcd240b2
LOK
523 m_iRetryLineTimeout = iTimeout;
524}
525
18203d17
LOK
526bool CCECProcessor::SetActiveView(void)
527{
8670c970 528 CLibCEC::AddLog(CEC_LOG_WARNING, "deprecated method %s called", __FUNCTION__);
30b4aac0 529 return SetActiveSource(m_configuration.deviceTypes.IsEmpty() ? CEC_DEVICE_TYPE_RESERVED : m_configuration.deviceTypes[0]);
8ac9c610
LOK
530}
531
28fa6c97 532bool CCECProcessor::SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate /* = true */)
a9232a79
LOK
533{
534 bool bReturn(false);
535
536 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
537 if (device)
538 {
539 ((CCECPlaybackDevice *) device)->SetDeckControlMode(mode);
28fa6c97
LOK
540 if (bSendUpdate)
541 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
542 bReturn = true;
543 }
544
545 return bReturn;
546}
547
28fa6c97 548bool CCECProcessor::SetDeckInfo(cec_deck_info info, bool bSendUpdate /* = true */)
a9232a79
LOK
549{
550 bool bReturn(false);
551
552 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
553 if (device)
554 {
555 ((CCECPlaybackDevice *) device)->SetDeckStatus(info);
28fa6c97
LOK
556 if (bSendUpdate)
557 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
558 bReturn = true;
559 }
560
561 return bReturn;
562}
563
d2f1c157 564bool CCECProcessor::SetHDMIPort(cec_logical_address iBaseDevice, uint8_t iPort, bool bForce /* = false */)
16b1e052
LOK
565{
566 bool bReturn(false);
567
8670c970
LOK
568 {
569 CLockObject lock(m_mutex);
570 m_configuration.baseDevice = iBaseDevice;
571 m_configuration.iHDMIPort = iPort;
8670c970
LOK
572 }
573
8e57f83c 574 if (!IsRunning() && !bForce)
89b3c9df 575 return true;
16b1e052 576
5477a250 577 CLibCEC::AddLog(CEC_LOG_DEBUG, "setting HDMI port to %d on device %s (%d)", iPort, ToString(iBaseDevice), (int)iBaseDevice);
56035c86 578
16b1e052 579 uint16_t iPhysicalAddress(0);
1e7afacd 580 if (iBaseDevice > CECDEVICE_TV)
5d0c1164 581 {
1e7afacd 582 iPhysicalAddress = m_busDevices[iBaseDevice]->GetPhysicalAddress();
5d0c1164 583 }
1e7afacd 584
a674fd68 585 if (iPhysicalAddress < 0xffff)
1e7afacd 586 {
1e7afacd 587 if (iPhysicalAddress == 0)
5d355340 588 iPhysicalAddress += 0x1000 * iPort;
1e7afacd 589 else if (iPhysicalAddress % 0x1000 == 0)
5d355340 590 iPhysicalAddress += 0x100 * iPort;
1e7afacd 591 else if (iPhysicalAddress % 0x100 == 0)
5d355340 592 iPhysicalAddress += 0x10 * iPort;
1e7afacd 593 else if (iPhysicalAddress % 0x10 == 0)
5d355340 594 iPhysicalAddress += iPort;
1e7afacd 595
5d355340 596 bReturn = true;
16b1e052
LOK
597 }
598
a674fd68 599 if (!bReturn)
5477a250 600 CLibCEC::AddLog(CEC_LOG_ERROR, "failed to set the physical address");
f070564b 601 else
f070564b 602 SetPhysicalAddress(iPhysicalAddress);
a674fd68 603
16b1e052
LOK
604 return bReturn;
605}
606
45b97de7 607bool CCECProcessor::PhysicalAddressInUse(uint16_t iPhysicalAddress)
16b1e052 608{
9fd73dd4 609 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
16b1e052
LOK
610 {
611 if (m_busDevices[iPtr]->GetPhysicalAddress(false) == iPhysicalAddress)
612 return true;
613 }
614 return false;
615}
616
ab27363d 617bool CCECProcessor::TransmitInactiveSource(void)
abbca718 618{
60fa4578 619 if (!IsRunning())
f99bc831
LOK
620 return false;
621
dd18e809
LOK
622 if (!m_configuration.logicalAddresses.IsEmpty() && m_busDevices[m_configuration.logicalAddresses.primary])
623 return m_busDevices[m_configuration.logicalAddresses.primary]->TransmitInactiveSource();
cc60ab1c 624 return false;
abbca718
LOK
625}
626
9dee1670 627void CCECProcessor::LogOutput(const cec_command &data)
abbca718 628{
1d3ca3de 629 CStdString strTx;
57f45e6c
LOK
630 strTx.Format("<< %02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination);
631 if (data.opcode_set)
632 strTx.AppendFormat(":%02x", (uint8_t)data.opcode);
9dee1670 633
06a1f7ce 634 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
1d3ca3de 635 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
5477a250 636 CLibCEC::AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
9dee1670 637}
2abe74eb 638
06bfd4d7 639bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
abbca718 640{
f00ff009 641 CLockObject lock(m_mutex);
dd18e809 642 if (m_configuration.logicalAddresses.primary != iLogicalAddress)
06775107 643 {
5477a250 644 CLibCEC::AddLog(CEC_LOG_NOTICE, "<< setting primary logical address to %1x", iLogicalAddress);
dd18e809
LOK
645 m_configuration.logicalAddresses.primary = iLogicalAddress;
646 m_configuration.logicalAddresses.Set(iLogicalAddress);
647 return SetAckMask(m_configuration.logicalAddresses.AckMask());
06775107 648 }
2abe74eb 649
06bfd4d7 650 return true;
abbca718 651}
825ddb96 652
28fa6c97
LOK
653bool CCECProcessor::SetMenuState(cec_menu_state state, bool bSendUpdate /* = true */)
654{
655 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
656 {
dd18e809 657 if (m_configuration.logicalAddresses[iPtr])
28fa6c97
LOK
658 m_busDevices[iPtr]->SetMenuState(state);
659 }
660
661 if (bSendUpdate)
dd18e809 662 m_busDevices[m_configuration.logicalAddresses.primary]->TransmitMenuState(CECDEVICE_TV);
28fa6c97
LOK
663
664 return true;
665}
666
bebb19dc 667bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress, bool bSendUpdate /* = true */)
2492216a 668{
f070564b
LOK
669 bool bSendActiveView(false);
670 bool bReturn(false);
4d6f5ac7 671 cec_logical_addresses sendUpdatesTo;
ded7e7ce 672 sendUpdatesTo.Clear();
ff684fef 673
f070564b 674 {
f00ff009 675 CLockObject lock(m_mutex);
30b4aac0 676 m_configuration.iPhysicalAddress = iPhysicalAddress;
30a09f32 677 CLibCEC::AddLog(CEC_LOG_DEBUG, "setting physical address to '%4x'", iPhysicalAddress);
4f362964 678
dd18e809 679 if (!m_configuration.logicalAddresses.IsEmpty())
f070564b
LOK
680 {
681 bool bWasActiveSource(false);
682 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
dd18e809 683 if (m_configuration.logicalAddresses[iPtr])
f070564b
LOK
684 {
685 bWasActiveSource |= m_busDevices[iPtr]->IsActiveSource();
686 m_busDevices[iPtr]->SetInactiveSource();
687 m_busDevices[iPtr]->SetPhysicalAddress(iPhysicalAddress);
688 if (bSendUpdate)
4d6f5ac7 689 sendUpdatesTo.Set((cec_logical_address)iPtr);
f070564b
LOK
690 }
691
692 bSendActiveView = bWasActiveSource && bSendUpdate;
693 bReturn = true;
694 }
cc60ab1c 695 }
f070564b 696
4d6f5ac7
LOK
697 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
698 if (sendUpdatesTo[iPtr])
699 m_busDevices[iPtr]->TransmitPhysicalAddress();
700
f070564b
LOK
701 if (bSendActiveView)
702 SetActiveView();
703
32403cc3
LOK
704 if (bReturn)
705 CLibCEC::ConfigurationChanged(m_configuration);
706
f070564b 707 return bReturn;
1969b140
LOK
708}
709
8b7e5ff6
LOK
710bool CCECProcessor::SwitchMonitoring(bool bEnable)
711{
5477a250 712 CLibCEC::AddLog(CEC_LOG_NOTICE, "== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
8b7e5ff6 713
855a3a98 714 {
f00ff009 715 CLockObject lock(m_mutex);
855a3a98 716 m_bMonitor = bEnable;
855a3a98
LOK
717 }
718
8b7e5ff6 719 if (bEnable)
06bfd4d7 720 return SetAckMask(0);
8b7e5ff6 721 else
dd18e809 722 return SetAckMask(m_configuration.logicalAddresses.AckMask());
8b7e5ff6
LOK
723}
724
57f45e6c
LOK
725bool CCECProcessor::PollDevice(cec_logical_address iAddress)
726{
727 if (iAddress != CECDEVICE_UNKNOWN && m_busDevices[iAddress])
95a73fa7 728 {
dd18e809 729 return m_configuration.logicalAddresses.primary == CECDEVICE_UNKNOWN ?
95a73fa7 730 m_busDevices[iAddress]->TransmitPoll(iAddress) :
dd18e809 731 m_busDevices[m_configuration.logicalAddresses.primary]->TransmitPoll(iAddress);
95a73fa7 732 }
57f45e6c
LOK
733 return false;
734}
735
5c73f7f7 736uint8_t CCECProcessor::VolumeUp(bool bSendRelease /* = true */)
04e637f9
LOK
737{
738 uint8_t status = 0;
37b0c572 739 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 740 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeUp(bSendRelease);
04e637f9
LOK
741
742 return status;
743}
744
5c73f7f7 745uint8_t CCECProcessor::VolumeDown(bool bSendRelease /* = true */)
04e637f9
LOK
746{
747 uint8_t status = 0;
37b0c572 748 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 749 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeDown(bSendRelease);
04e637f9
LOK
750
751 return status;
752}
753
5c73f7f7 754uint8_t CCECProcessor::MuteAudio(bool bSendRelease /* = true */)
04e637f9
LOK
755{
756 uint8_t status = 0;
37b0c572 757 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 758 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->MuteAudio(bSendRelease);
04e637f9
LOK
759
760 return status;
761}
762
16b1e052 763CCECBusDevice *CCECProcessor::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress, bool bRefresh /* = false */) const
8ac9c610 764{
dd18e809
LOK
765 if (m_busDevices[m_configuration.logicalAddresses.primary]->GetPhysicalAddress(false) == iPhysicalAddress)
766 return m_busDevices[m_configuration.logicalAddresses.primary];
8ac9c610 767
b58d9277 768 CCECBusDevice *device = NULL;
8ac9c610
LOK
769 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
770 {
16b1e052 771 if (m_busDevices[iPtr]->GetPhysicalAddress(bRefresh) == iPhysicalAddress)
8ac9c610
LOK
772 {
773 device = m_busDevices[iPtr];
774 break;
775 }
776 }
777
778 return device;
779}
780
a9232a79
LOK
781CCECBusDevice *CCECProcessor::GetDeviceByType(cec_device_type type) const
782{
783 CCECBusDevice *device = NULL;
784
7619faad 785 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
a9232a79 786 {
dd18e809 787 if (m_busDevices[iPtr]->m_type == type && m_configuration.logicalAddresses[iPtr])
a9232a79
LOK
788 {
789 device = m_busDevices[iPtr];
790 break;
791 }
792 }
793
794 return device;
795}
796
842262d8
LOK
797CCECBusDevice *CCECProcessor::GetPrimaryDevice(void) const
798{
799 CCECBusDevice *device(NULL);
dd18e809 800 cec_logical_address primary = m_configuration.logicalAddresses.primary;
842262d8
LOK
801 if (primary != CECDEVICE_UNKNOWN)
802 device = m_busDevices[primary];
803 return device;
804}
805
6a1c0009
LOK
806cec_version CCECProcessor::GetDeviceCecVersion(cec_logical_address iAddress)
807{
808 return m_busDevices[iAddress]->GetCecVersion();
809}
810
ed21be2a
LOK
811cec_osd_name CCECProcessor::GetDeviceOSDName(cec_logical_address iAddress)
812{
813 CStdString strOSDName = m_busDevices[iAddress]->GetOSDName();
814 cec_osd_name retVal;
815
816 snprintf(retVal.name, sizeof(retVal.name), "%s", strOSDName.c_str());
817 retVal.device = iAddress;
818
819 return retVal;
820}
821
a3269a0a
LOK
822bool CCECProcessor::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
823{
cc60ab1c
LOK
824 if (m_busDevices[iAddress])
825 {
826 *language = m_busDevices[iAddress]->GetMenuLanguage();
5744fbba 827 return (strcmp(language->language, "???") != 0);
cc60ab1c
LOK
828 }
829 return false;
a3269a0a
LOK
830}
831
44c74256
LOK
832uint64_t CCECProcessor::GetDeviceVendorId(cec_logical_address iAddress)
833{
cc60ab1c
LOK
834 if (m_busDevices[iAddress])
835 return m_busDevices[iAddress]->GetVendorId();
836 return false;
44c74256
LOK
837}
838
eab72c40
LOK
839uint16_t CCECProcessor::GetDevicePhysicalAddress(cec_logical_address iAddress)
840{
841 if (m_busDevices[iAddress])
842 return m_busDevices[iAddress]->GetPhysicalAddress(false);
843 return false;
844}
845
e55f3f70
LOK
846cec_power_status CCECProcessor::GetDevicePowerStatus(cec_logical_address iAddress)
847{
cc60ab1c
LOK
848 if (m_busDevices[iAddress])
849 return m_busDevices[iAddress]->GetPowerStatus();
850 return CEC_POWER_STATUS_UNKNOWN;
e55f3f70
LOK
851}
852
b4b1b49b
LOK
853cec_logical_address CCECProcessor::GetActiveSource(void)
854{
855 for (uint8_t iPtr = 0; iPtr <= 11; iPtr++)
856 {
857 if (m_busDevices[iPtr]->IsActiveSource())
858 return (cec_logical_address)iPtr;
859 }
860
861 return CECDEVICE_UNKNOWN;
862}
863
864bool CCECProcessor::IsActiveSource(cec_logical_address iAddress)
865{
866 return m_busDevices[iAddress]->IsActiveSource();
867}
868
8d84e2c0 869bool CCECProcessor::Transmit(const cec_command &data)
825ddb96 870{
dd18e809 871 if (m_configuration.logicalAddresses[(uint8_t)data.destination])
c4287bcd
LOK
872 {
873 CLibCEC::AddLog(CEC_LOG_WARNING, "not sending data to myself!");
874 return false;
875 }
876
7cf8ba15 877 uint8_t iMaxTries(0);
eb35e4ca 878 {
7bb4ed43 879 CLockObject lock(m_mutex);
44a1d92a
LOK
880 if (IsStopped())
881 return false;
7bb4ed43 882 LogOutput(data);
5f316715 883 m_iLastTransmission = GetTimeMs();
44195125 884 if (!m_communication || !m_communication->IsOpen())
f9e01dac
LOK
885 {
886 CLibCEC::AddLog(CEC_LOG_ERROR, "cannot transmit command: connection closed");
7bb4ed43 887 return false;
f9e01dac 888 }
7cf8ba15 889 iMaxTries = m_busDevices[data.initiator]->GetHandler()->GetTransmitRetries() + 1;
2abe74eb
LOK
890 }
891
7cf8ba15
LOK
892 return m_communication->Write(data, iMaxTries, m_iLineTimeout, m_iRetryLineTimeout)
893 == ADAPTER_MESSAGE_STATE_SENT_ACKED;
825ddb96 894}
abbca718 895
22b4e74a 896void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, cec_abort_reason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
abbca718 897{
5477a250 898 CLibCEC::AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
9dee1670 899
06a1f7ce 900 cec_command command;
f8513317 901 // TODO
dd18e809 902 cec_command::Format(command, m_configuration.logicalAddresses.primary, address, CEC_OPCODE_FEATURE_ABORT);
ab1469a0
LOK
903 command.parameters.PushBack((uint8_t)opcode);
904 command.parameters.PushBack((uint8_t)reason);
9dee1670
LOK
905
906 Transmit(command);
abbca718
LOK
907}
908
b1f94db1 909void CCECProcessor::ParseCommand(const cec_command &command)
abbca718 910{
e9de9629 911 CStdString dataStr;
1d3ca3de 912 dataStr.Format(">> %1x%1x:%02x", command.initiator, command.destination, command.opcode);
e9de9629
LOK
913 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
914 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
5477a250 915 CLibCEC::AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
dc113aca 916
7871d66e 917 if (!m_bMonitor && command.initiator >= CECDEVICE_TV && command.initiator <= CECDEVICE_BROADCAST)
e9de9629 918 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
dc113aca
LOK
919}
920
6d858ba4
LOK
921cec_logical_addresses CCECProcessor::GetActiveDevices(void)
922{
923 cec_logical_addresses addresses;
988de7b9 924 addresses.Clear();
6d858ba4
LOK
925 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
926 {
927 if (m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
928 addresses.Set((cec_logical_address) iPtr);
929 }
930 return addresses;
931}
932
37b0c572 933bool CCECProcessor::IsPresentDevice(cec_logical_address address)
6d858ba4
LOK
934{
935 return m_busDevices[address]->GetStatus() == CEC_DEVICE_STATUS_PRESENT;
936}
937
37b0c572 938bool CCECProcessor::IsPresentDeviceType(cec_device_type type)
6d858ba4 939{
6d858ba4 940 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
2813bd07
LOK
941 {
942 if (m_busDevices[iPtr]->GetType() == type && m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
6d858ba4 943 return true;
2813bd07
LOK
944 }
945
6d858ba4
LOK
946 return false;
947}
948
0f23c85c
LOK
949uint16_t CCECProcessor::GetPhysicalAddress(void) const
950{
dd18e809
LOK
951 if (!m_configuration.logicalAddresses.IsEmpty() && m_busDevices[m_configuration.logicalAddresses.primary])
952 return m_busDevices[m_configuration.logicalAddresses.primary]->GetPhysicalAddress(false);
cc60ab1c 953 return false;
0f23c85c
LOK
954}
955
06bfd4d7
LOK
956bool CCECProcessor::SetAckMask(uint16_t iMask)
957{
5dcf9f25 958 return m_communication->SetAckMask(iMask);
06bfd4d7 959}
a33794d8 960
4bec9d79 961bool CCECProcessor::TransmitKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
a33794d8 962{
86869f8f 963 return m_busDevices[iDestination]->TransmitKeypress(key, bWait);
a33794d8
LOK
964}
965
4bec9d79 966bool CCECProcessor::TransmitKeyRelease(cec_logical_address iDestination, bool bWait /* = true */)
a33794d8 967{
86869f8f 968 return m_busDevices[iDestination]->TransmitKeyRelease(bWait);
a33794d8 969}
7c63a480 970
8670c970
LOK
971bool CCECProcessor::EnablePhysicalAddressDetection(void)
972{
973 CLibCEC::AddLog(CEC_LOG_WARNING, "deprecated method %s called", __FUNCTION__);
974 uint16_t iPhysicalAddress = m_communication->GetPhysicalAddress();
975 if (iPhysicalAddress != 0)
976 {
977 m_configuration.bAutodetectAddress = 1;
978 m_configuration.iPhysicalAddress = iPhysicalAddress;
979 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
980 m_configuration.iHDMIPort = 0;
981 return SetPhysicalAddress(iPhysicalAddress);
982 }
983 return false;
984}
985
ca27e6cf
LOK
986bool CCECProcessor::StandbyDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
987{
988 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
989 {
990 bool bReturn(true);
991 for (uint8_t iPtr = 0; iPtr <= 0xF; iPtr++)
992 {
993 if (m_configuration.powerOffDevices[iPtr])
994 bReturn &= m_busDevices[iPtr]->Standby();
995 }
996 return bReturn;
997 }
998
999 return m_busDevices[address]->Standby();
1000}
1001
1002bool CCECProcessor::PowerOnDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
1003{
1004 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
1005 {
1006 bool bReturn(true);
1007 for (uint8_t iPtr = 0; iPtr <= 0xF; iPtr++)
1008 {
1009 if (m_configuration.powerOffDevices[iPtr])
1010 bReturn &= m_busDevices[iPtr]->PowerOn();
1011 }
1012 return bReturn;
1013 }
1014
1015 return m_busDevices[address]->PowerOn();
1016}
1017
3e61b350
LOK
1018const char *CCECProcessor::ToString(const cec_device_type type)
1019{
1020 switch (type)
1021 {
1022 case CEC_DEVICE_TYPE_AUDIO_SYSTEM:
1023 return "audio system";
1024 case CEC_DEVICE_TYPE_PLAYBACK_DEVICE:
1025 return "playback device";
1026 case CEC_DEVICE_TYPE_RECORDING_DEVICE:
1027 return "recording device";
1028 case CEC_DEVICE_TYPE_RESERVED:
1029 return "reserved";
1030 case CEC_DEVICE_TYPE_TUNER:
1031 return "tuner";
1032 case CEC_DEVICE_TYPE_TV:
1033 return "TV";
1034 default:
1035 return "unknown";
1036 }
1037}
1038
03ae897d
LOK
1039const char *CCECProcessor::ToString(const cec_menu_state state)
1040{
1041 switch (state)
1042 {
1043 case CEC_MENU_STATE_ACTIVATED:
1044 return "activated";
1045 case CEC_MENU_STATE_DEACTIVATED:
1046 return "deactivated";
1047 default:
1048 return "unknown";
1049 }
1050}
1051
1052const char *CCECProcessor::ToString(const cec_version version)
1053{
1054 switch (version)
1055 {
1056 case CEC_VERSION_1_2:
1057 return "1.2";
1058 case CEC_VERSION_1_2A:
1059 return "1.2a";
1060 case CEC_VERSION_1_3:
1061 return "1.3";
1062 case CEC_VERSION_1_3A:
1063 return "1.3a";
1064 case CEC_VERSION_1_4:
1065 return "1.4";
1066 default:
1067 return "unknown";
1068 }
1069}
1070
1071const char *CCECProcessor::ToString(const cec_power_status status)
1072{
1073 switch (status)
1074 {
1075 case CEC_POWER_STATUS_ON:
1076 return "on";
1077 case CEC_POWER_STATUS_STANDBY:
1078 return "standby";
1079 case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY:
1080 return "in transition from on to standby";
1081 case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON:
1082 return "in transition from standby to on";
1083 default:
1084 return "unknown";
1085 }
1086}
1087
1088const char *CCECProcessor::ToString(const cec_logical_address address)
1089{
1090 switch(address)
1091 {
1092 case CECDEVICE_AUDIOSYSTEM:
1093 return "Audio";
1094 case CECDEVICE_BROADCAST:
1095 return "Broadcast";
1096 case CECDEVICE_FREEUSE:
1097 return "Free use";
1098 case CECDEVICE_PLAYBACKDEVICE1:
1099 return "Playback 1";
1100 case CECDEVICE_PLAYBACKDEVICE2:
1101 return "Playback 2";
1102 case CECDEVICE_PLAYBACKDEVICE3:
1103 return "Playback 3";
1104 case CECDEVICE_RECORDINGDEVICE1:
1105 return "Recorder 1";
1106 case CECDEVICE_RECORDINGDEVICE2:
1107 return "Recorder 2";
1108 case CECDEVICE_RECORDINGDEVICE3:
1109 return "Recorder 3";
1110 case CECDEVICE_RESERVED1:
1111 return "Reserved 1";
1112 case CECDEVICE_RESERVED2:
1113 return "Reserved 2";
1114 case CECDEVICE_TUNER1:
1115 return "Tuner 1";
1116 case CECDEVICE_TUNER2:
1117 return "Tuner 2";
1118 case CECDEVICE_TUNER3:
1119 return "Tuner 3";
1120 case CECDEVICE_TUNER4:
1121 return "Tuner 4";
1122 case CECDEVICE_TV:
1123 return "TV";
1124 default:
1125 return "unknown";
1126 }
1127}
1128
1129const char *CCECProcessor::ToString(const cec_deck_control_mode mode)
1130{
1131 switch (mode)
1132 {
1133 case CEC_DECK_CONTROL_MODE_SKIP_FORWARD_WIND:
1134 return "skip forward wind";
1135 case CEC_DECK_CONTROL_MODE_EJECT:
1136 return "eject";
1137 case CEC_DECK_CONTROL_MODE_SKIP_REVERSE_REWIND:
1138 return "reverse rewind";
1139 case CEC_DECK_CONTROL_MODE_STOP:
1140 return "stop";
1141 default:
1142 return "unknown";
1143 }
1144}
1145
1146const char *CCECProcessor::ToString(const cec_deck_info status)
1147{
1148 switch (status)
1149 {
1150 case CEC_DECK_INFO_PLAY:
1151 return "play";
1152 case CEC_DECK_INFO_RECORD:
1153 return "record";
1154 case CEC_DECK_INFO_PLAY_REVERSE:
1155 return "play reverse";
1156 case CEC_DECK_INFO_STILL:
1157 return "still";
1158 case CEC_DECK_INFO_SLOW:
1159 return "slow";
1160 case CEC_DECK_INFO_SLOW_REVERSE:
1161 return "slow reverse";
1162 case CEC_DECK_INFO_FAST_FORWARD:
1163 return "fast forward";
1164 case CEC_DECK_INFO_FAST_REVERSE:
1165 return "fast reverse";
1166 case CEC_DECK_INFO_NO_MEDIA:
1167 return "no media";
1168 case CEC_DECK_INFO_STOP:
1169 return "stop";
1170 case CEC_DECK_INFO_SKIP_FORWARD_WIND:
1171 return "info skip forward wind";
1172 case CEC_DECK_INFO_SKIP_REVERSE_REWIND:
1173 return "info skip reverse rewind";
1174 case CEC_DECK_INFO_INDEX_SEARCH_FORWARD:
1175 return "info index search forward";
1176 case CEC_DECK_INFO_INDEX_SEARCH_REVERSE:
1177 return "info index search reverse";
1178 case CEC_DECK_INFO_OTHER_STATUS:
1179 return "other";
1180 default:
1181 return "unknown";
1182 }
1183}
1184
1185const char *CCECProcessor::ToString(const cec_opcode opcode)
1186{
1187 switch (opcode)
1188 {
1189 case CEC_OPCODE_ACTIVE_SOURCE:
1190 return "active source";
1191 case CEC_OPCODE_IMAGE_VIEW_ON:
1192 return "image view on";
1193 case CEC_OPCODE_TEXT_VIEW_ON:
1194 return "text view on";
1195 case CEC_OPCODE_INACTIVE_SOURCE:
1196 return "inactive source";
1197 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
1198 return "request active source";
1199 case CEC_OPCODE_ROUTING_CHANGE:
1200 return "routing change";
1201 case CEC_OPCODE_ROUTING_INFORMATION:
1202 return "routing information";
1203 case CEC_OPCODE_SET_STREAM_PATH:
1204 return "set stream path";
1205 case CEC_OPCODE_STANDBY:
1206 return "standby";
1207 case CEC_OPCODE_RECORD_OFF:
1208 return "record off";
1209 case CEC_OPCODE_RECORD_ON:
1210 return "record on";
1211 case CEC_OPCODE_RECORD_STATUS:
1212 return "record status";
1213 case CEC_OPCODE_RECORD_TV_SCREEN:
1214 return "record tv screen";
1215 case CEC_OPCODE_CLEAR_ANALOGUE_TIMER:
1216 return "clear analogue timer";
1217 case CEC_OPCODE_CLEAR_DIGITAL_TIMER:
1218 return "clear digital timer";
1219 case CEC_OPCODE_CLEAR_EXTERNAL_TIMER:
1220 return "clear external timer";
1221 case CEC_OPCODE_SET_ANALOGUE_TIMER:
1222 return "set analogue timer";
1223 case CEC_OPCODE_SET_DIGITAL_TIMER:
1224 return "set digital timer";
1225 case CEC_OPCODE_SET_EXTERNAL_TIMER:
1226 return "set external timer";
1227 case CEC_OPCODE_SET_TIMER_PROGRAM_TITLE:
1228 return "set timer program title";
1229 case CEC_OPCODE_TIMER_CLEARED_STATUS:
1230 return "timer cleared status";
1231 case CEC_OPCODE_TIMER_STATUS:
1232 return "timer status";
1233 case CEC_OPCODE_CEC_VERSION:
1234 return "cec version";
1235 case CEC_OPCODE_GET_CEC_VERSION:
1236 return "get cec version";
1237 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
1238 return "give physical address";
1239 case CEC_OPCODE_GET_MENU_LANGUAGE:
1240 return "get menu language";
1241 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
1242 return "report physical address";
1243 case CEC_OPCODE_SET_MENU_LANGUAGE:
1244 return "set menu language";
1245 case CEC_OPCODE_DECK_CONTROL:
1246 return "deck control";
1247 case CEC_OPCODE_DECK_STATUS:
1248 return "deck status";
1249 case CEC_OPCODE_GIVE_DECK_STATUS:
1250 return "give deck status";
1251 case CEC_OPCODE_PLAY:
1252 return "play";
1253 case CEC_OPCODE_GIVE_TUNER_DEVICE_STATUS:
1254 return "give tuner status";
1255 case CEC_OPCODE_SELECT_ANALOGUE_SERVICE:
1256 return "select analogue service";
1257 case CEC_OPCODE_SELECT_DIGITAL_SERVICE:
1258 return "set digital service";
1259 case CEC_OPCODE_TUNER_DEVICE_STATUS:
1260 return "tuner device status";
1261 case CEC_OPCODE_TUNER_STEP_DECREMENT:
1262 return "tuner step decrement";
1263 case CEC_OPCODE_TUNER_STEP_INCREMENT:
1264 return "tuner step increment";
1265 case CEC_OPCODE_DEVICE_VENDOR_ID:
1266 return "device vendor id";
1267 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
1268 return "give device vendor id";
1269 case CEC_OPCODE_VENDOR_COMMAND:
1270 return "vendor command";
1271 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
1272 return "vendor command with id";
1273 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN:
1274 return "vendor remote button down";
1275 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP:
1276 return "vendor remote button up";
1277 case CEC_OPCODE_SET_OSD_STRING:
1278 return "set osd string";
1279 case CEC_OPCODE_GIVE_OSD_NAME:
1280 return "give osd name";
1281 case CEC_OPCODE_SET_OSD_NAME:
1282 return "set osd name";
1283 case CEC_OPCODE_MENU_REQUEST:
1284 return "menu request";
1285 case CEC_OPCODE_MENU_STATUS:
1286 return "menu status";
1287 case CEC_OPCODE_USER_CONTROL_PRESSED:
1288 return "user control pressed";
1289 case CEC_OPCODE_USER_CONTROL_RELEASE:
1290 return "user control release";
1291 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
1292 return "give device power status";
1293 case CEC_OPCODE_REPORT_POWER_STATUS:
1294 return "report power status";
1295 case CEC_OPCODE_FEATURE_ABORT:
1296 return "feature abort";
1297 case CEC_OPCODE_ABORT:
1298 return "abort";
1299 case CEC_OPCODE_GIVE_AUDIO_STATUS:
1300 return "give audio status";
1301 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
1302 return "give audio mode status";
1303 case CEC_OPCODE_REPORT_AUDIO_STATUS:
1304 return "report audio status";
1305 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
1306 return "set system audio mode";
1307 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
1308 return "system audio mode request";
1309 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
1310 return "system audio mode status";
1311 case CEC_OPCODE_SET_AUDIO_RATE:
1312 return "set audio rate";
24dd566c
LOK
1313 case CEC_OPCODE_NONE:
1314 return "poll";
03ae897d
LOK
1315 default:
1316 return "UNKNOWN";
1317 }
1318}
1319
1320const char *CCECProcessor::ToString(const cec_system_audio_status mode)
1321{
1322 switch(mode)
1323 {
1324 case CEC_SYSTEM_AUDIO_STATUS_ON:
1325 return "on";
1326 case CEC_SYSTEM_AUDIO_STATUS_OFF:
1327 return "off";
1328 default:
1329 return "unknown";
1330 }
1331}
1332
1de6617c 1333const char *CCECProcessor::ToString(const cec_audio_status UNUSED(status))
03ae897d
LOK
1334{
1335 // TODO this is a mask
1336 return "TODO";
1337}
1338
1339const char *CCECProcessor::ToString(const cec_vendor_id vendor)
1340{
1341 switch (vendor)
1342 {
1343 case CEC_VENDOR_SAMSUNG:
1344 return "Samsung";
1345 case CEC_VENDOR_LG:
1346 return "LG";
1347 case CEC_VENDOR_PANASONIC:
1348 return "Panasonic";
1349 case CEC_VENDOR_PIONEER:
1350 return "Pioneer";
1351 case CEC_VENDOR_ONKYO:
1352 return "Onkyo";
1353 case CEC_VENDOR_YAMAHA:
1354 return "Yamaha";
ec0deac1
LOK
1355 case CEC_VENDOR_PHILIPS:
1356 return "Philips";
1a87cacc
LOK
1357 case CEC_VENDOR_SONY:
1358 return "Sony";
26555d6b
LOK
1359 case CEC_VENDOR_TOSHIBA:
1360 return "Toshiba";
03ae897d
LOK
1361 default:
1362 return "Unknown";
1363 }
1364}
1365
caca2d81
LOK
1366const char *CCECProcessor::ToString(const cec_client_version version)
1367{
1368 switch (version)
1369 {
1370 case CEC_CLIENT_VERSION_PRE_1_5:
1371 return "pre-1.5";
1372 case CEC_CLIENT_VERSION_1_5_0:
1373 return "1.5.0";
41e3372a
LOK
1374 case CEC_CLIENT_VERSION_1_5_1:
1375 return "1.5.1";
2e82cff0
LOK
1376 case CEC_CLIENT_VERSION_1_5_2:
1377 return "1.5.2";
caca2d81
LOK
1378 default:
1379 return "Unknown";
1380 }
1381}
1382
3efda01a
LOK
1383const char *CCECProcessor::ToString(const cec_server_version version)
1384{
1385 switch (version)
1386 {
1387 case CEC_SERVER_VERSION_PRE_1_5:
1388 return "pre-1.5";
1389 case CEC_SERVER_VERSION_1_5_0:
1390 return "1.5.0";
41e3372a 1391 case CEC_SERVER_VERSION_1_5_1:
2e82cff0
LOK
1392 return "1.5.1";
1393 case CEC_SERVER_VERSION_1_5_2:
1394 return "1.5.2";
3efda01a
LOK
1395 default:
1396 return "Unknown";
1397 }
1398}
1399
7c63a480
LOK
1400void *CCECBusScan::Process(void)
1401{
1402 CCECBusDevice *device(NULL);
fe6f8e37 1403 uint8_t iCounter(0);
5f316715 1404
5e5637c6 1405 while (!IsStopped())
7c63a480 1406 {
bdb0f7f4 1407 if (++iCounter < 10)
fe6f8e37
LOK
1408 {
1409 Sleep(1000);
1410 continue;
1411 }
5f316715 1412 for (unsigned int iPtr = 0; iPtr <= 11 && !IsStopped(); iPtr++)
7c63a480 1413 {
5f316715
LOK
1414 device = m_processor->m_busDevices[iPtr];
1415 WaitUntilIdle();
1416 if (device && device->GetStatus(true) == CEC_DEVICE_STATUS_PRESENT)
5e5637c6 1417 {
5f316715
LOK
1418 WaitUntilIdle();
1419 if (!IsStopped())
1420 device->GetVendorId();
1421
1422 WaitUntilIdle();
1423 if (!IsStopped())
1424 device->GetPowerStatus(true);
5e5637c6 1425 }
7c63a480
LOK
1426 }
1427 }
5f316715 1428
7c63a480
LOK
1429 return NULL;
1430}
1113cb7d 1431
5f316715
LOK
1432void CCECBusScan::WaitUntilIdle(void)
1433{
1434 if (IsStopped())
1435 return;
1436
701f753b 1437 int32_t iWaitTime = 3000 - (int32_t)(GetTimeMs() - m_processor->GetLastTransmission());
5f316715
LOK
1438 while (iWaitTime > 0)
1439 {
1440 Sleep(iWaitTime);
701f753b 1441 iWaitTime = 3000 - (int32_t)(GetTimeMs() - m_processor->GetLastTransmission());
5f316715
LOK
1442 }
1443}
1444
a2198e5e 1445bool CCECProcessor::StartBootloader(const char *strPort /* = NULL */)
1113cb7d 1446{
a2198e5e
LOK
1447 if (!m_communication && strPort)
1448 {
1449 bool bReturn(false);
1450 IAdapterCommunication *comm = new CUSBCECAdapterCommunication(this, strPort);
1451 CTimeout timeout(10000);
1452 int iConnectTry(0);
1453 while (timeout.TimeLeft() > 0 && (bReturn = comm->Open(NULL, (timeout.TimeLeft() / CEC_CONNECT_TRIES)), true) == false)
1454 {
1455 CLibCEC::AddLog(CEC_LOG_ERROR, "could not open a connection (try %d)", ++iConnectTry);
1456 comm->Close();
1457 Sleep(500);
1458 }
1459 if (comm->IsOpen())
1460 {
1461 bReturn = comm->StartBootloader();
1462 delete comm;
1463 }
1464 return bReturn;
1465 }
1466 else
1467 {
1468 return m_communication->StartBootloader();
1469 }
1113cb7d
LOK
1470}
1471
1472bool CCECProcessor::PingAdapter(void)
1473{
1474 return m_communication->PingAdapter();
1475}
6729ac71
LOK
1476
1477void CCECProcessor::HandlePoll(cec_logical_address initiator, cec_logical_address destination)
1478{
0cfdeb5a 1479 m_busDevices[initiator]->HandlePoll(destination);
6729ac71
LOK
1480}
1481
7bb4ed43 1482bool CCECProcessor::HandleReceiveFailed(cec_logical_address initiator)
6729ac71 1483{
0cfdeb5a 1484 return !m_busDevices[initiator]->HandleReceiveFailed();
6729ac71 1485}
f42d3e0f
LOK
1486
1487bool CCECProcessor::SetStreamPath(uint16_t iPhysicalAddress)
1488{
1489 // stream path changes are sent by the TV
1490 return m_busDevices[CECDEVICE_TV]->GetHandler()->TransmitSetStreamPath(iPhysicalAddress);
1491}
d40928b5 1492
30b4aac0
LOK
1493bool CCECProcessor::SetConfiguration(const libcec_configuration *configuration)
1494{
30a09f32 1495 bool bReinit(false);
30b4aac0 1496 CCECBusDevice *primary = IsRunning() ? GetPrimaryDevice() : NULL;
30a09f32 1497 cec_device_type oldPrimaryType = primary ? primary->GetType() : CEC_DEVICE_TYPE_RECORDING_DEVICE;
f0154449 1498 m_configuration.clientVersion = configuration->clientVersion;
30b4aac0
LOK
1499
1500 // client version 1.5.0
1501
1502 // device types
8670c970 1503 bool bDeviceTypeChanged = IsRunning () && m_configuration.deviceTypes != configuration->deviceTypes;
30b4aac0
LOK
1504 m_configuration.deviceTypes = configuration->deviceTypes;
1505
30a09f32
LOK
1506 bool bPhysicalAddressChanged(false);
1507
8670c970 1508 // autodetect address
30a09f32
LOK
1509 bool bPhysicalAutodetected(false);
1510 if (IsRunning() && configuration->bAutodetectAddress == 1)
8670c970 1511 {
30a09f32
LOK
1512 uint16_t iPhysicalAddress = m_communication->GetPhysicalAddress();
1513 if (iPhysicalAddress != 0)
1514 {
1515 if (IsRunning())
1516 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - autodetected physical address '%4x'", __FUNCTION__, iPhysicalAddress);
1517 bPhysicalAddressChanged = (m_configuration.iPhysicalAddress != iPhysicalAddress);
1518 m_configuration.iPhysicalAddress = iPhysicalAddress;
1519 m_configuration.iHDMIPort = 0;
1520 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1521 bPhysicalAutodetected = true;
1522 }
8670c970
LOK
1523 }
1524
30b4aac0 1525 // physical address
8670c970
LOK
1526 if (!bPhysicalAutodetected)
1527 {
30a09f32
LOK
1528 if (configuration->iPhysicalAddress != 0)
1529 bPhysicalAddressChanged = IsRunning() && m_configuration.iPhysicalAddress != configuration->iPhysicalAddress;
1530 if (IsRunning())
1531 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using physical address '%4x'", __FUNCTION__, configuration->iPhysicalAddress);
8670c970
LOK
1532 m_configuration.iPhysicalAddress = configuration->iPhysicalAddress;
1533 }
30b4aac0 1534
8670c970
LOK
1535 bool bHdmiPortChanged(false);
1536 if (!bPhysicalAutodetected && !bPhysicalAddressChanged)
1537 {
30a09f32 1538 // base device
8670c970 1539 bHdmiPortChanged = IsRunning() && m_configuration.baseDevice != configuration->baseDevice;
30a09f32
LOK
1540 if (IsRunning())
1541 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using base device '%x'", __FUNCTION__, (int)configuration->baseDevice);
8670c970 1542 m_configuration.baseDevice = configuration->baseDevice;
30b4aac0 1543
30a09f32 1544 // hdmi port
8670c970 1545 bHdmiPortChanged |= IsRunning() && m_configuration.iHDMIPort != configuration->iHDMIPort;
30a09f32
LOK
1546 if (IsRunning())
1547 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using HDMI port '%d'", __FUNCTION__, configuration->iHDMIPort);
8670c970
LOK
1548 m_configuration.iHDMIPort = configuration->iHDMIPort;
1549 }
1550 else
1551 {
30a09f32
LOK
1552 if (IsRunning())
1553 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - resetting HDMI port and base device to defaults", __FUNCTION__);
1554 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1555 m_configuration.iHDMIPort = 0;
8670c970 1556 }
30b4aac0 1557
30a09f32 1558 bReinit = bPhysicalAddressChanged || bHdmiPortChanged || bDeviceTypeChanged;
f0154449 1559
30b4aac0
LOK
1560 // device name
1561 snprintf(m_configuration.strDeviceName, 13, "%s", configuration->strDeviceName);
1562 if (primary && !primary->GetOSDName().Equals(m_configuration.strDeviceName))
1563 {
1564 primary->SetOSDName(m_configuration.strDeviceName);
f0154449 1565 if (!bReinit && IsRunning())
30b4aac0
LOK
1566 primary->TransmitOSDName(CECDEVICE_TV);
1567 }
1568
1569 // tv vendor id override
1570 if (m_configuration.tvVendor != configuration->tvVendor)
1571 {
1572 m_configuration.tvVendor= configuration->tvVendor;
1573 m_busDevices[CECDEVICE_TV]->SetVendorId((uint64_t)m_configuration.tvVendor);
1574 }
1575
1576 // wake CEC devices
1577 if (m_configuration.wakeDevices != configuration->wakeDevices)
1578 {
1579 m_configuration.wakeDevices = configuration->wakeDevices;
f0154449 1580 if (!bReinit && IsRunning())
ca27e6cf 1581 PowerOnDevices();
30b4aac0
LOK
1582 }
1583
1584 // just copy these
3efda01a
LOK
1585 m_configuration.clientVersion = configuration->clientVersion;
1586 m_configuration.bActivateSource = configuration->bActivateSource;
30b4aac0 1587 m_configuration.bGetSettingsFromROM = configuration->bGetSettingsFromROM;
ca27e6cf 1588 m_configuration.powerOffDevices = configuration->powerOffDevices;
30b4aac0
LOK
1589 m_configuration.bPowerOffScreensaver = configuration->bPowerOffScreensaver;
1590 m_configuration.bPowerOffOnStandby = configuration->bPowerOffOnStandby;
1591
41e3372a
LOK
1592 // client version 1.5.1
1593 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_1)
1594 m_configuration.bSendInactiveSource = configuration->bSendInactiveSource;
1595
30b4aac0
LOK
1596 // ensure that there is at least 1 device type set
1597 if (m_configuration.deviceTypes.IsEmpty())
1598 m_configuration.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
1599
f0154449 1600 if (bReinit)
30b4aac0 1601 {
44a1d92a
LOK
1602 if (bDeviceTypeChanged)
1603 return ChangeDeviceType(oldPrimaryType, m_configuration.deviceTypes[0]);
1604 else if (bPhysicalAddressChanged)
1605 return SetPhysicalAddress(m_configuration.iPhysicalAddress);
8670c970 1606 else
f0154449 1607 return SetHDMIPort(m_configuration.baseDevice, m_configuration.iHDMIPort);
30b4aac0 1608 }
dd18e809 1609 else if (m_configuration.bActivateSource == 1 && IsRunning() && !IsActiveSource(m_configuration.logicalAddresses.primary))
c3c13157
LOK
1610 {
1611 // activate the source if we're not already the active source
1612 SetActiveSource(m_configuration.deviceTypes.types[0]);
1613 }
30b4aac0
LOK
1614
1615 return true;
1616}
1617
d40928b5
LOK
1618bool CCECProcessor::GetCurrentConfiguration(libcec_configuration *configuration)
1619{
30b4aac0 1620 // client version 1.5.0
30b4aac0
LOK
1621 snprintf(configuration->strDeviceName, 13, "%s", m_configuration.strDeviceName);
1622 configuration->deviceTypes = m_configuration.deviceTypes;
8670c970 1623 configuration->bAutodetectAddress = m_configuration.bAutodetectAddress;
30b4aac0
LOK
1624 configuration->iPhysicalAddress = m_configuration.iPhysicalAddress;
1625 configuration->baseDevice = m_configuration.baseDevice;
1626 configuration->iHDMIPort = m_configuration.iHDMIPort;
3efda01a
LOK
1627 configuration->clientVersion = m_configuration.clientVersion;
1628 configuration->serverVersion = m_configuration.serverVersion;
30b4aac0 1629 configuration->tvVendor = m_configuration.tvVendor;
3efda01a 1630
30b4aac0 1631 configuration->bGetSettingsFromROM = m_configuration.bGetSettingsFromROM;
3efda01a
LOK
1632 configuration->bUseTVMenuLanguage = m_configuration.bUseTVMenuLanguage;
1633 configuration->bActivateSource = m_configuration.bActivateSource;
1634 configuration->wakeDevices = m_configuration.wakeDevices;
ca27e6cf 1635 configuration->powerOffDevices = m_configuration.powerOffDevices;
30b4aac0
LOK
1636 configuration->bPowerOffScreensaver = m_configuration.bPowerOffScreensaver;
1637 configuration->bPowerOffOnStandby = m_configuration.bPowerOffOnStandby;
1638
41e3372a
LOK
1639 // client version 1.5.1
1640 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_1)
1641 configuration->bSendInactiveSource = m_configuration.bSendInactiveSource;
1642
dd18e809
LOK
1643 // client version 1.5.3
1644 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_3)
1645 configuration->logicalAddresses = m_configuration.logicalAddresses;
1646
d40928b5
LOK
1647 return true;
1648}
224ea877
LOK
1649
1650bool CCECProcessor::CanPersistConfiguration(void)
1651{
1652 return m_communication->GetFirmwareVersion() >= 2;
1653}
1654
1655bool CCECProcessor::PersistConfiguration(libcec_configuration *configuration)
1656{
1657 return m_communication->PersistConfiguration(configuration);
1658}
3efda01a
LOK
1659
1660void CCECProcessor::RescanActiveDevices(void)
1661{
1662 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
1663 m_busDevices[iPtr]->GetStatus(true);
1664}