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

represents the underlying protocol and address used by a Face More...

#include <face-uri.hpp>

Classes

class  Error
 

Public Types

typedef function< void(const FaceUri &)> CanonizeSuccessCallback
 
typedef function< void(const std::string &reason)> CanonizeFailureCallback
 

Public Member Functions

 FaceUri ()
 
 FaceUri (const std::string &uri)
 construct by parsing More...
 
 FaceUri (const char *uri)
 
bool parse (const std::string &uri)
 exception-safe parsing More...
 
 FaceUri (const boost::asio::ip::udp::endpoint &endpoint)
 construct udp4 or udp6 canonical FaceUri More...
 
 FaceUri (const boost::asio::ip::tcp::endpoint &endpoint)
 construct tcp4 or tcp6 canonical FaceUri More...
 
 FaceUri (const boost::asio::ip::tcp::endpoint &endpoint, const std::string &scheme)
 construct tcp canonical FaceUri with custom scheme More...
 
 FaceUri (const ethernet::Address &address)
 construct ether canonical FaceUri More...
 
const std::string & getScheme () const
 get scheme (protocol) More...
 
const std::string & getHost () const
 get host (domain) More...
 
const std::string & getPort () const
 get port More...
 
const std::string & getPath () const
 get path More...
 
std::string toString () const
 write as a string More...
 
bool operator== (const FaceUri &rhs) const
 
bool operator!= (const FaceUri &rhs) const
 
bool isCanonical () const
 determine whether this FaceUri is in canonical form More...
 
void canonize (const CanonizeSuccessCallback &onSuccess, const CanonizeFailureCallback &onFailure, boost::asio::io_service &io, time::nanoseconds timeout) const
 asynchronously convert this FaceUri to canonical form More...
 

Static Public Member Functions

static FaceUri fromFd (int fd)
 create fd FaceUri from file descriptor More...
 
static FaceUri fromDev (const std::string &ifname)
 create dev FaceUri from network device name More...
 
static FaceUri fromUdpDev (const boost::asio::ip::udp::endpoint &endpoint, const std::string &ifname)
 create udp4 or udp6 NIC-associated FaceUri from endpoint and network device name More...
 
static bool canCanonize (const std::string &scheme)
 

Friends

std::ostream & operator<< (std::ostream &os, const FaceUri &uri)
 

Detailed Description

represents the underlying protocol and address used by a Face

See also
https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt#FaceUri

Definition at line 43 of file face-uri.hpp.

Member Typedef Documentation

typedef function<void(const FaceUri&)> ndn::FaceUri::CanonizeSuccessCallback

Definition at line 163 of file face-uri.hpp.

typedef function<void(const std::string& reason)> ndn::FaceUri::CanonizeFailureCallback

Definition at line 164 of file face-uri.hpp.

Constructor & Destructor Documentation

ndn::FaceUri::FaceUri ( )

Definition at line 46 of file face-uri.cpp.

Referenced by ndn::FaceUri::Error::Error(), and FaceUri().

ndn::FaceUri::FaceUri ( const std::string &  uri)
explicit

construct by parsing

Parameters
urischeme://host[:port]/path
Exceptions
FaceUri::Errorif URI cannot be parsed

Definition at line 51 of file face-uri.cpp.

References parse().

ndn::FaceUri::FaceUri ( const char *  uri)
explicit

Definition at line 58 of file face-uri.cpp.

ndn::FaceUri::FaceUri ( const boost::asio::ip::udp::endpoint &  endpoint)
explicit

construct udp4 or udp6 canonical FaceUri

Definition at line 121 of file face-uri.cpp.

References ndn::to_string().

ndn::FaceUri::FaceUri ( const boost::asio::ip::tcp::endpoint &  endpoint)
explicit

construct tcp4 or tcp6 canonical FaceUri

Definition at line 129 of file face-uri.cpp.

References ndn::to_string().

