[go: up one dir, main page]

Menu

[7ab761]: / src / rexp.h  Maximize  Restore  History

Download this file

84 lines (63 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*MT*
MediaTomb - http://www.mediatomb.cc/
rexp.h - this file is part of MediaTomb.
Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
Copyright (C) 2006-2010 Gena Batyan <bgeradz@mediatomb.cc>,
Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
Leonhard Wimmer <leo@mediatomb.cc>
MediaTomb is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
MediaTomb is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
version 2 along with MediaTomb; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
$Id$
*/
/// \file rexp.h
#ifndef __REXP_H__
#define __REXP_H__
#include "common.h"
#include <sys/types.h>
#include <regex.h>
#define DEFAULT_NMATCH 10
class Matcher;
class RExp : public zmm::Object
{
public:
RExp();
virtual ~RExp();
void compile(zmm::String pattern, int flags = 0);
void compile(zmm::String pattern, const char *flags);
zmm::Ref<Matcher> matcher(zmm::String text, int nmatch = DEFAULT_NMATCH);
zmm::Ref<Matcher> match(zmm::String text, int nmatch = DEFAULT_NMATCH);
bool matches(zmm::String text);
zmm::String getPattern();
protected:
bool isCompiled;
zmm::String pattern;
regex_t regex;
friend class Matcher;
};
class Matcher : public zmm::Object
{
public:
virtual ~Matcher();
zmm::String group(int i);
bool next();
bool matches();
protected:
Matcher(zmm::Ref<RExp> rexp, zmm::String text, int nmatch);
protected:
zmm::Ref<RExp> rexp;
zmm::String text;
char *ptr;
int nmatch;
regmatch_t *pmatch;
friend class RExp;
};
#endif // __REXP_H__