X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gdb%2Fgdb_regex.h;h=58a0f22efd8a4a99c6603592d4ffd0358fbef300;hb=2ea1a07a0a6a15a55df28eeefddf71a4ac47e17d;hp=ccdf9c360b9b4903d7802feccebf366de2c772e5;hpb=7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6;p=external%2Fbinutils.git diff --git a/gdb/gdb_regex.h b/gdb/gdb_regex.h index ccdf9c3..58a0f22 100644 --- a/gdb/gdb_regex.h +++ b/gdb/gdb_regex.h @@ -1,6 +1,5 @@ /* Portable . - Copyright (C) 2000, 2001, 2003, 2007, 2008, 2009, 2010, 2011 - Free Software Foundation, Inc. + Copyright (C) 2000-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -28,4 +27,37 @@ # include #endif +/* A compiled regex. This is mainly a wrapper around regex_t. The + the constructor throws on regcomp error and the destructor is + responsible for calling regfree. The former means that it's not + possible to create an instance of compiled_regex that isn't + compiled, hence the name. */ +class compiled_regex +{ +public: + /* Compile a regexp and throw an exception on error, including + MESSAGE. REGEX and MESSAGE must not be NULL. */ + compiled_regex (const char *regex, int cflags, + const char *message) + ATTRIBUTE_NONNULL (2) ATTRIBUTE_NONNULL (4); + + ~compiled_regex (); + + DISABLE_COPY_AND_ASSIGN (compiled_regex); + + /* Wrapper around ::regexec. */ + int exec (const char *string, + size_t nmatch, regmatch_t pmatch[], + int eflags) const; + + /* Wrapper around ::re_search. (Not const because re_search's + regex_t parameter isn't either.) */ + int search (const char *string, int size, int startpos, + int range, struct re_registers *regs); + +private: + /* The compiled pattern. */ + regex_t m_pattern; +}; + #endif /* not GDB_REGEX_H */