3 * This file is part of the libCEC(R) library.
5 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
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/
44 virtual ~ICECAdapter() {};
45 /*! @name Adapter methods */
50 virtual bool Open(const char *strPort
, uint32_t iTimeoutMs
= 10000) = 0;
55 virtual void Close(void) = 0;
58 * @see cec_find_adapters
60 virtual int8_t FindAdapters(cec_adapter
*deviceList
, uint8_t iBufSize
, const char *strDevicePath
= NULL
) = 0;
63 * @see cec_ping_adapters
65 virtual bool PingAdapter(void) = 0;
68 * @see cec_start_bootloader
70 virtual bool StartBootloader(void) = 0;
74 * @see cec_get_min_lib_version
76 virtual int8_t GetMinLibVersion(void) const = 0;
79 * @see cec_get_lib_version_major
81 virtual int8_t GetLibVersionMajor(void) const = 0;
84 * @see cec_get_lib_version_minor
86 virtual int8_t GetLibVersionMinor(void) const = 0;
89 * @see cec_get_next_log_message
91 virtual bool GetNextLogMessage(cec_log_message
*message
) = 0;
94 * @see cec_get_next_keypress
96 virtual bool GetNextKeypress(cec_keypress
*key
) = 0;
99 * @see cec_get_next_command
101 virtual bool GetNextCommand(cec_command
*command
) = 0;
106 virtual bool Transmit(const cec_command
&data
) = 0;
109 * @see cec_set_logical_address
111 virtual bool SetLogicalAddress(cec_logical_address iLogicalAddress
= CECDEVICE_PLAYBACKDEVICE1
) = 0;
114 * @see cec_set_physical_address
116 virtual bool SetPhysicalAddress(uint16_t iPhysicalAddress
= CEC_DEFAULT_PHYSICAL_ADDRESS
) = 0;
119 * @see cec_power_on_devices
121 virtual bool PowerOnDevices(cec_logical_address address
= CECDEVICE_TV
) = 0;
124 * @see cec_standby_devices
126 virtual bool StandbyDevices(cec_logical_address address
= CECDEVICE_BROADCAST
) = 0;
129 * @see cec_set_active_view
131 virtual bool SetActiveView(void) = 0;
134 * @see cec_set_inactive_view
136 virtual bool SetInactiveView(void) = 0;
139 * @see cec_set_osd_string
141 virtual bool SetOSDString(cec_logical_address iLogicalAddress
, cec_display_control duration
, const char *strMessage
) = 0;
144 * @see cec_switch_monitoring
146 virtual bool SwitchMonitoring(bool bEnable
) = 0;
149 * @see cec_get_device_cec_version
151 virtual cec_version
GetDeviceCecVersion(cec_logical_address iAddress
) = 0;
154 * @see cec_get_device_menu_language
156 virtual bool GetDeviceMenuLanguage(cec_logical_address iAddress
, cec_menu_language
*language
) = 0;
159 * @see cec_get_device_vendor_id
161 virtual uint64_t GetDeviceVendorId(cec_logical_address iAddress
) = 0;
164 * @see cec_get_device_power_status
166 virtual cec_power_status
GetDevicePowerStatus(cec_logical_address iAddress
) = 0;
169 * @see cec_poll_device
171 virtual bool PollDevice(cec_logical_address iAddress
) = 0;
175 extern "C" DECLSPEC
void * CECCreate(const char *strDeviceName
, CEC::cec_logical_address iLogicalAddress
= CEC::CECDEVICE_PLAYBACKDEVICE1
, uint16_t iPhysicalAddress
= CEC_DEFAULT_PHYSICAL_ADDRESS
);
176 extern "C" DECLSPEC
void CECDestroy(CEC::ICECAdapter
*instance
);
178 #endif /* CECEXPORTS_H_ */