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/
35 #include "AdapterCommunication.h"
36 #include "AdapterDetection.h"
37 #include "CECProcessor.h"
38 #include "util/StdString.h"
39 #include "platform/timeutils.h"
44 CLibCEC::CLibCEC(const char *strDeviceName
, cec_logical_address iLogicalAddress
/* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */) :
45 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN
),
48 m_comm
= new CAdapterCommunication(this);
49 m_cec
= new CCECProcessor(this, m_comm
, strDeviceName
, iLogicalAddress
, iPhysicalAddress
);
52 CLibCEC::~CLibCEC(void)
61 bool CLibCEC::Open(const char *strPort
, uint64_t iTimeoutMs
/* = 10000 */)
68 AddLog(CEC_LOG_ERROR
, "connection already open");
72 if (!m_comm
->Open(strPort
, 38400, iTimeoutMs
))
74 AddLog(CEC_LOG_ERROR
, "could not open a connection");
80 AddLog(CEC_LOG_ERROR
, "could not start CEC communications");
87 void CLibCEC::Close(void)
103 int CLibCEC::FindAdapters(std::vector
<cec_adapter
> &deviceList
, const char *strDevicePath
/* = NULL */)
107 strDebug
.Format("trying to autodetect the com port for device path '%s'", strDevicePath
);
109 strDebug
.Format("trying to autodetect all CEC adapters");
110 AddLog(CEC_LOG_DEBUG
, strDebug
);
112 return CAdapterDetection::FindAdapters(deviceList
, strDevicePath
);
115 bool CLibCEC::PingAdapter(void)
117 return m_comm
? m_comm
->PingAdapter() : false;
120 bool CLibCEC::StartBootloader(void)
122 return m_comm
? m_comm
->StartBootloader() : false;
125 int CLibCEC::GetMinVersion(void)
127 return CEC_MIN_VERSION
;
130 int CLibCEC::GetLibVersion(void)
132 return CEC_LIB_VERSION
;
135 bool CLibCEC::GetNextLogMessage(cec_log_message
*message
)
137 return m_logBuffer
.Pop(*message
);
140 bool CLibCEC::GetNextKeypress(cec_keypress
*key
)
142 return m_keyBuffer
.Pop(*key
);
145 bool CLibCEC::GetNextCommand(cec_command
*command
)
147 return m_commandBuffer
.Pop(*command
);
150 bool CLibCEC::Transmit(const cec_frame
&data
, bool bWaitForAck
/* = true */)
152 return m_cec
? m_cec
->Transmit(data
, bWaitForAck
) : false;
155 bool CLibCEC::SetLogicalAddress(cec_logical_address iLogicalAddress
)
157 return m_cec
? m_cec
->SetLogicalAddress(iLogicalAddress
) : false;
160 bool CLibCEC::PowerOnDevices(cec_logical_address address
/* = CECDEVICE_TV */)
162 return m_cec
? m_cec
->PowerOnDevices(address
) : false;
165 bool CLibCEC::StandbyDevices(cec_logical_address address
/* = CECDEVICE_BROADCAST */)
167 return m_cec
? m_cec
->StandbyDevices(address
) : false;
170 bool CLibCEC::SetActiveView(void)
172 return m_cec
? m_cec
->SetActiveView() : false;
175 bool CLibCEC::SetInactiveView(void)
177 return m_cec
? m_cec
->SetInactiveView() : false;
180 void CLibCEC::AddLog(cec_log_level level
, const string
&strMessage
)
182 cec_log_message message
;
183 message
.level
= level
;
184 message
.message
.assign(strMessage
.c_str());
185 m_logBuffer
.Push(message
);
188 void CLibCEC::AddKey(void)
190 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
)
193 key
.duration
= (unsigned int) (GetTimeMs() - m_buttontime
);
194 key
.keycode
= m_iCurrentButton
;
195 m_keyBuffer
.Push(key
);
196 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
201 void CLibCEC::AddCommand(cec_logical_address source
, cec_logical_address destination
, cec_opcode opcode
, cec_frame
*parameters
)
204 command
.source
= source
;
205 command
.destination
= destination
;
206 command
.opcode
= opcode
;
208 command
.parameters
= *parameters
;
209 if (m_commandBuffer
.Push(command
))
212 strDebug
.Format("stored command '%d' in the command buffer. buffer size = %d", opcode
, m_commandBuffer
.Size());
213 AddLog(CEC_LOG_DEBUG
, strDebug
);
217 AddLog(CEC_LOG_WARNING
, "command buffer is full");
221 void CLibCEC::CheckKeypressTimeout(void)
223 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
&& GetTimeMs() - m_buttontime
> CEC_BUTTON_TIMEOUT
)
226 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
230 void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode
)
232 m_iCurrentButton
= iButtonCode
;
233 m_buttontime
= GetTimeMs();
236 DECLSPEC
void * CECCreate(const char *strDeviceName
, CEC::cec_logical_address iLogicalAddress
/*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
238 return static_cast< void* > (new CLibCEC(strDeviceName
, iLogicalAddress
, iPhysicalAddress
));