NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
ndn::Name Class Reference

Name abstraction to represent an absolute name. More...

#include <name.hpp>

Inheritance diagram for ndn::Name:
Collaboration diagram for ndn::Name:

Classes

class  Error
 Error that can be thrown from Name. More...
 

Public Types

typedef name::Component Component
 
typedef std::vector< Componentcomponent_container
 
typedef Component value_type
 
typedef void allocator_type
 
typedef Componentreference
 
typedef const Component const_reference
 
typedef Componentpointer
 
typedef const Componentconst_pointer
 
typedef Componentiterator
 
typedef const Componentconst_iterator
 
typedef boost::reverse_iterator< iteratorreverse_iterator
 
typedef boost::reverse_iterator< const_iteratorconst_reverse_iterator
 
typedef component_container::difference_type difference_type
 
typedef component_container::size_type size_type
 

Public Member Functions

 Name ()
 Create a new Name with no components. More...
 
 Name (const Block &wire)
 Create Name object from wire block. More...
 
 Name (const char *uri)
 Create name from uri (NDN URI scheme) More...
 
 Name (const std::string &uri)
 Create name from uri (NDN URI scheme) More...
 
template<encoding::Tag TAG>
size_t wireEncode (EncodingImpl< TAG > &encoder) const
 Fast encoding or block size estimation. More...
 
const BlockwireEncode () const
 
void wireDecode (const Block &wire)
 
bool hasWire () const
 Check if already has wire. More...
 
 DEPRECATED (void set(const char *uri))
 
 DEPRECATED (void set(const std::string &uri))
 
Nameappend (const uint8_t *value, size_t valueLength)
 Append a new component, copying from value of length valueLength. More...
 
template<class Iterator >
Nameappend (Iterator first, Iterator last)
 Append a new component, copying from value frome the range [first, last) of bytes. More...
 
Nameappend (const Component &value)
 Append component value. More...
 
Nameappend (const char *value)
 Append name component that represented as a string. More...
 
Nameappend (const Block &value)
 
Nameappend (const PartialName &name)
 append a PartialName to this Name. More...
 
void clear ()
 Clear all the components. More...
 
PartialName getSubName (ssize_t iStartComponent, size_t nComponents=npos) const
 Extract a sub-name (PartialName) of nComponents components starting from iStartComponent. More...
 
PartialName getPrefix (ssize_t nComponents) const
 Extract a prefix (PartialName) of the name, containing first nComponents components. More...
 
std::string toUri () const
 Encode this name as a URI. More...
 
NameappendNumber (uint64_t number)
 Append a component with the number encoded as nonNegativeInteger. More...
 
NameappendNumberWithMarker (uint8_t marker, uint64_t number)
 Create a component encoded as NameComponentWithMarker. More...
 
NameappendVersion (uint64_t version)
 Append version using NDN naming conventions. More...
 
NameappendVersion ()
 Append version using NDN naming conventions based on current UNIX timestamp in milliseconds. More...
 
NameappendSegment (uint64_t segmentNo)
 Append segment number (sequential) using NDN naming conventions. More...
 
NameappendSegmentOffset (uint64_t offset)
 Append segment byte offset using NDN naming conventions. More...
 
NameappendTimestamp (const time::system_clock::TimePoint &timePoint=time::system_clock::now())
 Append timestamp using NDN naming conventions. More...
 
NameappendSequenceNumber (uint64_t seqNo)
 Append sequence number using NDN naming conventions. More...
 
NameappendImplicitSha256Digest (const ConstBufferPtr &digest)
 Append ImplicitSha256Digest. More...
 
NameappendImplicitSha256Digest (const uint8_t *digest, size_t digestSize)
 Append ImplicitSha256Digest. More...
 
Name getSuccessor () const
 Get the successor of a name. More...
 
bool equals (const Name &name) const
 Check if this name has the same component count and components as the given name. More...
 
bool isPrefixOf (const Name &name) const
 Check if the N components of this name are the same as the first N components of the given name. More...
 
bool empty () const
 Check if name is emtpy. More...
 
size_t size () const
 Get the number of components. More...
 
const Componentget (ssize_t i) const
 Get the component at the given index. More...
 
const Componentoperator[] (ssize_t i) const
 
const Componentat (ssize_t i) const
 Get component at the specified index. 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...
 
