33 #include <boost/algorithm/string/trim.hpp> 40 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<Component>));
44 static_assert(std::is_base_of<tlv::Error, Component::Error>::value,
45 "name::Component::Error must inherit from tlv::Error");
47 static const std::string&
50 static const std::string prefix{
"sha256digest="};
63 BOOST_THROW_EXCEPTION(
Error(
"Cannot construct name::Component from not a NameComponent " 64 "or ImplicitSha256DigestComponent TLV wire block"));
95 std::string trimmedString(escapedString + beginOffset, escapedString + endOffset);
96 boost::algorithm::trim(trimmedString);
101 BOOST_THROW_EXCEPTION(
Error(
"Cannot convert to ImplicitSha256DigestComponent" 102 "(expected sha256 in hex encoding)"));
109 BOOST_THROW_EXCEPTION(
Error(
"Cannot convert to a ImplicitSha256DigestComponent (invalid hex " 116 if (
value.find_first_not_of(
".") == std::string::npos) {
118 if (
value.size() <= 2)
120 BOOST_THROW_EXCEPTION(
Error(
"Illegal URI (name component cannot be . or ..)"));
139 [] (uint8_t x) {
return x !=
'.'; });
155 std::ostringstream os;
213 BOOST_THROW_EXCEPTION(
Error(
"Name component does not have nonNegativeInteger value"));
222 BOOST_THROW_EXCEPTION(
Error(
"Name component does not have the requested marker " 223 "or the value is not a nonNegativeInteger"));
225 Buffer::const_iterator valueBegin =
value_begin() + 1;
274 valueLength += estimator.prependByteArray(&marker, 1);
275 size_t totalLength = valueLength;
276 totalLength += estimator.prependVarNumber(valueLength);
280 encoder.prependNonNegativeInteger(number);
281 encoder.prependByteArray(&marker, 1);
282 encoder.prependVarNumber(valueLength);
285 return encoder.block();
309 using namespace time;
310 uint64_t
value = duration_cast<microseconds>(timePoint -
getUnixEpoch()).count();
339 BOOST_THROW_EXCEPTION(
Error(
"Cannot create ImplicitSha256DigestComponent (input digest must be " +
349 BOOST_THROW_EXCEPTION(
Error(
"Cannot create ImplicitSha256DigestComponent (input digest must be " +
377 int cmpType =
type() - other.
type();
394 size_t totalLength = 0;
399 bool isOverflow =
true;
401 for (; isOverflow && i > 0; i--) {
402 uint8_t newValue =
static_cast<uint8_t
>((
value()[i - 1] + 1) & 0xFF);
403 totalLength += encoder.prependByte(newValue);
404 isOverflow = (newValue == 0);
406 totalLength += encoder.prependByteArray(
value(), i);
410 totalLength += encoder.appendByte(0);
413 encoder.prependVarNumber(totalLength);
414 encoder.prependVarNumber(
type());
416 return encoder.block();
419 template<encoding::Tag TAG>
423 size_t totalLength = 0;
426 totalLength += encoder.prependVarNumber(
value_size());
427 totalLength += encoder.prependVarNumber(
type());
445 const_cast<Component&
>(*this) = buffer.block();
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.
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.
static Component fromEscapedString(const char *escapedString, size_t beginOffset, size_t endOffset)
Create name::Component by decoding the escapedString between beginOffset and endOffset according to t...
static const size_t DIGEST_SIZE
Length in bytes of a SHA-256 digest.
size_t value_size() const
Get size of TLV-VALUE aka TLV-LENGTH.
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.
static const std::string & getSha256DigestUriPrefix()
const uint8_t * wire() const
Get pointer to encoded wire.
Represents a TLV element of NDN packet format.
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.
Block makeNonNegativeIntegerBlock(uint32_t type, uint64_t value)
Create a TLV block containing a non-negative integer.
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.
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.
static Component fromSegment(uint64_t segmentNo)
Create segment number component using NDN naming conventions.
Component getSuccessor() const
a concept check for TLV abstraction with .wireEncode method
size_t size() const
Get size of encoded wire, including Type-Length-Value.
uint64_t readNonNegativeInteger(size_t size, Iterator &begin, const Iterator &end)
Read nonNegativeInteger in NDN-TLV encoding.
shared_ptr< Buffer > fromHex(const std::string &hexString)
Convert the hex string to buffer.
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.
Component()
Create a new name::Component with an empty value.
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.
std::string unescape(const std::string &str)
Decode a percent-encoded string.
bool isImplicitSha256Digest() const
Check if the component is ImplicitSha256DigestComponent.
std::string escape(const std::string &str)
Percent-encode a string.
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.
Component holds a read-only name component value.
static Component fromImplicitSha256Digest(const ConstBufferPtr &digest)
Create ImplicitSha256DigestComponent 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.
void printHex(std::ostream &os, uint64_t num, bool wantUpperCase)
Output the hex representation of num to the output stream os.
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.
time::system_clock::TimePoint toTimestamp() const
Interpret as timestamp component using NDN naming conventions.
a concept check for TLV abstraction with .wireEncode method
Block()
Create an empty Block.
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 ...
General-purpose automatically managed/resized buffer.
size_t prependNonNegativeInteger(uint64_t integer)
Prepend non-negative integer integer of NDN TLV encoding.
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) ...
EncodingImpl< EstimatorTag > EncodingEstimator
Error that can be thrown from name::Component.
shared_ptr< const Buffer > ConstBufferPtr