/usr/include/ola/rdm/ResponderSettings.h is in libola-dev 0.9.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* ResponderSettings.h
* Copyright (C) 2013 Simon Newton
*/
#ifndef INCLUDE_OLA_RDM_RESPONDERSETTINGS_H_
#define INCLUDE_OLA_RDM_RESPONDERSETTINGS_H_
#include <ola/base/Macro.h>
#include <ola/rdm/RDMCommand.h>
#include <ola/rdm/ResponderHelper.h>
#include <stdint.h>
#include <string>
#include <vector>
namespace ola {
namespace rdm {
/**
* @brief The base class all Settings inherit from.
*/
class SettingInterface {
public:
virtual ~SettingInterface() {}
/**
* @brief The text description of this setting
* @returns the string description of the setting.
*/
virtual std::string Description() const = 0;
/**
* @brief Return the size of the _DESCRIPTION parameter data.
*/
virtual unsigned int DescriptionResponseSize() const = 0;
/**
* @brief Populate the _DESCRIPTION parameter data.
* @param index the index for this setting
* @param data the RDM parameter data to write to.
*/
virtual unsigned int GenerateDescriptionResponse(uint8_t index,
uint8_t *data) const = 0;
};
/**
* @brief A Setting which has a description and no other properties.
*/
class BasicSetting : SettingInterface {
public:
typedef const char* ArgType;
/**
* @brief Construct a new BasicSetting
* @param description the description for this setting.
*/
explicit BasicSetting(const ArgType description);
/**
* @brief The text description of this setting
* @returns the string description of the setting.
*/
std::string Description() const { return m_description; }
unsigned int DescriptionResponseSize() const {
return sizeof(description_s);
}
unsigned int GenerateDescriptionResponse(uint8_t index,
uint8_t *data) const;
private:
PACK(
struct description_s {
uint8_t setting;
char description[MAX_RDM_STRING_LENGTH];
});
std::string m_description;
};
/**
* @brief A PWM Frequency Setting.
* See Section 4.10 of E1.37-1.
*/
class FrequencyModulationSetting : SettingInterface {
public:
/**
* @brief The constructor argument for the FrequencyModulationSetting
*/
struct FrequencyModulationArg {
uint32_t frequency; /**< The frequency */
const char *description; /**< The description */
};
typedef FrequencyModulationArg ArgType;
/**
* @brief Construct a new FrequencyModulationSetting.
* @param arg the FrequencyModulationArg for this setting.
*/
explicit FrequencyModulationSetting(const ArgType &arg);
/**
* @brief The text description of this setting
* @returns the string description of the setting.
*/
std::string Description() const { return m_description; }
/**
* @brief returns the frequency for this setting.
*/
uint32_t Frequency() const { return m_frequency; }
unsigned int DescriptionResponseSize() const {
return sizeof(description_s);
}
unsigned int GenerateDescriptionResponse(uint8_t index,
uint8_t *data) const;
private:
PACK(
struct description_s {
uint8_t setting;
uint32_t frequency;
char description[MAX_RDM_STRING_LENGTH];
});
uint32_t m_frequency;
std::string m_description;
};
/**
* @brief Holds the list of settings for a class of responder. A single instance
* is shared between all responders of the same type. Subclass this and use a
* singleton.
*
* @note Settings are indexed from zero. SettingManager responsible for
* reporting correct indices with correct offset.
*/
template <class SettingType>
class SettingCollection {
public:
/**
* zero_offset is used for the LOCK_STATE which is special because it has
* the unlocked state at index 0. However the 0 state isn't counted towards
* the total and does not have a description
*/
SettingCollection(const typename SettingType::ArgType args[],
unsigned int arg_count,
bool zero_offset = false)
: m_zero_offset(zero_offset) {
for (unsigned int i = 0; i < arg_count; i++) {
m_settings.push_back(SettingType(args[i]));
}
}
uint8_t Count() const { return m_settings.size(); }
const SettingType *Lookup(uint8_t index) const {
if (index > m_settings.size()) {
return NULL;
}
return &m_settings[index];
}
unsigned int Offset() const {
return m_zero_offset ? 0 : 1;
}
protected:
SettingCollection() {}
private:
std::vector<SettingType> m_settings;
const bool m_zero_offset;
};
/**
* Manages the settings for a single responder.
*/
template <class SettingType>
class SettingManager {
public:
explicit SettingManager(const SettingCollection<SettingType> *settings)
: m_settings(settings),
m_current_setting(settings->Offset()) {
}
virtual ~SettingManager() {}
RDMResponse *Get(const RDMRequest *request) const;
RDMResponse *Set(const RDMRequest *request);
RDMResponse *GetDescription(const RDMRequest *request) const;
uint8_t Count() const {
return m_settings->Count();
}
uint8_t CurrentSetting() const {
return m_current_setting + m_settings->Offset();
}
bool ChangeSetting(uint8_t state);
private:
const SettingCollection<SettingType> *m_settings;
uint8_t m_current_setting; /**< Index to m_settings, including zero*/
};
typedef SettingCollection<BasicSetting> BasicSettingCollection;
typedef SettingManager<BasicSetting> BasicSettingManager;
template <class SettingType>
RDMResponse *SettingManager<SettingType>::Get(const RDMRequest *request) const {
uint16_t data = ((m_current_setting + m_settings->Offset()) << 8 |
m_settings->Count());
if (m_settings->Offset() == 0) {
// don't count the 0-state
data--;
}
return ResponderHelper::GetUInt16Value(request, data);
}
template <class SettingType>
RDMResponse *SettingManager<SettingType>::Set(const RDMRequest *request) {
uint8_t arg;
if (!ResponderHelper::ExtractUInt8(request, &arg)) {
return NackWithReason(request, NR_FORMAT_ERROR);
}
unsigned int offset = m_settings->Offset();
if (arg < offset || arg >= m_settings->Count() + offset) {
return NackWithReason(request, NR_DATA_OUT_OF_RANGE);
} else {
m_current_setting = arg - offset;
return ResponderHelper::EmptySetResponse(request);
}
}
template <class SettingType>
RDMResponse *SettingManager<SettingType>::GetDescription(
const RDMRequest *request) const {
uint8_t arg;
if (!ResponderHelper::ExtractUInt8(request, &arg)) {
return NackWithReason(request, NR_FORMAT_ERROR);
}
unsigned int offset = m_settings->Offset();
// never reply for the first setting - see LOCK_STATE
if (arg == 0 || arg >= m_settings->Count() + offset) {
return NackWithReason(request, NR_DATA_OUT_OF_RANGE);
} else {
const SettingType *setting = m_settings->Lookup(arg - offset);
uint8_t output[
setting->DescriptionResponseSize()]; // NOLINT(runtime/arrays)
unsigned int size = setting->GenerateDescriptionResponse(arg, output);
return GetResponseFromData(request, output, size, RDM_ACK);
}
}
template <class SettingType>
bool SettingManager<SettingType>::ChangeSetting(uint8_t new_setting) {
uint8_t offset = m_settings->Offset();
if (new_setting < offset || new_setting >= m_settings->Count() + offset)
return false;
m_current_setting = new_setting - offset;
return true;
}
} // namespace rdm
} // namespace ola
#endif // INCLUDE_OLA_RDM_RESPONDERSETTINGS_H_
|