18 const uint32_t vendor_id)
19 :
Option(u, getOptionCode(u)), vendor_id_(vendor_id) {
28 :
Option(u, getOptionCode(u)) {
34 return (cloneInternal<OptionVendorClass>());
43 for (TuplesCollection::const_iterator it = tuples_.begin();
44 it != tuples_.end(); ++it) {
60 if (std::distance(begin, end) < getMinimalLength() -
getHeaderLen()) {
62 " size " << std::distance(begin, end));
67 begin +=
sizeof(vendor_id_);
71 while (offset < std::distance(begin, end)) {
85 distance(begin + offset,
88 if (other_id != vendor_id_) {
90 "different enterprise ids: " << vendor_id_
91 <<
" and " << other_id);
94 offset +=
sizeof(vendor_id_);
98 if (offset + 1 >= std::distance(begin, end)) {
100 " option - it should contain enterprise id followed"
101 " by opaque data field tuple");
111 " invalid size of the length field "
115 tuples_.push_back(tuple);
123 " vendor option at position " << at <<
" which is out of"
128 " invalid size of the length field "
139 " vendor option at position " << at <<
" which is out of"
140 " range. There are only " <<
getTuplesNum() <<
" tuples");
142 return (tuples_[at]);
149 for (TuplesCollection::const_iterator it = tuples_.begin();
150 it != tuples_.end(); ++it) {
151 if (*it == tuple_str) {
164 for (TuplesCollection::const_iterator it = tuples_.begin();
165 it != tuples_.end(); ++it) {
169 length +=
sizeof(uint32_t);
171 length += it->getTotalLength();
180 std::ostringstream s;
183 s << std::string(indent,
' ');
186 " enterprise id=0x" << std::hex <<
getVendorId() << std::dec;
191 s <<
", enterprise id=0x" << std::hex <<
getVendorId() << std::dec;
195 s <<
", vendor-class-data" << i <<
"='" <<
getTuple(i) <<
"'";
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
A generic exception that is thrown if a parameter given to a method would refer to or modify out-of-r...
Represents a single instance of the opaque data preceded by length.
int getDataFieldSize() const
Returns the size of the tuple length field.
LengthFieldType getLengthFieldType() const
Returns tuple length data field type.
size_t getTotalLength() const
Returns a total size of the tuple, including length field.
size_t getLength() const
Returns the length of the data in the tuple.
static OpaqueDataTuple::LengthFieldType getTupleLenFieldType(Option::Universe u)
Returns Length Field Type for a tuple.
virtual std::string toText(int indent=0) const
Returns text representation of the option.
virtual void unpack(OptionBufferConstIter begin, OptionBufferConstIter end)
Parses buffer holding an option.
OptionVendorClass(Option::Universe u, const uint32_t vendor_id)
Constructor.
OptionPtr clone() const
Copies this option and returns a pointer to the copy.
virtual void pack(isc::util::OutputBuffer &buf, bool check=true) const
Renders option into the buffer in the wire format.
virtual uint16_t len() const
Returns the full length of the option, including option header.
uint32_t getVendorId() const
Returns enterprise id.
void setTuple(const size_t at, const OpaqueDataTuple &tuple)
Replaces tuple at the specified index with a new tuple.
OpaqueDataTuple getTuple(const size_t at) const
Returns opaque data tuple at the specified position.
void addTuple(const OpaqueDataTuple &tuple)
Adds a new opaque data tuple to the option.
size_t getTuplesNum() const
Returns the number of opaque data tuples added to the option.
bool hasTuple(const std::string &tuple_str) const
Checks if the Vendor Class holds the opaque data tuple with the specified string.
virtual uint16_t getHeaderLen() const
Returns length of header (2 for v4, 4 for v6)
Universe
defines option universe DHCPv4 or DHCPv6
uint16_t getType() const
Returns option type (0-255 for DHCPv4, 0-65535 for DHCPv6)
Universe getUniverse() const
returns option universe (V4 or V6)
void packHeader(isc::util::OutputBuffer &buf, bool check=true) const
Store option's header in a buffer.
void check() const
A protected method used for option correctness.
The OutputBuffer class is a buffer abstraction for manipulating mutable data.
void writeUint32(uint32_t data)
Write an unsigned 32-bit integer in host byte order into the buffer in network byte order.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
OptionBuffer::const_iterator OptionBufferConstIter
const_iterator for walking over OptionBuffer
boost::shared_ptr< Option > OptionPtr
uint32_t readUint32(const void *buffer, size_t length)
Read Unsigned 32-Bit Integer from Buffer.
Defines the logger used by the top-level component of kea-lfc.