ndn::RegexMatcher Class Referenceabstract

#include <ndn-cxx/util/regex/regex-matcher.hpp>

+ Inheritance diagram for ndn::RegexMatcher:
+ Collaboration diagram for ndn::RegexMatcher:

Classes

class  Error
 

Public Types

enum  RegexExprType {
  EXPR_TOP,
  EXPR_PATTERN_LIST,
  EXPR_REPEAT_PATTERN,
  EXPR_BACKREF,
  EXPR_COMPONENT_SET,
  EXPR_COMPONENT,
  EXPR_PSEUDO
}
 

Public Member Functions

 RegexMatcher (const std::string &expr, const RegexExprType &type, shared_ptr< RegexBackrefManager > backrefManager=nullptr)
 
virtual ~RegexMatcher ()
 
const std::string & getExpr () const
 
const std::vector< name::Component > & getMatchResult () const
 get the matched name components More...
 
virtual bool match (const Name &name, size_t offset, size_t len)
 

Protected Member Functions

virtual void compile ()=0
 Compile the regular expression to generate the more matchers when necessary. More...
 

Protected Attributes

shared_ptr< RegexBackrefManagerm_backrefManager
 
const std::string m_expr
 
std::vector< shared_ptr< RegexMatcher > > m_matchers
 
std::vector< name::Componentm_matchResult
 
const RegexExprType m_type
 

Detailed Description

Definition at line 32 of file regex-matcher.hpp.

Member Enumeration Documentation

Enumerator
EXPR_TOP 
EXPR_PATTERN_LIST 
EXPR_REPEAT_PATTERN 
EXPR_BACKREF 
EXPR_COMPONENT_SET 
EXPR_COMPONENT 
EXPR_PSEUDO 

Definition at line 41 of file regex-matcher.hpp.

Constructor & Destructor Documentation

ndn::RegexMatcher::RegexMatcher ( const std::string &  expr,
const RegexExprType type,
shared_ptr< RegexBackrefManager backrefManager = nullptr 
)

Definition at line 28 of file regex-matcher.cpp.

ndn::RegexMatcher::~RegexMatcher ( )
virtualdefault

Member Function Documentation

virtual void ndn::RegexMatcher::compile ( )
protectedpure virtual
const std::string& ndn::RegexMatcher::getExpr ( ) const
inline

Definition at line 71 of file regex-matcher.hpp.

const std::vector<name::Component>& ndn::RegexMatcher::getMatchResult ( ) const
inline

get the matched name components

Returns
the matched name components

Definition at line 65 of file regex-matcher.hpp.

bool ndn::RegexMatcher::match ( const Name name,
size_t  offset,
size_t  len 
)
virtual

Member Data Documentation

shared_ptr<RegexBackrefManager> ndn::RegexMatcher::m_backrefManager
protected

Definition at line 90 of file regex-matcher.hpp.

const std::string ndn::RegexMatcher::m_expr
protected

Definition at line 88 of file regex-matcher.hpp.

std::vector<shared_ptr<RegexMatcher> > ndn::RegexMatcher::m_matchers
protected

Definition at line 91 of file regex-matcher.hpp.

std::vector<name::Component> ndn::RegexMatcher::m_matchResult
protected

Definition at line 92 of file regex-matcher.hpp.

const RegexExprType ndn::RegexMatcher::m_type
protected

Definition at line 89 of file regex-matcher.hpp.