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 "devices/CECBusDevice.h"
39 #include "util/StdString.h"
40 #include "platform/timeutils.h"
45 CLibCEC::CLibCEC(const char *strDeviceName
, cec_device_type_list types
) :
46 m_iStartTime(GetTimeMs()),
47 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN
),
50 m_comm
= new CAdapterCommunication(this);
51 m_cec
= new CCECProcessor(this, m_comm
, strDeviceName
, types
);
54 CLibCEC::CLibCEC(const char *strDeviceName
, cec_logical_address iLogicalAddress
/* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */) :
55 m_iStartTime(GetTimeMs()),
56 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN
),
59 m_comm
= new CAdapterCommunication(this);
60 m_cec
= new CCECProcessor(this, m_comm
, strDeviceName
, iLogicalAddress
, iPhysicalAddress
);
63 CLibCEC::~CLibCEC(void)
70 bool CLibCEC::Open(const char *strPort
, uint32_t iTimeoutMs
/* = 10000 */)
74 AddLog(CEC_LOG_ERROR
, "no comm port");
80 AddLog(CEC_LOG_ERROR
, "connection already open");
84 int64_t iNow
= GetTimeMs();
85 int64_t iTarget
= iNow
+ iTimeoutMs
;
88 while (!bOpened
&& iNow
< iTarget
)
90 bOpened
= m_comm
->Open(strPort
, 38400, iTimeoutMs
);
96 AddLog(CEC_LOG_ERROR
, "could not open a connection");
102 AddLog(CEC_LOG_ERROR
, "could not start CEC communications");
109 void CLibCEC::Close(void)
117 int8_t CLibCEC::FindAdapters(cec_adapter
*deviceList
, uint8_t iBufSize
, const char *strDevicePath
/* = NULL */)
121 strDebug
.Format("trying to autodetect the com port for device path '%s'", strDevicePath
);
123 strDebug
.Format("trying to autodetect all CEC adapters");
124 AddLog(CEC_LOG_DEBUG
, strDebug
);
126 return CAdapterDetection::FindAdapters(deviceList
, iBufSize
, strDevicePath
);
129 bool CLibCEC::PingAdapter(void)
131 return m_comm
? m_comm
->PingAdapter() : false;
134 bool CLibCEC::StartBootloader(void)
136 return m_comm
? m_comm
->StartBootloader() : false;
139 bool CLibCEC::GetNextLogMessage(cec_log_message
*message
)
141 return (m_logBuffer
.Pop(*message
));
144 bool CLibCEC::GetNextKeypress(cec_keypress
*key
)
146 return m_keyBuffer
.Pop(*key
);
149 bool CLibCEC::GetNextCommand(cec_command
*command
)
151 return m_commandBuffer
.Pop(*command
);
154 bool CLibCEC::Transmit(const cec_command
&data
)
156 return m_cec
? m_cec
->Transmit(data
) : false;
159 bool CLibCEC::SetLogicalAddress(cec_logical_address iLogicalAddress
)
161 return m_cec
? m_cec
->SetLogicalAddress(iLogicalAddress
) : false;
164 bool CLibCEC::SetPhysicalAddress(uint16_t iPhysicalAddress
)
166 return m_cec
? m_cec
->SetPhysicalAddress(iPhysicalAddress
) : false;
169 bool CLibCEC::PowerOnDevices(cec_logical_address address
/* = CECDEVICE_TV */)
171 return m_cec
&& address
>= CECDEVICE_TV
&& address
<= CECDEVICE_BROADCAST
? m_cec
->m_busDevices
[(uint8_t)address
]->PowerOn() : false;
174 bool CLibCEC::StandbyDevices(cec_logical_address address
/* = CECDEVICE_BROADCAST */)
176 return m_cec
&& address
>= CECDEVICE_TV
&& address
<= CECDEVICE_BROADCAST
? m_cec
->m_busDevices
[(uint8_t)address
]->Standby() : false;
179 bool CLibCEC::SetActiveSource(cec_device_type type
/* = CEC_DEVICE_TYPE_RESERVED */)
181 return m_cec
? m_cec
->SetActiveSource(type
) : false;
184 bool CLibCEC::SetActiveView(void)
186 return m_cec
? m_cec
->SetActiveView() : false;
189 bool CLibCEC::SetInactiveView(void)
191 return m_cec
? m_cec
->SetInactiveView() : false;
194 bool CLibCEC::SetOSDString(cec_logical_address iLogicalAddress
, cec_display_control duration
, const char *strMessage
)
196 return m_cec
&& iLogicalAddress
>= CECDEVICE_TV
&& iLogicalAddress
<= CECDEVICE_BROADCAST
?
197 m_cec
->m_busDevices
[m_cec
->GetLogicalAddress()]->TransmitOSDString(iLogicalAddress
, duration
, strMessage
) :
201 bool CLibCEC::SwitchMonitoring(bool bEnable
)
203 return m_cec
? m_cec
->SwitchMonitoring(bEnable
) : false;
206 cec_version
CLibCEC::GetDeviceCecVersion(cec_logical_address iAddress
)
208 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
209 return m_cec
->GetDeviceCecVersion(iAddress
);
210 return CEC_VERSION_UNKNOWN
;
213 bool CLibCEC::GetDeviceMenuLanguage(cec_logical_address iAddress
, cec_menu_language
*language
)
215 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
216 return m_cec
->GetDeviceMenuLanguage(iAddress
, language
);
220 uint64_t CLibCEC::GetDeviceVendorId(cec_logical_address iAddress
)
222 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
223 return m_cec
->GetDeviceVendorId(iAddress
);
227 cec_power_status
CLibCEC::GetDevicePowerStatus(cec_logical_address iAddress
)
229 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
230 return m_cec
->GetDevicePowerStatus(iAddress
);
231 return CEC_POWER_STATUS_UNKNOWN
;
234 bool CLibCEC::PollDevice(cec_logical_address iAddress
)
236 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
237 return m_cec
->PollDevice(iAddress
);
241 void CLibCEC::AddLog(cec_log_level level
, const string
&strMessage
)
245 cec_log_message message
;
246 message
.level
= level
;
247 message
.time
= GetTimeMs() - m_iStartTime
;
248 snprintf(message
.message
, sizeof(message
.message
), "%s", strMessage
.c_str());
249 m_logBuffer
.Push(message
);
253 void CLibCEC::AddKey(cec_keypress
&key
)
255 m_keyBuffer
.Push(key
);
256 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
260 void CLibCEC::AddKey(void)
262 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
)
266 key
.duration
= (unsigned int) (GetTimeMs() - m_buttontime
);
267 key
.keycode
= m_iCurrentButton
;
268 m_keyBuffer
.Push(key
);
269 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
274 void CLibCEC::AddCommand(const cec_command
&command
)
276 if (m_commandBuffer
.Push(command
))
279 strDebug
.Format("stored command '%2x' in the command buffer. buffer size = %d", command
.opcode
, m_commandBuffer
.Size());
280 AddLog(CEC_LOG_DEBUG
, strDebug
);
284 AddLog(CEC_LOG_WARNING
, "command buffer is full");
288 void CLibCEC::CheckKeypressTimeout(void)
290 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
&& GetTimeMs() - m_buttontime
> CEC_BUTTON_TIMEOUT
)
293 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
297 void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode
)
299 m_iCurrentButton
= iButtonCode
;
300 m_buttontime
= GetTimeMs();
302 /* push keypress to the keybuffer with 0 duration.
303 push another press to the keybuffer with the duration set when the button is released */
306 key
.keycode
= m_iCurrentButton
;
307 m_keyBuffer
.Push(key
);
310 void * CECCreate(const char *strDeviceName
, CEC::cec_logical_address iLogicalAddress
/*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
312 return static_cast< void* > (new CLibCEC(strDeviceName
, iLogicalAddress
, iPhysicalAddress
));
315 void * CECInit(const char *strDeviceName
, CEC::cec_device_type_list types
)
317 return static_cast< void* > (new CLibCEC(strDeviceName
, types
));
320 void CECDestroy(CEC::ICECAdapter
*instance
)
322 CLibCEC
*lib
= static_cast< CLibCEC
* > (instance
);