LLVM 22.0.0git
Regex.h
Go to the documentation of this file.
1//===-- Regex.h - Regular Expression matcher implementation -*- C++ -*-----===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements a POSIX regular expression matcher. Both Basic and
10// Extended POSIX regular expressions (ERE) are supported. EREs were extended
11// to support backreferences in matches.
12// This implementation also supports matching strings with embedded NUL chars.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_SUPPORT_REGEX_H
17#define LLVM_SUPPORT_REGEX_H
18
21#include <string>
22
23struct llvm_regex;
24
25namespace llvm {
26 class StringRef;
27 template<typename T> class SmallVectorImpl;
28
29 class Regex {
30 public:
31 enum RegexFlags : unsigned {
33 /// Compile for matching that ignores upper/lower case distinctions.
35 /// Compile for newline-sensitive matching. With this flag '[^' bracket
36 /// expressions and '.' never match newline. A ^ anchor matches the
37 /// null string after any newline in the string in addition to its normal
38 /// function, and the $ anchor matches the null string before any
39 /// newline in the string in addition to its normal function.
41 /// By default, the POSIX extended regular expression (ERE) syntax is
42 /// assumed. Pass this flag to turn on basic regular expressions (BRE)
43 /// instead.
45
47 };
48
50 /// Compiles the given regular expression \p Regex.
51 ///
52 /// \param Regex - referenced string is no longer needed after this
53 /// constructor does finish. Only its compiled form is kept stored.
55 LLVM_ABI Regex(StringRef Regex, unsigned Flags);
56 Regex(const Regex &) = delete;
58 std::swap(preg, regex.preg);
59 std::swap(error, regex.error);
60 return *this;
61 }
62 LLVM_ABI Regex(Regex &&regex);
64
65 /// isValid - returns the error encountered during regex compilation, if
66 /// any.
67 LLVM_ABI bool isValid(std::string &Error) const;
68 bool isValid() const { return !error; }
69
70 /// getNumMatches - In a valid regex, return the number of parenthesized
71 /// matches it contains. The number filled in by match will include this
72 /// many entries plus one for the whole regex (as element 0).
73 LLVM_ABI unsigned getNumMatches() const;
74
75 /// matches - Match the regex against a given \p String.
76 ///
77 /// \param Matches - If given, on a successful match this will be filled in
78 /// with references to the matched group expressions (inside \p String),
79 /// the first group is always the entire pattern.
80 ///
81 /// \param Error - If non-null, any errors in the matching will be recorded
82 /// as a non-empty string. If there is no error, it will be an empty string.
83 ///
84 /// This returns true on a successful match.
86 SmallVectorImpl<StringRef> *Matches = nullptr,
87 std::string *Error = nullptr) const;
88
89 /// sub - Return the result of replacing the first match of the regex in
90 /// \p String with the \p Repl string. Backreferences like "\0" and "\g<1>"
91 /// in the replacement string are replaced with the appropriate match
92 /// substring.
93 ///
94 /// Note that the replacement string has backslash escaping performed on
95 /// it. Invalid backreferences are ignored (replaced by empty strings).
96 ///
97 /// \param Error If non-null, any errors in the substitution (invalid
98 /// backreferences, trailing backslashes) will be recorded as a non-empty
99 /// string. If there is no error, it will be an empty string.
100 LLVM_ABI std::string sub(StringRef Repl, StringRef String,
101 std::string *Error = nullptr) const;
102
103 /// If this function returns true, ^Str$ is an extended regular
104 /// expression that matches Str and only Str.
105 LLVM_ABI static bool isLiteralERE(StringRef Str);
106
107 /// Turn String into a regex by escaping its special characters.
108 LLVM_ABI static std::string escape(StringRef String);
109
110 private:
111 struct llvm_regex *preg;
112 int error;
113 };
114}
115
116#endif // LLVM_SUPPORT_REGEX_H
#define LLVM_ABI
Definition: Compiler.h:213
#define error(X)
Lightweight error class with error context and mandatory checking.
Definition: Error.h:159
Regex(const Regex &)=delete
RegexFlags
Definition: Regex.h:31
@ Newline
Compile for newline-sensitive matching.
Definition: Regex.h:40
@ IgnoreCase
Compile for matching that ignores upper/lower case distinctions.
Definition: Regex.h:34
@ NoFlags
Definition: Regex.h:32
@ BasicRegex
By default, the POSIX extended regular expression (ERE) syntax is assumed.
Definition: Regex.h:44
static LLVM_ABI std::string escape(StringRef String)
Turn String into a regex by escaping its special characters.
Definition: Regex.cpp:239
LLVM_ABI ~Regex()
Definition: Regex.cpp:49
Regex & operator=(Regex regex)
Definition: Regex.h:57
bool isValid() const
Definition: Regex.h:68
LLVM_ABI std::string sub(StringRef Repl, StringRef String, std::string *Error=nullptr) const
sub - Return the result of replacing the first match of the regex in String with the Repl string.
Definition: Regex.cpp:137
static LLVM_ABI bool isLiteralERE(StringRef Str)
If this function returns true, ^Str$ is an extended regular expression that matches Str and only Str.
Definition: Regex.cpp:232
LLVM_ABI Regex()
Definition: Regex.cpp:24
LLVM_ABI unsigned getNumMatches() const
getNumMatches - In a valid regex, return the number of parenthesized matches it contains.
Definition: Regex.cpp:79
LLVM_ABI bool match(StringRef String, SmallVectorImpl< StringRef > *Matches=nullptr, std::string *Error=nullptr) const
matches - Match the regex against a given String.
Definition: Regex.cpp:83
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:574
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:55
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:858