2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
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/
33 #include "CECProcessor.h"
35 #include "AdapterCommunication.h"
36 #include "devices/CECBusDevice.h"
38 #include "util/StdString.h"
39 #include "platform/timeutils.h"
44 CCECProcessor::CCECProcessor(CLibCEC
*controller
, CAdapterCommunication
*serComm
, const char *strDeviceName
, cec_logical_address iLogicalAddress
/* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
45 m_iLogicalAddress(iLogicalAddress
),
46 m_strDeviceName(strDeviceName
),
47 m_communication(serComm
),
48 m_controller(controller
),
51 for (int iPtr
= 0; iPtr
< 16; iPtr
++)
52 m_busDevices
[iPtr
] = new CCECBusDevice(this, (cec_logical_address
) iPtr
, iPtr
== iLogicalAddress
? iPhysicalAddress
: 0);
55 CCECProcessor::~CCECProcessor(void)
58 m_communication
= NULL
;
60 for (unsigned int iPtr
= 0; iPtr
< 16; iPtr
++)
61 delete m_busDevices
[iPtr
];
64 bool CCECProcessor::Start(void)
66 if (!m_communication
|| !m_communication
->IsOpen())
68 m_controller
->AddLog(CEC_LOG_ERROR
, "connection is closed");
72 if (!SetLogicalAddress(m_iLogicalAddress
))
74 m_controller
->AddLog(CEC_LOG_ERROR
, "could not set the logical address");
81 m_controller
->AddLog(CEC_LOG_ERROR
, "could not create a processor thread");
86 void *CCECProcessor::Process(void)
88 m_controller
->AddLog(CEC_LOG_DEBUG
, "processor thread started");
91 CCECAdapterMessage msg
;
92 CCECAdapterMessagePtr msgPtr
;
96 bool bParseFrame(false);
101 CLockObject
lock(&m_mutex
);
102 if (m_frameBuffer
.Pop(msgPtr
))
103 bParseFrame
= ParseMessage(msgPtr
);
104 else if (m_communication
->IsOpen() && m_communication
->Read(msg
, 50))
106 msgPtr
= CCECAdapterMessagePtr(new CCECAdapterMessage(msg
));
107 bParseFrame
= ParseMessage(msgPtr
);
110 bParseFrame
&= !IsStopped();
112 command
= m_currentframe
;
116 ParseCommand(command
);
118 m_controller
->CheckKeypressTimeout();
120 for (unsigned int iDevicePtr
= 0; iDevicePtr
< 16; iDevicePtr
++)
121 m_busDevices
[iDevicePtr
]->PollVendorId();
130 bool CCECProcessor::SetActiveView(void)
135 return m_busDevices
[m_iLogicalAddress
]->BroadcastActiveView();
138 bool CCECProcessor::SetInactiveView(void)
143 return m_busDevices
[m_iLogicalAddress
]->BroadcastInactiveView();
146 void CCECProcessor::LogOutput(const cec_command
&data
)
149 strTx
.Format("<< %02x:%02x", ((uint8_t)data
.initiator
<< 4) + (uint8_t)data
.destination
, (uint8_t)data
.opcode
);
151 for (uint8_t iPtr
= 0; iPtr
< data
.parameters
.size
; iPtr
++)
152 strTx
.AppendFormat(":%02x", data
.parameters
[iPtr
]);
153 m_controller
->AddLog(CEC_LOG_TRAFFIC
, strTx
.c_str());
156 bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress
)
158 if (m_iLogicalAddress
!= iLogicalAddress
)
161 strLog
.Format("<< setting logical address to %1x", iLogicalAddress
);
162 m_controller
->AddLog(CEC_LOG_NOTICE
, strLog
.c_str());
164 m_iLogicalAddress
= iLogicalAddress
;
165 return m_communication
&& m_communication
->SetAckMask(0x1 << (uint8_t)m_iLogicalAddress
);
171 bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress
)
173 m_busDevices
[m_iLogicalAddress
]->SetPhysicalAddress(iPhysicalAddress
);
174 return m_busDevices
[m_iLogicalAddress
]->BroadcastActiveView();
177 bool CCECProcessor::SwitchMonitoring(bool bEnable
)
180 strLog
.Format("== %s monitoring mode ==", bEnable
? "enabling" : "disabling");
181 m_controller
->AddLog(CEC_LOG_NOTICE
, strLog
.c_str());
183 m_bMonitor
= bEnable
;
185 return m_communication
&& m_communication
->SetAckMask(0);
187 return m_communication
&& m_communication
->SetAckMask(0x1 << (uint8_t)m_iLogicalAddress
);
190 bool CCECProcessor::Transmit(const cec_command
&data
)
195 CCECAdapterMessagePtr
output(new CCECAdapterMessage(data
));
197 CLockObject
lock(&m_mutex
);
199 CLockObject
msgLock(&output
->mutex
);
200 if (!m_communication
|| !m_communication
->Write(output
))
204 output
->condition
.Wait(&output
->mutex
);
205 if (output
->state
!= ADAPTER_MESSAGE_STATE_SENT
)
207 m_controller
->AddLog(CEC_LOG_ERROR
, "command was not sent");
213 if (data
.ack_timeout
> 0)
216 if ((bReturn
= WaitForAck(&bError
, output
->size(), data
.ack_timeout
)) == false)
217 m_controller
->AddLog(CEC_LOG_ERROR
, "did not receive ack");
227 void CCECProcessor::TransmitAbort(cec_logical_address address
, cec_opcode opcode
, ECecAbortReason reason
/* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
229 m_controller
->AddLog(CEC_LOG_DEBUG
, "<< transmitting abort message");
232 cec_command::format(command
, m_iLogicalAddress
, address
, CEC_OPCODE_FEATURE_ABORT
);
233 command
.parameters
.push_back((uint8_t)opcode
);
234 command
.parameters
.push_back((uint8_t)reason
);
239 bool CCECProcessor::WaitForAck(bool *bError
, uint8_t iLength
, uint32_t iTimeout
/* = 1000 */)
241 bool bTransmitSucceeded
= false;
242 uint8_t iPacketsLeft(iLength
/ 4);
245 int64_t iNow
= GetTimeMs();
246 int64_t iTargetTime
= iNow
+ (uint64_t) iTimeout
;
248 while (!bTransmitSucceeded
&& !*bError
&& (iTimeout
== 0 || iNow
< iTargetTime
))
250 CCECAdapterMessage msg
;
252 if (!m_communication
->Read(msg
, iTimeout
> 0 ? (int32_t)(iTargetTime
- iNow
) : 1000))
258 switch(msg
.message())
260 case MSGCODE_TIMEOUT_ERROR
:
261 case MSGCODE_HIGH_ERROR
:
262 case MSGCODE_LOW_ERROR
:
265 if (msg
.message() == MSGCODE_TIMEOUT_ERROR
)
266 logStr
= "MSGCODE_TIMEOUT";
267 else if (msg
.message() == MSGCODE_HIGH_ERROR
)
268 logStr
= "MSGCODE_HIGH_ERROR";
270 logStr
= "MSGCODE_LOW_ERROR";
272 int iLine
= (msg
.size() >= 3) ? (msg
[1] << 8) | (msg
[2]) : 0;
273 uint32_t iTime
= (msg
.size() >= 7) ? (msg
[3] << 24) | (msg
[4] << 16) | (msg
[5] << 8) | (msg
[6]) : 0;
274 logStr
.AppendFormat(" line:%i", iLine
);
275 logStr
.AppendFormat(" time:%u", iTime
);
276 m_controller
->AddLog(CEC_LOG_WARNING
, logStr
.c_str());
280 case MSGCODE_COMMAND_ACCEPTED
:
281 m_controller
->AddLog(CEC_LOG_DEBUG
, "MSGCODE_COMMAND_ACCEPTED");
284 case MSGCODE_TRANSMIT_SUCCEEDED
:
285 m_controller
->AddLog(CEC_LOG_DEBUG
, "MSGCODE_TRANSMIT_SUCCEEDED");
286 bTransmitSucceeded
= (iPacketsLeft
== 0);
287 *bError
= !bTransmitSucceeded
;
289 case MSGCODE_RECEIVE_FAILED
:
290 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_RECEIVE_FAILED");
293 case MSGCODE_COMMAND_REJECTED
:
294 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_COMMAND_REJECTED");
297 case MSGCODE_TRANSMIT_FAILED_LINE
:
298 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_LINE");
301 case MSGCODE_TRANSMIT_FAILED_ACK
:
302 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_ACK");
305 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA
:
306 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA");
309 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE
:
310 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE");
314 CCECAdapterMessagePtr msgPtr
= CCECAdapterMessagePtr(new CCECAdapterMessage(msg
));
315 m_frameBuffer
.Push(msgPtr
);
322 return bTransmitSucceeded
&& !*bError
;
325 bool CCECProcessor::ParseMessage(CCECAdapterMessagePtr msg
)
334 switch(msg
->message())
336 case MSGCODE_NOTHING
:
337 m_controller
->AddLog(CEC_LOG_DEBUG
, "MSGCODE_NOTHING");
339 case MSGCODE_TIMEOUT_ERROR
:
340 case MSGCODE_HIGH_ERROR
:
341 case MSGCODE_LOW_ERROR
:
343 if (msg
->message() == MSGCODE_TIMEOUT_ERROR
)
344 logStr
= "MSGCODE_TIMEOUT";
345 else if (msg
->message() == MSGCODE_HIGH_ERROR
)
346 logStr
= "MSGCODE_HIGH_ERROR";
348 logStr
= "MSGCODE_LOW_ERROR";
350 int iLine
= (msg
->size() >= 3) ? (msg
->at(1) << 8) | (msg
->at(2)) : 0;
351 uint32_t iTime
= (msg
->size() >= 7) ? (msg
->at(3) << 24) | (msg
->at(4) << 16) | (msg
->at(5) << 8) | (msg
->at(6)) : 0;
352 logStr
.AppendFormat(" line:%i", iLine
);
353 logStr
.AppendFormat(" time:%u", iTime
);
354 m_controller
->AddLog(CEC_LOG_WARNING
, logStr
.c_str());
357 case MSGCODE_FRAME_START
:
359 logStr
= "MSGCODE_FRAME_START";
360 m_currentframe
.clear();
361 if (msg
->size() >= 2)
363 logStr
.AppendFormat(" initiator:%u destination:%u ack:%s %s", msg
->initiator(), msg
->destination(), msg
->ack() ? "high" : "low", msg
->eom() ? "eom" : "");
364 m_currentframe
.initiator
= msg
->initiator();
365 m_currentframe
.destination
= msg
->destination();
366 m_currentframe
.ack
= msg
->ack();
367 m_currentframe
.eom
= msg
->eom();
369 m_controller
->AddLog(CEC_LOG_DEBUG
, logStr
.c_str());
372 case MSGCODE_FRAME_DATA
:
374 logStr
= "MSGCODE_FRAME_DATA";
375 if (msg
->size() >= 2)
377 uint8_t iData
= msg
->at(1);
378 logStr
.AppendFormat(" %02x", iData
);
379 m_currentframe
.push_back(iData
);
380 m_currentframe
.eom
= msg
->eom();
382 m_controller
->AddLog(CEC_LOG_DEBUG
, logStr
.c_str());
387 case MSGCODE_COMMAND_ACCEPTED
:
388 m_controller
->AddLog(CEC_LOG_DEBUG
, "MSGCODE_COMMAND_ACCEPTED");
390 case MSGCODE_TRANSMIT_SUCCEEDED
:
391 m_controller
->AddLog(CEC_LOG_DEBUG
, "MSGCODE_TRANSMIT_SUCCEEDED");
393 case MSGCODE_RECEIVE_FAILED
:
394 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_RECEIVE_FAILED");
396 case MSGCODE_COMMAND_REJECTED
:
397 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_COMMAND_REJECTED");
399 case MSGCODE_TRANSMIT_FAILED_LINE
:
400 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_LINE");
402 case MSGCODE_TRANSMIT_FAILED_ACK
:
403 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_ACK");
405 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA
:
406 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_DATA");
408 case MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE
:
409 m_controller
->AddLog(CEC_LOG_WARNING
, "MSGCODE_TRANSMIT_FAILED_TIMEOUT_LINE");
418 void CCECProcessor::ParseCommand(cec_command
&command
)
421 dataStr
.Format(">> %1x%1x:%02x", command
.initiator
, command
.destination
, command
.opcode
);
422 for (uint8_t iPtr
= 0; iPtr
< command
.parameters
.size
; iPtr
++)
423 dataStr
.AppendFormat(":%02x", (unsigned int)command
.parameters
[iPtr
]);
424 m_controller
->AddLog(CEC_LOG_TRAFFIC
, dataStr
.c_str());
427 m_busDevices
[(uint8_t)command
.initiator
]->HandleCommand(command
);
430 uint16_t CCECProcessor::GetPhysicalAddress(void) const
432 return m_busDevices
[m_iLogicalAddress
]->GetPhysicalAddress();
435 void CCECProcessor::SetCurrentButton(cec_user_control_code iButtonCode
)
437 m_controller
->SetCurrentButton(iButtonCode
);
440 void CCECProcessor::AddCommand(const cec_command
&command
)
442 m_controller
->AddCommand(command
);
445 void CCECProcessor::AddKey(void)
447 m_controller
->AddKey();
450 void CCECProcessor::AddLog(cec_log_level level
, const CStdString
&strMessage
)
452 m_controller
->AddLog(level
, strMessage
);