CoxIter 1.3
CoxIter - Computing invariants of hyperbolic Coxeter groups
Loading...
Searching...
No Matches
regexp.h
Go to the documentation of this file.
1/*
2Copyright (C) 2013, 2014
3Rafael Guglielmetti, rafael.guglielmetti@unifr.ch
4*/
5
6/*
7This file is part of CoxIter and AlVin.
8
9CoxIter is free software: you can redistribute it and/or modify
10it under the terms of the GNU General Public License as
11published by the Free Software Foundation, either version 3 of the
12License, or (at your option) any later version.
13
14CoxIter is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with CoxIter. If not, see <http://www.gnu.org/licenses/>.
21*/
22
30#include <iostream>
31#include <string>
32#include <vector>
33
34#include <pcre.h>
35
36using namespace std;
37
38#ifndef __REGEXP_H__
39#define __REGEXP_H__
40
41#include <stdexcept> // std::invalid_argument // TODO: remove
42
43typedef vector<vector<string>> PCREResult;
44
46private:
47 string error;
49
50 pcre *regexp;
51 const char *regPattern;
52 const char *regSubject;
53 const char *regError;
54
57
58 int *ovector;
60
61public:
62 PCRERegexp(int iOvectorSize = 30);
64
74 int preg_match_all(const string &pattern, const string &subject,
75 PCREResult &results, const int &optionsCompile = 0);
76
81 string get_error();
82};
83
84#endif
Definition regexp.h:45
int * ovector
Information about the result.
Definition regexp.h:58
int regSubjectLength
Definition regexp.h:56
bool isClassUsed
True if the class was used.
Definition regexp.h:48
string error
Eventually, error code.
Definition regexp.h:47
const char * regError
Definition regexp.h:53
const char * regPattern
Definition regexp.h:51
pcre * regexp
Definition regexp.h:50
const char * regSubject
Definition regexp.h:52
int regErrorOffset
Definition regexp.h:55
string get_error()
Return the error ccode.
Definition regexp.cpp:44
~PCRERegexp()
Definition regexp.cpp:36
int iOvectorSize
Size of the ovector array.
Definition regexp.h:59
int preg_match_all(const string &pattern, const string &subject, PCREResult &results, const int &optionsCompile=0)
As the usual PHP preg_match_all: executes the regexp and fetch all the occurrences.
Definition regexp.cpp:46
vector< vector< string > > PCREResult
Definition regexp.h:43