ndn::FaceUri::FaceUri ( const boost::asio::ip::tcp::endpoint &  endpoint,
const std::string &  scheme 
)

construct tcp canonical FaceUri with custom scheme

Definition at line 137 of file face-uri.cpp.

References FaceUri(), and ndn::to_string().

ndn::FaceUri::FaceUri ( const ethernet::Address address)
explicit

construct ether canonical FaceUri

Definition at line 163 of file face-uri.cpp.

Member Function Documentation

bool ndn::FaceUri::parse ( const std::string &  uri)

exception-safe parsing

Definition at line 64 of file face-uri.cpp.

Referenced by ndn::FaceUri::Error::Error(), FaceUri(), and nfd::FaceManager::setConfigFile().

FaceUri ndn::FaceUri::fromFd ( int  fd)
static

create fd FaceUri from file descriptor

Definition at line 155 of file face-uri.cpp.

References ndn::to_string().

Referenced by ndn::FaceUri::Error::Error(), and nfd::face::UnixStreamTransport::UnixStreamTransport().

FaceUri ndn::FaceUri::fromUdpDev ( const boost::asio::ip::udp::endpoint &  endpoint,
const std::string &  ifname 
)
static

create udp4 or udp6 NIC-associated FaceUri from endpoint and network device name

Definition at line 180 of file face-uri.cpp.

References ndn::to_string().

Referenced by ndn::FaceUri::Error::Error().

std::string ndn::FaceUri::toString ( ) const

write as a string

Definition at line 206 of file face-uri.cpp.

Referenced by ndn::UdpDevCanonizeProvider::canonize(), getPath(), and nfd::FaceManager::setConfigFile().

bool ndn::FaceUri::operator== ( const FaceUri rhs) const

Definition at line 190 of file face-uri.cpp.

Referenced by getPath().

bool ndn::FaceUri::operator!= ( const FaceUri rhs) const

Definition at line 200 of file face-uri.cpp.

Referenced by getPath().

bool ndn::FaceUri::canCanonize ( const std::string &  scheme)
static
Returns
whether a FaceUri of the scheme can be canonized

Definition at line 635 of file face-uri.cpp.

References ndn::getCanonizeProvider().

Referenced by getPath().

bool ndn::FaceUri::isCanonical ( ) const

determine whether this FaceUri is in canonical form

Returns
true if this FaceUri is in canonical form, false if this FaceUri is not in canonical form or or it's undetermined whether this FaceUri is in canonical form

Definition at line 641 of file face-uri.cpp.

References ndn::getCanonizeProvider(), getScheme(), and ndn::CanonizeProvider::isCanonical().

Referenced by ndn::IpHostCanonizeProvider< boost::asio::ip::tcp >::canonize(), ndn::DevCanonizeProvider::canonize(), ndn::UdpDevCanonizeProvider::canonize(), nfd::face::EthernetFactory::createFace(), nfd::face::TcpFactory::createFace(), nfd::face::UdpFactory::createFace(), getPath(), and nfd::FaceManager::setConfigFile().

void ndn::FaceUri::canonize ( const CanonizeSuccessCallback onSuccess,
const CanonizeFailureCallback onFailure,
boost::asio::io_service &  io,
time::nanoseconds  timeout 
) const

asynchronously convert this FaceUri to canonical form

Parameters
onSuccessfunction to call after this FaceUri is converted to canonical form
Note
A new FaceUri in canonical form will be created; this FaceUri is unchanged.
Parameters
onFailurefunction to call if this FaceUri cannot be converted to canonical form
ioreference to boost::asio::io_service instance
timeoutmaximum allowable duration of the operations. It's intentional not to provide a default value: the caller should set a reasonable value in balance between network delay and user experience.

Definition at line 652 of file face-uri.cpp.

References ndn::CanonizeProvider::canonize(), ndn::getCanonizeProvider(), and getScheme().

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const FaceUri uri 
)
friend

Definition at line 214 of file face-uri.cpp.


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