cec: cleanups, documentation and some fixes for the last commits
[deb_libcec.git] / src / lib / adapter / USBCECAdapterCommands.h
CommitLineData
a75e3a5a
LOK
1#pragma once
2/*
3 * This file is part of the libCEC(R) library.
4 *
5 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
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
34#include "USBCECAdapterCommunication.h"
35
36namespace CEC
37{
38 class CUSBCECAdapterCommands
39 {
40 public:
7c5c5bf4 41 CUSBCECAdapterCommands(CUSBCECAdapterCommunication *comm);
a75e3a5a
LOK
42
43 /*!
44 * @brief Request the firmware version from the adapter.
45 * @return The firmware version, or 1 (default) if it couldn't be retrieved.
46 */
47 uint16_t RequestFirmwareVersion(void);
48
7c5c5bf4
LOK
49 /*!
50 * @return The firmware version of the adapter, retrieved when the connection is opened.
51 */
52 uint16_t GetFirmwareVersion(void) const { return m_persistedConfiguration.iFirmwareVersion; };
53
54 /*!
55 * @brief Persist the current configuration in the EEPROM.
56 * @attention Not all settings are persisted at this time.
57 * @param configuration The configuration to persist.
58 * @return True when persisted, false otherwise.
59 */
c0152c09 60 bool PersistConfiguration(const libcec_configuration &configuration);
7c5c5bf4
LOK
61
62 /*!
63 * @brief Get the persisted configuration from the EEPROM.
64 * @param configuration The persisted configuration.
65 * @return True when retrieved, false otherwise.
66 */
c0152c09 67 bool GetConfiguration(libcec_configuration &configuration);
7c5c5bf4
LOK
68
69 /*!
70 * @brief Send a ping command to the adapter.
71 * @return True when acked by the adapter, false otherwise.
72 */
73 bool PingAdapter(void);
74
75 /*!
76 * @brief Change the ackmask of the adapter.
77 * @param iMask The new mask.
78 * @return True when the change was acked by the adapter, false otherwise.
79 */
80 bool SetAckMask(uint16_t iMask);
81
82 /*!
83 * @brief Put the adapter in bootloader mode.
84 * @attention The connection needs to be closed after this call, since the adapter will no longer be available.
85 * @return True when the command was sent, false otherwise.
86 */
87 bool StartBootloader(void);
88
89 /*!
90 * @brief Change the current CEC line timeout.
91 * @param iTimeout The new timeout.
92 * @return True when the change was acked by the adapter, false otherwise.
93 */
94 bool SetLineTimeout(uint8_t iTimeout);
95
96 /*!
97 * @brief Put the adapter in controlled or autonomous mode.
98 * @param controlled True to switch to controlled mode, false to switch to auto mode.
99 * @return True when acked by the controller, false otherwise.
100 */
101 bool SetControlledMode(bool controlled);
102
b2f56d35
LOK
103 /*!
104 * @brief Request the firmware build date from the device.
105 * @return The build date in seconds since epoch, or 0 when no (valid) reply was received.
106 */
107 uint32_t RequestBuildDate(void);
108
7c5c5bf4
LOK
109 private:
110 /*!
111 * @brief Reads all settings from the eeprom.
112 * @return True when read, false otherwise.
113 */
114 bool RequestSettings(void);
115
a75e3a5a
LOK
116 /*!
117 * @brief Request a setting value from the adapter.
118 * @param msgCode The setting to retrieve.
119 * @return The response from the adapter.
120 */
121 cec_datapacket RequestSetting(cec_adapter_messagecode msgCode);
122
123 /*!
124 * @brief Change the value of the "auto enabled" setting.
125 * @param enabled The new value.
126 * @return True when set, false otherwise.
127 */
128 bool SetSettingAutoEnabled(bool enabled);
129
130 /*!
131 * @brief Request the value of the "auto enabled" setting from the adapter.
a75e3a5a
LOK
132 * @return True when retrieved, false otherwise.
133 */
7c5c5bf4 134 bool RequestSettingAutoEnabled(void);
a75e3a5a
LOK
135
136 /*!
137 * @brief Change the value of the "device type" setting, used when the device is in autonomous mode.
138 * @param type The new value.
139 * @return True when set, false otherwise.
140 */
141 bool SetSettingDeviceType(cec_device_type type);
142
143 /*!
144 * @brief Request the value of the "device type" setting from the adapter.
a75e3a5a
LOK
145 * @return True when retrieved, false otherwise.
146 */
7c5c5bf4 147 bool RequestSettingDeviceType(void);
a75e3a5a
LOK
148
149 /*!
150 * @brief Change the value of the "default logical address" setting, used when the device is in autonomous mode.
151 * @param address The new value.
152 * @return True when set, false otherwise.
153 */
154 bool SetSettingDefaultLogicalAddress(cec_logical_address address);
155
156 /*!
157 * @brief Request the value of the "default logical address" setting from the adapter.
a75e3a5a
LOK
158 * @return True when retrieved, false otherwise.
159 */
7c5c5bf4 160 bool RequestSettingDefaultLogicalAddress(void);
a75e3a5a
LOK
161
162 /*!
163 * @brief Change the value of the "logical address mask" setting, used when the device is in autonomous mode.
164 * @param iMask The new value.
165 * @return True when set, false otherwise.
166 */
167 bool SetSettingLogicalAddressMask(uint16_t iMask);
168
169 /*!
170 * @brief Request the value of the "logical address mask" setting from the adapter.
a75e3a5a
LOK
171 * @return True when retrieved, false otherwise.
172 */
7c5c5bf4 173 bool RequestSettingLogicalAddressMask(void);
a75e3a5a
LOK
174
175 /*!
176 * @brief Change the value of the "physical address" setting, used when the device is in autonomous mode.
177 * @param iPhysicalAddress The new value.
178 * @return True when set, false otherwise.
179 */
180 bool SetSettingPhysicalAddress(uint16_t iPhysicalAddress);
181
182 /*!
183 * @brief Request the value of the "physical address" setting from the adapter.
a75e3a5a
LOK
184 * @return True when retrieved, false otherwise.
185 */
7c5c5bf4 186 bool RequestSettingPhysicalAddress(void);
a75e3a5a
LOK
187
188 /*!
189 * @brief Change the value of the "CEC version" setting, used when the device is in autonomous mode.
190 * @param version The new value.
191 * @return True when set, false otherwise.
192 */
193 bool SetSettingCECVersion(cec_version version);
194
195 /*!
196 * @brief Request the value of the "CEC version" setting from the adapter.
a75e3a5a
LOK
197 * @return True when retrieved, false otherwise.
198 */
7c5c5bf4 199 bool RequestSettingCECVersion(void);
a75e3a5a
LOK
200
201 /*!
202 * @brief Change the value of the "OSD name" setting, used when the device is in autonomous mode.
203 * @param strOSDName The new value.
204 * @return True when set, false otherwise.
205 */
206 bool SetSettingOSDName(const char *strOSDName);
207
208 /*!
209 * @brief Request the value of the "OSD name" setting from the adapter.
a75e3a5a
LOK
210 * @return True when retrieved, false otherwise.
211 */
7c5c5bf4 212 bool RequestSettingOSDName(void);
a75e3a5a
LOK
213
214 /*!
215 * @brief Persist the current settings in the EEPROM
216 * @return True when persisted, false otherwise.
217 */
218 bool WriteEEPROM(void);
219
7c5c5bf4
LOK
220 CUSBCECAdapterCommunication *m_comm; /**< the communication handler */
221 bool m_bSettingsRetrieved; /**< true when the settings were read from the eeprom, false otherwise */
222 bool m_bSettingAutoEnabled; /**< the value of the auto-enabled setting */
223 cec_version m_settingCecVersion; /**< the value of the cec version setting */
224 uint16_t m_iSettingLAMask; /**< the value of the LA mask setting */
225 bool m_bNeedsWrite; /**< true when we sent changed settings to the adapter that have not been persisted */
226 libcec_configuration m_persistedConfiguration; /**< the configuration that is persisted in the eeprom */
b2f56d35 227 uint32_t m_iBuildDate; /**< the build date of the firmware */
a75e3a5a
LOK
228 };
229}