template<class T >
void push_back (const T &component)
 Append the component. More...
 
bool operator== (const Name &name) const
 Check if this name has the same component count and components as the given name. More...
 
bool operator!= (const Name &name) const
 Check if this name has the same component count and components as the given name. More...
 
bool operator<= (const Name &other) const
 Return true if this is less than or equal to the other Name in the NDN canonical ordering. More...
 
bool operator< (const Name &other) const
 Return true if this is less than the other Name in the NDN canonical ordering. More...
 
bool operator>= (const Name &other) const
 Return true if this is less than or equal to the other Name in the NDN canonical ordering. More...
 
bool operator> (const Name &other) const
 Return true if this is greater than the other Name in the NDN canonical ordering. More...
 
const_iterator begin () const
 Begin iterator (const). More...
 
const_iterator end () const
 End iterator (const). More...
 
const_reverse_iterator rbegin () const
 Reverse begin iterator (const). More...
 
const_reverse_iterator rend () const
 Reverse end iterator (const). More...
 

Static Public Attributes

static const size_t npos = std::numeric_limits<size_t>::max()
 indicates "until the end" in getSubName and compare More...
 

Detailed Description

Name abstraction to represent an absolute name.

Definition at line 46 of file name.hpp.

Member Typedef Documentation

Definition at line 62 of file name.hpp.

Definition at line 64 of file name.hpp.

Definition at line 66 of file name.hpp.

Definition at line 67 of file name.hpp.

Definition at line 68 of file name.hpp.

Definition at line 69 of file name.hpp.

Definition at line 70 of file name.hpp.

Definition at line 71 of file name.hpp.

Definition at line 72 of file name.hpp.

Definition at line 73 of file name.hpp.

typedef boost::reverse_iterator<iterator> ndn::Name::reverse_iterator

Definition at line 75 of file name.hpp.

typedef boost::reverse_iterator<const_iterator> ndn::Name::const_reverse_iterator

Definition at line 76 of file name.hpp.

typedef component_container::difference_type ndn::Name::difference_type

Definition at line 78 of file name.hpp.

typedef component_container::size_type ndn::Name::size_type

Definition at line 79 of file name.hpp.

Constructor & Destructor Documentation

ndn::Name::Name ( )

Create a new Name with no components.

Definition at line 46 of file name.cpp.

Referenced by ndn::operator>>(), and wireDecode().

ndn::Name::Name ( const Block wire)
explicit

Create Name object from wire block.

This is a more efficient equivalent for

name.wireDecode(wire);

Definition at line 51 of file name.cpp.

References ndn::Block::parse().

ndn::Name::Name ( const char *  uri)

Create name from uri (NDN URI scheme)

Parameters
uriThe null-terminated URI string

Definition at line 57 of file name.cpp.

ndn::Name::Name ( const std::string &  uri)

Create name from uri (NDN URI scheme)

Parameters
uriThe URI string

Definition at line 62 of file name.cpp.

Member Function Documentation

template<encoding::Tag TAG>
size_t ndn::Name::wireEncode ( EncodingImpl< TAG > &  encoder) const
const Block & ndn::Name::wireEncode ( ) const

Definition at line 90 of file name.cpp.

References ndn::Block::hasWire(), and ndn::Block::parse().

bool ndn::Name::hasWire ( ) const
inline

Check if already has wire.

Definition at line 630 of file name.hpp.

ndn::Name::DEPRECATED ( void   setconst char *uri)
Deprecated:
Use appropriate constructor
ndn::Name::DEPRECATED ( void   setconst std::string &uri)
Deprecated:
Use appropriate constructor
template<class Iterator >
Name& ndn::Name::append ( Iterator  first,
Iterator  last 
)
inline

Append a new component, copying from value frome the range [first, last) of bytes.

Parameters
firstIterator pointing to the beginning of the buffer
lastIterator pointing to the ending of the buffer
Template Parameters
Iteratoriterator type satisfying at least InputIterator concept. Implementation is more optimal when the iterator type satisfies RandomAccessIterator concept. It is required that sizeof(std::iterator_traits<Iterator>::value_type) == 1.
Returns
This name so that you can chain calls to append.

Definition at line 165 of file name.hpp.

References push_back().

Name& ndn::Name::append ( const Component value)
inline

Append component value.

Definition at line 175 of file name.hpp.

