36 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<Component>));
40 static_assert(std::is_base_of<tlv::Error, Component::Error>::value,
41 "name::Component::Error must inherit from tlv::Error");
44 Component::ensureValid()
const 47 BOOST_THROW_EXCEPTION(Error(
"TLV-TYPE " +
to_string(
type()) +
" is not a valid NameComponent"));
65 :
Block(type, std::move(buffer))
89 std::ostringstream oss;
91 std::string value = oss.str();
92 if (value.find_first_not_of(
'.') == std::string::npos) {
93 if (value.size() < 3) {
94 BOOST_THROW_EXCEPTION(
Component::Error(
"Illegal URI (name component cannot be . or ..)"));
96 return Component(type, reinterpret_cast<const uint8_t*>(value.data()), value.size() - 3);
98 return Component(type, reinterpret_cast<const uint8_t*>(value.data()), value.size());
104 size_t equalPos = input.
find(
'=');
105 if (equalPos == std::string::npos) {
109 long type = std::strtol(input.data(),
nullptr, 10);
112 size_t valuePos = equalPos + 1;
114 input.size() - valuePos);
117 auto typePrefix = input.substr(0, equalPos);
120 BOOST_THROW_EXCEPTION(
Error(
"Incorrect TLV-TYPE '" + typePrefix +
"' in NameComponent URI"));
122 return ct->parseAltUriValue(input.substr(equalPos + 1));
134 std::ostringstream os;
192 BOOST_THROW_EXCEPTION(
Error(
"Name component does not have nonNegativeInteger value"));
201 BOOST_THROW_EXCEPTION(
Error(
"Name component does not have the requested marker " 202 "or the value is not a nonNegativeInteger"));
204 Buffer::const_iterator valueBegin =
value_begin() + 1;
253 valueLength += estimator.prependByteArray(&marker, 1);
254 size_t totalLength = valueLength;
255 totalLength += estimator.prependVarNumber(valueLength);
259 encoder.prependNonNegativeInteger(number);
260 encoder.prependByteArray(&marker, 1);
261 encoder.prependVarNumber(valueLength);
264 return encoder.block();
288 using namespace time;
289 uint64_t
value = duration_cast<microseconds>(timePoint -
getUnixEpoch()).count();
365 int cmpType =
type() - other.
type();
382 bool isOverflow =
false;
384 std::tie(isOverflow, successor) =
395 template<encoding::Tag TAG>
399 size_t totalLength = 0;
402 totalLength += encoder.prependVarNumber(
value_size());
403 totalLength += encoder.prependVarNumber(
type());
421 const_cast<Component&>(*
this) = buffer.block();
static Component fromParametersSha256Digest(ConstBufferPtr digest)
Create ParametersSha256DigestComponent component.
static Component fromNumber(uint64_t number)
Create a component encoded as nonNegativeInteger.
static Component fromSequenceNumber(uint64_t seqNo)
Create sequence number component using NDN naming conventions.
bool hasWire() const
Check if the Block has fully encoded wire.
Copyright (c) 2011-2015 Regents of the University of California.
const ComponentTypeTable & getComponentTypeTable()
Get the global ComponentTypeTable.
const ComponentType & get(uint32_t type) const
Retrieve ComponentType by TLV-TYPE.
std::string toUri() const
Convert *this by escaping characters according to the NDN URI Scheme.
bool isSequenceNumber() const
Check if the component is sequence number per NDN naming conventions.
uint64_t toSequenceNumber() const
Interpret as sequence number component using NDN naming conventions.
static Component fromNumberWithMarker(uint8_t marker, uint64_t number)
Create a component encoded as NameComponentWithMarker.
size_t value_size() const
Get size of TLV-VALUE aka TLV-LENGTH.
Component(uint32_t type=tlv::GenericNameComponent)
Construct a NameComponent of TLV-TYPE type, using empty TLV-VALUE.
bool isNumberWithMarker(uint8_t marker) const
Check if the component is NameComponentWithMarker per NDN naming conventions.
static Component fromTimestamp(const time::system_clock::TimePoint &timePoint)
Create sequence number component using NDN naming conventions.
bool match(const Component &comp) const
const uint8_t * wire() const
Get pointer to encoded wire.
Represents a TLV element of NDN packet format.
uint64_t readNonNegativeInteger(size_t size, Iterator &begin, Iterator end)
Read nonNegativeInteger in NDN-TLV encoding.
int compare(const Component &other) const
Compare this to the other Component using NDN canonical ordering.
const uint8_t * value() const
Get pointer to TLV-VALUE.
virtual void writeUri(std::ostream &os, const Component &comp) const
Write URI representation of comp to os.
Block makeNonNegativeIntegerBlock(uint32_t type, uint64_t value)
Create a TLV block containing a non-negative integer.
const Sha256ComponentType & getComponentType1()
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
static Component fromSegmentOffset(uint64_t offset)
Create segment offset component using NDN naming conventions.
const Sha256ComponentType & getComponentType2()
static const uint8_t SEGMENT_OFFSET_MARKER
Segment offset marker for NDN naming conventions.
bool isNumber() const
Check if the component is nonNegativeInteger.
Buffer::const_iterator value_begin() const
Get begin iterator of TLV-VALUE.
bool isSegmentOffset() const
Check if the component is segment offset per NDN naming conventions.
bool isParametersSha256Digest() const
Check if the component is ParametersSha256DigestComponent.
static Component fromSegment(uint64_t segmentNo)
Create segment number component using NDN naming conventions.
Component getSuccessor() const
Get the successor of this name component.
a concept check for TLV abstraction with .wireEncode method
size_t size() const
Get size of encoded wire, including Type-Length-Value.
virtual std::pair< bool, Component > getSuccessor(const Component &comp) const
Calculate the successor of comp.
Component create(ConstBufferPtr value) const
element_const_iterator find(uint32_t type) const
Find the first sub element of specified TLV-TYPE.
static Component fromEscapedString(const char *input, size_t beginOffset, size_t endOffset)
Decode NameComponent from a URI component.
Block makeBinaryBlock(uint32_t type, const uint8_t *value, size_t length)
Create a TLV block copying TLV-VALUE from raw buffer.
bool isSegment() const
Check if the component is segment number per NDN naming conventions.
Block makeStringBlock(uint32_t type, const std::string &value)
Create a TLV block containing a string.
Buffer::const_iterator value_end() const
Get end iterator of TLV-VALUE.
uint64_t toSegmentOffset() const
Interpret as segment offset component using NDN naming conventions.
virtual const std::vector< uint8_t > & getMinValue() const
Return the minimum allowable TLV-VALUE of this component type.
std::string unescape(const std::string &str)
Decode a percent-encoded string.
bool isImplicitSha256Digest() const
Check if the component is ImplicitSha256DigestComponent.
bool equals(const Component &other) const
Check if this is the same component as other.
const Block & wireEncode() const
Encode to a wire format.
uint64_t toNumber() const
Interpret this name component as nonNegativeInteger.
static const uint8_t VERSION_MARKER
Version marker for NDN naming conventions.
const ComponentType * findByUriPrefix(const std::string &prefix) const
Retrieve ComponentType by alternate URI prefix.
static Component parseUriEscapedValue(uint32_t type, const char *input, size_t len)
Represents a name component.
void wireDecode(const Block &wire)
Decode from the wire format.
uint64_t toVersion() const
Interpret as version component using NDN naming conventions.
uint64_t toSegment() const
Interpret as segment number component using NDN naming conventions.
static const uint8_t SEGMENT_MARKER
Segment marker for NDN naming conventions.
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(Component)
bool isTimestamp() const
Check if the component is timestamp per NDN naming conventions.
static Component fromVersion(uint64_t version)
Create version component using NDN naming conventions.
std::string to_string(const V &v)
static const uint8_t SEQUENCE_NUMBER_MARKER
Sequence number marker for NDN naming conventions.
uint64_t toNumberWithMarker(uint8_t marker) const
Interpret this name component as NameComponentWithMarker.
bool isGeneric() const
Check if the component is GenericComponent.
bool isVersion() const
Check if the component is version per NDN naming conventions.
virtual void check(const Component &comp) const
Throw Component::Error if comp is invalid.
static Component fromImplicitSha256Digest(ConstBufferPtr digest)
Create ImplicitSha256DigestComponent component.
time::system_clock::TimePoint toTimestamp() const
Interpret as timestamp component using NDN naming conventions.
a concept check for TLV abstraction with .wireEncode method
static const uint8_t TIMESTAMP_MARKER
Timestamp marker for NDN naming conventions.
a concept check for TLV abstraction with .wireDecode method and constructible from Block
EncodingImpl< EncoderTag > EncodingBuffer
uint32_t type() const
Get TLV-TYPE.
const system_clock::TimePoint & getUnixEpoch()
Get system_clock::TimePoint representing UNIX time epoch (00:00:00 on Jan 1, 1970)
size_t prependNonNegativeInteger(uint64_t integer) const noexcept
Prepend non-negative integer integer of NDN TLV encoding.
EncodingImpl< EstimatorTag > EncodingEstimator
shared_ptr< const Buffer > ConstBufferPtr