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