Qore Programming Language  1.12.0
QoreRegexBase.h
1 /* -*- mode: c++; indent-tabs-mode: nil -*- */
2 /*
3  QoreRegexBase.h
4 
5  regular expression substitution node definition
6 
7  Qore Programming Language
8 
9  Copyright (C) 2003 - 2022 Qore Technologies, s.r.o.
10 
11  Permission is hereby granted, free of charge, to any person obtaining a
12  copy of this software and associated documentation files (the "Software"),
13  to deal in the Software without restriction, including without limitation
14  the rights to use, copy, modify, merge, publish, distribute, sublicense,
15  and/or sell copies of the Software, and to permit persons to whom the
16  Software is furnished to do so, subject to the following conditions:
17 
18  The above copyright notice and this permission notice shall be included in
19  all copies or substantial portions of the Software.
20 
21  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  DEALINGS IN THE SOFTWARE.
28 
29  Note that the Qore library is released under a choice of three open-source
30  licenses: MIT (as above), LGPL 2+, or GPL 2+; see README-LICENSE for more
31  information.
32 */
33 
34 #ifndef _QORE_REGEXBASE_H
35 
36 #define _QORE_REGEXBASE_H
37 
38 // base class for regex and regex substitution classes
39 #include <pcre.h>
40 
41 #define check_re_options(a) (a & ~(PCRE_CASELESS|PCRE_DOTALL|PCRE_EXTENDED|PCRE_MULTILINE|PCRE_UTF8|PCRE_UCP))
42 
43 // note that the following constant is > 32 bits
44 #define QRE_GLOBAL 0x100000000LL
45 
46 class QoreRegexBase {
47 public:
48  DLLLOCAL QoreRegexBase() {
49  }
50 
51  DLLLOCAL QoreRegexBase(int options) : options(options) {
52  }
53 
54  DLLLOCAL QoreRegexBase(QoreString* str, int options = PCRE_UTF8) : str(str), options(options) {
55  }
56 
57  DLLLOCAL ~QoreRegexBase() {
58  if (p) {
59  pcre_free(p);
60  }
61  delete str;
62  }
63 
64  DLLLOCAL void setCaseInsensitive();
65  DLLLOCAL void setDotAll();
66  DLLLOCAL void setExtended();
67  DLLLOCAL void setMultiline();
68  DLLLOCAL void setUnicode();
69 
70 protected:
71  pcre* p = nullptr;
72  QoreString* str = nullptr;
73  int options = PCRE_UTF8;
74 };
75 
76 #endif
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:93