removed deprecated methods and fields
[deb_libcec.git] / include / cec.h
CommitLineData
abbca718
LOK
1#pragma once
2/*
3 * This file is part of the libCEC(R) library.
4 *
b492c10e 5 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
abbca718
LOK
6 * libCEC(R) is an original work, containing original code.
7 *
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 *
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 *
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
27 *
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
32 */
33
acec5f48
LOK
34#ifndef CECEXPORTS_H_
35#define CECEXPORTS_H_
36
bafc6701 37#include "cectypes.h"
acec5f48 38
1664420d 39#define LIBCEC_VERSION_CURRENT CEC_SERVER_VERSION_1_9_0
f250c7a4 40
abbca718
LOK
41namespace CEC
42{
2abe74eb 43 class ICECAdapter
abbca718
LOK
44 {
45 public:
6eb6d0fd 46 virtual ~ICECAdapter() {};
2abe74eb
LOK
47 /*! @name Adapter methods */
48 //@{
d9106f08 49
abbca718 50 /*!
d9106f08
LOK
51 * @brief Open a connection to the CEC adapter.
52 * @param strPort The path to the port.
8d901fdb 53 * @param iTimeoutMs Connection timeout in ms.
d9106f08 54 * @return True when connected, false otherwise.
abbca718 55 */
25701fa6 56 virtual bool Open(const char *strPort, uint32_t iTimeoutMs = 10000) = 0;
abbca718 57
f99bc831 58 /*!
d9106f08 59 * @brief Close the connection to the CEC adapter.
f99bc831 60 */
5f39c4d8 61 virtual void Close(void) = 0;
f99bc831 62
fa4798bd 63 /*!
083311e9 64 * @brief Try to find all connected CEC adapters.
d9106f08
LOK
65 * @param deviceList The vector to store device descriptors in.
66 * @param iBufSize The size of the deviceList buffer.
67 * @param strDevicePath Optional device path. Only adds device descriptors that match the given device path.
68 * @return The number of devices that were found, or -1 when an error occured.
abbca718 69 */
25701fa6 70 virtual int8_t FindAdapters(cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath = NULL) = 0;
abbca718
LOK
71
72 /*!
083311e9 73 * @brief Sends a ping command to the adapter, to check if it's responding.
d9106f08 74 * @return True when the ping was succesful, false otherwise.
abbca718 75 */
2abe74eb 76 virtual bool PingAdapter(void) = 0;
abbca718
LOK
77
78 /*!
083311e9
LOK
79 * @brief Start the bootloader of the CEC adapter. Closes the connection when successful.
80 * @return True when the command was sent successfully, false otherwise.
abbca718
LOK
81 */
82 virtual bool StartBootloader(void) = 0;
2abe74eb 83 //@}
abbca718 84
abbca718 85 /*!
083311e9 86 * @brief Transmit a raw CEC command over the CEC line.
d9106f08
LOK
87 * @param data The command to send.
88 * @return True when the data was sent and acked, false otherwise.
abbca718 89 */
8d84e2c0 90 virtual bool Transmit(const cec_command &data) = 0;
abbca718
LOK
91
92 /*!
083311e9 93 * @brief Change the logical address on the CEC bus of the CEC adapter. libCEC automatically assigns a logical address, and this method is only available for debugging purposes.
d9106f08
LOK
94 * @param iLogicalAddress The CEC adapter's new logical address.
95 * @return True when the logical address was set successfully, false otherwise.
abbca718 96 */
2492216a
LOK
97 virtual bool SetLogicalAddress(cec_logical_address iLogicalAddress = CECDEVICE_PLAYBACKDEVICE1) = 0;
98
99 /*!
083311e9 100 * @brief Change the physical address (HDMI port) of the CEC adapter. libCEC will try to autodetect the physical address when connecting. If it did, it's set in libcec_configuration.
d9106f08
LOK
101 * @param iPhysicalAddress The CEC adapter's new physical address.
102 * @brief True when the physical address was set successfully, false otherwise.
2492216a
LOK
103 */
104 virtual bool SetPhysicalAddress(uint16_t iPhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS) = 0;
6dfe9213
LOK
105
106 /*!
083311e9 107 * @brief Power on the given CEC capable devices. If CECDEVICE_BROADCAST is used, then wakeDevice in libcec_configuration will be used.
d9106f08
LOK
108 * @param address The logical address to power on.
109 * @return True when the command was sent succesfully, false otherwise.
6dfe9213 110 */
2abe74eb 111 virtual bool PowerOnDevices(cec_logical_address address = CECDEVICE_TV) = 0;
abbca718 112
df7339c6 113 /*!
083311e9 114 * @brief Put the given CEC capable devices in standby mode. If CECDEVICE_BROADCAST is used, then standbyDevices in libcec_configuration will be used.
d9106f08
LOK
115 * @brief address The logical address of the device to put in standby.
116 * @return True when the command was sent succesfully, false otherwise.
df7339c6 117 */
2abe74eb 118 virtual bool StandbyDevices(cec_logical_address address = CECDEVICE_BROADCAST) = 0;
df7339c6
LOK
119
120 /*!
083311e9 121 * @brief Change the active source to a device type handled by libCEC. Use CEC_DEVICE_TYPE_RESERVED to make the default type used by libCEC active.
18203d17 122 * @param type The new active source. Leave empty to use the primary type
d9106f08 123 * @return True when the command was sent succesfully, false otherwise.
df7339c6 124 */
18203d17
LOK
125 virtual bool SetActiveSource(cec_device_type type = CEC_DEVICE_TYPE_RESERVED) = 0;
126
a9232a79 127 /*!
083311e9 128 * @brief Change the deck control mode, if this adapter is registered as playback or recording device.
a9232a79 129 * @param mode The new control mode.
083311e9 130 * @param bSendUpdate True to send the new status over the CEC line.
a9232a79
LOK
131 * @return True if set, false otherwise.
132 */
28fa6c97 133 virtual bool SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate = true) = 0;
a9232a79
LOK
134
135 /*!
083311e9 136 * @brief Change the deck info, if this adapter is a playback or recording device.
a9232a79 137 * @param info The new deck info.
083311e9 138 * @param bSendUpdate True to send the new status over the CEC line.
a9232a79
LOK
139 * @return True if set, false otherwise.
140 */
28fa6c97 141 virtual bool SetDeckInfo(cec_deck_info info, bool bSendUpdate = true) = 0;
a9232a79 142
2abe74eb 143 /*!
d9106f08
LOK
144 * @brief Broadcast a message that notifies connected CEC capable devices that this device is no longer the active source.
145 * @return True when the command was sent succesfully, false otherwise.
2abe74eb
LOK
146 */
147 virtual bool SetInactiveView(void) = 0;
1969b140 148
28fa6c97 149 /*!
083311e9
LOK
150 * @brief Change the menu state. This value is already changed by libCEC automatically if a device is (de)activated.
151 * @param state The new state.
152 * @param bSendUpdate True to send the new status over the CEC line.
28fa6c97
LOK
153 * @return True if set, false otherwise.
154 */
155 virtual bool SetMenuState(cec_menu_state state, bool bSendUpdate = true) = 0;
156
1969b140 157 /*!
083311e9
LOK
158 * @brief Display a message on the device with the given logical address. Not supported by most TVs.
159 * @param iLogicalAddress The logical address of the device to display the message on.
d9106f08
LOK
160 * @param duration The duration of the message
161 * @param strMessage The message to display.
162 * @return True when the command was sent, false otherwise.
1969b140
LOK
163 */
164 virtual bool SetOSDString(cec_logical_address iLogicalAddress, cec_display_control duration, const char *strMessage) = 0;
8b7e5ff6
LOK
165
166 /*!
083311e9 167 * @brief Enable or disable monitoring mode, for debugging purposes. If monitoring mode is enabled, libCEC won't respond to any command, but only log incoming data.
d9106f08
LOK
168 * @param bEnable True to enable, false to disable.
169 * @return True when switched successfully, false otherwise.
8b7e5ff6
LOK
170 */
171 virtual bool SwitchMonitoring(bool bEnable) = 0;
6a1c0009
LOK
172
173 /*!
d9106f08 174 * @brief Get the CEC version of the device with the given logical address
083311e9 175 * @param iLogicalAddress The logical address of the device to get the CEC version for.
d9106f08 176 * @return The version or CEC_VERSION_UNKNOWN when the version couldn't be fetched.
6a1c0009 177 */
8d901fdb 178 virtual cec_version GetDeviceCecVersion(cec_logical_address iLogicalAddress) = 0;
a3269a0a
LOK
179
180 /*!
d9106f08 181 * @brief Get the menu language of the device with the given logical address
083311e9 182 * @param iLogicalAddress The logical address of the device to get the menu language for.
d9106f08
LOK
183 * @param language The requested menu language.
184 * @return True when fetched succesfully, false otherwise.
a3269a0a 185 */
8d901fdb 186 virtual bool GetDeviceMenuLanguage(cec_logical_address iLogicalAddress, cec_menu_language *language) = 0;
44c74256
LOK
187
188 /*!
d9106f08 189 * @brief Get the vendor ID of the device with the given logical address.
083311e9 190 * @param iLogicalAddress The logical address of the device to get the vendor ID for.
d9106f08 191 * @return The vendor ID or 0 if it wasn't found.
44c74256 192 */
8d901fdb 193 virtual uint64_t GetDeviceVendorId(cec_logical_address iLogicalAddress) = 0;
e55f3f70
LOK
194
195 /*!
d9106f08 196 * @brief Get the power status of the device with the given logical address.
083311e9 197 * @param iLogicalAddress The logical address of the device to get the power status for.
d9106f08 198 * @return The power status or CEC_POWER_STATUS_UNKNOWN if it wasn't found.
e55f3f70 199 */
8d901fdb 200 virtual cec_power_status GetDevicePowerStatus(cec_logical_address iLogicalAddress) = 0;
57f45e6c
LOK
201
202 /*!
083311e9 203 * @brief Sends a POLL message to a device, to check if it's present and responding.
8d901fdb 204 * @param iLogicalAddress The device to send the message to.
d9106f08 205 * @return True if the POLL was acked, false otherwise.
57f45e6c 206 */
8d901fdb 207 virtual bool PollDevice(cec_logical_address iLogicalAddress) = 0;
6d858ba4
LOK
208
209 /*!
083311e9 210 * @return The logical addresses of the devices that are active on the bus, including those handled by libCEC.
6d858ba4
LOK
211 */
212 virtual cec_logical_addresses GetActiveDevices(void) = 0;
213
214 /*!
215 * @brief Check whether a device is active on the bus.
8d901fdb 216 * @param iLogicalAddress The address to check.
6d858ba4
LOK
217 * @return True when active, false otherwise.
218 */
8d901fdb 219 virtual bool IsActiveDevice(cec_logical_address iLogicalAddress) = 0;
6d858ba4
LOK
220
221 /*!
222 * @brief Check whether a device of the given type is active on the bus.
223 * @param type The type to check.
224 * @return True when active, false otherwise.
225 */
226 virtual bool IsActiveDeviceType(cec_device_type type) = 0;
16b1e052 227
04e637f9
LOK
228 /*!
229 * @brief Sends a volume up keypress to an audiosystem if it's present.
5c73f7f7 230 * @param bSendRelease Send a key release after the keypress.
04e637f9
LOK
231 * @return The new audio status.
232 */
5c73f7f7 233 virtual uint8_t VolumeUp(bool bSendRelease = true) = 0;
04e637f9
LOK
234
235 /*!
236 * @brief Sends a volume down keypress to an audiosystem if it's present.
5c73f7f7 237 * @param bSendRelease Send a key release after the keypress.
04e637f9
LOK
238 * @return The new audio status.
239 */
5c73f7f7 240 virtual uint8_t VolumeDown(bool bSendRelease = true) = 0;
04e637f9
LOK
241
242 /*!
243 * @brief Sends a mute keypress to an audiosystem if it's present.
5c73f7f7 244 * @param bSendRelease Send a key release after the keypress.
04e637f9
LOK
245 * @return The new audio status.
246 */
5c73f7f7 247 virtual uint8_t MuteAudio(bool bSendRelease = true) = 0;
a33794d8
LOK
248
249 /*!
250 * @brief Send a keypress to a device on the CEC bus.
083311e9 251 * @param iDestination The logical address of the device to send the message to.
a33794d8
LOK
252 * @param key The key to send.
253 * @param bWait True to wait for a response, false otherwise.
254 * @return True when the keypress was acked, false otherwise.
255 */
256 virtual bool SendKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait = false) = 0;
257
258 /*!
259 * @brief Send a key release to a device on the CEC bus.
083311e9 260 * @param iDestination The logical address of the device to send the message to.
a33794d8 261 * @param bWait True to wait for a response, false otherwise.
083311e9 262 * @return True when the key release was acked, false otherwise.
a33794d8
LOK
263 */
264 virtual bool SendKeyRelease(cec_logical_address iDestination, bool bWait = false) = 0;
ed21be2a
LOK
265
266 /*!
267 * @brief Get the OSD name of a device on the CEC bus.
8d901fdb 268 * @param iLogicalAddress The device to get the OSD name for.
ed21be2a
LOK
269 * @return The OSD name.
270 */
8d901fdb 271 virtual cec_osd_name GetDeviceOSDName(cec_logical_address iLogicalAddress) = 0;
03ae897d 272
b4b1b49b
LOK
273 /*!
274 * @brief Get the logical address of the device that is currently the active source on the CEC bus.
275 * @return The active source or CECDEVICE_UNKNOWN when unknown.
276 */
277 virtual cec_logical_address GetActiveSource(void) = 0;
278
279 /*!
280 * @brief Check whether a device is currently the active source on the CEC bus.
083311e9 281 * @param iLogicalAddress The logical address of the device to check.
b4b1b49b
LOK
282 * @return True when it is the active source, false otherwise.
283 */
8d901fdb 284 virtual bool IsActiveSource(cec_logical_address iLogicalAddress) = 0;
b4b1b49b 285
f42d3e0f
LOK
286 /*!
287 * @brief Sets the stream path to the device on the given logical address.
8d901fdb 288 * @param iLogicalAddress The address to activate.
f42d3e0f
LOK
289 * @return True when the command was sent, false otherwise.
290 */
8d901fdb 291 virtual bool SetStreamPath(cec_logical_address iLogicalAddress) = 0;
f42d3e0f
LOK
292
293 /*!
083311e9 294 * @brief Sets the stream path to the device on the given physical address.
f42d3e0f
LOK
295 * @param iPhysicalAddress The address to activate.
296 * @return True when the command was sent, false otherwise.
297 */
298 virtual bool SetStreamPath(uint16_t iPhysicalAddress) = 0;
299
80b72250 300 /*!
083311e9 301 * @return The list of logical addresses that libCEC is controlling
80b72250
LOK
302 */
303 virtual cec_logical_addresses GetLogicalAddresses(void) = 0;
304
d40928b5
LOK
305 /*!
306 * @brief Get libCEC's current configuration.
307 * @param configuration The configuration.
308 * @return True when the configuration was updated, false otherwise.
309 */
310 virtual bool GetCurrentConfiguration(libcec_configuration *configuration) = 0;
311
30b4aac0
LOK
312 /*!
313 * @brief Change libCEC's configuration.
314 * @param configuration The new configuration.
315 * @return True when the configuration was changed successfully, false otherwise.
316 */
317 virtual bool SetConfiguration(const libcec_configuration *configuration) = 0;
318
224ea877 319 /*!
083311e9 320 * @return True when this CEC adapter can persist the user configuration, false otherwise.
224ea877
LOK
321 */
322 virtual bool CanPersistConfiguration(void) = 0;
323
324 /*!
325 * @brief Persist the given configuration in adapter (if supported)
083311e9 326 * @brief configuration The configuration to store.
224ea877
LOK
327 * @return True when the configuration was persisted, false otherwise.
328 */
329 virtual bool PersistConfiguration(libcec_configuration *configuration) = 0;
330
3efda01a 331 /*!
dc2c98f6 332 * @brief Tell libCEC to poll for active devices on the bus.
3efda01a 333 */
dc2c98f6 334 virtual void RescanActiveDevices(void) = 0;
c9549d35
LOK
335
336 /*!
337 * @return true when libCEC is the active source on the bus, false otherwise.
338 */
339 virtual bool IsLibCECActiveSource(void) = 0;
f80cd208
LOK
340
341 /*!
083311e9 342 * @brief Get information about the given CEC adapter.
f80cd208
LOK
343 * @param strPort The port to which the device is connected
344 * @param config The device configuration
345 * @param iTimeoutMs The timeout in milliseconds
346 * @return True when the device was found, false otherwise
347 */
348 virtual bool GetDeviceInformation(const char *strPort, libcec_configuration *config, uint32_t iTimeoutMs = 10000) = 0;
38f1fbcc
LOK
349
350 /*!
351 * @brief Set and enable the callback methods. If this method is not called, the GetNext...() methods will have to be used.
352 * @param cbParam Parameter to pass to callback methods.
353 * @param callbacks The callbacks to set.
354 * @return True when enabled, false otherwise.
355 */
356 virtual bool EnableCallbacks(void *cbParam, ICECCallbacks *callbacks) = 0;
357
38f1fbcc
LOK
358 /*!
359 * @brief Changes the active HDMI port.
083311e9 360 * @param iBaseDevice The device to which this libCEC is connected.
38f1fbcc
LOK
361 * @param iPort The new port number.
362 * @return True when changed, false otherwise.
363 */
364 virtual bool SetHDMIPort(cec_logical_address iBaseDevice, uint8_t iPort) = 0;
365
366 /*!
367 * @brief Get the physical address of the device with the given logical address.
083311e9 368 * @param iLogicalAddress The logical address of the device to get the physical address for.
38f1fbcc
LOK
369 * @return The physical address or 0 if it wasn't found.
370 */
371 virtual uint16_t GetDevicePhysicalAddress(cec_logical_address iLogicalAddress) = 0;
2b44051c
LOK
372
373 /*!
374 * @return A string with information about how libCEC was compiled.
375 */
376 virtual const char *GetLibInfo(void) = 0;
377
2b44051c
LOK
378 /*!
379 * @brief Calling this method will initialise the host on which libCEC is running.
380 * Calling this method will initialise the host on which libCEC is running. On the RPi, it calls
381 * bcm_host_init(), which may only be called once per process, and is called by any process using
382 * the video api on that system. So only call this method if libCEC is used in an application that
383 * does not already initialise the video api.
384 *
385 * Should be called as first call to libCEC, directly after CECInitialise() and before using Open()
386 */
387 virtual void InitVideoStandalone(void) = 0;
2d418322 388
2d4e263c
LOK
389 virtual const char *ToString(const cec_menu_state state) = 0;
390 virtual const char *ToString(const cec_version version) = 0;
391 virtual const char *ToString(const cec_power_status status) = 0;
392 virtual const char *ToString(const cec_logical_address address) = 0;
393 virtual const char *ToString(const cec_deck_control_mode mode) = 0;
394 virtual const char *ToString(const cec_deck_info status) = 0;
395 virtual const char *ToString(const cec_opcode opcode) = 0;
396 virtual const char *ToString(const cec_system_audio_status mode) = 0;
397 virtual const char *ToString(const cec_audio_status status) = 0;
398 virtual const char *ToString(const cec_vendor_id vendor) = 0;
399 virtual const char *ToString(const cec_client_version version) = 0;
400 virtual const char *ToString(const cec_server_version version) = 0;
401 virtual const char *ToString(const cec_user_control_code key) = 0;
2d418322 402 virtual const char *ToString(const cec_adapter_type type) = 0;
abbca718
LOK
403 };
404};
405
38f1fbcc
LOK
406/*!
407 * @brief Unload the CEC adapter library.
408 */
409extern "C" DECLSPEC void CECDestroy(CEC::ICECAdapter *instance);
caca2d81
LOK
410
411/*!
412 * @brief Load the CEC adapter library.
413 * @param configuration The configuration to pass to libCEC
414 * @return An instance of ICECAdapter or NULL on error.
415 */
3efda01a 416extern "C" DECLSPEC void * CECInitialise(CEC::libcec_configuration *configuration);
d9106f08 417
a2198e5e
LOK
418/*!
419 * @brief Try to connect to the adapter and send the "start bootloader" command, without initialising libCEC and going through all checks
420 * @return True when the command was send, false otherwise.
421 */
422extern "C" DECLSPEC bool CECStartBootloader(void);
423
acec5f48 424#endif /* CECEXPORTS_H_ */