Represents an absolute name. More...
#include <name.hpp>
Public Types | |
using | Error = name::Component::Error |
using | Component = name::Component |
using | component_container = std::vector< Component > |
using | value_type = Component |
using | allocator_type = void |
using | reference = Component & |
using | const_reference = const Component & |
using | pointer = Component * |
using | const_pointer = const Component * |
using | iterator = const Component * |
using | const_iterator = const Component * |
using | reverse_iterator = std::reverse_iterator< iterator > |
using | const_reverse_iterator = std::reverse_iterator< const_iterator > |
using | difference_type = component_container::difference_type |
using | size_type = component_container::size_type |
Public Member Functions | |
Name () | |
Create an empty name. More... | |
Name (const Block &wire) | |
Decode Name from wire encoding. More... | |
Name (const char *uri) | |
Parse name from NDN URI. More... | |
Name (std::string uri) | |
Create name from NDN URI. More... | |
void | toUri (std::ostream &os, name::UriFormat format=name::UriFormat::DEFAULT) const |
Write URI representation of the name to the output stream. More... | |
std::string | toUri (name::UriFormat format=name::UriFormat::DEFAULT) const |
Get URI representation of the name. More... | |
bool | hasWire () const |
Check if this Name instance already has wire encoding. More... | |
template<encoding::Tag TAG> | |
size_t | wireEncode (EncodingImpl< TAG > &encoder) const |
Fast encoding or block size estimation. More... | |
const Block & | wireEncode () const |
Perform wire encoding, or return existing wire encoding. More... | |
void | wireDecode (const Block &wire) |
Decode name from wire encoding. More... | |
Name | deepCopy () const |
Make a deep copy of the name, reallocating the underlying memory buffer. More... | |
NDN_CXX_NODISCARD bool | empty () const |
Checks if the name is empty, i.e. More... | |
size_t | size () const |
Returns the number of components. More... | |
const Component & | get (ssize_t i) const |
Returns an immutable reference to the component at the specified index. More... | |
const Component & | operator[] (ssize_t i) const |
Equivalent to get(i) . More... | |
const Component & | at (ssize_t i) const |
Returns an immutable reference to the component at the specified index, with bounds checking. More... | |
PartialName | getSubName (ssize_t iStartComponent, size_t nComponents=npos) const |
Extracts some components as a sub-name (PartialName). More... | |
PartialName | getPrefix (ssize_t nComponents) const |
Returns a prefix of the name. More... | |
const_iterator | begin () const |
Begin iterator. More... | |
const_iterator | end () const |
End iterator. More... | |
const_reverse_iterator | rbegin () const |
Reverse begin iterator. More... | |
const_reverse_iterator | rend () const |
Reverse end iterator. More... | |
Name & | set (ssize_t i, const Component &component) |
Replace the component at the specified index. More... | |
Name & | set (ssize_t i, Component &&component) |
Replace the component at the specified index. More... | |
Name & | append (const Component &component) |
Append a component. More... | |
Name & | append (Component &&component) |
Append a component. More... | |
Name & | append (uint32_t type, const uint8_t *value, size_t count) |
Append a NameComponent of TLV-TYPE type , copying count bytes at value as TLV-VALUE. More... | |
Name & | append (const uint8_t *value, size_t count) |
Append a GenericNameComponent, copying count bytes at value as TLV-VALUE. More... | |
template<class Iterator > | |
Name & | append (uint32_t type, Iterator first, Iterator last) |
Append a NameComponent of TLV-TYPE type , copying TLV-VALUE from a range. More... | |
template<class Iterator > | |
Name & | append (Iterator first, Iterator last) |
Append a GenericNameComponent, copying TLV-VALUE from a range. More... | |
Name & | append (const char *str) |
Append a GenericNameComponent, copying TLV-VALUE from a null-terminated string. More... | |
Name & | append (Block value) |
Append a GenericNameComponent from a TLV element. More... | |
Name & | append (const PartialName &name) |
Append a PartialName. More... | |
Name & | appendNumber (uint64_t number) |
Append a component with a nonNegativeInteger. More... | |
Name & | appendNumberWithMarker (uint8_t marker, uint64_t number) |
Append a component with a marked number. More... | |
Name & | appendVersion (optional< uint64_t > version=nullopt) |
Append a version component. More... | |
Name & | appendSegment (uint64_t segmentNo) |
Append a segment number (sequential) component. More... | |
Name & | appendByteOffset (uint64_t offset) |
Append a byte offset component. More... | |
Name & | appendSegmentOffset (uint64_t offset) |
Name & | appendTimestamp (optional< time::system_clock::TimePoint > timestamp=nullopt) |
Append a timestamp component. More... | |
Name & | appendSequenceNumber (uint64_t seqNo) |
Append a sequence number component. More... | |
Name & | appendImplicitSha256Digest (ConstBufferPtr digest) |
Append an ImplicitSha256Digest component. More... | |
Name & | appendImplicitSha256Digest (const uint8_t *digest, size_t digestSize) |
Append an ImplicitSha256Digest component. More... | |
Name & | appendParametersSha256Digest (ConstBufferPtr digest) |
Append a ParametersSha256Digest component. More... | |
Name & | appendParametersSha256Digest (const uint8_t *digest, size_t digestSize) |
Append a ParametersSha256Digest component. More... | |
Name & | appendParametersSha256DigestPlaceholder () |
Append a placeholder for a ParametersSha256Digest component. More... | |
template<class T > | |
void | push_back (const T &component) |
Append a component. More... | |
void | erase (ssize_t i) |
Erase the component at the specified index. More... | |
void | clear () |
Remove all components. More... | |
Name | getSuccessor () const |
Get the successor of a name. More... | |
bool | isPrefixOf (const Name &other) const |
Check if this name is a prefix of another name. More... | |
bool | equals (const Name &other) const |
Check if this name equals another name. More... | |
int | compare (const Name &other) const |
Compare this to the other Name using NDN canonical ordering. More... | |
int | compare (size_t pos1, size_t count1, const Name &other, size_t pos2=0, size_t count2=npos) const |
compares [pos1, pos1+count1) components in this Name to [pos2, pos2+count2) components in other More... | |
Static Public Attributes | |
static const size_t | npos = std::numeric_limits<size_t>::max() |
Indicates "until the end" in getSubName() and compare(). More... | |
Friends | |
bool | operator== (const Name &lhs, const Name &rhs) |
bool | operator!= (const Name &lhs, const Name &rhs) |
bool | operator< (const Name &lhs, const Name &rhs) |
bool | operator<= (const Name &lhs, const Name &rhs) |
bool | operator> (const Name &lhs, const Name &rhs) |
bool | operator>= (const Name &lhs, const Name &rhs) |
std::ostream & | operator<< (std::ostream &os, const Name &name) |
Print URI representation of a name. More... | |
using ndn::Name::Component = name::Component |
using ndn::Name::component_container = std::vector<Component> |
using ndn::Name::value_type = Component |
using ndn::Name::allocator_type = void |
using ndn::Name::reference = Component& |
using ndn::Name::const_reference = const Component& |
using ndn::Name::pointer = Component* |
using ndn::Name::const_pointer = const Component* |
using ndn::Name::iterator = const Component* |
using ndn::Name::const_iterator = const Component* |
using ndn::Name::reverse_iterator = std::reverse_iterator<iterator> |
using ndn::Name::const_reverse_iterator = std::reverse_iterator<const_iterator> |
using ndn::Name::difference_type = component_container::difference_type |
using ndn::Name::size_type = component_container::size_type |
ndn::Name::Name | ( | ) |
|
explicit |
Decode Name from wire encoding.
tlv::Error | wire encoding is invalid |
This is a more efficient equivalent for
Definition at line 59 of file name.cpp.
References ndn::Block::parse().
ndn::Name::Name | ( | const char * | uri | ) |
Parse name from NDN URI.
uri | a null-terminated URI string |
ndn::Name::Name | ( | std::string | uri | ) |
Create name from NDN URI.
uri | a URI string |
Definition at line 70 of file name.cpp.
References append(), and ndn::name::Component::fromEscapedString().
void ndn::Name::toUri | ( | std::ostream & | os, |
name::UriFormat | format = name::UriFormat::DEFAULT |
||
) | const |
Write URI representation of the name to the output stream.
Definition at line 348 of file name.cpp.
References empty().
Referenced by ndn::security::pib::CertificateContainer::add(), ndn::security::pib::KeyContainer::add(), ndn::security::v2::KeyChain::addCertificate(), ndn::security::v2::ValidationPolicySimpleHierarchy::checkPolicy(), ndn::security::tpm::BackEnd::createKey(), ndn::security::v2::KeyChain::deleteCertificate(), ndn::security::v2::KeyChain::deleteKey(), ndn::security::tpm::BackEnd::exportKey(), ndn::security::v2::KeyChain::exportSafeBag(), ndn::security::v2::extractIdentityFromCertName(), ndn::security::v2::extractIdentityFromKeyName(), ndn::security::v2::extractKeyNameFromCertName(), nfd::ManagerBase::extractRequester(), ndn::security::pib::CertificateContainer::get(), ndn::security::pib::KeyContainer::get(), ndn::security::pib::PibMemory::getCertificate(), ndn::security::pib::PibSqlite3::getCertificate(), ndn::security::pib::PibMemory::getDefaultCertificateOfKey(), ndn::security::pib::PibSqlite3::getDefaultCertificateOfKey(), ndn::security::pib::PibMemory::getDefaultKeyOfIdentity(), ndn::security::pib::PibSqlite3::getDefaultKeyOfIdentity(), ndn::security::pib::PibMemory::getKeyBits(), ndn::security::pib::PibSqlite3::getKeyBits(), ndn::security::tpm::getKeyRef(), ndn::security::pib::detail::IdentityImpl::IdentityImpl(), ndn::security::tpm::BackEnd::importKey(), ndn::security::v2::KeyChain::importPrivateKey(), ndn::security::v2::KeyChain::importSafeBag(), ndn::MetadataObject::makeData(), ndn::MetadataObject::MetadataObject(), ndn::security::pib::CertificateContainer::remove(), ndn::security::pib::KeyContainer::remove(), ndn::security::pib::PibMemory::setDefaultCertificateOfKey(), ndn::security::pib::PibSqlite3::setDefaultCertificateOfKey(), ndn::security::v2::KeyChain::setDefaultKey(), ndn::security::pib::PibMemory::setDefaultKeyOfIdentity(), ndn::security::pib::PibSqlite3::setDefaultKeyOfIdentity(), and toUri().
std::string ndn::Name::toUri | ( | name::UriFormat | format = name::UriFormat::DEFAULT | ) | const |
|
inline |
Check if this Name instance already has wire encoding.
Definition at line 112 of file name.hpp.
References ndn::Block::hasWire().
size_t ndn::Name::wireEncode | ( | EncodingImpl< TAG > & | encoder | ) | const |
Fast encoding or block size estimation.
Definition at line 117 of file name.cpp.
References ndn::tlv::Name.
Referenced by ndn::security::pib::PibSqlite3::addCertificate(), ndn::security::pib::PibSqlite3::addIdentity(), ndn::security::pib::PibSqlite3::addKey(), deepCopy(), ndn::security::pib::PibSqlite3::getCertificate(), ndn::security::pib::PibSqlite3::getCertificatesOfKey(), ndn::security::pib::PibSqlite3::getDefaultCertificateOfKey(), ndn::security::pib::PibSqlite3::getDefaultKeyOfIdentity(), ndn::security::pib::PibSqlite3::getKeyBits(), ndn::security::pib::PibSqlite3::getKeysOfIdentity(), ndn::security::pib::PibSqlite3::hasCertificate(), ndn::security::pib::PibSqlite3::hasIdentity(), ndn::security::pib::PibSqlite3::hasKey(), ndn::MetadataObject::makeData(), ndn::security::parse(), ndn::security::pib::PibSqlite3::removeCertificate(), ndn::security::pib::PibSqlite3::removeIdentity(), ndn::security::pib::PibSqlite3::removeKey(), ndn::security::pib::PibSqlite3::setDefaultCertificateOfKey(), ndn::security::pib::PibSqlite3::setDefaultIdentity(), ndn::security::pib::PibSqlite3::setDefaultKeyOfIdentity(), ndn::security::v2::KeyChain::sign(), ndn::security::tpm::BackEndFile::Impl::toFileName(), ndn::nfd::StrategyChoice::wireEncode(), ndn::Data::wireEncode(), ndn::Interest::wireEncode(), ndn::nfd::ControlParameters::wireEncode(), ndn::nfd::FibEntry::wireEncode(), and ndn::nfd::RibEntry::wireEncode().
const Block & ndn::Name::wireEncode | ( | ) | const |
Perform wire encoding, or return existing wire encoding.
Definition at line 132 of file name.cpp.
References ndn::Block::hasWire(), and ndn::Block::parse().
void ndn::Name::wireDecode | ( | const Block & | wire | ) |
Decode name from wire encoding.
tlv::Error | wire encoding is invalid |
Definition at line 150 of file name.cpp.
References ndn::tlv::Name, NDN_THROW, ndn::Block::parse(), and ndn::Block::type().
Referenced by ndn::MetadataObject::MetadataObject(), ndn::nfd::StrategyChoice::wireDecode(), ndn::Data::wireDecode(), ndn::nfd::ControlParameters::wireDecode(), ndn::nfd::FibEntry::wireDecode(), and ndn::nfd::RibEntry::wireDecode().
Name ndn::Name::deepCopy | ( | ) | const |
Make a deep copy of the name, reallocating the underlying memory buffer.
Definition at line 160 of file name.cpp.
References ndn::Block::resetWire(), and wireEncode().
|
inline |
Checks if the name is empty, i.e.
has no components.
Definition at line 145 of file name.hpp.
References ndn::Block::elements().
Referenced by nfd::cs::compareQueryWithData(), ndn::security::v2::CertificateBundleFetcher::doFetch(), ndn::Data::getFullName(), nfd::measurements::Measurements::getParent(), getSuccessor(), nfd::name_tree::NameTree::lookup(), ndn::MetadataObject::makeData(), toUri(), and ndn::Interest::wireDecode().
|
inline |
Returns the number of components.
Definition at line 153 of file name.hpp.
References ndn::Block::elements_size().
Referenced by at(), ndn::security::v2::validator_config::Checker::check(), ndn::security::v2::validator_config::checkNameRelation(), compare(), nfd::cs::compareQueryWithData(), ndn::InterestFilter::doesMatch(), equals(), nfd::strategy_choice::StrategyChoice::erase(), erase(), ndn::RegexTopMatcher::expand(), ndn::security::v2::CertificateCache::find(), nfd::name_tree::NameTree::findLongestPrefixMatch(), nfd::rib::Rib::findParent(), get(), nfd::fw::asf::AsfMeasurements::getOrCreateNamespaceInfo(), getPrefix(), getSubName(), nfd::strategy_choice::StrategyChoice::insert(), isPrefixOf(), ndn::security::v2::isValidKeyName(), ndn::security::v2::Certificate::isValidName(), nfd::fw::Strategy::lookupFib(), nfd::CommandAuthenticator::makeAuthorization(), ndn::security::v2::validator_config::Filter::match(), ndn::Interest::matchesData(), ndn::nfd::operator==(), ndn::security::parse(), nfd::fw::Strategy::parseInstanceName(), ndn::PrefixAnnouncement::PrefixAnnouncement(), set(), and ndn::nfd::StrategyChoiceUnsetCommand::validateRequest().
|
inline |
Returns an immutable reference to the component at the specified index.
i | zero-based index of the component to return; if negative, it is interpreted as offset from the end of the name |
Definition at line 164 of file name.hpp.
References ndn::Block::elements(), and size().
Referenced by compare(), ndn::security::v2::CertificateBundleFetcher::doFetch(), equals(), getSuccessor(), isPrefixOf(), ndn::security::v2::isValidKeyName(), ndn::security::v2::Certificate::isValidName(), ndn::Interest::matchesData(), and operator[]().
|
inline |
const name::Component & ndn::Name::at | ( | ssize_t | i | ) | const |
Returns an immutable reference to the component at the specified index, with bounds checking.
i | zero-based index of the component to return; if negative, it is interpreted as offset from the end of the name |
Error | The index is out of bounds. |
Definition at line 171 of file name.cpp.
References ndn::Block::elements(), NDN_THROW, and size().
Referenced by nfd::ManagerBase::extractRequester(), ndn::security::v2::Certificate::getIssuerId(), ndn::security::v2::Certificate::getKeyId(), getSubName(), and nfd::fw::Strategy::makeInstanceName().
PartialName ndn::Name::getSubName | ( | ssize_t | iStartComponent, |
size_t | nComponents = npos |
||
) | const |
Extracts some components as a sub-name (PartialName).
iStartComponent | zero-based index of the first component; if negative, size()+iStartComponent is used instead |
nComponents | number of desired components, starting at iStartComponent ; use npos to return all components until the end of the name |
If iStartComponent
is positive and indexes out of bounds, returns an empty PartialName. If iStartComponent
is negative and indexes out of bounds, the sub-name will start from the beginning of the name instead. If nComponents
is out of bounds, returns all components until the end of the name.
Definition at line 185 of file name.cpp.
References append(), at(), npos, and size().
Referenced by getPrefix(), and nfd::fw::Strategy::parseInstanceName().
|
inline |
Returns a prefix of the name.
nComponents | number of components; if negative, size()+nComponents is used instead |
Returns a new PartialName containing a prefix of this name up to size() - nComponents
. For example, getPrefix(-1)
returns the name without the final component.
Definition at line 211 of file name.hpp.
References getSubName(), and size().
Referenced by ndn::security::v2::validator_config::Checker::check(), ndn::security::v2::ValidationPolicySimpleHierarchy::checkPolicy(), nfd::strategy_choice::StrategyChoice::erase(), ndn::security::v2::extractIdentityFromCertName(), ndn::security::v2::extractIdentityFromKeyName(), ndn::security::v2::extractKeyNameFromCertName(), nfd::rib::Rib::findParent(), ndn::security::v2::Certificate::getIdentity(), ndn::security::v2::Certificate::getKeyName(), nfd::fw::asf::AsfMeasurements::getOrCreateNamespaceInfo(), getSuccessor(), nfd::rib::HostToGatewayReadvertisePolicy::handleNewRoute(), ndn::security::v2::validator_config::Filter::match(), nfd::fw::Strategy::parseInstanceName(), ndn::PrefixAnnouncement::PrefixAnnouncement(), and nfd::name_tree::Entry::setParent().
|
inline |
Begin iterator.
Definition at line 223 of file name.hpp.
References ndn::Block::elements().
Referenced by rend().
|
inline |
End iterator.
Definition at line 231 of file name.hpp.
References ndn::Block::elements().
Referenced by rbegin().
|
inline |
Reverse begin iterator.
Definition at line 239 of file name.hpp.
References end().
Referenced by nfd::fw::Strategy::makeInstanceName().
|
inline |
Reverse end iterator.
Definition at line 247 of file name.hpp.
References begin().
Referenced by nfd::fw::Strategy::makeInstanceName().
Replace the component at the specified index.
i | zero-based index of the component to replace; if negative, it is interpreted as offset from the end of the name |
component | the new component to use as a replacement |
Definition at line 206 of file name.cpp.
References ndn::Block::elements(), ndn::Block::resetWire(), and size().
Replace the component at the specified index.
i | zero-based index of the component to replace; if negative, it is interpreted as offset from the end of the name |
component | the new component to use as a replacement |
Definition at line 218 of file name.cpp.
References ndn::Block::elements(), nonstd::optional_lite::std11::move(), ndn::Block::resetWire(), and size().
Append a component.
Definition at line 277 of file name.hpp.
References ndn::Block::push_back().
Referenced by append(), appendByteOffset(), appendImplicitSha256Digest(), appendNumber(), appendNumberWithMarker(), appendParametersSha256Digest(), appendParametersSha256DigestPlaceholder(), appendSegment(), appendSequenceNumber(), appendTimestamp(), appendVersion(), ndn::security::v2::constructKeyName(), ndn::RegexTopMatcher::expand(), getSubName(), getSuccessor(), Name(), push_back(), ndn::security::SigningInfo::setSigningHmacKey(), ndn::security::v2::KeyChain::sign(), and ndn::PrefixAnnouncement::toData().
Append a component.
Definition at line 287 of file name.hpp.
References nonstd::optional_lite::std11::move(), and ndn::Block::push_back().
|
inline |
|
inline |
|
inline |
Append a NameComponent of TLV-TYPE type
, copying TLV-VALUE from a range.
Iterator | an InputIterator dereferencing to a one-octet value type. More efficient implementation is available when it is a RandomAccessIterator . |
type | the TLV-TYPE. |
first | beginning of the range. |
last | past-end of the range. |
Definition at line 322 of file name.hpp.
References append().
|
inline |
Append a GenericNameComponent, copying TLV-VALUE from a range.
Iterator | an InputIterator dereferencing to a one-octet value type. More efficient implementation is available when it is a RandomAccessIterator . |
first | beginning of the range. |
last | past-end of the range. |
Definition at line 336 of file name.hpp.
References append().
|
inline |
Append a GenericNameComponent, copying TLV-VALUE from a null-terminated string.
str | a null-terminated string. Bytes from the string are copied as is, and not interpreted as URI component. |
Definition at line 347 of file name.hpp.
References append().
Append a GenericNameComponent from a TLV element.
value | a TLV element. If its TLV-TYPE is tlv::GenericNameComponent, it is appended as is. Otherwise, it is nested into a GenericNameComponent. |
Definition at line 358 of file name.hpp.
References ndn::tlv::GenericNameComponent, nonstd::optional_lite::std11::move(), ndn::Block::push_back(), and ndn::Block::type().
Name & ndn::Name::append | ( | const PartialName & | name | ) |
|
inline |
Append a component with a nonNegativeInteger.
Definition at line 382 of file name.hpp.
References append(), and ndn::name::Component::fromNumber().
|
inline |
Append a component with a marked number.
marker | 1-octet marker |
number | the number |
The component is encoded as a 1-octet marker, followed by a nonNegativeInteger.
Definition at line 397 of file name.hpp.
References append(), and ndn::name::Component::fromNumberWithMarker().
Name & ndn::Name::appendVersion | ( | optional< uint64_t > | version = nullopt | ) |
Append a version component.
version | the version number to append; if nullopt, the current UNIX time in milliseconds is used |
Definition at line 230 of file name.cpp.
References append(), ndn::name::Component::fromVersion(), ndn::time::system_clock::now(), and ndn::time::toUnixTimestamp().
Referenced by ndn::MetadataObject::makeData(), ndn::mgmt::StatusDatasetContext::setPrefix(), and ndn::PrefixAnnouncement::toData().
|
inline |
Append a segment number (sequential) component.
Definition at line 416 of file name.hpp.
References append(), and ndn::name::Component::fromSegment().
Referenced by ndn::MetadataObject::makeData(), and ndn::PrefixAnnouncement::toData().
|
inline |
Append a byte offset component.
Definition at line 426 of file name.hpp.
References append(), and ndn::name::Component::fromByteOffset().
Referenced by appendSegmentOffset().
|
inline |
Definition at line 433 of file name.hpp.
References appendByteOffset().
Name & ndn::Name::appendTimestamp | ( | optional< time::system_clock::TimePoint > | timestamp = nullopt | ) |
Append a timestamp component.
timestamp | the timestamp to append; if nullopt, the current system time is used |
Definition at line 236 of file name.cpp.
References append(), ndn::name::Component::fromTimestamp(), and ndn::time::system_clock::now().
|
inline |
Append a sequence number component.
Definition at line 451 of file name.hpp.
References append(), and ndn::name::Component::fromSequenceNumber().
Referenced by ndn::util::NotificationStream< Notification >::postNotification().
|
inline |
Append an ImplicitSha256Digest component.
Definition at line 460 of file name.hpp.
References append(), ndn::name::Component::fromImplicitSha256Digest(), and nonstd::optional_lite::std11::move().
Referenced by ndn::Data::getFullName().
|
inline |
Append an ImplicitSha256Digest component.
Definition at line 469 of file name.hpp.
References append(), and ndn::name::Component::fromImplicitSha256Digest().
|
inline |
Append a ParametersSha256Digest component.
Definition at line 478 of file name.hpp.
References append(), ndn::name::Component::fromParametersSha256Digest(), and nonstd::optional_lite::std11::move().
|
inline |
Append a ParametersSha256Digest component.
Definition at line 487 of file name.hpp.
References append(), and ndn::name::Component::fromParametersSha256Digest().
Name & ndn::Name::appendParametersSha256DigestPlaceholder | ( | ) |
Append a placeholder for a ParametersSha256Digest component.
Definition at line 262 of file name.cpp.
References append(), ndn::tlv::ParametersSha256DigestComponent, and ndn::SHA256_OF_EMPTY_STRING.
|
inline |
void ndn::Name::erase | ( | ssize_t | i | ) |
Erase the component at the specified index.
i | zero-based index of the component to replace; if negative, it is interpreted as offset from the end of the name |
Definition at line 270 of file name.cpp.
References ndn::Block::elements_begin(), ndn::Block::erase(), and size().
Referenced by ndn::Interest::unsetApplicationParameters().
void ndn::Name::clear | ( | ) |
Remove all components.
empty() == true
Definition at line 280 of file name.cpp.
References ndn::tlv::Name.
Referenced by ndn::security::pib::PibMemory::clearIdentities(), ndn::security::pib::PibMemory::removeIdentity(), ndn::Data::resetWire(), ndn::security::SigningInfo::setSha256Signing(), and ndn::Data::wireDecode().
Name ndn::Name::getSuccessor | ( | ) | const |
Get the successor of a name.
The successor of a name is defined as follows:
N represents the set of NDN Names, and X,Y ∈ N. Operator < is defined by canonical order on N. Y is the successor of X, if (a) X < Y, and (b) ∄ Z ∈ N s.t. X < Z < Y.
In plain words, successor of a name is the same name, but with its last component advanced to a next possible value.
Examples:
/
is /sha256digest=0000000000000000000000000000000000000000000000000000000000000000
./sha256digest=0000000000000000000000000000000000000000000000000000000000000000
is /sha256digest=0000000000000000000000000000000000000000000000000000000000000001
./sha256digest=ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
is /2=...
./P/A
is /P/B
./Q/FF
is /Q/%00%00
.Definition at line 288 of file name.cpp.
References append(), empty(), get(), and getPrefix().
bool ndn::Name::isPrefixOf | ( | const Name & | other | ) | const |
Check if this name is a prefix of another name.
This name is a prefix of other
if the N components of this name are same as the first N components of other
.
true | this name is a prefix of other |
false | this name is not a prefix of other |
Definition at line 299 of file name.cpp.
Referenced by nfd::fw::asf::FaceInfo::cancelTimeout(), ndn::security::v2::validator_config::checkNameRelation(), ndn::security::v2::ValidationPolicySimpleHierarchy::checkPolicy(), ndn::InterestFilter::doesMatch(), ndn::InMemoryStorage::erase(), ndn::security::v2::CertificateCache::find(), ndn::security::v2::TrustAnchorContainer::find(), ndn::Interest::matchesData(), ndn::InMemoryStorage::selectChild(), and ndn::mgmt::StatusDatasetContext::setPrefix().
bool ndn::Name::equals | ( | const Name & | other | ) | const |
|
inline |
Compare this to the other Name using NDN canonical ordering.
If the first components of each name are not equal, this returns a negative value if the first comes before the second using the NDN canonical ordering for name components, or a positive value if it comes after. If they are equal, this compares the second components of each name, etc. If both names are the same up to the size of the shorter name, this returns a negative value if the first name is shorter than the second or a positive value if it is longer. For example, if you std::sort gives: /a/b/d /a/b/cc /c /c/a /bb . This is intuitive because all names with the prefix /a are next to each other. But it may be also be counter-intuitive because /c comes before /bb according to NDN canonical ordering since it is shorter.
other | The other Name to compare with. |
negative | this comes before other in canonical ordering |
zero | this equals other |
positive | this comes after other in canonical ordering |
Definition at line 591 of file name.hpp.
References npos.
Referenced by nfd::cs::compareDataWithData(), and nfd::cs::compareQueryWithData().
|
friend |
Print URI representation of a name.
|
static |
Indicates "until the end" in getSubName() and compare().
Definition at line 658 of file name.hpp.
Referenced by nfd::pit::Entry::canMatch(), compare(), and getSubName().