cec: don't poll for a vendor ID in monitoring mode
[deb_libcec.git] / src / lib / LibCEC.cpp
CommitLineData
2abe74eb
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
33#include "LibCEC.h"
34
35#include "AdapterCommunication.h"
36#include "AdapterDetection.h"
37#include "CECProcessor.h"
0f23c85c 38#include "devices/CECBusDevice.h"
2abe74eb 39#include "util/StdString.h"
b9187cc6 40#include "platform/timeutils.h"
2abe74eb
LOK
41
42using namespace std;
43using namespace CEC;
44
f8513317
LOK
45CLibCEC::CLibCEC(const char *strDeviceName, cec_device_type_list types) :
46 m_iStartTime(GetTimeMs()),
47 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
48 m_buttontime(0)
49{
50 m_comm = new CAdapterCommunication(this);
51 m_cec = new CCECProcessor(this, m_comm, strDeviceName, types);
52}
53
2b4d8297 54CLibCEC::CLibCEC(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) :
40339852 55 m_iStartTime(GetTimeMs()),
2abe74eb
LOK
56 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
57 m_buttontime(0)
58{
59 m_comm = new CAdapterCommunication(this);
60 m_cec = new CCECProcessor(this, m_comm, strDeviceName, iLogicalAddress, iPhysicalAddress);
61}
62
63CLibCEC::~CLibCEC(void)
64{
12027dbe 65 Close();
2abe74eb 66 delete m_cec;
2abe74eb 67 delete m_comm;
2abe74eb
LOK
68}
69
25701fa6 70bool CLibCEC::Open(const char *strPort, uint32_t iTimeoutMs /* = 10000 */)
2abe74eb
LOK
71{
72 if (!m_comm)
12027dbe
LOK
73 {
74 AddLog(CEC_LOG_ERROR, "no comm port");
2abe74eb 75 return false;
12027dbe 76 }
2abe74eb
LOK
77
78 if (m_comm->IsOpen())
79 {
80 AddLog(CEC_LOG_ERROR, "connection already open");
81 return false;
82 }
83
a11148b7
LOK
84 int64_t iNow = GetTimeMs();
85 int64_t iTarget = iNow + iTimeoutMs;
86
87 bool bOpened(false);
88 while (!bOpened && iNow < iTarget)
89 {
90 bOpened = m_comm->Open(strPort, 38400, iTimeoutMs);
91 iNow = GetTimeMs();
92 }
93
94 if (!bOpened)
2abe74eb
LOK
95 {
96 AddLog(CEC_LOG_ERROR, "could not open a connection");
97 return false;
98 }
99
100 if (!m_cec->Start())
101 {
102 AddLog(CEC_LOG_ERROR, "could not start CEC communications");
103 return false;
104 }
105
106 return true;
107}
108
109void CLibCEC::Close(void)
110{
25701fa6
LOK
111 if (m_cec)
112 m_cec->StopThread();
13fd6a66
LOK
113 if (m_comm)
114 m_comm->Close();
2abe74eb
LOK
115}
116
25701fa6 117int8_t CLibCEC::FindAdapters(cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath /* = NULL */)
2abe74eb
LOK
118{
119 CStdString strDebug;
120 if (strDevicePath)
121 strDebug.Format("trying to autodetect the com port for device path '%s'", strDevicePath);
122 else
123 strDebug.Format("trying to autodetect all CEC adapters");
124 AddLog(CEC_LOG_DEBUG, strDebug);
125
25701fa6 126 return CAdapterDetection::FindAdapters(deviceList, iBufSize, strDevicePath);
2abe74eb
LOK
127}
128
129bool CLibCEC::PingAdapter(void)
130{
131 return m_comm ? m_comm->PingAdapter() : false;
132}
133
134bool CLibCEC::StartBootloader(void)
135{
136 return m_comm ? m_comm->StartBootloader() : false;
137}
138
2abe74eb
LOK
139bool CLibCEC::GetNextLogMessage(cec_log_message *message)
140{
25701fa6 141 return (m_logBuffer.Pop(*message));
2abe74eb
LOK
142}
143
144bool CLibCEC::GetNextKeypress(cec_keypress *key)
145{
146 return m_keyBuffer.Pop(*key);
147}
148
149bool CLibCEC::GetNextCommand(cec_command *command)
150{
151 return m_commandBuffer.Pop(*command);
152}
153
8d84e2c0 154bool CLibCEC::Transmit(const cec_command &data)
2abe74eb 155{
8d84e2c0 156 return m_cec ? m_cec->Transmit(data) : false;
2abe74eb
LOK
157}
158
159bool CLibCEC::SetLogicalAddress(cec_logical_address iLogicalAddress)
160{
161 return m_cec ? m_cec->SetLogicalAddress(iLogicalAddress) : false;
162}
163
2492216a
LOK
164bool CLibCEC::SetPhysicalAddress(uint16_t iPhysicalAddress)
165{
166 return m_cec ? m_cec->SetPhysicalAddress(iPhysicalAddress) : false;
167}
168
2abe74eb
LOK
169bool CLibCEC::PowerOnDevices(cec_logical_address address /* = CECDEVICE_TV */)
170{
0f23c85c 171 return m_cec && address >= CECDEVICE_TV && address <= CECDEVICE_BROADCAST ? m_cec->m_busDevices[(uint8_t)address]->PowerOn() : false;
2abe74eb
LOK
172}
173
174bool CLibCEC::StandbyDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
175{
0f23c85c 176 return m_cec && address >= CECDEVICE_TV && address <= CECDEVICE_BROADCAST ? m_cec->m_busDevices[(uint8_t)address]->Standby() : false;
2abe74eb
LOK
177}
178
179bool CLibCEC::SetActiveView(void)
180{
181 return m_cec ? m_cec->SetActiveView() : false;
182}
183
184bool CLibCEC::SetInactiveView(void)
185{
186 return m_cec ? m_cec->SetInactiveView() : false;
187}
188
1969b140
LOK
189bool CLibCEC::SetOSDString(cec_logical_address iLogicalAddress, cec_display_control duration, const char *strMessage)
190{
38bdb943
LOK
191 return m_cec && iLogicalAddress >= CECDEVICE_TV && iLogicalAddress <= CECDEVICE_BROADCAST ?
192 m_cec->m_busDevices[m_cec->GetLogicalAddress()]->TransmitOSDString(iLogicalAddress, duration, strMessage) :
193 false;
1969b140
LOK
194}
195
8b7e5ff6
LOK
196bool CLibCEC::SwitchMonitoring(bool bEnable)
197{
198 return m_cec ? m_cec->SwitchMonitoring(bEnable) : false;
199}
200
6a1c0009
LOK
201cec_version CLibCEC::GetDeviceCecVersion(cec_logical_address iAddress)
202{
203 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
204 return m_cec->GetDeviceCecVersion(iAddress);
205 return CEC_VERSION_UNKNOWN;
206}
207
a3269a0a
LOK
208bool CLibCEC::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
209{
210 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
211 return m_cec->GetDeviceMenuLanguage(iAddress, language);
212 return false;
213}
214
44c74256
LOK
215uint64_t CLibCEC::GetDeviceVendorId(cec_logical_address iAddress)
216{
217 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
218 return m_cec->GetDeviceVendorId(iAddress);
219 return 0;
220}
221
e55f3f70
LOK
222cec_power_status CLibCEC::GetDevicePowerStatus(cec_logical_address iAddress)
223{
224 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
225 return m_cec->GetDevicePowerStatus(iAddress);
226 return CEC_POWER_STATUS_UNKNOWN;
227}
44c74256 228
57f45e6c
LOK
229bool CLibCEC::PollDevice(cec_logical_address iAddress)
230{
231 if (m_cec && iAddress >= CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST)
232 return m_cec->PollDevice(iAddress);
233 return false;
234}
235
2abe74eb
LOK
236void CLibCEC::AddLog(cec_log_level level, const string &strMessage)
237{
13fd6a66 238 if (m_cec)
25701fa6
LOK
239 {
240 cec_log_message message;
241 message.level = level;
40339852 242 message.time = GetTimeMs() - m_iStartTime;
25701fa6
LOK
243 snprintf(message.message, sizeof(message.message), "%s", strMessage.c_str());
244 m_logBuffer.Push(message);
245 }
2abe74eb
LOK
246}
247
95ba7a09
LOK
248void CLibCEC::AddKey(cec_keypress &key)
249{
250 m_keyBuffer.Push(key);
251 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
252 m_buttontime = 0;
253}
254
2abe74eb
LOK
255void CLibCEC::AddKey(void)
256{
13fd6a66 257 if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN)
2abe74eb
LOK
258 {
259 cec_keypress key;
25701fa6 260
2abe74eb
LOK
261 key.duration = (unsigned int) (GetTimeMs() - m_buttontime);
262 key.keycode = m_iCurrentButton;
263 m_keyBuffer.Push(key);
264 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
2abe74eb 265 }
56aa08d0 266 m_buttontime = 0;
2abe74eb
LOK
267}
268
e9de9629 269void CLibCEC::AddCommand(const cec_command &command)
2abe74eb 270{
2abe74eb
LOK
271 if (m_commandBuffer.Push(command))
272 {
273 CStdString strDebug;
9dee1670 274 strDebug.Format("stored command '%2x' in the command buffer. buffer size = %d", command.opcode, m_commandBuffer.Size());
2abe74eb
LOK
275 AddLog(CEC_LOG_DEBUG, strDebug);
276 }
277 else
278 {
279 AddLog(CEC_LOG_WARNING, "command buffer is full");
280 }
281}
282
283void CLibCEC::CheckKeypressTimeout(void)
284{
285 if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN && GetTimeMs() - m_buttontime > CEC_BUTTON_TIMEOUT)
286 {
287 AddKey();
288 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
289 }
290}
291
292void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode)
293{
294 m_iCurrentButton = iButtonCode;
295 m_buttontime = GetTimeMs();
6710d300
LOK
296
297 /* push keypress to the keybuffer with 0 duration.
298 push another press to the keybuffer with the duration set when the button is released */
299 cec_keypress key;
300 key.duration = 0;
301 key.keycode = m_iCurrentButton;
302 m_keyBuffer.Push(key);
2abe74eb
LOK
303}
304
25701fa6 305void * CECCreate(const char *strDeviceName, CEC::cec_logical_address iLogicalAddress /*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */)
2abe74eb
LOK
306{
307 return static_cast< void* > (new CLibCEC(strDeviceName, iLogicalAddress, iPhysicalAddress));
308}
25701fa6 309
f8513317
LOK
310void * CECInit(const char *strDeviceName, CEC::cec_device_type_list types)
311{
312 return static_cast< void* > (new CLibCEC(strDeviceName, types));
313}
314
25701fa6
LOK
315void CECDestroy(CEC::ICECAdapter *instance)
316{
317 CLibCEC *lib = static_cast< CLibCEC* > (instance);
318 if (lib)
319 delete lib;
320}