blob: 618ca0524a04f5f996da3de4c26363f97ab41c28 [file] [log] [blame]
Torok Edwince0c81e2009-08-30 08:24:09 +00001//===-- Regex.cpp - Regular Expression matcher implementation -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a POSIX regular expression matcher.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner48ba9ff2009-09-24 20:15:51 +000013
Torok Edwince0c81e2009-08-30 08:24:09 +000014#include "llvm/Support/Regex.h"
15#include "llvm/Support/ErrorHandling.h"
16#include "llvm/Support/raw_ostream.h"
Chris Lattner52870082009-09-24 21:47:32 +000017#include "llvm/ADT/SmallVector.h"
Torok Edwince0c81e2009-08-30 08:24:09 +000018#include "regex_impl.h"
19#include <string>
Torok Edwince0c81e2009-08-30 08:24:09 +000020using namespace llvm;
Chris Lattner48ba9ff2009-09-24 20:15:51 +000021
22Regex::Regex(const StringRef &regex, unsigned Flags) {
Torok Edwince0c81e2009-08-30 08:24:09 +000023 unsigned flags = 0;
Chris Lattner52870082009-09-24 21:47:32 +000024 preg = new llvm_regex();
Torok Edwince0c81e2009-08-30 08:24:09 +000025 preg->re_endp = regex.end();
26 if (Flags & IgnoreCase)
27 flags |= REG_ICASE;
Torok Edwince0c81e2009-08-30 08:24:09 +000028 if (Flags & Newline)
29 flags |= REG_NEWLINE;
30 error = llvm_regcomp(preg, regex.data(), flags|REG_EXTENDED|REG_PEND);
31}
32
Chris Lattner48ba9ff2009-09-24 20:15:51 +000033Regex::~Regex() {
Torok Edwince0c81e2009-08-30 08:24:09 +000034 llvm_regfree(preg);
35 delete preg;
36}
37
Chris Lattner81f46d92009-09-26 21:27:04 +000038bool Regex::isValid(std::string &Error) {
39 if (!error)
40 return true;
41
42 size_t len = llvm_regerror(error, preg, NULL, 0);
43
44 Error.resize(len);
45 llvm_regerror(error, preg, &Error[0], len);
46 return false;
47}
48
49/// getNumMatches - In a valid regex, return the number of parenthesized
50/// matches it contains.
51unsigned Regex::getNumMatches() const {
52 return preg->re_nsub;
53}
54
Chris Lattner48ba9ff2009-09-24 20:15:51 +000055bool Regex::match(const StringRef &String, SmallVectorImpl<StringRef> *Matches){
Torok Edwince0c81e2009-08-30 08:24:09 +000056 unsigned nmatch = Matches ? preg->re_nsub+1 : 0;
57
Torok Edwince0c81e2009-08-30 08:24:09 +000058 // pmatch needs to have at least one element.
Chris Lattner52870082009-09-24 21:47:32 +000059 SmallVector<llvm_regmatch_t, 8> pm;
Torok Edwince0c81e2009-08-30 08:24:09 +000060 pm.resize(nmatch > 0 ? nmatch : 1);
61 pm[0].rm_so = 0;
62 pm[0].rm_eo = String.size();
63
64 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND);
65
66 if (rc == REG_NOMATCH)
67 return false;
68 if (rc != 0) {
69 // regexec can fail due to invalid pattern or running out of memory.
70 error = rc;
71 return false;
72 }
73
74 // There was a match.
75
76 if (Matches) { // match position requested
Chris Lattner81f46d92009-09-26 21:27:04 +000077 Matches->clear();
78
Chris Lattner48ba9ff2009-09-24 20:15:51 +000079 for (unsigned i = 0; i != nmatch; ++i) {
Torok Edwince0c81e2009-08-30 08:24:09 +000080 if (pm[i].rm_so == -1) {
81 // this group didn't match
82 Matches->push_back(StringRef());
83 continue;
84 }
85 assert(pm[i].rm_eo > pm[i].rm_so);
86 Matches->push_back(StringRef(String.data()+pm[i].rm_so,
87 pm[i].rm_eo-pm[i].rm_so));
88 }
89 }
90
91 return true;
92}