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
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
166 return m_cec
? m_cec
->SetPhysicalAddress(iPhysicalAddress
) : false;
169 bool CLibCEC::SetHDMIPort(cec_logical_address iBaseDevice
, uint8_t iPort
/* = CEC_DEFAULT_HDMI_PORT */)
171 return m_cec
? m_cec
->SetHDMIPort(iBaseDevice
, iPort
) : false;
174 bool CLibCEC::EnablePhysicalAddressDetection(void)
176 return m_cec
? m_cec
->EnablePhysicalAddressDetection() : false;
179 bool CLibCEC::PowerOnDevices(cec_logical_address address
/* = CECDEVICE_TV */)
181 return m_cec
&& address
>= CECDEVICE_TV
&& address
<= CECDEVICE_BROADCAST
? m_cec
->m_busDevices
[(uint8_t)address
]->PowerOn() : false;
184 bool CLibCEC::StandbyDevices(cec_logical_address address
/* = CECDEVICE_BROADCAST */)
186 return m_cec
&& address
>= CECDEVICE_TV
&& address
<= CECDEVICE_BROADCAST
? m_cec
->m_busDevices
[(uint8_t)address
]->Standby() : false;
189 bool CLibCEC::SetActiveSource(cec_device_type type
/* = CEC_DEVICE_TYPE_RESERVED */)
191 return m_cec
? m_cec
->SetActiveSource(type
) : false;
194 bool CLibCEC::SetActiveView(void)
196 return m_cec
? m_cec
->SetActiveView() : false;
199 bool CLibCEC::SetDeckControlMode(cec_deck_control_mode mode
, bool bSendUpdate
/* = true */)
201 return m_cec
? m_cec
->SetDeckControlMode(mode
, bSendUpdate
) : false;
204 bool CLibCEC::SetDeckInfo(cec_deck_info info
, bool bSendUpdate
/* = true */)
206 return m_cec
? m_cec
->SetDeckInfo(info
, bSendUpdate
) : false;
209 bool CLibCEC::SetInactiveView(void)
211 return m_cec
? m_cec
->TransmitInactiveSource() : false;
214 bool CLibCEC::SetMenuState(cec_menu_state state
, bool bSendUpdate
/* = true */)
216 return m_cec
? m_cec
->SetMenuState(state
, bSendUpdate
) : false;
219 bool CLibCEC::SetOSDString(cec_logical_address iLogicalAddress
, cec_display_control duration
, const char *strMessage
)
221 return m_cec
&& iLogicalAddress
>= CECDEVICE_TV
&& iLogicalAddress
<= CECDEVICE_BROADCAST
?
222 m_cec
->m_busDevices
[m_cec
->GetLogicalAddress()]->TransmitOSDString(iLogicalAddress
, duration
, strMessage
) :
226 bool CLibCEC::SwitchMonitoring(bool bEnable
)
228 return m_cec
? m_cec
->SwitchMonitoring(bEnable
) : false;
231 cec_version
CLibCEC::GetDeviceCecVersion(cec_logical_address iAddress
)
233 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
234 return m_cec
->GetDeviceCecVersion(iAddress
);
235 return CEC_VERSION_UNKNOWN
;
238 bool CLibCEC::GetDeviceMenuLanguage(cec_logical_address iAddress
, cec_menu_language
*language
)
240 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
241 return m_cec
->GetDeviceMenuLanguage(iAddress
, language
);
245 uint64_t CLibCEC::GetDeviceVendorId(cec_logical_address iAddress
)
247 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
248 return m_cec
->GetDeviceVendorId(iAddress
);
252 cec_power_status
CLibCEC::GetDevicePowerStatus(cec_logical_address iAddress
)
254 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
255 return m_cec
->GetDevicePowerStatus(iAddress
);
256 return CEC_POWER_STATUS_UNKNOWN
;
259 bool CLibCEC::PollDevice(cec_logical_address iAddress
)
261 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
262 return m_cec
->PollDevice(iAddress
);
266 cec_logical_addresses
CLibCEC::GetActiveDevices(void)
268 cec_logical_addresses addresses
;
271 addresses
= m_cec
->GetActiveDevices();
275 bool CLibCEC::IsActiveDevice(cec_logical_address iAddress
)
277 if (m_cec
&& iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
278 return m_cec
->IsActiveDevice(iAddress
);
282 bool CLibCEC::IsActiveDeviceType(cec_device_type type
)
284 if (m_cec
&& type
>= CEC_DEVICE_TYPE_TV
&& type
<= CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
285 return m_cec
->IsActiveDeviceType(type
);
289 uint8_t CLibCEC::VolumeUp(bool bWait
/* = true */)
292 return m_cec
->VolumeUp(bWait
);
296 uint8_t CLibCEC::VolumeDown(bool bWait
/* = true */)
299 return m_cec
->VolumeDown(bWait
);
304 uint8_t CLibCEC::MuteAudio(bool bWait
/* = true */)
307 return m_cec
->MuteAudio(bWait
);
311 bool CLibCEC::SendKeypress(cec_logical_address iDestination
, cec_user_control_code key
, bool bWait
/* = false */)
314 return m_cec
->SendKeypress(iDestination
, key
, bWait
);
318 bool CLibCEC::SendKeyRelease(cec_logical_address iDestination
, bool bWait
/* = false */)
321 return m_cec
->SendKeyRelease(iDestination
, bWait
);
325 cec_osd_name
CLibCEC::GetOSDName(cec_logical_address iAddress
)
328 retVal
.device
= iAddress
;
332 retVal
= m_cec
->GetDeviceOSDName(iAddress
);
337 void CLibCEC::AddLog(cec_log_level level
, const string
&strMessage
)
341 cec_log_message message
;
342 message
.level
= level
;
343 message
.time
= GetTimeMs() - m_iStartTime
;
344 snprintf(message
.message
, sizeof(message
.message
), "%s", strMessage
.c_str());
345 m_logBuffer
.Push(message
);
349 void CLibCEC::AddKey(cec_keypress
&key
)
351 m_keyBuffer
.Push(key
);
352 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
356 void CLibCEC::AddKey(void)
358 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
)
362 key
.duration
= (unsigned int) (GetTimeMs() - m_buttontime
);
363 key
.keycode
= m_iCurrentButton
;
364 m_keyBuffer
.Push(key
);
365 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
370 void CLibCEC::AddCommand(const cec_command
&command
)
372 if (m_commandBuffer
.Push(command
))
375 strDebug
.Format("stored command '%2x' in the command buffer. buffer size = %d", command
.opcode
, m_commandBuffer
.Size());
376 AddLog(CEC_LOG_DEBUG
, strDebug
);
380 AddLog(CEC_LOG_WARNING
, "command buffer is full");
384 void CLibCEC::CheckKeypressTimeout(void)
386 if (m_iCurrentButton
!= CEC_USER_CONTROL_CODE_UNKNOWN
&& GetTimeMs() - m_buttontime
> CEC_BUTTON_TIMEOUT
)
389 m_iCurrentButton
= CEC_USER_CONTROL_CODE_UNKNOWN
;
393 void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode
)
395 m_iCurrentButton
= iButtonCode
;
396 m_buttontime
= GetTimeMs();
398 /* push keypress to the keybuffer with 0 duration.
399 push another press to the keybuffer with the duration set when the button is released */
402 key
.keycode
= m_iCurrentButton
;
403 m_keyBuffer
.Push(key
);
406 void * CECCreate(const char *strDeviceName
, CEC::cec_logical_address iLogicalAddress
/*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress
/* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
408 return static_cast< void* > (new CLibCEC(strDeviceName
, iLogicalAddress
, iPhysicalAddress
));
411 void * CECInit(const char *strDeviceName
, CEC::cec_device_type_list types
)
413 return static_cast< void* > (new CLibCEC(strDeviceName
, types
));
416 void CECDestroy(CEC::ICECAdapter
*instance
)
418 CLibCEC
*lib
= static_cast< CLibCEC
* > (instance
);
423 const char *CLibCEC::ToString(const cec_menu_state state
)
425 return m_cec
->ToString(state
);
428 const char *CLibCEC::ToString(const cec_version version
)
430 return m_cec
->ToString(version
);
433 const char *CLibCEC::ToString(const cec_power_status status
)
435 return m_cec
->ToString(status
);
438 const char *CLibCEC::ToString(const cec_logical_address address
)
440 return m_cec
->ToString(address
);
443 const char *CLibCEC::ToString(const cec_deck_control_mode mode
)
445 return m_cec
->ToString(mode
);
448 const char *CLibCEC::ToString(const cec_deck_info status
)
450 return m_cec
->ToString(status
);
453 const char *CLibCEC::ToString(const cec_opcode opcode
)
455 return m_cec
->ToString(opcode
);
458 const char *CLibCEC::ToString(const cec_system_audio_status mode
)
460 return m_cec
->ToString(mode
);
463 const char *CLibCEC::ToString(const cec_audio_status status
)
465 return m_cec
->ToString(status
);
468 const char *CLibCEC::ToString(const cec_vendor_id vendor
)
470 return m_cec
->ToString(vendor
);