xml-copy-editor-code/src/wrapregex.h

50 lines
1.1 KiB
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef WRAPREGEX_H
#define WRAPREGEX_H
#include <iostream>
#include <string>
#include <vector>
#include <pcre.h>
#include "contexthandler.h"
using namespace std;
class WrapRegex
{
2007-09-08 00:25:30 +02:00
public:
WrapRegex (
const string& pattern,
bool matchCase,
const string& replaceParameter = "",
const int arrayLengthParameter = 60 );
2007-09-07 23:17:30 +02:00
virtual ~WrapRegex();
2007-09-08 00:25:30 +02:00
string replaceGlobal (
const string& buffer,
int *matchCount );
int matchPatternGlobal (
string &buffer,
vector<ContextMatch> &match_vector,
unsigned elementCount,
int context = 0 );
private:
2007-09-07 23:17:30 +02:00
string replace;
const int arrayLength;
int returnValue;
bool disabled;
pcre *patternStructure;
pcre_extra *patternExtraStructure;
int *matchArray;
2007-09-08 00:25:30 +02:00
string getInterpolatedString_ ( char *buffer, char *source );
string getSubpattern_ ( char *buffer, unsigned subpattern );
int matchPatternGlobal_ (
const char *buffer,
size_t buflen,
vector<ContextMatch> &matchVector,
unsigned elementCount,
int context );
2007-09-07 23:17:30 +02:00
};
#endif