Home | History | Annotate | Download | only in src
      1 /*************************************************
      2 *      Perl-Compatible Regular Expressions       *
      3 *************************************************/
      4 
      5 /* PCRE2 is a library of functions to support regular expressions whose syntax
      6 and semantics are as close as possible to those of the Perl 5 language.
      7 
      8                        Written by Philip Hazel
      9      Original API code Copyright (c) 1997-2012 University of Cambridge
     10          New API code Copyright (c) 2016 University of Cambridge
     11 
     12 -----------------------------------------------------------------------------
     13 Redistribution and use in source and binary forms, with or without
     14 modification, are permitted provided that the following conditions are met:
     15 
     16     * Redistributions of source code must retain the above copyright notice,
     17       this list of conditions and the following disclaimer.
     18 
     19     * Redistributions in binary form must reproduce the above copyright
     20       notice, this list of conditions and the following disclaimer in the
     21       documentation and/or other materials provided with the distribution.
     22 
     23     * Neither the name of the University of Cambridge nor the names of its
     24       contributors may be used to endorse or promote products derived from
     25       this software without specific prior written permission.
     26 
     27 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     28 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
     31 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37 POSSIBILITY OF SUCH DAMAGE.
     38 -----------------------------------------------------------------------------
     39 */
     40 
     41 
     42 /* Have to include stdlib.h in order to ensure that size_t is defined. */
     43 
     44 #include <stdlib.h>
     45 
     46 /* Allow for C++ users */
     47 
     48 #ifdef __cplusplus
     49 extern "C" {
     50 #endif
     51 
     52 /* Options, mostly defined by POSIX, but with some extras. */
     53 
     54 #define REG_ICASE     0x0001  /* Maps to PCRE2_CASELESS */
     55 #define REG_NEWLINE   0x0002  /* Maps to PCRE2_MULTILINE */
     56 #define REG_NOTBOL    0x0004  /* Maps to PCRE2_NOTBOL */
     57 #define REG_NOTEOL    0x0008  /* Maps to PCRE2_NOTEOL */
     58 #define REG_DOTALL    0x0010  /* NOT defined by POSIX; maps to PCRE2_DOTALL */
     59 #define REG_NOSUB     0x0020  /* Maps to PCRE2_NO_AUTO_CAPTURE */
     60 #define REG_UTF       0x0040  /* NOT defined by POSIX; maps to PCRE2_UTF */
     61 #define REG_STARTEND  0x0080  /* BSD feature: pass subject string by so,eo */
     62 #define REG_NOTEMPTY  0x0100  /* NOT defined by POSIX; maps to PCRE2_NOTEMPTY */
     63 #define REG_UNGREEDY  0x0200  /* NOT defined by POSIX; maps to PCRE2_UNGREEDY */
     64 #define REG_UCP       0x0400  /* NOT defined by POSIX; maps to PCRE2_UCP */
     65 
     66 /* This is not used by PCRE2, but by defining it we make it easier
     67 to slot PCRE2 into existing programs that make POSIX calls. */
     68 
     69 #define REG_EXTENDED  0
     70 
     71 /* Error values. Not all these are relevant or used by the wrapper. */
     72 
     73 enum {
     74   REG_ASSERT = 1,  /* internal error ? */
     75   REG_BADBR,       /* invalid repeat counts in {} */
     76   REG_BADPAT,      /* pattern error */
     77   REG_BADRPT,      /* ? * + invalid */
     78   REG_EBRACE,      /* unbalanced {} */
     79   REG_EBRACK,      /* unbalanced [] */
     80   REG_ECOLLATE,    /* collation error - not relevant */
     81   REG_ECTYPE,      /* bad class */
     82   REG_EESCAPE,     /* bad escape sequence */
     83   REG_EMPTY,       /* empty expression */
     84   REG_EPAREN,      /* unbalanced () */
     85   REG_ERANGE,      /* bad range inside [] */
     86   REG_ESIZE,       /* expression too big */
     87   REG_ESPACE,      /* failed to get memory */
     88   REG_ESUBREG,     /* bad back reference */
     89   REG_INVARG,      /* bad argument */
     90   REG_NOMATCH      /* match failed */
     91 };
     92 
     93 
     94 /* The structure representing a compiled regular expression. */
     95 
     96 typedef struct {
     97   void *re_pcre2_code;
     98   void *re_match_data;
     99   size_t re_nsub;
    100   size_t re_erroffset;
    101   int re_cflags;
    102 } regex_t;
    103 
    104 /* The structure in which a captured offset is returned. */
    105 
    106 typedef int regoff_t;
    107 
    108 typedef struct {
    109   regoff_t rm_so;
    110   regoff_t rm_eo;
    111 } regmatch_t;
    112 
    113 /* When an application links to a PCRE2 DLL in Windows, the symbols that are
    114 imported have to be identified as such. When building PCRE2, the appropriate
    115 export settings are needed, and are set in pcre2posix.c before including this
    116 file. */
    117 
    118 #if defined(_WIN32) && !defined(PCRE2_STATIC) && !defined(PCRE2POSIX_EXP_DECL)
    119 #  define PCRE2POSIX_EXP_DECL  extern __declspec(dllimport)
    120 #  define PCRE2POSIX_EXP_DEFN  __declspec(dllimport)
    121 #endif
    122 
    123 /* By default, we use the standard "extern" declarations. */
    124 
    125 #ifndef PCRE2POSIX_EXP_DECL
    126 #  ifdef __cplusplus
    127 #    define PCRE2POSIX_EXP_DECL  extern "C"
    128 #    define PCRE2POSIX_EXP_DEFN  extern "C"
    129 #  else
    130 #    define PCRE2POSIX_EXP_DECL  extern
    131 #    define PCRE2POSIX_EXP_DEFN  extern
    132 #  endif
    133 #endif
    134 
    135 /* The functions */
    136 
    137 PCRE2POSIX_EXP_DECL int regcomp(regex_t *, const char *, int);
    138 PCRE2POSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,
    139                      regmatch_t *, int);
    140 PCRE2POSIX_EXP_DECL size_t regerror(int, const regex_t *, char *, size_t);
    141 PCRE2POSIX_EXP_DECL void regfree(regex_t *);
    142 
    143 #ifdef __cplusplus
    144 }   /* extern "C" */
    145 #endif
    146 
    147 /* End of pcre2posix.h */
    148