/usr/include/ola/rdm/DimmerSubDevice.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 | /*
* 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
*
* DimmerSubDevice.h
* Copyright (C) 2013 Simon Newton
*/
/**
* @addtogroup rdm_resp
* @{
* @file DimmerSubDevice.h
* @brief A soft responder that impements a SubDevice in DimmerResponder
* @}
*/
#ifndef INCLUDE_OLA_RDM_DIMMERSUBDEVICE_H_
#define INCLUDE_OLA_RDM_DIMMERSUBDEVICE_H_
#include <ola/rdm/RDMControllerInterface.h>
#include <ola/rdm/RDMEnums.h>
#include <ola/rdm/ResponderOps.h>
#include <ola/rdm/ResponderPersonality.h>
#include <ola/rdm/UID.h>
#include <string>
namespace ola {
namespace rdm {
/**
* A sub device in the simulated dimmer.
*/
class DimmerSubDevice: public RDMControllerInterface {
public:
/**
* We need the total sub device count here because the sub device field in
* DEVICE_INFO must be the same for both the root and all sub devices
* (10.5).
*/
DimmerSubDevice(const UID &uid, uint16_t sub_device_number,
uint16_t total_sub_devices);
void SendRDMRequest(RDMRequest *request, RDMCallback *callback);
uint16_t Footprint() const {
return m_personality_manager.ActivePersonalityFootprint();
}
bool SetDmxStartAddress(uint16_t start_address);
uint16_t GetDmxStartAddress() const {
return m_start_address;
}
private:
/**
* The RDM Operations for the DimmerSubDevice.
*/
class RDMOps : public ResponderOps<DimmerSubDevice> {
public:
static RDMOps *Instance() {
if (!instance)
instance = new RDMOps();
return instance;
}
private:
RDMOps() : ResponderOps<DimmerSubDevice>(PARAM_HANDLERS, true) {}
static RDMOps *instance;
};
/**
* The personalities
*/
class Personalities : public PersonalityCollection {
public:
static const Personalities *Instance();
private:
explicit Personalities(const PersonalityList &personalities) :
PersonalityCollection(personalities) {
}
static Personalities *instance;
};
const UID m_uid;
const uint16_t m_sub_device_number;
const uint16_t m_sub_device_count;
uint16_t m_start_address;
bool m_identify_on;
uint8_t m_identify_mode;
PersonalityManager m_personality_manager;
RDMResponse *GetDeviceInfo(const RDMRequest *request);
RDMResponse *GetProductDetailList(const RDMRequest *request);
RDMResponse *GetPersonality(const RDMRequest *request);
RDMResponse *SetPersonality(const RDMRequest *request);
RDMResponse *GetPersonalityDescription(const RDMRequest *request);
RDMResponse *GetDmxStartAddress(const RDMRequest *request);
RDMResponse *SetDmxStartAddress(const RDMRequest *request);
RDMResponse *GetIdentify(const RDMRequest *request);
RDMResponse *SetIdentify(const RDMRequest *request);
RDMResponse *SetIdentifyMode(const RDMRequest *request);
RDMResponse *GetIdentifyMode(const RDMRequest *request);
RDMResponse *GetRealTimeClock(const RDMRequest *request);
RDMResponse *GetManufacturerLabel(const RDMRequest *request);
RDMResponse *GetDeviceLabel(const RDMRequest *request);
RDMResponse *GetDeviceModelDescription(const RDMRequest *request);
RDMResponse *GetSoftwareVersionLabel(const RDMRequest *request);
static const ResponderOps<DimmerSubDevice>::ParamHandler PARAM_HANDLERS[];
};
} // namespace rdm
} // namespace ola
#endif // INCLUDE_OLA_RDM_DIMMERSUBDEVICE_H_
|