References push_back().

Name& ndn::Name::append ( const char *  value)
inline

Append name component that represented as a string.

Note that this method is necessary to ensure correctness and unambiguity of append("string") operations (both Component and Name can be implicitly converted from string, each having different outcomes

Definition at line 189 of file name.hpp.

References push_back().

Name& ndn::Name::append ( const Block value)
inline

Definition at line 196 of file name.hpp.

References append(), ndn::tlv::NameComponent, push_back(), and ndn::Block::type().

Name & ndn::Name::append ( const PartialName name)

append a PartialName to this Name.

Parameters
namethe components to append
Returns
this name

Definition at line 191 of file name.cpp.

References append(), at(), and size().

void ndn::Name::clear ( )
inline
PartialName ndn::Name::getSubName ( ssize_t  iStartComponent,
size_t  nComponents = npos 
) const

Extract a sub-name (PartialName) of nComponents components starting from iStartComponent.

Parameters
iStartComponentindex of the first component; if iStartComponent is negative, size()+iStartComponent is used instead
nComponentsThe number of components starting at iStartComponent. Use npos to get the Partial Name until the end of this Name.

If iStartComponent is out of bounds and is negative, will return the components starting in the beginning of the Name If iStartComponent is out of bounds and is positive, will return the component "/" If nComponents is out of bounds, will return the components until the end of this Name

Returns
A new partial name

Definition at line 274 of file name.cpp.

References append(), at(), npos, and size().

Referenced by ndn::IdentityCertificate::certificateNameToPublicKeyName(), clear(), getPrefix(), and ndn::security::KeyChain::prepareUnsignedIdentityCertificate().

PartialName ndn::Name::getPrefix ( ssize_t  nComponents) const
inline

Extract a prefix (PartialName) of the name, containing first nComponents components.

Parameters
nComponentsThe number of prefix components. If nComponents is -N then return the prefix up to name.size() - N. For example getPrefix(-1) returns the name without the final component.
Returns
A new partial name

Definition at line 249 of file name.hpp.

References appendImplicitSha256Digest(), appendNumber(), appendNumberWithMarker(), appendSegment(), appendSegmentOffset(), appendSequenceNumber(), appendTimestamp(), appendVersion(), equals(), getSubName(), getSuccessor(), isPrefixOf(), ndn::time::system_clock::now(), and toUri().

Referenced by ndn::SecPublicInfoSqlite3::addCertificate(), ndn::security::PibMemory::addCertificate(), ndn::security::PibSqlite3::addCertificate(), ndn::SecPublicInfo::addCertificateAsSystemDefault(), ndn::SecPublicInfoSqlite3::addKey(), nfd::fw::AccessStrategy::beforeSatisfyInterest(), ndn::security::conf::KeyLocatorChecker::check(), ndn::SecPublicInfoSqlite3::deletePublicKeyInfo(), ndn::SecPublicInfoSqlite3::doesPublicKeyExist(), nfd::rib::RibManager::enableLocalControlHeader(), nfd::StrategyChoice::erase(), ndn::util::SegmentFetcher::fetch(), nfd::cs::Cs::find(), nfd::NameTree::findExactMatch(), nfd::rib::Rib::findParent(), ndn::SecPublicInfoSqlite3::getAllCertificateNamesOfKey(), ndn::SecPublicInfoSqlite3::getDefaultCertificateNameForKey(), ndn::SecPublicInfoSqlite3::getDefaultKeyNameForIdentity(), ndn::security::PibMemory::getKeysOfIdentity(), ndn::SecPublicInfoSqlite3::getPublicKey(), ndn::SecPublicInfoSqlite3::getPublicKeyType(), ndn::CertificateCacheTtl::getSize(), getSuccessor(), ndn::security::KeyChain::importIdentity(), nfd::NameTree::lookup(), ndn::security::conf::Filter::match(), ndn::security::KeyChain::prepareUnsignedIdentityCertificate(), nfd::rib::RemoteRegistrator::registerPrefix(), ndn::util::InMemoryStorage::selectChild(), ndn::security::KeyChain::selfSign(), and nfd::rib::RemoteRegistrator::unregisterPrefix().

std::string ndn::Name::toUri ( ) const

Encode this name as a URI.

Returns
The encoded URI.

Definition at line 183 of file name.cpp.

Referenced by ndn::SecTpmOsx::addAppToAcl(), ndn::SecPublicInfoSqlite3::addCertificate(), ndn::SecPublicInfoSqlite3::addIdentity(), ndn::SecPublicInfoSqlite3::addKey(), ndn::IdentityCertificate::certificateNameToPublicKeyName(), ndn::security::conf::FixedSignerChecker::check(), ndn::ValidatorRegex::checkPolicy(), ndn::ValidatorConfig::checkPolicy(), ndn::CommandInterestValidator::checkPolicy(), ndn::SecPublicInfoSqlite3::deleteCertificateInfo(), ndn::SecPublicInfoSqlite3::deleteIdentityInfo(), ndn::SecTpmFile::deleteKeyPairInTpm(), ndn::SecTpmOsx::deleteKeyPairInTpmInternal(), ndn::SecPublicInfoSqlite3::deletePublicKeyInfo(), ndn::SecPublicInfoSqlite3::doesCertificateExist(), ndn::SecPublicInfoSqlite3::doesIdentityExist(), ndn::SecTpmFile::doesKeyExistInTpm(), ndn::SecPublicInfoSqlite3::doesPublicKeyExist(), nfd::TablesConfigSection::ensureTablesAreConfigured(), ndn::SecTpmFile::exportPrivateKeyPkcs8FromTpm(), ndn::SecTpmOsx::exportPrivateKeyPkcs8FromTpmInternal(), ndn::SecTpmFile::generateKeyPairInTpm(), ndn::SecPublicInfoSqlite3::getAllCertificateNamesOfKey(), ndn::SecPublicInfoSqlite3::getAllKeyNamesOfIdentity(), ndn::SecPublicInfoSqlite3::getCertificate(), ndn::SecPublicInfoSqlite3::getDefaultCertificateNameForKey(), ndn::SecPublicInfoSqlite3::getDefaultIdentity(), ndn::SecPublicInfoSqlite3::getDefaultKeyNameForIdentity(), ndn::SecPublicInfo::getNewKeyName(), getPrefix(), ndn::SecPublicInfoSqlite3::getPublicKey(), ndn::SecTpmOsx::getPublicKeyFromTpm(), ndn::SecTpmFile::getPublicKeyFromTpm(), ndn::SecPublicInfoSqlite3::getPublicKeyType(), ndn::security::Identity::Identity(), ndn::security::KeyChain::importIdentity(), ndn::SecTpmFile::importPrivateKeyPkcs8IntoTpm(), ndn::SecTpmOsx::importPrivateKeyPkcs8IntoTpmInternal(), ndn::SecTpmOsx::importPublicKeyPkcs1IntoTpm(), ndn::SecTpmFile::importPublicKeyPkcs1IntoTpm(), ndn::Validator::onData(), nfd::rib::RibManager::onRibUpdateFailure(), ndn::Validator::onTimeout(), ndn::security::KeyChain::prepareUnsignedIdentityCertificate(), ndn::security::KeyChain::selfSign(), ndn::SecTpmFile::signInTpm(), ndn::SecTpmOsx::signInTpmInternal(), and ndn::SecTpmOsx::Impl::toInternalKeyName().

Name & ndn::Name::appendNumber ( uint64_t  number)

Append a component with the number encoded as nonNegativeInteger.

See also
http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding
Parameters
numberThe non-negative number
Returns
This name so that you can chain calls to append.

Definition at line 204 of file name.cpp.

References ndn::name::Component::fromNumber(), and ndn::Block::push_back().

Referenced by getPrefix().

Name & ndn::Name::appendNumberWithMarker ( uint8_t  marker,
uint64_t  number 
)

Create a component encoded as NameComponentWithMarker.

See also
http://named-data.net/doc/tech-memos/naming-conventions.pdf
Parameters
marker1-byte marker octet
numberThe non-negative number

Definition at line 211 of file name.cpp.

References ndn::name::Component::fromNumberWithMarker(), and ndn::Block::push_back().

Referenced by getPrefix().

Name & ndn::Name::appendVersion ( )

Append version using NDN naming conventions based on current UNIX timestamp in milliseconds.

See also
http://named-data.net/doc/tech-memos/naming-conventions.pdf

Definition at line 225 of file name.cpp.

References ndn::time::system_clock::now(), and ndn::time::toUnixTimestamp().

Referenced by getPrefix().

Name & ndn::Name::appendSegment ( uint64_t  segmentNo)
Name & ndn::Name::appendSegmentOffset ( uint64_t  offset)

Append segment byte offset using NDN naming conventions.

See also
http://named-data.net/doc/tech-memos/naming-conventions.pdf

Definition at line 239 of file name.cpp.

References ndn::name::Component::fromSegmentOffset(), and ndn::Block::push_back().

Referenced by getPrefix().

Name & ndn::Name::appendTimestamp ( const time::system_clock::TimePoint timePoint = time::system_clock::now())

Append timestamp using NDN naming conventions.

See also
http://named-data.net/doc/tech-memos/naming-conventions.pdf

Definition at line 246 of file name.cpp.

References ndn::name::Component::fromTimestamp(), and ndn::Block::push_back().

Referenced by getPrefix().

Name & ndn::Name::appendImplicitSha256Digest ( const ConstBufferPtr digest)

Append ImplicitSha256Digest.

Definition at line 260 of file name.cpp.

References ndn::name::Component::fromImplicitSha256Digest(), and ndn::Block::push_back().

Referenced by ndn::Data::getFullName(), and getPrefix().

Name & ndn::Name::appendImplicitSha256Digest ( const uint8_t *  digest,
size_t  digestSize 
)

Append ImplicitSha256Digest.

Definition at line 267 of file name.cpp.

References ndn::name::Component::fromImplicitSha256Digest(), and ndn::Block::push_back().

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:

  • successor for / is /%00
  • successor for /%00%01/%01%02 is /%00%01/%01%03
  • successor for /%00%01/%01FF is /%00%01/%02%00
  • successor for /%00%01/FFFF is /%00%01/%00%00%00
Returns
a new name

Definition at line 293 of file name.cpp.

References append(), empty(), and getPrefix().

Referenced by nfd::cs::Cs::find(), and getPrefix().

bool ndn::Name::equals ( const Name name) const

Check if this name has the same component count and components as the given name.

Parameters
nameThe Name to check.
Returns
true if the names are equal, otherwise false.

Definition at line 306 of file name.cpp.

References at(), and size().

Referenced by getPrefix(), operator!=(), and operator==().

size_t ndn::Name::size ( ) const
inline

Get the number of components.

Returns
The number of components.

Definition at line 408 of file name.hpp.

Referenced by ndn::mgmt::Dispatcher::addStatusDataset(), append(), at(), nfd::fw::AccessStrategy::beforeSatisfyInterest(), ndn::IdentityCertificate::certificateNameToPublicKeyName(), ndn::security::conf::KeyLocatorChecker::check(), ndn::ValidatorConfig::checkPolicy(), ndn::CommandInterestValidator::checkPolicy(), compare(), nfd::cs::compareQueryWithData(), ndn::InterestFilter::doesMatch(), nfd::rib::RibManager::enableLocalControlHeader(), equals(), nfd::StrategyChoice::erase(), ndn::RegexTopMatcher::expand(), nfd::cs::Cs::find(), nfd::NameTree::findLongestPrefixMatch(), nfd::rib::Rib::findParent(), get(), getSubName(), nfd::StrategyChoice::install(), isPrefixOf(), nfd::NameTree::lookup(), ndn::nfd::makeSigningInfoFromIdentityCertificate(), ndn::RegexTopMatcher::match(), ndn::security::conf::Filter::match(), ndn::Interest::matchesData(), ndn::Interest::matchesName(), ndn::security::conf::RelationNameFilter::matchName(), nfd::FaceManager::onFaceRequest(), nfd::FibManager::onFibRequest(), nfd::StrategyChoiceManager::onStrategyChoiceRequest(), ndn::security::KeyChain::prepareUnsignedIdentityCertificate(), nfd::rib::RibManager::registerWithNfd(), ndn::mgmt::Dispatcher::removeTopPrefix(), ndn::util::InMemoryStorage::selectChild(), nfd::rib::RibManager::setConfigFile(), ndn::IdentityCertificate::setName(), ndn::nfd::StrategyChoiceUnsetCommand::validateRequest(), and ndn::Validator::verifySignature().

const Component& ndn::Name::operator[] ( ssize_t  i) const
inline

Definition at line 428 of file name.hpp.

const Component& ndn::Name::at ( ssize_t  i) const
inline

Get component at the specified index.

Unlike get() and operator[] methods, at() checks for out of bounds and will throw Name::Error when it happens

Exceptions
Name::Errorif index out of bounds

Definition at line 442 of file name.hpp.

References ndn::Name::Error::Error(), and size().

Referenced by append(), compare(), equals(), getSubName(), isPrefixOf(), nfd::FaceManager::onFaceRequest(), nfd::FibManager::onFibRequest(), and nfd::StrategyChoiceManager::onStrategyChoiceRequest().

int ndn::Name::compare ( 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.

Parameters
otherThe other Name to compare with.
Return values
negativethis comes before other in canonical ordering
zerothis equals other
positivethis comes after other in canonical ordering
See also
http://named-data.net/doc/ndn-tlv/name.html#canonical-order

Definition at line 474 of file name.hpp.

References npos.

Referenced by nfd::cs::compareDataWithData(), nfd::cs::compareQueryWithData(), operator<(), operator<=(), operator>(), and operator>=().

int ndn::Name::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

This is equivalent to this->getSubName(pos1, count1).compare(other.getSubName(pos2, count2));

Definition at line 336 of file name.cpp.

References at(), ndn::name::Component::compare(), and size().

template<class T >
void ndn::Name::push_back ( const T &  component)
inline

Append the component.

Parameters
componentThe component of type T.

Definition at line 493 of file name.hpp.

References append().

Referenced by append().

bool ndn::Name::operator== ( const Name name) const
inline

Check if this name has the same component count and components as the given name.

Parameters
nameThe Name to check.
Returns
true if the names are equal, otherwise false.

Definition at line 504 of file name.hpp.

References equals().

bool ndn::Name::operator!= ( const Name name) const
inline

Check if this name has the same component count and components as the given name.

Parameters
nameThe Name to check.
Returns
true if the names are not equal, otherwise false.

Definition at line 515 of file name.hpp.

References equals().

bool ndn::Name::operator<= ( const Name other) const
inline

Return true if this is less than or equal to the other Name in the NDN canonical ordering.

Parameters
otherThe other Name to compare with.
See also
http://named-data.net/doc/ndn-tlv/name.html#canonical-order

Definition at line 527 of file name.hpp.

References compare().

bool ndn::Name::operator< ( const Name other) const
inline

Return true if this is less than the other Name in the NDN canonical ordering.

Parameters
otherThe other Name to compare with.
See also
http://named-data.net/doc/ndn-tlv/name.html#canonical-order

Definition at line 539 of file name.hpp.

References compare().

bool ndn::Name::operator>= ( const Name other) const
inline

Return true if this is less than or equal to the other Name in the NDN canonical ordering.

Parameters
otherThe other Name to compare with.
See also
http://named-data.net/doc/ndn-tlv/name.html#canonical-order

Definition at line 551 of file name.hpp.

References compare().

bool ndn::Name::operator> ( const Name other) const
inline

Return true if this is greater than the other Name in the NDN canonical ordering.

Parameters
otherThe other Name to compare with.
See also
http://named-data.net/doc/ndn-tlv/name.html#canonical-order

Definition at line 563 of file name.hpp.

References compare().

const_iterator ndn::Name::end ( ) const
inline

End iterator (const).

Todo:
Check if this crash when there are no elements in the buffer

Definition at line 587 of file name.hpp.

Referenced by nfd::name_tree::computeHash(), nfd::name_tree::computeHashSet(), ndn::RegexTopMatcher::fromName(), ndn::SecRuleRelative::matchSignerName(), ndn::operator<<(), and rbegin().

const_reverse_iterator ndn::Name::rbegin ( ) const
inline

Reverse begin iterator (const).

Definition at line 596 of file name.hpp.

References end().

Referenced by wireEncode().

const_reverse_iterator ndn::Name::rend ( ) const
inline

Reverse end iterator (const).

Definition at line 605 of file name.hpp.

References begin().

Referenced by wireEncode().

Member Data Documentation

const size_t ndn::Name::npos = std::numeric_limits<size_t>::max()
static

indicates "until the end" in getSubName and compare

Definition at line 617 of file name.hpp.

Referenced by clear(), compare(), and getSubName().


The documentation for this class was generated from the following files: