home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 April / PCWorld_2002-04_cd.bin / Komunik / apache / apache_1.3.23-win32-x86-no_src.msi / Data.Cab / F164923_regex2.h < prev    next >
C/C++ Source or Header  |  1999-08-27  |  6KB  |  147 lines

  1. /*
  2.  * First, the stuff that ends up in the outside-world include file
  3.  = #ifndef API_EXPORT
  4.  = #ifdef WIN32
  5.  = #define API_EXPORT(type)    __declspec(dllexport) type __stdcall
  6.  = #else
  7.  = #define API_EXPORT(type)    type
  8.  = #endif
  9.  = #endif
  10.  =
  11.  = #if defined(MAC_OS) || defined(MAC_OS_X_SERVER)
  12.  = #define ap_private_extern __private_extern__
  13.  = #else
  14.  = #define ap_private_extern
  15.  = #endif
  16.  =
  17.  = typedef off_t regoff_t;
  18.  = typedef struct {
  19.  =     int re_magic;
  20.  =     size_t re_nsub;        // number of parenthesized subexpressions
  21.  =     const char *re_endp;    // end pointer for REG_PEND
  22.  =     struct re_guts *re_g;    // none of your business :-)
  23.  = } regex_t;
  24.  = typedef struct {
  25.  =     regoff_t rm_so;        // start of match
  26.  =     regoff_t rm_eo;        // end of match
  27.  = } regmatch_t;
  28.  */
  29. /*
  30.  * internals of regex_t
  31.  */
  32. #define    MAGIC1    ((('r'^0200)<<8) | 'e')
  33.  
  34. /*
  35.  * The internal representation is a *strip*, a sequence of
  36.  * operators ending with an endmarker.  (Some terminology etc. is a
  37.  * historical relic of earlier versions which used multiple strips.)
  38.  * Certain oddities in the representation are there to permit running
  39.  * the machinery backwards; in particular, any deviation from sequential
  40.  * flow must be marked at both its source and its destination.  Some
  41.  * fine points:
  42.  *
  43.  * - OPLUS_ and O_PLUS are *inside* the loop they create.
  44.  * - OQUEST_ and O_QUEST are *outside* the bypass they create.
  45.  * - OCH_ and O_CH are *outside* the multi-way branch they create, while
  46.  *   OOR1 and OOR2 are respectively the end and the beginning of one of
  47.  *   the branches.  Note that there is an implicit OOR2 following OCH_
  48.  *   and an implicit OOR1 preceding O_CH.
  49.  *
  50.  * In state representations, an operator's bit is on to signify a state
  51.  * immediately *preceding* "execution" of that operator.
  52.  */
  53. typedef unsigned long sop;    /* strip operator */
  54. typedef long sopno;
  55. #define    OPRMASK    0xf8000000
  56. #define    OPDMASK    0x07ffffff
  57. #define    OPSHIFT    ((unsigned)27)
  58. #define    OP(n)    ((n)&OPRMASK)
  59. #define    OPND(n)    ((n)&OPDMASK)
  60. #define    SOP(op, opnd)    ((op)|(opnd))
  61. /* operators               meaning    operand            */
  62. /*                        (back, fwd are offsets)    */
  63. #define    OEND    (1<<OPSHIFT)    /* endmarker    -            */
  64. #define    OCHAR    (2<<OPSHIFT)    /* character    unsigned char        */
  65. #define    OBOL    (3<<OPSHIFT)    /* left anchor    -            */
  66. #define    OEOL    (4<<OPSHIFT)    /* right anchor    -            */
  67. #define    OANY    (5<<OPSHIFT)    /* .        -            */
  68. #define    OANYOF    (6<<OPSHIFT)    /* [...]    set number        */
  69. #define    OBACK_    (7<<OPSHIFT)    /* begin \d    paren number        */
  70. #define    O_BACK    (8<<OPSHIFT)    /* end \d    paren number        */
  71. #define    OPLUS_    (9<<OPSHIFT)    /* + prefix    fwd to suffix        */
  72. #define    O_PLUS    (10<<OPSHIFT)    /* + suffix    back to prefix        */
  73. #define    OQUEST_    (11<<OPSHIFT)    /* ? prefix    fwd to suffix        */
  74. #define    O_QUEST    (12<<OPSHIFT)    /* ? suffix    back to prefix        */
  75. #define    OLPAREN    (13<<OPSHIFT)    /* (        fwd to )        */
  76. #define    ORPAREN    (14<<OPSHIFT)    /* )        back to (        */
  77. #define    OCH_    (15<<OPSHIFT)    /* begin choice    fwd to OOR2        */
  78. #define    OOR1    (16u<<OPSHIFT)    /* | pt. 1    back to OOR1 or OCH_    */
  79. #define    OOR2    (17u<<OPSHIFT)    /* | pt. 2    fwd to OOR2 or O_CH    */
  80. #define    O_CH    (18u<<OPSHIFT)    /* end choice    back to OOR1        */
  81. #define    OBOW    (19u<<OPSHIFT)    /* begin word    -            */
  82. #define    OEOW    (20u<<OPSHIFT)    /* end word    -            */
  83.  
  84. /*
  85.  * Structure for [] character-set representation.  Character sets are
  86.  * done as bit vectors, grouped 8 to a byte vector for compactness.
  87.  * The individual set therefore has both a pointer to the byte vector
  88.  * and a mask to pick out the relevant bit of each byte.  A hash code
  89.  * simplifies testing whether two sets could be identical.
  90.  *
  91.  * This will get trickier for multicharacter collating elements.  As
  92.  * preliminary hooks for dealing with such things, we also carry along
  93.  * a string of multi-character elements, and decide the size of the
  94.  * vectors at run time.
  95.  */
  96. typedef struct {
  97.     uch *ptr;        /* -> uch [csetsize] */
  98.     uch mask;        /* bit within array */
  99.     uch hash;        /* hash code */
  100.     size_t smultis;
  101.     char *multis;        /* -> char[smulti]  ab\0cd\0ef\0\0 */
  102. } cset;
  103. /* note that CHadd and CHsub are unsafe, and CHIN doesn't yield 0/1 */
  104. #define    CHadd(cs, c)    ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
  105. #define    CHsub(cs, c)    ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
  106. #define    CHIN(cs, c)    ((cs)->ptr[(uch)(c)] & (cs)->mask)
  107. #define    MCadd(p, cs, cp)    mcadd(p, cs, cp)    /* regcomp() internal fns */
  108.  
  109. /* stuff for character categories */
  110. typedef unsigned char cat_t;
  111.  
  112. /*
  113.  * main compiled-expression structure
  114.  */
  115. struct re_guts {
  116.     int magic;
  117. #        define    MAGIC2    ((('R'^0200)<<8)|'E')
  118.     sop *strip;        /* malloced area for strip */
  119.     int csetsize;        /* number of bits in a cset vector */
  120.     int ncsets;        /* number of csets in use */
  121.     cset *sets;        /* -> cset [ncsets] */
  122.     uch *setbits;        /* -> uch[csetsize][ncsets/CHAR_BIT] */
  123.     int cflags;        /* copy of regcomp() cflags argument */
  124.     sopno nstates;        /* = number of sops */
  125.     sopno firststate;    /* the initial OEND (normally 0) */
  126.     sopno laststate;    /* the final OEND */
  127.     int iflags;        /* internal flags */
  128. #        define    USEBOL    01    /* used ^ */
  129. #        define    USEEOL    02    /* used $ */
  130. #        define    BAD    04    /* something wrong */
  131.     int nbol;        /* number of ^ used */
  132.     int neol;        /* number of $ used */
  133.     int ncategories;    /* how many character categories */
  134.     cat_t *categories;    /* ->catspace[-CHAR_MIN] */
  135.     char *must;        /* match must contain this string */
  136.     int mlen;        /* length of must */
  137.     size_t nsub;        /* copy of re_nsub */
  138.     int backrefs;        /* does it use back references? */
  139.     sopno nplus;        /* how deep does it nest +s? */
  140.     /* catspace must be last */
  141.     cat_t catspace[1];    /* actually [NC] */
  142. };
  143.  
  144. /* misc utilities */
  145. #define    OUT    (CHAR_MAX+1)    /* a non-character value */
  146. #define    ISWORD(c)    (ap_isalnum(c) || (c) == '_')
  147.