ndn::RegexComponentMatcher Class Reference

#include <regex-component-matcher.hpp>

Inheritance diagram for ndn::RegexComponentMatcher:
[legend]
Collaboration diagram for ndn::RegexComponentMatcher:
[legend]

Public Types

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

Public Member Functions

 RegexComponentMatcher (const std::string &expr, shared_ptr< RegexBackrefManager > backrefManager, bool isExactMatch=true)
 Create a RegexComponent matcher from expr. More...
 
virtual ~RegexComponentMatcher ()
 
virtual bool match (const Name &name, size_t offset, size_t len=1)
 
const std::vector< name::Component > & getMatchResult () const
 get the matched name components More...
 
const std::string & getExpr () const
 

Protected Member Functions

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

Protected Attributes

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

Detailed Description

Definition at line 34 of file regex-component-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 47 of file regex-matcher.hpp.

Constructor & Destructor Documentation

ndn::RegexComponentMatcher::RegexComponentMatcher ( const std::string &  expr,
shared_ptr< RegexBackrefManager backrefManager,
bool  isExactMatch = true 
)
inline

Create a RegexComponent matcher from expr.

Parameters
exprThe standard regular expression to match a component
backrefManagerThe back reference manager
isExactMatchThe flag to provide exact match

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

virtual ndn::RegexComponentMatcher::~RegexComponentMatcher ( )
inlinevirtual

Definition at line 48 of file regex-component-matcher.hpp.

Member Function Documentation

void ndn::RegexComponentMatcher::compile ( )
inlineprotectedvirtual

Compile the regular expression to generate the more matchers when necessary.

Implements ndn::RegexMatcher.

Definition at line 93 of file regex-component-matcher.hpp.

const std::string& ndn::RegexMatcher::getExpr ( ) const
inlineinherited

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

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

get the matched name components

Returns
the matched name components

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

bool ndn::RegexComponentMatcher::match ( const Name name,
size_t  offset,
size_t  len = 1 
)
inlinevirtual

Reimplemented from ndn::RegexMatcher.

Definition at line 110 of file regex-component-matcher.hpp.

Field Documentation

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

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

const std::string ndn::RegexMatcher::m_expr
protectedinherited

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

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

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

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

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

const RegexExprType ndn::RegexMatcher::m_type
protectedinherited

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