From 0c4f27688622053a35d5b14ad138a6cd0fba20c4 Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 16 Nov 2011 20:54:36 -0800 Subject: Adding the Regex class. --- src/BRegex.cc | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/BRegex.cc (limited to 'src/BRegex.cc') diff --git a/src/BRegex.cc b/src/BRegex.cc new file mode 100644 index 0000000..a7b37b0 --- /dev/null +++ b/src/BRegex.cc @@ -0,0 +1,49 @@ +#include "BRegex.h" + +Balau::Regex::Regex(const char * regex, bool icase) throw (GeneralException) { + int r = regcomp(&m_regex, regex, REG_EXTENDED | (icase ? REG_ICASE : 0)); + if (r) + throw GeneralException(getError(r)); +} + +Balau::Regex::Captures Balau::Regex::match(const char * str) throw (GeneralException) { + Captures ret; + regmatch_t * matches = (regmatch_t *) alloca((m_regex.re_nsub + 1) * sizeof(regmatch_t)); + + int r = regexec(&m_regex, str, m_regex.re_nsub + 1, matches, 0); + + if (r == REG_NOMATCH) + return ret; + + if (r != 0) + throw GeneralException(getError(r)); + + for (int i = 0; i < m_regex.re_nsub + 1; i++) { + if (matches[i].rm_so >= 0) { + regoff_t begin = matches[i].rm_so; + regoff_t end = matches[i].rm_eo; + String t(str + begin, end - begin); + ret.push_back(t); + } + } + + return ret; +} + +Balau::Regex::~Regex() { + regfree(&m_regex); +} + +Balau::String Balau::Regex::getError(int err) { + size_t s; + char * t; + + s = regerror(err, &m_regex, NULL, 0); + t = (char *) malloc(s); + regerror(err, &m_regex, t, s); + String r(t, s - 1); + free(t); + + return r; +} + -- cgit v1.2.3