#include <ndn-cxx/util/regex/regex-matcher.hpp>
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 | |
virtual | ~RegexMatcher () |
const std::string & | getExpr () const |
const std::vector< name::Component > & | getMatchResult () const |
Return the matched name components. More... | |
virtual bool | match (const Name &name, size_t offset, size_t len) |
Protected Member Functions | |
RegexMatcher (const std::string &expr, RegexExprType type, shared_ptr< RegexBackrefManager > backrefManager=nullptr) | |
Protected Attributes | |
shared_ptr< RegexBackrefManager > | m_backrefManager |
const std::string | m_expr |
std::vector< shared_ptr< RegexMatcher > > | m_matchers |
std::vector< name::Component > | m_matchResult |
const RegexExprType | m_type |
Definition at line 32 of file regex-matcher.hpp.
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.
|
virtualdefault |
|
protected |
Definition at line 28 of file regex-matcher.cpp.
|
inline |
Definition at line 58 of file regex-matcher.hpp.
|
inline |
Return the matched name components.
Definition at line 67 of file regex-matcher.hpp.
|
virtual |
Reimplemented in ndn::RegexComponentSetMatcher, ndn::RegexComponentMatcher, ndn::RegexTopMatcher, and ndn::RegexRepeatMatcher.
Definition at line 42 of file regex-matcher.cpp.
|
protected |
Definition at line 83 of file regex-matcher.hpp.
|
protected |
Definition at line 81 of file regex-matcher.hpp.
|
protected |
Definition at line 84 of file regex-matcher.hpp.
|
protected |
Definition at line 85 of file regex-matcher.hpp.
|
protected |
Definition at line 82 of file regex-matcher.hpp.