/usr/include/ola/messaging/Message.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 | /*
* 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
*
* Message.h
* Holds the data for a message.
* Copyright (C) 2011 Simon Newton
*/
#ifndef INCLUDE_OLA_MESSAGING_MESSAGE_H_
#define INCLUDE_OLA_MESSAGING_MESSAGE_H_
#include <ola/messaging/Descriptor.h>
#include <ola/messaging/MessageVisitor.h>
#include <ola/network/IPV4Address.h>
#include <ola/network/MACAddress.h>
#include <ola/rdm/UID.h>
#include <string>
#include <vector>
namespace ola {
namespace messaging {
class MessageVisitor;
class Message {
public:
explicit Message(
const std::vector<const class MessageFieldInterface*> &fields)
: m_fields(fields) {
}
~Message();
void Accept(MessageVisitor *visitor) const;
unsigned int FieldCount() const { return m_fields.size(); }
private:
std::vector<const class MessageFieldInterface*> m_fields;
};
/**
* The Interface for a MessageField.
*/
class MessageFieldInterface {
public:
virtual ~MessageFieldInterface() {}
// Call back into a MessageVisitor
virtual void Accept(MessageVisitor *visitor) const = 0;
};
/**
* A MessageField that represents a bool
*/
class BoolMessageField: public MessageFieldInterface {
public:
BoolMessageField(const BoolFieldDescriptor *descriptor,
bool value)
: m_descriptor(descriptor),
m_value(value) {
}
const BoolFieldDescriptor *GetDescriptor() const {
return m_descriptor;
}
bool Value() const { return m_value; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const BoolFieldDescriptor *m_descriptor;
bool m_value;
};
/**
* A MessageField that represents a IPv4 Address
*/
class IPV4MessageField: public MessageFieldInterface {
public:
IPV4MessageField(const IPV4FieldDescriptor *descriptor,
const ola::network::IPV4Address &value)
: m_descriptor(descriptor),
m_value(value) {
}
IPV4MessageField(const IPV4FieldDescriptor *descriptor,
uint32_t value)
: m_descriptor(descriptor),
m_value(ola::network::IPV4Address(value)) {
}
const IPV4FieldDescriptor *GetDescriptor() const {
return m_descriptor;
}
const ola::network::IPV4Address& Value() const { return m_value; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const IPV4FieldDescriptor *m_descriptor;
ola::network::IPV4Address m_value;
};
/**
* A MessageField that represents a MAC Address
*/
class MACMessageField: public MessageFieldInterface {
public:
MACMessageField(const MACFieldDescriptor *descriptor,
const ola::network::MACAddress &value)
: m_descriptor(descriptor),
m_value(value) {
}
const MACFieldDescriptor *GetDescriptor() const {
return m_descriptor;
}
const ola::network::MACAddress& Value() const { return m_value; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const MACFieldDescriptor *m_descriptor;
ola::network::MACAddress m_value;
};
/**
* A MessageField that represents a UID.
*/
class UIDMessageField: public MessageFieldInterface {
public:
UIDMessageField(const UIDFieldDescriptor *descriptor,
const ola::rdm::UID &uid)
: m_descriptor(descriptor),
m_uid(uid) {
}
const UIDFieldDescriptor *GetDescriptor() const {
return m_descriptor;
}
const ola::rdm::UID& Value() const { return m_uid; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const UIDFieldDescriptor *m_descriptor;
ola::rdm::UID m_uid;
};
/**
* A MessageField that represents a string
*/
class StringMessageField: public MessageFieldInterface {
public:
StringMessageField(const StringFieldDescriptor *descriptor,
const std::string &value)
: m_descriptor(descriptor),
m_value(value) {
}
const StringFieldDescriptor *GetDescriptor() const { return m_descriptor; }
const std::string& Value() const { return m_value; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const StringFieldDescriptor *m_descriptor;
const std::string m_value;
};
/**
* A MessageField that represents an simple type
*/
template <typename type>
class BasicMessageField: public MessageFieldInterface {
public:
BasicMessageField(const IntegerFieldDescriptor<type> *descriptor,
type value)
: m_descriptor(descriptor),
m_value(value) {
}
const IntegerFieldDescriptor<type> *GetDescriptor() const {
return m_descriptor;
}
type Value() const { return m_value; }
void Accept(MessageVisitor *visitor) const {
visitor->Visit(this);
}
private:
const IntegerFieldDescriptor<type> *m_descriptor;
type m_value;
};
typedef BasicMessageField<uint8_t> UInt8MessageField;
typedef BasicMessageField<uint16_t> UInt16MessageField;
typedef BasicMessageField<uint32_t> UInt32MessageField;
typedef BasicMessageField<int8_t> Int8MessageField;
typedef BasicMessageField<int16_t> Int16MessageField;
typedef BasicMessageField<int32_t> Int32MessageField;
/**
* A MessageField that consists of a group of fields
*/
class GroupMessageField: public MessageFieldInterface {
public:
GroupMessageField(
const FieldDescriptorGroup *descriptor,
const std::vector<const class MessageFieldInterface*> &fields)
: m_descriptor(descriptor),
m_fields(fields) {}
~GroupMessageField();
const FieldDescriptorGroup *GetDescriptor() const { return m_descriptor; }
unsigned int FieldCount() const { return m_fields.size(); }
const class MessageFieldInterface *GetField(unsigned int index) const {
if (index < m_fields.size())
return m_fields[index];
return NULL;
}
void Accept(MessageVisitor *visitor) const;
private:
const FieldDescriptorGroup *m_descriptor;
std::vector<const class MessageFieldInterface*> m_fields;
};
} // namespace messaging
} // namespace ola
#endif // INCLUDE_OLA_MESSAGING_MESSAGE_H_
|