20 const uint32_t vendor_id)
21 :
Option(u, getOptionCode(u)), vendor_id_(vendor_id) {
30 :
Option(u, getOptionCode(u)) {
36 return (cloneInternal<OptionVendorClass>());
46 for (
auto const& it : tuples_) {
63 if (std::distance(begin, end) < getMinimalLength() -
getHeaderLen()) {
65 " size " << std::distance(begin, end));
70 begin +=
sizeof(vendor_id_);
74 while (offset < std::distance(begin, end)) {
81 offset += tuple.getTotalLength();
88 distance(begin + offset,
91 if (other_id != vendor_id_) {
93 "different enterprise ids: " << vendor_id_
94 <<
" and " << other_id);
97 offset +=
sizeof(vendor_id_);
101 if (offset + 1 >= std::distance(begin, end)) {
103 " option - it should contain enterprise id followed"
104 " by opaque data field tuple");
114 " invalid size of the length field "
115 << tuple.getDataFieldSize() <<
" to Vendor Class option");
118 tuples_.push_back(tuple);
126 " vendor option at position " << at <<
" which is out of"
131 " invalid size of the length field "
132 << tuple.getDataFieldSize() <<
" to Vendor Class option");
142 " vendor option at position " << at <<
" which is out of"
143 " range. There are only " <<
getTuplesNum() <<
" tuples");
145 return (tuples_[at]);
152 for (
auto const& it : tuples_) {
153 if (it == tuple_str) {
167 for (
auto const& it : tuples_) {
171 length +=
sizeof(uint32_t);
174 length += it.getTotalLength();
183 std::ostringstream s;
186 s << std::string(indent,
' ');
189 " enterprise id=0x" << std::hex <<
getVendorId() << std::dec;
194 s <<
", enterprise id=0x" << std::hex <<
getVendorId() << std::dec;
198 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.
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.
#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(void const *const buffer, size_t const length)
uint32_t wrapper over readUint.
Defines the logger used by the top-level component of kea-lfc.