File: mapregex.h

package info (click to toggle)
mapserver 4.10.0-5.1%2Betch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 12,264 kB
  • ctags: 15,165
  • sloc: ansic: 164,837; sh: 6,141; python: 5,770; java: 5,169; perl: 2,388; cpp: 1,603; makefile: 735; lex: 507; yacc: 317; tcl: 158; cs: 85; ruby: 53
file content (117 lines) | stat: -rw-r--r-- 3,724 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/******************************************************************************
 * $Id: mapregex.h,v 1.2 2005/05/27 15:00:12 dan Exp $
 *
 * Project:  MapServer
 * Purpose:  Regex wrapper
 * Author:   Bill Binko
 *
 ******************************************************************************
 * Copyright (c) 1996-2005 Regents of the University of Minnesota.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in 
 * all copies of this Software or works derived from this Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 ******************************************************************************
 *
 * $Log: mapregex.h,v $
 * Revision 1.2  2005/05/27 15:00:12  dan
 * New regex wrappers to solve issues with previous version (bug 1354)
 *
 */

#ifndef MAP_REGEX_H
#define MAP_REGEX_H

#ifdef __cplusplus
extern "C" {
#endif
  
  /* We want these to match the POSIX standard, so we need these*/
  /* === regex2.h === */
#ifdef WIN32
#define API_EXPORT(type)    __declspec(dllexport) type __stdcall
#else
#define API_EXPORT(type)    type
#endif
  
  typedef struct {
    void* sys_regex;
  } ms_regex_t;
  
  typedef int ms_regoff_t;
  typedef struct
  {
    ms_regoff_t rm_so;  /* Byte offset from string's start to substring's start.  */
    ms_regoff_t rm_eo;  /* Byte offset from string's start to substring's end.  */
  } ms_regmatch_t;
  
  API_EXPORT(int) ms_regcomp(ms_regex_t *, const char *, int);
  API_EXPORT(size_t) ms_regerror(int, const ms_regex_t *, char *, size_t);
  API_EXPORT(int) ms_regexec(const ms_regex_t *, const char *, size_t, ms_regmatch_t [], int);
  API_EXPORT(void) ms_regfree(ms_regex_t *);

#ifndef BUILDING_REGEX_PROXY

  /* === regcomp.c === */
#define	MS_REG_BASIC	0000
#define	MS_REG_EXTENDED	0001
#define	MS_REG_ICASE	0002
#define	MS_REG_NOSUB	0004
#define	MS_REG_NEWLINE	0010
#define	MS_REG_NOSPEC	0020
#define	MS_REG_PEND	0040
#define	MS_REG_DUMP	0200


/* === regerror.c === */
#define	MS_REG_OKAY	 0
#define	MS_REG_NOMATCH	 1
#define	MS_REG_BADPAT	 2
#define	MS_REG_ECOLLATE	 3
#define	MS_REG_ECTYPE	 4
#define	MS_REG_EESCAPE	 5
#define	MS_REG_ESUBREG	 6
#define	MS_REG_EBRACK	 7
#define	MS_REG_EPAREN	 8
#define	MS_REG_EBRACE	 9
#define	MS_REG_BADBR	10
#define	MS_REG_ERANGE	11
#define	MS_REG_ESPACE	12
#define	MS_REG_BADRPT	13
#define	MS_REG_EMPTY	14
#define	MS_REG_ASSERT	15
#define	MS_REG_INVARG	16
#define	MS_REG_ATOI	255	/* convert name to number (!) */
#define	MS_REG_ITOA	0400	/* convert number to name (!) */


/* === regexec.c === */
#define	MS_REG_NOTBOL	00001
#define	MS_REG_NOTEOL	00002
#define	MS_REG_STARTEND	00004
#define	MS_REG_TRACE	00400	/* tracing of execution */
#define	MS_REG_LARGE	01000	/* force large representation */
#define	MS_REG_BACKR	02000	/* force use of backref code */

#endif


#ifdef __cplusplus
}
#endif

#endif