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