27 #include "ndn-cxx/impl/name-component-types.hpp" 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");
58 g_conventionEncoding = convention;
61 NDN_THROW(std::invalid_argument(
"Unknown naming convention"));
74 g_conventionDecoding = convention;
80 return (static_cast<int>(g_conventionDecoding) & static_cast<int>(
Convention::MARKER)) != 0;
86 return (static_cast<int>(g_conventionDecoding) & static_cast<int>(
Convention::TYPED)) != 0;
90 Component::ensureValid()
const 95 detail::getComponentTypeTable().get(
type()).check(*
this);
135 std::ostringstream oss;
137 std::string
value = oss.str();
138 if (value.find_first_not_of(
'.') == std::string::npos) {
139 if (value.size() < 3) {
142 return Component(type, reinterpret_cast<const uint8_t*>(value.data()), value.size() - 3);
144 return Component(type, reinterpret_cast<const uint8_t*>(value.data()), value.size());
150 size_t equalPos = input.
find(
'=');
151 if (equalPos == std::string::npos) {
155 auto typePrefix = input.substr(0, equalPos);
156 auto type = std::strtoul(typePrefix.data(),
nullptr, 10);
159 size_t valuePos = equalPos + 1;
161 input.data() + valuePos, input.size() - valuePos);
164 auto ct = detail::getComponentTypeTable().findByUriPrefix(typePrefix);
166 NDN_THROW(
Error(
"Incorrect TLV-TYPE '" + typePrefix +
"' in NameComponent URI"));
168 return ct->parseAltUriValue(input.substr(equalPos + 1));
174 detail::getComponentTypeTable().get(
type()).writeUri(os, *
this);
180 std::ostringstream os;
243 NDN_THROW(
Error(
"Name component does not have nonNegativeInteger value"));
252 NDN_THROW(
Error(
"Name component does not have the requested marker " 253 "or the value is not a nonNegativeInteger"));
255 Buffer::const_iterator valueBegin =
value_begin() + 1;
337 valueLength += estimator.prependByteArray(&marker, 1);
338 size_t totalLength = valueLength;
339 totalLength += estimator.prependVarNumber(valueLength);
343 encoder.prependNonNegativeInteger(number);
344 encoder.prependByteArray(&marker, 1);
345 encoder.prependVarNumber(valueLength);
348 return encoder.block();
403 return detail::getComponentType1().match(*
this);
409 return detail::getComponentType1().create(digest);
415 return detail::getComponentType1().create(digest, digestSize);
421 return detail::getComponentType2().match(*
this);
427 return detail::getComponentType2().create(digest);
433 return detail::getComponentType2().create(digest, digestSize);
458 int cmpType =
type() - other.
type();
475 bool isOverflow =
false;
477 std::tie(isOverflow, successor) =
478 detail::getComponentTypeTable().
get(
type()).getSuccessor(*
this);
484 const std::vector<uint8_t>&
value = detail::getComponentTypeTable().get(type).getMinValue();
485 return Component(type, value.data(), value.size());
488 template<encoding::Tag TAG>
492 size_t totalLength = 0;
495 totalLength += encoder.prependVarNumber(
value_size());
496 totalLength += encoder.prependVarNumber(
type());
514 const_cast<Component&
>(*this) = buffer.block();
static Component fromParametersSha256Digest(ConstBufferPtr digest)
Create ParametersSha256DigestComponent component.
void setConventionDecoding(Convention convention)
Set which Naming Conventions style(s) to accept while decoding.
static Component fromSequenceNumber(uint64_t seqNo)
Create sequence number component using NDN naming conventions.
bool isGeneric() const
Check if the component is GenericComponent.
static Convention g_conventionEncoding
bool isTimestamp() const
Check if the component is a timestamp per NDN naming conventions.
static Component fromNumberWithMarker(uint8_t marker, uint64_t number)
Create a component encoded as NameComponentWithMarker.
int compare(const Component &other) const
Compare this to the other Component using NDN canonical ordering.
const Block & wireEncode() const
Encode to a wire format.
std::string toUri() const
Convert *this by escaping characters according to the NDN URI Scheme.
static bool canDecodeMarkerConvention()
element_const_iterator find(uint32_t type) const
Find the first sub-element of the specified TLV-TYPE.
Component(uint32_t type=tlv::GenericNameComponent)
Construct a NameComponent of TLV-TYPE type, using empty TLV-VALUE.
time::system_clock::TimePoint toTimestamp() const
Interpret as timestamp component using NDN naming conventions.
bool isNumberWithMarker(uint8_t marker) const
Check if the component is a NameComponentWithMarker per NDN naming conventions rev1.
bool isSequenceNumber() const
Check if the component is a sequence number per NDN naming conventions.
static Component fromTimestamp(const time::system_clock::TimePoint &timePoint)
Create sequence number component using NDN naming conventions.
size_t value_size() const noexcept
Return the size of TLV-VALUE, aka TLV-LENGTH.
uint64_t toByteOffset() const
Interpret as byte offset component using NDN naming conventions.
static Convention g_conventionDecoding
void setConventionEncoding(Convention convention)
Set which Naming Conventions style to use while encoding.
Represents a TLV element of NDN packet format.
uint64_t readNonNegativeInteger(size_t size, Iterator &begin, Iterator end)
Read nonNegativeInteger in NDN-TLV encoding.
bool hasWire() const noexcept
Check if the Block contains a fully encoded wire representation.
Block makeNonNegativeIntegerBlock(uint32_t type, uint64_t value)
Create a TLV block containing a non-negative integer.
Buffer::const_iterator value_begin() const
Get begin iterator of TLV-VALUE.
Buffer::const_iterator value_end() const
Get end iterator of TLV-VALUE.
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
typed name components (revision 2)
uint64_t toNumberWithMarker(uint8_t marker) const
Interpret this name component as NameComponentWithMarker.
size_t size() const
Return the size of the encoded wire, i.e.
static Component fromSegment(uint64_t segmentNo)
Create segment number component using NDN naming conventions.
a concept check for TLV abstraction with .wireEncode method
Convention getConventionDecoding()
Return which Naming Conventions style(s) to accept while decoding.
bool isSegment() const
Check if the component is a segment number per NDN naming conventions.
bool isVersion() const
Check if the component is a version per NDN naming conventions.
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 Component fromByteOffset(uint64_t offset)
Create byte offset component using NDN naming conventions.
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.
static bool canDecodeTypedConvention()
Block makeStringBlock(uint32_t type, const std::string &value)
Create a TLV block containing a string.
const Block & get(uint32_t type) const
Return the first sub-element of the specified TLV-TYPE.
#define NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(ClassName)
std::string unescape(const std::string &str)
Decode a percent-encoded string.
uint32_t type() const
Return the TLV-TYPE of the Block.
Component getSuccessor() const
Get the successor of this name component.
static Component parseUriEscapedValue(uint32_t type, const char *input, size_t len)
const uint8_t * value() const noexcept
Return a raw pointer to the beginning of TLV-VALUE.
Represents a name component.
void wireDecode(const Block &wire)
Decode from the wire format.
bool isNumber() const
Check if the component is a nonNegativeInteger.
static Component fromNumber(uint64_t number, uint32_t type=tlv::GenericNameComponent)
Create a component encoded as nonNegativeInteger.
const uint8_t * wire() const
Return a raw pointer to the beginning of the encoded wire.
component markers (revision 1)
Convention getConventionEncoding()
Return which Naming Conventions style to use while encoding.
static Component fromVersion(uint64_t version)
Create version component using NDN naming conventions.
std::string to_string(const V &v)
uint64_t toSequenceNumber() const
Interpret as sequence number component using NDN naming conventions.
Convention
Identify a style of NDN Naming Conventions.
bool equals(const Component &other) const
Check if this is the same component as other.
static Component fromImplicitSha256Digest(ConstBufferPtr digest)
Create ImplicitSha256DigestComponent component.
a concept check for TLV abstraction with .wireEncode method
uint64_t toNumber() const
Interpret this name component as nonNegativeInteger.
a concept check for TLV abstraction with .wireDecode method and constructible from Block ...
bool isParametersSha256Digest() const
Check if the component is ParametersSha256DigestComponent.
EncodingImpl< EncoderTag > EncodingBuffer
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
bool isImplicitSha256Digest() const
Check if the component is ImplicitSha256DigestComponent.
shared_ptr< const Buffer > ConstBufferPtr
bool isByteOffset() const
Check if the component is a byte offset per NDN naming conventions.