cec: added PollDevice()/cec_poll_device()
[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"
2abe74eb 37#include "LibCEC.h"
abbca718 38#include "util/StdString.h"
b9187cc6 39#include "platform/timeutils.h"
abbca718
LOK
40
41using namespace CEC;
42using namespace std;
43
2b4d8297 44CCECProcessor::CCECProcessor(CLibCEC *controller, CAdapterCommunication *serComm, const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
179efe86 45 m_iLogicalAddress(iLogicalAddress),
2abe74eb
LOK
46 m_strDeviceName(strDeviceName),
47 m_communication(serComm),
8b7e5ff6 48 m_controller(controller),
06bfd4d7 49 m_bMonitor(false)
abbca718 50{
7ea0d558 51 for (int iPtr = 0; iPtr < 16; iPtr++)
09c10b66 52 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, iPtr == iLogicalAddress ? iPhysicalAddress : 0);
abbca718
LOK
53}
54
2abe74eb 55CCECProcessor::~CCECProcessor(void)
abbca718 56{
8b0ee2cc 57 m_startCondition.Broadcast();
2abe74eb
LOK
58 StopThread();
59 m_communication = NULL;
60 m_controller = NULL;
d1998c7b
LOK
61 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
62 delete m_busDevices[iPtr];
abbca718
LOK
63}
64
2abe74eb 65bool CCECProcessor::Start(void)
abbca718 66{
8b0ee2cc 67 CLockObject lock(&m_mutex);
2abe74eb 68 if (!m_communication || !m_communication->IsOpen())
13fd6a66
LOK
69 {
70 m_controller->AddLog(CEC_LOG_ERROR, "connection is closed");
a8f0bd18 71 return false;
13fd6a66 72 }
abbca718 73
60fa4578 74 if (CreateThread())
8b0ee2cc
LOK
75 {
76 if (!m_startCondition.Wait(&m_mutex))
77 {
78 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
79 return false;
80 }
a8f0bd18 81 return true;
8b0ee2cc 82 }
a8f0bd18 83 else
2abe74eb 84 m_controller->AddLog(CEC_LOG_ERROR, "could not create a processor thread");
abbca718 85
a8f0bd18 86 return false;
abbca718
LOK
87}
88
2abe74eb 89void *CCECProcessor::Process(void)
f99bc831 90{
e0407d3d
LOK
91 cec_command command;
92 CCECAdapterMessage msg;
93
94 SetAckMask(0x1 << (uint8_t)m_iLogicalAddress);
95
8b0ee2cc
LOK
96 {
97 CLockObject lock(&m_mutex);
98 m_controller->AddLog(CEC_LOG_DEBUG, "processor thread started");
99 m_startCondition.Signal();
100 }
abbca718 101
13fd6a66 102 while (!IsStopped())
abbca718 103 {
60fa4578 104 bool bParseFrame(false);
9dee1670 105 command.clear();
76321de4
LOK
106 msg.clear();
107
60fa4578
LOK
108 {
109 CLockObject lock(&m_mutex);
88c43521 110 if (m_communication->IsOpen() && m_communication->Read(msg, 50))
b5f34cf9
LOK
111 {
112 m_controller->AddLog(msg.is_error() ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
88c43521 113 bParseFrame = ParseMessage(msg) && !IsStopped();
b5f34cf9 114 }
76321de4
LOK
115
116 if (bParseFrame)
9dee1670 117 command = m_currentframe;
60fa4578
LOK
118 }
119
13fd6a66 120 if (bParseFrame)
9dee1670 121 ParseCommand(command);
abbca718 122
b5f34cf9
LOK
123 Sleep(5);
124
13fd6a66
LOK
125 m_controller->CheckKeypressTimeout();
126
0ab58650
LOK
127 for (unsigned int iDevicePtr = 0; iDevicePtr < 16; iDevicePtr++)
128 m_busDevices[iDevicePtr]->PollVendorId();
129
b5f34cf9 130 Sleep(5);
abbca718
LOK
131 }
132
60fa4578 133 return NULL;
abbca718
LOK
134}
135
2abe74eb 136bool CCECProcessor::SetActiveView(void)
abbca718 137{
60fa4578 138 if (!IsRunning())
f99bc831
LOK
139 return false;
140
cc60ab1c
LOK
141 if (m_iLogicalAddress != CECDEVICE_UNKNOWN && m_busDevices[m_iLogicalAddress])
142 return m_busDevices[m_iLogicalAddress]->BroadcastActiveView();
143 return false;
abbca718
LOK
144}
145
2abe74eb 146bool CCECProcessor::SetInactiveView(void)
abbca718 147{
60fa4578 148 if (!IsRunning())
f99bc831
LOK
149 return false;
150
cc60ab1c
LOK
151 if (m_iLogicalAddress != CECDEVICE_UNKNOWN && m_busDevices[m_iLogicalAddress])
152 return m_busDevices[m_iLogicalAddress]->BroadcastInactiveView();
153 return false;
abbca718
LOK
154}
155
9dee1670 156void CCECProcessor::LogOutput(const cec_command &data)
abbca718 157{
1d3ca3de 158 CStdString strTx;
57f45e6c
LOK
159 strTx.Format("<< %02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination);
160 if (data.opcode_set)
161 strTx.AppendFormat(":%02x", (uint8_t)data.opcode);
9dee1670 162
06a1f7ce 163 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
1d3ca3de
LOK
164 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
165 m_controller->AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
9dee1670 166}
2abe74eb 167
06bfd4d7 168bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
abbca718 169{
06bfd4d7 170 if (m_iLogicalAddress != iLogicalAddress)
06775107
LOK
171 {
172 CStdString strLog;
173 strLog.Format("<< setting logical address to %1x", iLogicalAddress);
174 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
06775107 175 m_iLogicalAddress = iLogicalAddress;
06bfd4d7 176 return SetAckMask(0x1 << (uint8_t)m_iLogicalAddress);
06775107 177 }
2abe74eb 178
06bfd4d7 179 return true;
abbca718 180}
825ddb96 181
2492216a
LOK
182bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress)
183{
cc60ab1c
LOK
184 if (m_iLogicalAddress != CECDEVICE_UNKNOWN && m_busDevices[m_iLogicalAddress])
185 {
186 m_busDevices[m_iLogicalAddress]->SetPhysicalAddress(iPhysicalAddress);
187 return m_busDevices[m_iLogicalAddress]->BroadcastActiveView();
188 }
189 return false;
1969b140
LOK
190}
191
8b7e5ff6
LOK
192bool CCECProcessor::SwitchMonitoring(bool bEnable)
193{
194 CStdString strLog;
195 strLog.Format("== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
196 m_controller->AddLog(CEC_LOG_NOTICE, strLog.c_str());
197
198 m_bMonitor = bEnable;
199 if (bEnable)
06bfd4d7 200 return SetAckMask(0);
8b7e5ff6 201 else
06bfd4d7 202 return SetAckMask(0x1 << (uint8_t)m_iLogicalAddress);
8b7e5ff6
LOK
203}
204
57f45e6c
LOK
205bool CCECProcessor::PollDevice(cec_logical_address iAddress)
206{
207 if (iAddress != CECDEVICE_UNKNOWN && m_busDevices[iAddress])
208 return m_busDevices[iAddress]->PollDevice();
209 return false;
210}
211
6a1c0009
LOK
212cec_version CCECProcessor::GetDeviceCecVersion(cec_logical_address iAddress)
213{
214 return m_busDevices[iAddress]->GetCecVersion();
215}
216
a3269a0a
LOK
217bool CCECProcessor::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
218{
cc60ab1c
LOK
219 if (m_busDevices[iAddress])
220 {
221 *language = m_busDevices[iAddress]->GetMenuLanguage();
5744fbba 222 return (strcmp(language->language, "???") != 0);
cc60ab1c
LOK
223 }
224 return false;
a3269a0a
LOK
225}
226
44c74256
LOK
227uint64_t CCECProcessor::GetDeviceVendorId(cec_logical_address iAddress)
228{
cc60ab1c
LOK
229 if (m_busDevices[iAddress])
230 return m_busDevices[iAddress]->GetVendorId();
231 return false;
44c74256
LOK
232}
233
e55f3f70
LOK
234cec_power_status CCECProcessor::GetDevicePowerStatus(cec_logical_address iAddress)
235{
cc60ab1c
LOK
236 if (m_busDevices[iAddress])
237 return m_busDevices[iAddress]->GetPowerStatus();
238 return CEC_POWER_STATUS_UNKNOWN;
e55f3f70
LOK
239}
240
8d84e2c0 241bool CCECProcessor::Transmit(const cec_command &data)
825ddb96 242{
28352a04 243 bool bReturn(false);
13929cff
LOK
244 LogOutput(data);
245
28352a04
LOK
246 CCECAdapterMessage *output = new CCECAdapterMessage(data);
247 bReturn = Transmit(output);
248 delete output;
249
250 return bReturn;
06bfd4d7 251}
13929cff 252
28352a04 253bool CCECProcessor::Transmit(CCECAdapterMessage *output)
06bfd4d7
LOK
254{
255 bool bReturn(false);
2abe74eb 256 CLockObject lock(&m_mutex);
eb35e4ca
LOK
257 {
258 CLockObject msgLock(&output->mutex);
259 if (!m_communication || !m_communication->Write(output))
260 return bReturn;
261 else
0e31a62c 262 {
3a0ca6e1 263 output->condition.Wait(&output->mutex);
0e31a62c
LOK
264 if (output->state != ADAPTER_MESSAGE_STATE_SENT)
265 {
266 m_controller->AddLog(CEC_LOG_ERROR, "command was not sent");
267 return bReturn;
268 }
269 }
2abe74eb 270
06bfd4d7 271 if (output->transmit_timeout > 0)
cd505625 272 {
06bfd4d7 273 if ((bReturn = WaitForTransmitSucceeded(output->size(), output->transmit_timeout)) == false)
cd505625
LOK
274 m_controller->AddLog(CEC_LOG_ERROR, "did not receive ack");
275 }
276 else
cd505625 277 bReturn = true;
2abe74eb
LOK
278 }
279
7ea0d558 280 return bReturn;
825ddb96 281}
abbca718 282
2abe74eb 283void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, ECecAbortReason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
abbca718 284{
9dee1670
LOK
285 m_controller->AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
286
06a1f7ce
LOK
287 cec_command command;
288 cec_command::format(command, m_iLogicalAddress, address, CEC_OPCODE_FEATURE_ABORT);
9dee1670
LOK
289 command.parameters.push_back((uint8_t)opcode);
290 command.parameters.push_back((uint8_t)reason);
291
292 Transmit(command);
abbca718
LOK
293}
294
1f0e9e0f 295bool CCECProcessor::WaitForTransmitSucceeded(uint8_t iLength, uint32_t iTimeout /* = 1000 */)
abbca718 296{
1f0e9e0f
LOK
297 bool bError(false);
298 bool bTransmitSucceeded(false);
7ea0d558 299 uint8_t iPacketsLeft(iLength / 4);
abbca718
LOK
300
301 int64_t iNow = GetTimeMs();
25701fa6 302 int64_t iTargetTime = iNow + (uint64_t) iTimeout;
abbca718 303
1f0e9e0f 304 while (!bTransmitSucceeded && !bError && (iTimeout == 0 || iNow < iTargetTime))
abbca718 305 {
220537f2 306 CCECAdapterMessage msg;
25701fa6 307
06a1f7ce 308 if (!m_communication->Read(msg, iTimeout > 0 ? (int32_t)(iTargetTime - iNow) : 1000))
abbca718 309 {
abbca718 310 iNow = GetTimeMs();
5d38b0b6
LOK
311 continue;
312 }
313
edab6137 314 if ((bError = msg.is_error()) == false)
7ea0d558 315 {
0544ff56
LOK
316 m_controller->AddLog(bError ? CEC_LOG_WARNING : CEC_LOG_DEBUG, msg.ToString());
317
edab6137
LOK
318 switch(msg.message())
319 {
320 case MSGCODE_COMMAND_ACCEPTED:
321 if (iPacketsLeft > 0)
322 iPacketsLeft--;
323 break;
324 case MSGCODE_TRANSMIT_SUCCEEDED:
325 bTransmitSucceeded = (iPacketsLeft == 0);
326 bError = !bTransmitSucceeded;
327 break;
328 default:
329 ParseMessage(msg);
330 }
7ea0d558 331
edab6137
LOK
332 iNow = GetTimeMs();
333 }
abbca718
LOK
334 }
335
1f0e9e0f 336 return bTransmitSucceeded && !bError;
abbca718
LOK
337}
338
0e7b6c54 339bool CCECProcessor::ParseMessage(const CCECAdapterMessage &msg)
abbca718 340{
7ea0d558 341 bool bEom = false;
60fa4578 342
0e7b6c54 343 if (msg.empty())
7ea0d558 344 return bEom;
abbca718 345
0e7b6c54 346 switch(msg.message())
abbca718 347 {
abbca718
LOK
348 case MSGCODE_FRAME_START:
349 {
7ea0d558 350 m_currentframe.clear();
0e7b6c54 351 if (msg.size() >= 2)
abbca718 352 {
0e7b6c54
LOK
353 m_currentframe.initiator = msg.initiator();
354 m_currentframe.destination = msg.destination();
355 m_currentframe.ack = msg.ack();
356 m_currentframe.eom = msg.eom();
abbca718 357 }
abbca718
LOK
358 }
359 break;
360 case MSGCODE_FRAME_DATA:
361 {
0e7b6c54 362 if (msg.size() >= 2)
78e8010a 363 {
e41b06f9 364 m_currentframe.push_back(msg[1]);
0e7b6c54 365 m_currentframe.eom = msg.eom();
abbca718 366 }
0e7b6c54 367 bEom = msg.eom();
abbca718 368 }
78e8010a 369 break;
abbca718
LOK
370 default:
371 break;
372 }
7ea0d558
LOK
373
374 return bEom;
abbca718
LOK
375}
376
e9de9629 377void CCECProcessor::ParseCommand(cec_command &command)
abbca718 378{
e9de9629 379 CStdString dataStr;
1d3ca3de 380 dataStr.Format(">> %1x%1x:%02x", command.initiator, command.destination, command.opcode);
e9de9629
LOK
381 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
382 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
1d3ca3de 383 m_controller->AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
dc113aca 384
e9de9629
LOK
385 if (!m_bMonitor)
386 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
dc113aca
LOK
387}
388
0f23c85c
LOK
389uint16_t CCECProcessor::GetPhysicalAddress(void) const
390{
cc60ab1c
LOK
391 if (m_iLogicalAddress != CECDEVICE_UNKNOWN && m_busDevices[m_iLogicalAddress])
392 return m_busDevices[m_iLogicalAddress]->GetPhysicalAddress();
393 return false;
0f23c85c
LOK
394}
395
e9de9629 396void CCECProcessor::SetCurrentButton(cec_user_control_code iButtonCode)
dc113aca 397{
e9de9629 398 m_controller->SetCurrentButton(iButtonCode);
dc113aca
LOK
399}
400
e9de9629 401void CCECProcessor::AddCommand(const cec_command &command)
dc113aca 402{
0544ff56 403 m_controller->AddCommand(command);
dc113aca
LOK
404}
405
95ba7a09
LOK
406void CCECProcessor::AddKey(cec_keypress &key)
407{
408 m_controller->AddKey(key);
409}
410
e9de9629 411void CCECProcessor::AddKey(void)
dc113aca 412{
e9de9629 413 m_controller->AddKey();
abbca718 414}
acec5f48 415
e9de9629 416void CCECProcessor::AddLog(cec_log_level level, const CStdString &strMessage)
acec5f48 417{
e9de9629 418 m_controller->AddLog(level, strMessage);
acec5f48 419}
06bfd4d7
LOK
420
421bool CCECProcessor::SetAckMask(uint16_t iMask)
422{
28352a04 423 bool bReturn(false);
06bfd4d7
LOK
424 CStdString strLog;
425 strLog.Format("setting ackmask to %2x", iMask);
426 m_controller->AddLog(CEC_LOG_DEBUG, strLog.c_str());
427
28352a04 428 CCECAdapterMessage *output = new CCECAdapterMessage;
06bfd4d7
LOK
429
430 output->push_back(MSGSTART);
431 output->push_escaped(MSGCODE_SET_ACK_MASK);
432 output->push_escaped(iMask >> 8);
433 output->push_escaped((uint8_t)iMask);
434 output->push_back(MSGEND);
435
28352a04 436 if ((bReturn = Transmit(output)) == false)
06bfd4d7 437 m_controller->AddLog(CEC_LOG_ERROR, "could not set the ackmask");
06bfd4d7 438
28352a04
LOK
439 delete output;
440
441 return bReturn;
06bfd4d7 442}