Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * regexp.c: generic and extensible Regular Expression engine |
| 3 | * |
| 4 | * Basically designed with the purpose of compiling regexps for |
| 5 | * the variety of validation/shemas mechanisms now available in |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6 | * XML related specifications these include: |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 7 | * - XML-1.0 DTD validation |
| 8 | * - XML Schemas structure part 1 |
| 9 | * - XML Schemas Datatypes part 2 especially Appendix F |
| 10 | * - RELAX-NG/TREX i.e. the counter proposal |
| 11 | * |
| 12 | * See Copyright for the status of this software. |
| 13 | * |
| 14 | * Daniel Veillard <veillard@redhat.com> |
| 15 | */ |
| 16 | |
| 17 | #define IN_LIBXML |
| 18 | #include "libxml.h" |
| 19 | |
| 20 | #ifdef LIBXML_REGEXP_ENABLED |
| 21 | |
Daniel Veillard | cee2b3a | 2005-01-25 00:22:52 +0000 | [diff] [blame] | 22 | /* #define DEBUG_ERR */ |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 23 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 24 | #include <stdio.h> |
| 25 | #include <string.h> |
Daniel Veillard | ebe48c6 | 2003-12-03 12:12:27 +0000 | [diff] [blame] | 26 | #ifdef HAVE_LIMITS_H |
| 27 | #include <limits.h> |
| 28 | #endif |
| 29 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 30 | #include <libxml/tree.h> |
| 31 | #include <libxml/parserInternals.h> |
| 32 | #include <libxml/xmlregexp.h> |
| 33 | #include <libxml/xmlautomata.h> |
| 34 | #include <libxml/xmlunicode.h> |
| 35 | |
Daniel Veillard | ebe48c6 | 2003-12-03 12:12:27 +0000 | [diff] [blame] | 36 | #ifndef INT_MAX |
| 37 | #define INT_MAX 123456789 /* easy to flag and big enough for our needs */ |
| 38 | #endif |
| 39 | |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 40 | /* #define DEBUG_REGEXP_GRAPH */ |
Daniel Veillard | 1075228 | 2005-08-08 13:05:13 +0000 | [diff] [blame] | 41 | /* #define DEBUG_REGEXP_EXEC */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 42 | /* #define DEBUG_PUSH */ |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 43 | /* #define DEBUG_COMPACTION */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 44 | |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 45 | #define MAX_PUSH 10000000 |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 46 | |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 47 | #define ERROR(str) \ |
| 48 | ctxt->error = XML_REGEXP_COMPILE_ERROR; \ |
| 49 | xmlRegexpErrCompile(ctxt, str); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 50 | #define NEXT ctxt->cur++ |
| 51 | #define CUR (*(ctxt->cur)) |
| 52 | #define NXT(index) (ctxt->cur[index]) |
| 53 | |
| 54 | #define CUR_SCHAR(s, l) xmlStringCurrentChar(NULL, s, &l) |
| 55 | #define NEXTL(l) ctxt->cur += l; |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 56 | #define XML_REG_STRING_SEPARATOR '|' |
William M. Brack | a9cbf28 | 2007-03-21 13:16:33 +0000 | [diff] [blame] | 57 | /* |
| 58 | * Need PREV to check on a '-' within a Character Group. May only be used |
| 59 | * when it's guaranteed that cur is not at the beginning of ctxt->string! |
| 60 | */ |
| 61 | #define PREV (ctxt->cur[-1]) |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 62 | |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 63 | /** |
| 64 | * TODO: |
| 65 | * |
| 66 | * macro to flag unimplemented blocks |
| 67 | */ |
| 68 | #define TODO \ |
| 69 | xmlGenericError(xmlGenericErrorContext, \ |
| 70 | "Unimplemented block at %s:%d\n", \ |
| 71 | __FILE__, __LINE__); |
| 72 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 73 | /************************************************************************ |
| 74 | * * |
| 75 | * Datatypes and structures * |
| 76 | * * |
| 77 | ************************************************************************/ |
| 78 | |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 79 | /* |
| 80 | * Note: the order of the enums below is significant, do not shuffle |
| 81 | */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 82 | typedef enum { |
| 83 | XML_REGEXP_EPSILON = 1, |
| 84 | XML_REGEXP_CHARVAL, |
| 85 | XML_REGEXP_RANGES, |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 86 | XML_REGEXP_SUBREG, /* used for () sub regexps */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 87 | XML_REGEXP_STRING, |
| 88 | XML_REGEXP_ANYCHAR, /* . */ |
| 89 | XML_REGEXP_ANYSPACE, /* \s */ |
| 90 | XML_REGEXP_NOTSPACE, /* \S */ |
| 91 | XML_REGEXP_INITNAME, /* \l */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 92 | XML_REGEXP_NOTINITNAME, /* \L */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 93 | XML_REGEXP_NAMECHAR, /* \c */ |
| 94 | XML_REGEXP_NOTNAMECHAR, /* \C */ |
| 95 | XML_REGEXP_DECIMAL, /* \d */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 96 | XML_REGEXP_NOTDECIMAL, /* \D */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 97 | XML_REGEXP_REALCHAR, /* \w */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 98 | XML_REGEXP_NOTREALCHAR, /* \W */ |
| 99 | XML_REGEXP_LETTER = 100, |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 100 | XML_REGEXP_LETTER_UPPERCASE, |
| 101 | XML_REGEXP_LETTER_LOWERCASE, |
| 102 | XML_REGEXP_LETTER_TITLECASE, |
| 103 | XML_REGEXP_LETTER_MODIFIER, |
| 104 | XML_REGEXP_LETTER_OTHERS, |
| 105 | XML_REGEXP_MARK, |
| 106 | XML_REGEXP_MARK_NONSPACING, |
| 107 | XML_REGEXP_MARK_SPACECOMBINING, |
| 108 | XML_REGEXP_MARK_ENCLOSING, |
| 109 | XML_REGEXP_NUMBER, |
| 110 | XML_REGEXP_NUMBER_DECIMAL, |
| 111 | XML_REGEXP_NUMBER_LETTER, |
| 112 | XML_REGEXP_NUMBER_OTHERS, |
| 113 | XML_REGEXP_PUNCT, |
| 114 | XML_REGEXP_PUNCT_CONNECTOR, |
| 115 | XML_REGEXP_PUNCT_DASH, |
| 116 | XML_REGEXP_PUNCT_OPEN, |
| 117 | XML_REGEXP_PUNCT_CLOSE, |
| 118 | XML_REGEXP_PUNCT_INITQUOTE, |
| 119 | XML_REGEXP_PUNCT_FINQUOTE, |
| 120 | XML_REGEXP_PUNCT_OTHERS, |
| 121 | XML_REGEXP_SEPAR, |
| 122 | XML_REGEXP_SEPAR_SPACE, |
| 123 | XML_REGEXP_SEPAR_LINE, |
| 124 | XML_REGEXP_SEPAR_PARA, |
| 125 | XML_REGEXP_SYMBOL, |
| 126 | XML_REGEXP_SYMBOL_MATH, |
| 127 | XML_REGEXP_SYMBOL_CURRENCY, |
| 128 | XML_REGEXP_SYMBOL_MODIFIER, |
| 129 | XML_REGEXP_SYMBOL_OTHERS, |
| 130 | XML_REGEXP_OTHER, |
| 131 | XML_REGEXP_OTHER_CONTROL, |
| 132 | XML_REGEXP_OTHER_FORMAT, |
| 133 | XML_REGEXP_OTHER_PRIVATE, |
| 134 | XML_REGEXP_OTHER_NA, |
| 135 | XML_REGEXP_BLOCK_NAME |
| 136 | } xmlRegAtomType; |
| 137 | |
| 138 | typedef enum { |
| 139 | XML_REGEXP_QUANT_EPSILON = 1, |
| 140 | XML_REGEXP_QUANT_ONCE, |
| 141 | XML_REGEXP_QUANT_OPT, |
| 142 | XML_REGEXP_QUANT_MULT, |
| 143 | XML_REGEXP_QUANT_PLUS, |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 144 | XML_REGEXP_QUANT_ONCEONLY, |
| 145 | XML_REGEXP_QUANT_ALL, |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 146 | XML_REGEXP_QUANT_RANGE |
| 147 | } xmlRegQuantType; |
| 148 | |
| 149 | typedef enum { |
| 150 | XML_REGEXP_START_STATE = 1, |
| 151 | XML_REGEXP_FINAL_STATE, |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 152 | XML_REGEXP_TRANS_STATE, |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 153 | XML_REGEXP_SINK_STATE, |
| 154 | XML_REGEXP_UNREACH_STATE |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 155 | } xmlRegStateType; |
| 156 | |
| 157 | typedef enum { |
| 158 | XML_REGEXP_MARK_NORMAL = 0, |
| 159 | XML_REGEXP_MARK_START, |
| 160 | XML_REGEXP_MARK_VISITED |
| 161 | } xmlRegMarkedType; |
| 162 | |
| 163 | typedef struct _xmlRegRange xmlRegRange; |
| 164 | typedef xmlRegRange *xmlRegRangePtr; |
| 165 | |
| 166 | struct _xmlRegRange { |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 167 | int neg; /* 0 normal, 1 not, 2 exclude */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 168 | xmlRegAtomType type; |
| 169 | int start; |
| 170 | int end; |
| 171 | xmlChar *blockName; |
| 172 | }; |
| 173 | |
| 174 | typedef struct _xmlRegAtom xmlRegAtom; |
| 175 | typedef xmlRegAtom *xmlRegAtomPtr; |
| 176 | |
| 177 | typedef struct _xmlAutomataState xmlRegState; |
| 178 | typedef xmlRegState *xmlRegStatePtr; |
| 179 | |
| 180 | struct _xmlRegAtom { |
| 181 | int no; |
| 182 | xmlRegAtomType type; |
| 183 | xmlRegQuantType quant; |
| 184 | int min; |
| 185 | int max; |
| 186 | |
| 187 | void *valuep; |
Daniel Veillard | a646cfd | 2002-09-17 21:50:03 +0000 | [diff] [blame] | 188 | void *valuep2; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 189 | int neg; |
| 190 | int codepoint; |
| 191 | xmlRegStatePtr start; |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 192 | xmlRegStatePtr start0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 193 | xmlRegStatePtr stop; |
| 194 | int maxRanges; |
| 195 | int nbRanges; |
| 196 | xmlRegRangePtr *ranges; |
| 197 | void *data; |
| 198 | }; |
| 199 | |
| 200 | typedef struct _xmlRegCounter xmlRegCounter; |
| 201 | typedef xmlRegCounter *xmlRegCounterPtr; |
| 202 | |
| 203 | struct _xmlRegCounter { |
| 204 | int min; |
| 205 | int max; |
| 206 | }; |
| 207 | |
| 208 | typedef struct _xmlRegTrans xmlRegTrans; |
| 209 | typedef xmlRegTrans *xmlRegTransPtr; |
| 210 | |
| 211 | struct _xmlRegTrans { |
| 212 | xmlRegAtomPtr atom; |
| 213 | int to; |
| 214 | int counter; |
| 215 | int count; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 216 | int nd; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | struct _xmlAutomataState { |
| 220 | xmlRegStateType type; |
| 221 | xmlRegMarkedType mark; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 222 | xmlRegMarkedType reached; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 223 | int no; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 224 | int maxTrans; |
| 225 | int nbTrans; |
| 226 | xmlRegTrans *trans; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 227 | /* knowing states ponting to us can speed things up */ |
| 228 | int maxTransTo; |
| 229 | int nbTransTo; |
| 230 | int *transTo; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 231 | }; |
| 232 | |
| 233 | typedef struct _xmlAutomata xmlRegParserCtxt; |
| 234 | typedef xmlRegParserCtxt *xmlRegParserCtxtPtr; |
| 235 | |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 236 | #define AM_AUTOMATA_RNG 1 |
| 237 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 238 | struct _xmlAutomata { |
| 239 | xmlChar *string; |
| 240 | xmlChar *cur; |
| 241 | |
| 242 | int error; |
| 243 | int neg; |
| 244 | |
| 245 | xmlRegStatePtr start; |
| 246 | xmlRegStatePtr end; |
| 247 | xmlRegStatePtr state; |
| 248 | |
| 249 | xmlRegAtomPtr atom; |
| 250 | |
| 251 | int maxAtoms; |
| 252 | int nbAtoms; |
| 253 | xmlRegAtomPtr *atoms; |
| 254 | |
| 255 | int maxStates; |
| 256 | int nbStates; |
| 257 | xmlRegStatePtr *states; |
| 258 | |
| 259 | int maxCounters; |
| 260 | int nbCounters; |
| 261 | xmlRegCounter *counters; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 262 | |
| 263 | int determinist; |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 264 | int negs; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 265 | int flags; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | struct _xmlRegexp { |
| 269 | xmlChar *string; |
| 270 | int nbStates; |
| 271 | xmlRegStatePtr *states; |
| 272 | int nbAtoms; |
| 273 | xmlRegAtomPtr *atoms; |
| 274 | int nbCounters; |
| 275 | xmlRegCounter *counters; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 276 | int determinist; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 277 | int flags; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 278 | /* |
| 279 | * That's the compact form for determinists automatas |
| 280 | */ |
| 281 | int nbstates; |
| 282 | int *compact; |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 283 | void **transdata; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 284 | int nbstrings; |
| 285 | xmlChar **stringMap; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | typedef struct _xmlRegExecRollback xmlRegExecRollback; |
| 289 | typedef xmlRegExecRollback *xmlRegExecRollbackPtr; |
| 290 | |
| 291 | struct _xmlRegExecRollback { |
| 292 | xmlRegStatePtr state;/* the current state */ |
| 293 | int index; /* the index in the input stack */ |
| 294 | int nextbranch; /* the next transition to explore in that state */ |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 295 | int *counts; /* save the automata state if it has some */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 296 | }; |
| 297 | |
| 298 | typedef struct _xmlRegInputToken xmlRegInputToken; |
| 299 | typedef xmlRegInputToken *xmlRegInputTokenPtr; |
| 300 | |
| 301 | struct _xmlRegInputToken { |
| 302 | xmlChar *value; |
| 303 | void *data; |
| 304 | }; |
| 305 | |
| 306 | struct _xmlRegExecCtxt { |
| 307 | int status; /* execution status != 0 indicate an error */ |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 308 | int determinist; /* did we find an indeterministic behaviour */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 309 | xmlRegexpPtr comp; /* the compiled regexp */ |
| 310 | xmlRegExecCallbacks callback; |
| 311 | void *data; |
| 312 | |
| 313 | xmlRegStatePtr state;/* the current state */ |
| 314 | int transno; /* the current transition on that state */ |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 315 | int transcount; /* the number of chars in char counted transitions */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 316 | |
| 317 | /* |
| 318 | * A stack of rollback states |
| 319 | */ |
| 320 | int maxRollbacks; |
| 321 | int nbRollbacks; |
| 322 | xmlRegExecRollback *rollbacks; |
| 323 | |
| 324 | /* |
| 325 | * The state of the automata if any |
| 326 | */ |
| 327 | int *counts; |
| 328 | |
| 329 | /* |
| 330 | * The input stack |
| 331 | */ |
| 332 | int inputStackMax; |
| 333 | int inputStackNr; |
| 334 | int index; |
| 335 | int *charStack; |
| 336 | const xmlChar *inputString; /* when operating on characters */ |
| 337 | xmlRegInputTokenPtr inputStack;/* when operating on strings */ |
| 338 | |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 339 | /* |
| 340 | * error handling |
| 341 | */ |
| 342 | int errStateNo; /* the error state number */ |
| 343 | xmlRegStatePtr errState; /* the error state */ |
| 344 | xmlChar *errString; /* the string raising the error */ |
| 345 | int *errCounts; /* counters at the error state */ |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 346 | int nbPush; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 347 | }; |
| 348 | |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 349 | #define REGEXP_ALL_COUNTER 0x123456 |
| 350 | #define REGEXP_ALL_LAX_COUNTER 0x123457 |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 351 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 352 | static void xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 353 | static void xmlRegFreeState(xmlRegStatePtr state); |
| 354 | static void xmlRegFreeAtom(xmlRegAtomPtr atom); |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 355 | static int xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 356 | static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint); |
| 357 | static int xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, |
| 358 | int neg, int start, int end, const xmlChar *blockName); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 359 | |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 360 | void xmlAutomataSetFlags(xmlAutomataPtr am, int flags); |
| 361 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 362 | /************************************************************************ |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 363 | * * |
| 364 | * Regexp memory error handler * |
| 365 | * * |
| 366 | ************************************************************************/ |
| 367 | /** |
| 368 | * xmlRegexpErrMemory: |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 369 | * @extra: extra information |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 370 | * |
| 371 | * Handle an out of memory condition |
| 372 | */ |
| 373 | static void |
| 374 | xmlRegexpErrMemory(xmlRegParserCtxtPtr ctxt, const char *extra) |
| 375 | { |
| 376 | const char *regexp = NULL; |
| 377 | if (ctxt != NULL) { |
| 378 | regexp = (const char *) ctxt->string; |
| 379 | ctxt->error = XML_ERR_NO_MEMORY; |
| 380 | } |
Daniel Veillard | 659e71e | 2003-10-10 14:10:40 +0000 | [diff] [blame] | 381 | __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_REGEXP, |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 382 | XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra, |
| 383 | regexp, NULL, 0, 0, |
| 384 | "Memory allocation failed : %s\n", extra); |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * xmlRegexpErrCompile: |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 389 | * @extra: extra information |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 390 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 391 | * Handle a compilation failure |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 392 | */ |
| 393 | static void |
| 394 | xmlRegexpErrCompile(xmlRegParserCtxtPtr ctxt, const char *extra) |
| 395 | { |
| 396 | const char *regexp = NULL; |
| 397 | int idx = 0; |
| 398 | |
| 399 | if (ctxt != NULL) { |
| 400 | regexp = (const char *) ctxt->string; |
| 401 | idx = ctxt->cur - ctxt->string; |
| 402 | ctxt->error = XML_REGEXP_COMPILE_ERROR; |
| 403 | } |
Daniel Veillard | 659e71e | 2003-10-10 14:10:40 +0000 | [diff] [blame] | 404 | __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_REGEXP, |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 405 | XML_REGEXP_COMPILE_ERROR, XML_ERR_FATAL, NULL, 0, extra, |
| 406 | regexp, NULL, idx, 0, |
| 407 | "failed to compile: %s\n", extra); |
| 408 | } |
| 409 | |
| 410 | /************************************************************************ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 411 | * * |
| 412 | * Allocation/Deallocation * |
| 413 | * * |
| 414 | ************************************************************************/ |
| 415 | |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 416 | static int xmlFAComputesDeterminism(xmlRegParserCtxtPtr ctxt); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 417 | /** |
| 418 | * xmlRegEpxFromParse: |
| 419 | * @ctxt: the parser context used to build it |
| 420 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 421 | * Allocate a new regexp and fill it with the result from the parser |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 422 | * |
| 423 | * Returns the new regexp or NULL in case of error |
| 424 | */ |
| 425 | static xmlRegexpPtr |
| 426 | xmlRegEpxFromParse(xmlRegParserCtxtPtr ctxt) { |
| 427 | xmlRegexpPtr ret; |
| 428 | |
| 429 | ret = (xmlRegexpPtr) xmlMalloc(sizeof(xmlRegexp)); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 430 | if (ret == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 431 | xmlRegexpErrMemory(ctxt, "compiling regexp"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 432 | return(NULL); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 433 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 434 | memset(ret, 0, sizeof(xmlRegexp)); |
| 435 | ret->string = ctxt->string; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 436 | ret->nbStates = ctxt->nbStates; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 437 | ret->states = ctxt->states; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 438 | ret->nbAtoms = ctxt->nbAtoms; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 439 | ret->atoms = ctxt->atoms; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 440 | ret->nbCounters = ctxt->nbCounters; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 441 | ret->counters = ctxt->counters; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 442 | ret->determinist = ctxt->determinist; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 443 | ret->flags = ctxt->flags; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 444 | if (ret->determinist == -1) { |
| 445 | xmlRegexpIsDeterminist(ret); |
| 446 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 447 | |
| 448 | if ((ret->determinist != 0) && |
| 449 | (ret->nbCounters == 0) && |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 450 | (ctxt->negs == 0) && |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 451 | (ret->atoms != NULL) && |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 452 | (ret->atoms[0] != NULL) && |
| 453 | (ret->atoms[0]->type == XML_REGEXP_STRING)) { |
| 454 | int i, j, nbstates = 0, nbatoms = 0; |
| 455 | int *stateRemap; |
| 456 | int *stringRemap; |
| 457 | int *transitions; |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 458 | void **transdata; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 459 | xmlChar **stringMap; |
| 460 | xmlChar *value; |
| 461 | |
| 462 | /* |
| 463 | * Switch to a compact representation |
| 464 | * 1/ counting the effective number of states left |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 465 | * 2/ counting the unique number of atoms, and check that |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 466 | * they are all of the string type |
| 467 | * 3/ build a table state x atom for the transitions |
| 468 | */ |
| 469 | |
| 470 | stateRemap = xmlMalloc(ret->nbStates * sizeof(int)); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 471 | if (stateRemap == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 472 | xmlRegexpErrMemory(ctxt, "compiling regexp"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 473 | xmlFree(ret); |
| 474 | return(NULL); |
| 475 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 476 | for (i = 0;i < ret->nbStates;i++) { |
| 477 | if (ret->states[i] != NULL) { |
| 478 | stateRemap[i] = nbstates; |
| 479 | nbstates++; |
| 480 | } else { |
| 481 | stateRemap[i] = -1; |
| 482 | } |
| 483 | } |
| 484 | #ifdef DEBUG_COMPACTION |
| 485 | printf("Final: %d states\n", nbstates); |
| 486 | #endif |
| 487 | stringMap = xmlMalloc(ret->nbAtoms * sizeof(char *)); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 488 | if (stringMap == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 489 | xmlRegexpErrMemory(ctxt, "compiling regexp"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 490 | xmlFree(stateRemap); |
| 491 | xmlFree(ret); |
| 492 | return(NULL); |
| 493 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 494 | stringRemap = xmlMalloc(ret->nbAtoms * sizeof(int)); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 495 | if (stringRemap == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 496 | xmlRegexpErrMemory(ctxt, "compiling regexp"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 497 | xmlFree(stringMap); |
| 498 | xmlFree(stateRemap); |
| 499 | xmlFree(ret); |
| 500 | return(NULL); |
| 501 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 502 | for (i = 0;i < ret->nbAtoms;i++) { |
| 503 | if ((ret->atoms[i]->type == XML_REGEXP_STRING) && |
| 504 | (ret->atoms[i]->quant == XML_REGEXP_QUANT_ONCE)) { |
| 505 | value = ret->atoms[i]->valuep; |
| 506 | for (j = 0;j < nbatoms;j++) { |
| 507 | if (xmlStrEqual(stringMap[j], value)) { |
| 508 | stringRemap[i] = j; |
| 509 | break; |
| 510 | } |
| 511 | } |
| 512 | if (j >= nbatoms) { |
| 513 | stringRemap[i] = nbatoms; |
| 514 | stringMap[nbatoms] = xmlStrdup(value); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 515 | if (stringMap[nbatoms] == NULL) { |
| 516 | for (i = 0;i < nbatoms;i++) |
| 517 | xmlFree(stringMap[i]); |
| 518 | xmlFree(stringRemap); |
| 519 | xmlFree(stringMap); |
| 520 | xmlFree(stateRemap); |
| 521 | xmlFree(ret); |
| 522 | return(NULL); |
| 523 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 524 | nbatoms++; |
| 525 | } |
| 526 | } else { |
| 527 | xmlFree(stateRemap); |
| 528 | xmlFree(stringRemap); |
| 529 | for (i = 0;i < nbatoms;i++) |
| 530 | xmlFree(stringMap[i]); |
| 531 | xmlFree(stringMap); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 532 | xmlFree(ret); |
| 533 | return(NULL); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 534 | } |
| 535 | } |
| 536 | #ifdef DEBUG_COMPACTION |
| 537 | printf("Final: %d atoms\n", nbatoms); |
| 538 | #endif |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 539 | transitions = (int *) xmlMalloc((nbstates + 1) * |
| 540 | (nbatoms + 1) * sizeof(int)); |
| 541 | if (transitions == NULL) { |
| 542 | xmlFree(stateRemap); |
| 543 | xmlFree(stringRemap); |
| 544 | xmlFree(stringMap); |
| 545 | xmlFree(ret); |
| 546 | return(NULL); |
| 547 | } |
| 548 | memset(transitions, 0, (nbstates + 1) * (nbatoms + 1) * sizeof(int)); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 549 | |
| 550 | /* |
| 551 | * Allocate the transition table. The first entry for each |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 552 | * state corresponds to the state type. |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 553 | */ |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 554 | transdata = NULL; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 555 | |
| 556 | for (i = 0;i < ret->nbStates;i++) { |
| 557 | int stateno, atomno, targetno, prev; |
| 558 | xmlRegStatePtr state; |
| 559 | xmlRegTransPtr trans; |
| 560 | |
| 561 | stateno = stateRemap[i]; |
| 562 | if (stateno == -1) |
| 563 | continue; |
| 564 | state = ret->states[i]; |
| 565 | |
| 566 | transitions[stateno * (nbatoms + 1)] = state->type; |
| 567 | |
| 568 | for (j = 0;j < state->nbTrans;j++) { |
| 569 | trans = &(state->trans[j]); |
| 570 | if ((trans->to == -1) || (trans->atom == NULL)) |
| 571 | continue; |
| 572 | atomno = stringRemap[trans->atom->no]; |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 573 | if ((trans->atom->data != NULL) && (transdata == NULL)) { |
| 574 | transdata = (void **) xmlMalloc(nbstates * nbatoms * |
| 575 | sizeof(void *)); |
| 576 | if (transdata != NULL) |
| 577 | memset(transdata, 0, |
| 578 | nbstates * nbatoms * sizeof(void *)); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 579 | else { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 580 | xmlRegexpErrMemory(ctxt, "compiling regexp"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 581 | break; |
| 582 | } |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 583 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 584 | targetno = stateRemap[trans->to]; |
| 585 | /* |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 586 | * if the same atom can generate transitions to 2 different |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 587 | * states then it means the automata is not determinist and |
| 588 | * the compact form can't be used ! |
| 589 | */ |
| 590 | prev = transitions[stateno * (nbatoms + 1) + atomno + 1]; |
| 591 | if (prev != 0) { |
| 592 | if (prev != targetno + 1) { |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 593 | ret->determinist = 0; |
| 594 | #ifdef DEBUG_COMPACTION |
| 595 | printf("Indet: state %d trans %d, atom %d to %d : %d to %d\n", |
| 596 | i, j, trans->atom->no, trans->to, atomno, targetno); |
| 597 | printf(" previous to is %d\n", prev); |
| 598 | #endif |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 599 | if (transdata != NULL) |
| 600 | xmlFree(transdata); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 601 | xmlFree(transitions); |
| 602 | xmlFree(stateRemap); |
| 603 | xmlFree(stringRemap); |
| 604 | for (i = 0;i < nbatoms;i++) |
| 605 | xmlFree(stringMap[i]); |
| 606 | xmlFree(stringMap); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 607 | goto not_determ; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 608 | } |
| 609 | } else { |
| 610 | #if 0 |
| 611 | printf("State %d trans %d: atom %d to %d : %d to %d\n", |
| 612 | i, j, trans->atom->no, trans->to, atomno, targetno); |
| 613 | #endif |
| 614 | transitions[stateno * (nbatoms + 1) + atomno + 1] = |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 615 | targetno + 1; /* to avoid 0 */ |
| 616 | if (transdata != NULL) |
| 617 | transdata[stateno * nbatoms + atomno] = |
| 618 | trans->atom->data; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 619 | } |
| 620 | } |
| 621 | } |
| 622 | ret->determinist = 1; |
| 623 | #ifdef DEBUG_COMPACTION |
| 624 | /* |
| 625 | * Debug |
| 626 | */ |
| 627 | for (i = 0;i < nbstates;i++) { |
| 628 | for (j = 0;j < nbatoms + 1;j++) { |
| 629 | printf("%02d ", transitions[i * (nbatoms + 1) + j]); |
| 630 | } |
| 631 | printf("\n"); |
| 632 | } |
| 633 | printf("\n"); |
| 634 | #endif |
| 635 | /* |
| 636 | * Cleanup of the old data |
| 637 | */ |
| 638 | if (ret->states != NULL) { |
| 639 | for (i = 0;i < ret->nbStates;i++) |
| 640 | xmlRegFreeState(ret->states[i]); |
| 641 | xmlFree(ret->states); |
| 642 | } |
| 643 | ret->states = NULL; |
| 644 | ret->nbStates = 0; |
| 645 | if (ret->atoms != NULL) { |
| 646 | for (i = 0;i < ret->nbAtoms;i++) |
| 647 | xmlRegFreeAtom(ret->atoms[i]); |
| 648 | xmlFree(ret->atoms); |
| 649 | } |
| 650 | ret->atoms = NULL; |
| 651 | ret->nbAtoms = 0; |
| 652 | |
| 653 | ret->compact = transitions; |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 654 | ret->transdata = transdata; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 655 | ret->stringMap = stringMap; |
| 656 | ret->nbstrings = nbatoms; |
| 657 | ret->nbstates = nbstates; |
| 658 | xmlFree(stateRemap); |
| 659 | xmlFree(stringRemap); |
| 660 | } |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 661 | not_determ: |
| 662 | ctxt->string = NULL; |
| 663 | ctxt->nbStates = 0; |
| 664 | ctxt->states = NULL; |
| 665 | ctxt->nbAtoms = 0; |
| 666 | ctxt->atoms = NULL; |
| 667 | ctxt->nbCounters = 0; |
| 668 | ctxt->counters = NULL; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 669 | return(ret); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * xmlRegNewParserCtxt: |
| 674 | * @string: the string to parse |
| 675 | * |
| 676 | * Allocate a new regexp parser context |
| 677 | * |
| 678 | * Returns the new context or NULL in case of error |
| 679 | */ |
| 680 | static xmlRegParserCtxtPtr |
| 681 | xmlRegNewParserCtxt(const xmlChar *string) { |
| 682 | xmlRegParserCtxtPtr ret; |
| 683 | |
| 684 | ret = (xmlRegParserCtxtPtr) xmlMalloc(sizeof(xmlRegParserCtxt)); |
| 685 | if (ret == NULL) |
| 686 | return(NULL); |
| 687 | memset(ret, 0, sizeof(xmlRegParserCtxt)); |
| 688 | if (string != NULL) |
| 689 | ret->string = xmlStrdup(string); |
| 690 | ret->cur = ret->string; |
| 691 | ret->neg = 0; |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 692 | ret->negs = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 693 | ret->error = 0; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 694 | ret->determinist = -1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 695 | return(ret); |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * xmlRegNewRange: |
| 700 | * @ctxt: the regexp parser context |
| 701 | * @neg: is that negative |
| 702 | * @type: the type of range |
| 703 | * @start: the start codepoint |
| 704 | * @end: the end codepoint |
| 705 | * |
| 706 | * Allocate a new regexp range |
| 707 | * |
| 708 | * Returns the new range or NULL in case of error |
| 709 | */ |
| 710 | static xmlRegRangePtr |
| 711 | xmlRegNewRange(xmlRegParserCtxtPtr ctxt, |
| 712 | int neg, xmlRegAtomType type, int start, int end) { |
| 713 | xmlRegRangePtr ret; |
| 714 | |
| 715 | ret = (xmlRegRangePtr) xmlMalloc(sizeof(xmlRegRange)); |
| 716 | if (ret == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 717 | xmlRegexpErrMemory(ctxt, "allocating range"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 718 | return(NULL); |
| 719 | } |
| 720 | ret->neg = neg; |
| 721 | ret->type = type; |
| 722 | ret->start = start; |
| 723 | ret->end = end; |
| 724 | return(ret); |
| 725 | } |
| 726 | |
| 727 | /** |
| 728 | * xmlRegFreeRange: |
| 729 | * @range: the regexp range |
| 730 | * |
| 731 | * Free a regexp range |
| 732 | */ |
| 733 | static void |
| 734 | xmlRegFreeRange(xmlRegRangePtr range) { |
| 735 | if (range == NULL) |
| 736 | return; |
| 737 | |
| 738 | if (range->blockName != NULL) |
| 739 | xmlFree(range->blockName); |
| 740 | xmlFree(range); |
| 741 | } |
| 742 | |
| 743 | /** |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 744 | * xmlRegCopyRange: |
| 745 | * @range: the regexp range |
| 746 | * |
| 747 | * Copy a regexp range |
| 748 | * |
| 749 | * Returns the new copy or NULL in case of error. |
| 750 | */ |
| 751 | static xmlRegRangePtr |
| 752 | xmlRegCopyRange(xmlRegParserCtxtPtr ctxt, xmlRegRangePtr range) { |
| 753 | xmlRegRangePtr ret; |
| 754 | |
| 755 | if (range == NULL) |
| 756 | return(NULL); |
| 757 | |
| 758 | ret = xmlRegNewRange(ctxt, range->neg, range->type, range->start, |
| 759 | range->end); |
| 760 | if (ret == NULL) |
| 761 | return(NULL); |
| 762 | if (range->blockName != NULL) { |
| 763 | ret->blockName = xmlStrdup(range->blockName); |
| 764 | if (ret->blockName == NULL) { |
| 765 | xmlRegexpErrMemory(ctxt, "allocating range"); |
| 766 | xmlRegFreeRange(ret); |
| 767 | return(NULL); |
| 768 | } |
| 769 | } |
| 770 | return(ret); |
| 771 | } |
| 772 | |
| 773 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 774 | * xmlRegNewAtom: |
| 775 | * @ctxt: the regexp parser context |
| 776 | * @type: the type of atom |
| 777 | * |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 778 | * Allocate a new atom |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 779 | * |
| 780 | * Returns the new atom or NULL in case of error |
| 781 | */ |
| 782 | static xmlRegAtomPtr |
| 783 | xmlRegNewAtom(xmlRegParserCtxtPtr ctxt, xmlRegAtomType type) { |
| 784 | xmlRegAtomPtr ret; |
| 785 | |
| 786 | ret = (xmlRegAtomPtr) xmlMalloc(sizeof(xmlRegAtom)); |
| 787 | if (ret == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 788 | xmlRegexpErrMemory(ctxt, "allocating atom"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 789 | return(NULL); |
| 790 | } |
| 791 | memset(ret, 0, sizeof(xmlRegAtom)); |
| 792 | ret->type = type; |
| 793 | ret->quant = XML_REGEXP_QUANT_ONCE; |
| 794 | ret->min = 0; |
| 795 | ret->max = 0; |
| 796 | return(ret); |
| 797 | } |
| 798 | |
| 799 | /** |
| 800 | * xmlRegFreeAtom: |
| 801 | * @atom: the regexp atom |
| 802 | * |
| 803 | * Free a regexp atom |
| 804 | */ |
| 805 | static void |
| 806 | xmlRegFreeAtom(xmlRegAtomPtr atom) { |
| 807 | int i; |
| 808 | |
| 809 | if (atom == NULL) |
| 810 | return; |
| 811 | |
| 812 | for (i = 0;i < atom->nbRanges;i++) |
| 813 | xmlRegFreeRange(atom->ranges[i]); |
| 814 | if (atom->ranges != NULL) |
| 815 | xmlFree(atom->ranges); |
Daniel Veillard | de0e498 | 2005-07-03 14:35:44 +0000 | [diff] [blame] | 816 | if ((atom->type == XML_REGEXP_STRING) && (atom->valuep != NULL)) |
| 817 | xmlFree(atom->valuep); |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 818 | if ((atom->type == XML_REGEXP_STRING) && (atom->valuep2 != NULL)) |
| 819 | xmlFree(atom->valuep2); |
Daniel Veillard | de0e498 | 2005-07-03 14:35:44 +0000 | [diff] [blame] | 820 | if ((atom->type == XML_REGEXP_BLOCK_NAME) && (atom->valuep != NULL)) |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 821 | xmlFree(atom->valuep); |
| 822 | xmlFree(atom); |
| 823 | } |
| 824 | |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 825 | /** |
| 826 | * xmlRegCopyAtom: |
| 827 | * @ctxt: the regexp parser context |
| 828 | * @atom: the oiginal atom |
| 829 | * |
| 830 | * Allocate a new regexp range |
| 831 | * |
| 832 | * Returns the new atom or NULL in case of error |
| 833 | */ |
| 834 | static xmlRegAtomPtr |
| 835 | xmlRegCopyAtom(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) { |
| 836 | xmlRegAtomPtr ret; |
| 837 | |
| 838 | ret = (xmlRegAtomPtr) xmlMalloc(sizeof(xmlRegAtom)); |
| 839 | if (ret == NULL) { |
| 840 | xmlRegexpErrMemory(ctxt, "copying atom"); |
| 841 | return(NULL); |
| 842 | } |
| 843 | memset(ret, 0, sizeof(xmlRegAtom)); |
| 844 | ret->type = atom->type; |
| 845 | ret->quant = atom->quant; |
| 846 | ret->min = atom->min; |
| 847 | ret->max = atom->max; |
| 848 | if (atom->nbRanges > 0) { |
| 849 | int i; |
| 850 | |
| 851 | ret->ranges = (xmlRegRangePtr *) xmlMalloc(sizeof(xmlRegRangePtr) * |
| 852 | atom->nbRanges); |
| 853 | if (ret->ranges == NULL) { |
| 854 | xmlRegexpErrMemory(ctxt, "copying atom"); |
| 855 | goto error; |
| 856 | } |
| 857 | for (i = 0;i < atom->nbRanges;i++) { |
| 858 | ret->ranges[i] = xmlRegCopyRange(ctxt, atom->ranges[i]); |
| 859 | if (ret->ranges[i] == NULL) |
| 860 | goto error; |
| 861 | ret->nbRanges = i + 1; |
| 862 | } |
| 863 | } |
| 864 | return(ret); |
| 865 | |
| 866 | error: |
| 867 | xmlRegFreeAtom(ret); |
| 868 | return(NULL); |
| 869 | } |
| 870 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 871 | static xmlRegStatePtr |
| 872 | xmlRegNewState(xmlRegParserCtxtPtr ctxt) { |
| 873 | xmlRegStatePtr ret; |
| 874 | |
| 875 | ret = (xmlRegStatePtr) xmlMalloc(sizeof(xmlRegState)); |
| 876 | if (ret == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 877 | xmlRegexpErrMemory(ctxt, "allocating state"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 878 | return(NULL); |
| 879 | } |
| 880 | memset(ret, 0, sizeof(xmlRegState)); |
| 881 | ret->type = XML_REGEXP_TRANS_STATE; |
| 882 | ret->mark = XML_REGEXP_MARK_NORMAL; |
| 883 | return(ret); |
| 884 | } |
| 885 | |
| 886 | /** |
| 887 | * xmlRegFreeState: |
| 888 | * @state: the regexp state |
| 889 | * |
| 890 | * Free a regexp state |
| 891 | */ |
| 892 | static void |
| 893 | xmlRegFreeState(xmlRegStatePtr state) { |
| 894 | if (state == NULL) |
| 895 | return; |
| 896 | |
| 897 | if (state->trans != NULL) |
| 898 | xmlFree(state->trans); |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 899 | if (state->transTo != NULL) |
| 900 | xmlFree(state->transTo); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 901 | xmlFree(state); |
| 902 | } |
| 903 | |
| 904 | /** |
| 905 | * xmlRegFreeParserCtxt: |
| 906 | * @ctxt: the regexp parser context |
| 907 | * |
| 908 | * Free a regexp parser context |
| 909 | */ |
| 910 | static void |
| 911 | xmlRegFreeParserCtxt(xmlRegParserCtxtPtr ctxt) { |
| 912 | int i; |
| 913 | if (ctxt == NULL) |
| 914 | return; |
| 915 | |
| 916 | if (ctxt->string != NULL) |
| 917 | xmlFree(ctxt->string); |
| 918 | if (ctxt->states != NULL) { |
| 919 | for (i = 0;i < ctxt->nbStates;i++) |
| 920 | xmlRegFreeState(ctxt->states[i]); |
| 921 | xmlFree(ctxt->states); |
| 922 | } |
| 923 | if (ctxt->atoms != NULL) { |
| 924 | for (i = 0;i < ctxt->nbAtoms;i++) |
| 925 | xmlRegFreeAtom(ctxt->atoms[i]); |
| 926 | xmlFree(ctxt->atoms); |
| 927 | } |
| 928 | if (ctxt->counters != NULL) |
| 929 | xmlFree(ctxt->counters); |
| 930 | xmlFree(ctxt); |
| 931 | } |
| 932 | |
| 933 | /************************************************************************ |
| 934 | * * |
| 935 | * Display of Data structures * |
| 936 | * * |
| 937 | ************************************************************************/ |
| 938 | |
| 939 | static void |
| 940 | xmlRegPrintAtomType(FILE *output, xmlRegAtomType type) { |
| 941 | switch (type) { |
| 942 | case XML_REGEXP_EPSILON: |
| 943 | fprintf(output, "epsilon "); break; |
| 944 | case XML_REGEXP_CHARVAL: |
| 945 | fprintf(output, "charval "); break; |
| 946 | case XML_REGEXP_RANGES: |
| 947 | fprintf(output, "ranges "); break; |
| 948 | case XML_REGEXP_SUBREG: |
| 949 | fprintf(output, "subexpr "); break; |
| 950 | case XML_REGEXP_STRING: |
| 951 | fprintf(output, "string "); break; |
| 952 | case XML_REGEXP_ANYCHAR: |
| 953 | fprintf(output, "anychar "); break; |
| 954 | case XML_REGEXP_ANYSPACE: |
| 955 | fprintf(output, "anyspace "); break; |
| 956 | case XML_REGEXP_NOTSPACE: |
| 957 | fprintf(output, "notspace "); break; |
| 958 | case XML_REGEXP_INITNAME: |
| 959 | fprintf(output, "initname "); break; |
| 960 | case XML_REGEXP_NOTINITNAME: |
| 961 | fprintf(output, "notinitname "); break; |
| 962 | case XML_REGEXP_NAMECHAR: |
| 963 | fprintf(output, "namechar "); break; |
| 964 | case XML_REGEXP_NOTNAMECHAR: |
| 965 | fprintf(output, "notnamechar "); break; |
| 966 | case XML_REGEXP_DECIMAL: |
| 967 | fprintf(output, "decimal "); break; |
| 968 | case XML_REGEXP_NOTDECIMAL: |
| 969 | fprintf(output, "notdecimal "); break; |
| 970 | case XML_REGEXP_REALCHAR: |
| 971 | fprintf(output, "realchar "); break; |
| 972 | case XML_REGEXP_NOTREALCHAR: |
| 973 | fprintf(output, "notrealchar "); break; |
| 974 | case XML_REGEXP_LETTER: |
| 975 | fprintf(output, "LETTER "); break; |
| 976 | case XML_REGEXP_LETTER_UPPERCASE: |
| 977 | fprintf(output, "LETTER_UPPERCASE "); break; |
| 978 | case XML_REGEXP_LETTER_LOWERCASE: |
| 979 | fprintf(output, "LETTER_LOWERCASE "); break; |
| 980 | case XML_REGEXP_LETTER_TITLECASE: |
| 981 | fprintf(output, "LETTER_TITLECASE "); break; |
| 982 | case XML_REGEXP_LETTER_MODIFIER: |
| 983 | fprintf(output, "LETTER_MODIFIER "); break; |
| 984 | case XML_REGEXP_LETTER_OTHERS: |
| 985 | fprintf(output, "LETTER_OTHERS "); break; |
| 986 | case XML_REGEXP_MARK: |
| 987 | fprintf(output, "MARK "); break; |
| 988 | case XML_REGEXP_MARK_NONSPACING: |
| 989 | fprintf(output, "MARK_NONSPACING "); break; |
| 990 | case XML_REGEXP_MARK_SPACECOMBINING: |
| 991 | fprintf(output, "MARK_SPACECOMBINING "); break; |
| 992 | case XML_REGEXP_MARK_ENCLOSING: |
| 993 | fprintf(output, "MARK_ENCLOSING "); break; |
| 994 | case XML_REGEXP_NUMBER: |
| 995 | fprintf(output, "NUMBER "); break; |
| 996 | case XML_REGEXP_NUMBER_DECIMAL: |
| 997 | fprintf(output, "NUMBER_DECIMAL "); break; |
| 998 | case XML_REGEXP_NUMBER_LETTER: |
| 999 | fprintf(output, "NUMBER_LETTER "); break; |
| 1000 | case XML_REGEXP_NUMBER_OTHERS: |
| 1001 | fprintf(output, "NUMBER_OTHERS "); break; |
| 1002 | case XML_REGEXP_PUNCT: |
| 1003 | fprintf(output, "PUNCT "); break; |
| 1004 | case XML_REGEXP_PUNCT_CONNECTOR: |
| 1005 | fprintf(output, "PUNCT_CONNECTOR "); break; |
| 1006 | case XML_REGEXP_PUNCT_DASH: |
| 1007 | fprintf(output, "PUNCT_DASH "); break; |
| 1008 | case XML_REGEXP_PUNCT_OPEN: |
| 1009 | fprintf(output, "PUNCT_OPEN "); break; |
| 1010 | case XML_REGEXP_PUNCT_CLOSE: |
| 1011 | fprintf(output, "PUNCT_CLOSE "); break; |
| 1012 | case XML_REGEXP_PUNCT_INITQUOTE: |
| 1013 | fprintf(output, "PUNCT_INITQUOTE "); break; |
| 1014 | case XML_REGEXP_PUNCT_FINQUOTE: |
| 1015 | fprintf(output, "PUNCT_FINQUOTE "); break; |
| 1016 | case XML_REGEXP_PUNCT_OTHERS: |
| 1017 | fprintf(output, "PUNCT_OTHERS "); break; |
| 1018 | case XML_REGEXP_SEPAR: |
| 1019 | fprintf(output, "SEPAR "); break; |
| 1020 | case XML_REGEXP_SEPAR_SPACE: |
| 1021 | fprintf(output, "SEPAR_SPACE "); break; |
| 1022 | case XML_REGEXP_SEPAR_LINE: |
| 1023 | fprintf(output, "SEPAR_LINE "); break; |
| 1024 | case XML_REGEXP_SEPAR_PARA: |
| 1025 | fprintf(output, "SEPAR_PARA "); break; |
| 1026 | case XML_REGEXP_SYMBOL: |
| 1027 | fprintf(output, "SYMBOL "); break; |
| 1028 | case XML_REGEXP_SYMBOL_MATH: |
| 1029 | fprintf(output, "SYMBOL_MATH "); break; |
| 1030 | case XML_REGEXP_SYMBOL_CURRENCY: |
| 1031 | fprintf(output, "SYMBOL_CURRENCY "); break; |
| 1032 | case XML_REGEXP_SYMBOL_MODIFIER: |
| 1033 | fprintf(output, "SYMBOL_MODIFIER "); break; |
| 1034 | case XML_REGEXP_SYMBOL_OTHERS: |
| 1035 | fprintf(output, "SYMBOL_OTHERS "); break; |
| 1036 | case XML_REGEXP_OTHER: |
| 1037 | fprintf(output, "OTHER "); break; |
| 1038 | case XML_REGEXP_OTHER_CONTROL: |
| 1039 | fprintf(output, "OTHER_CONTROL "); break; |
| 1040 | case XML_REGEXP_OTHER_FORMAT: |
| 1041 | fprintf(output, "OTHER_FORMAT "); break; |
| 1042 | case XML_REGEXP_OTHER_PRIVATE: |
| 1043 | fprintf(output, "OTHER_PRIVATE "); break; |
| 1044 | case XML_REGEXP_OTHER_NA: |
| 1045 | fprintf(output, "OTHER_NA "); break; |
| 1046 | case XML_REGEXP_BLOCK_NAME: |
| 1047 | fprintf(output, "BLOCK "); break; |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | static void |
| 1052 | xmlRegPrintQuantType(FILE *output, xmlRegQuantType type) { |
| 1053 | switch (type) { |
| 1054 | case XML_REGEXP_QUANT_EPSILON: |
| 1055 | fprintf(output, "epsilon "); break; |
| 1056 | case XML_REGEXP_QUANT_ONCE: |
| 1057 | fprintf(output, "once "); break; |
| 1058 | case XML_REGEXP_QUANT_OPT: |
| 1059 | fprintf(output, "? "); break; |
| 1060 | case XML_REGEXP_QUANT_MULT: |
| 1061 | fprintf(output, "* "); break; |
| 1062 | case XML_REGEXP_QUANT_PLUS: |
| 1063 | fprintf(output, "+ "); break; |
| 1064 | case XML_REGEXP_QUANT_RANGE: |
| 1065 | fprintf(output, "range "); break; |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 1066 | case XML_REGEXP_QUANT_ONCEONLY: |
| 1067 | fprintf(output, "onceonly "); break; |
| 1068 | case XML_REGEXP_QUANT_ALL: |
| 1069 | fprintf(output, "all "); break; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1070 | } |
| 1071 | } |
| 1072 | static void |
| 1073 | xmlRegPrintRange(FILE *output, xmlRegRangePtr range) { |
| 1074 | fprintf(output, " range: "); |
| 1075 | if (range->neg) |
| 1076 | fprintf(output, "negative "); |
| 1077 | xmlRegPrintAtomType(output, range->type); |
| 1078 | fprintf(output, "%c - %c\n", range->start, range->end); |
| 1079 | } |
| 1080 | |
| 1081 | static void |
| 1082 | xmlRegPrintAtom(FILE *output, xmlRegAtomPtr atom) { |
| 1083 | fprintf(output, " atom: "); |
| 1084 | if (atom == NULL) { |
| 1085 | fprintf(output, "NULL\n"); |
| 1086 | return; |
| 1087 | } |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 1088 | if (atom->neg) |
| 1089 | fprintf(output, "not "); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1090 | xmlRegPrintAtomType(output, atom->type); |
| 1091 | xmlRegPrintQuantType(output, atom->quant); |
| 1092 | if (atom->quant == XML_REGEXP_QUANT_RANGE) |
| 1093 | fprintf(output, "%d-%d ", atom->min, atom->max); |
| 1094 | if (atom->type == XML_REGEXP_STRING) |
| 1095 | fprintf(output, "'%s' ", (char *) atom->valuep); |
| 1096 | if (atom->type == XML_REGEXP_CHARVAL) |
| 1097 | fprintf(output, "char %c\n", atom->codepoint); |
| 1098 | else if (atom->type == XML_REGEXP_RANGES) { |
| 1099 | int i; |
| 1100 | fprintf(output, "%d entries\n", atom->nbRanges); |
| 1101 | for (i = 0; i < atom->nbRanges;i++) |
| 1102 | xmlRegPrintRange(output, atom->ranges[i]); |
| 1103 | } else if (atom->type == XML_REGEXP_SUBREG) { |
| 1104 | fprintf(output, "start %d end %d\n", atom->start->no, atom->stop->no); |
| 1105 | } else { |
| 1106 | fprintf(output, "\n"); |
| 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | static void |
| 1111 | xmlRegPrintTrans(FILE *output, xmlRegTransPtr trans) { |
| 1112 | fprintf(output, " trans: "); |
| 1113 | if (trans == NULL) { |
| 1114 | fprintf(output, "NULL\n"); |
| 1115 | return; |
| 1116 | } |
| 1117 | if (trans->to < 0) { |
| 1118 | fprintf(output, "removed\n"); |
| 1119 | return; |
| 1120 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 1121 | if (trans->nd != 0) { |
| 1122 | if (trans->nd == 2) |
| 1123 | fprintf(output, "last not determinist, "); |
| 1124 | else |
| 1125 | fprintf(output, "not determinist, "); |
| 1126 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1127 | if (trans->counter >= 0) { |
| 1128 | fprintf(output, "counted %d, ", trans->counter); |
| 1129 | } |
Daniel Veillard | 8a001f6 | 2002-04-20 07:24:11 +0000 | [diff] [blame] | 1130 | if (trans->count == REGEXP_ALL_COUNTER) { |
| 1131 | fprintf(output, "all transition, "); |
| 1132 | } else if (trans->count >= 0) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1133 | fprintf(output, "count based %d, ", trans->count); |
| 1134 | } |
| 1135 | if (trans->atom == NULL) { |
| 1136 | fprintf(output, "epsilon to %d\n", trans->to); |
| 1137 | return; |
| 1138 | } |
| 1139 | if (trans->atom->type == XML_REGEXP_CHARVAL) |
| 1140 | fprintf(output, "char %c ", trans->atom->codepoint); |
| 1141 | fprintf(output, "atom %d, to %d\n", trans->atom->no, trans->to); |
| 1142 | } |
| 1143 | |
| 1144 | static void |
| 1145 | xmlRegPrintState(FILE *output, xmlRegStatePtr state) { |
| 1146 | int i; |
| 1147 | |
| 1148 | fprintf(output, " state: "); |
| 1149 | if (state == NULL) { |
| 1150 | fprintf(output, "NULL\n"); |
| 1151 | return; |
| 1152 | } |
| 1153 | if (state->type == XML_REGEXP_START_STATE) |
| 1154 | fprintf(output, "START "); |
| 1155 | if (state->type == XML_REGEXP_FINAL_STATE) |
| 1156 | fprintf(output, "FINAL "); |
| 1157 | |
| 1158 | fprintf(output, "%d, %d transitions:\n", state->no, state->nbTrans); |
| 1159 | for (i = 0;i < state->nbTrans; i++) { |
| 1160 | xmlRegPrintTrans(output, &(state->trans[i])); |
| 1161 | } |
| 1162 | } |
| 1163 | |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 1164 | #ifdef DEBUG_REGEXP_GRAPH |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1165 | static void |
| 1166 | xmlRegPrintCtxt(FILE *output, xmlRegParserCtxtPtr ctxt) { |
| 1167 | int i; |
| 1168 | |
| 1169 | fprintf(output, " ctxt: "); |
| 1170 | if (ctxt == NULL) { |
| 1171 | fprintf(output, "NULL\n"); |
| 1172 | return; |
| 1173 | } |
| 1174 | fprintf(output, "'%s' ", ctxt->string); |
| 1175 | if (ctxt->error) |
| 1176 | fprintf(output, "error "); |
| 1177 | if (ctxt->neg) |
| 1178 | fprintf(output, "neg "); |
| 1179 | fprintf(output, "\n"); |
| 1180 | fprintf(output, "%d atoms:\n", ctxt->nbAtoms); |
| 1181 | for (i = 0;i < ctxt->nbAtoms; i++) { |
| 1182 | fprintf(output, " %02d ", i); |
| 1183 | xmlRegPrintAtom(output, ctxt->atoms[i]); |
| 1184 | } |
| 1185 | if (ctxt->atom != NULL) { |
| 1186 | fprintf(output, "current atom:\n"); |
| 1187 | xmlRegPrintAtom(output, ctxt->atom); |
| 1188 | } |
| 1189 | fprintf(output, "%d states:", ctxt->nbStates); |
| 1190 | if (ctxt->start != NULL) |
| 1191 | fprintf(output, " start: %d", ctxt->start->no); |
| 1192 | if (ctxt->end != NULL) |
| 1193 | fprintf(output, " end: %d", ctxt->end->no); |
| 1194 | fprintf(output, "\n"); |
| 1195 | for (i = 0;i < ctxt->nbStates; i++) { |
| 1196 | xmlRegPrintState(output, ctxt->states[i]); |
| 1197 | } |
| 1198 | fprintf(output, "%d counters:\n", ctxt->nbCounters); |
| 1199 | for (i = 0;i < ctxt->nbCounters; i++) { |
| 1200 | fprintf(output, " %d: min %d max %d\n", i, ctxt->counters[i].min, |
| 1201 | ctxt->counters[i].max); |
| 1202 | } |
| 1203 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 1204 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1205 | |
| 1206 | /************************************************************************ |
| 1207 | * * |
| 1208 | * Finite Automata structures manipulations * |
| 1209 | * * |
| 1210 | ************************************************************************/ |
| 1211 | |
| 1212 | static void |
| 1213 | xmlRegAtomAddRange(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom, |
| 1214 | int neg, xmlRegAtomType type, int start, int end, |
| 1215 | xmlChar *blockName) { |
| 1216 | xmlRegRangePtr range; |
| 1217 | |
| 1218 | if (atom == NULL) { |
| 1219 | ERROR("add range: atom is NULL"); |
| 1220 | return; |
| 1221 | } |
| 1222 | if (atom->type != XML_REGEXP_RANGES) { |
| 1223 | ERROR("add range: atom is not ranges"); |
| 1224 | return; |
| 1225 | } |
| 1226 | if (atom->maxRanges == 0) { |
| 1227 | atom->maxRanges = 4; |
| 1228 | atom->ranges = (xmlRegRangePtr *) xmlMalloc(atom->maxRanges * |
| 1229 | sizeof(xmlRegRangePtr)); |
| 1230 | if (atom->ranges == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1231 | xmlRegexpErrMemory(ctxt, "adding ranges"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1232 | atom->maxRanges = 0; |
| 1233 | return; |
| 1234 | } |
| 1235 | } else if (atom->nbRanges >= atom->maxRanges) { |
| 1236 | xmlRegRangePtr *tmp; |
| 1237 | atom->maxRanges *= 2; |
| 1238 | tmp = (xmlRegRangePtr *) xmlRealloc(atom->ranges, atom->maxRanges * |
| 1239 | sizeof(xmlRegRangePtr)); |
| 1240 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1241 | xmlRegexpErrMemory(ctxt, "adding ranges"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1242 | atom->maxRanges /= 2; |
| 1243 | return; |
| 1244 | } |
| 1245 | atom->ranges = tmp; |
| 1246 | } |
| 1247 | range = xmlRegNewRange(ctxt, neg, type, start, end); |
| 1248 | if (range == NULL) |
| 1249 | return; |
| 1250 | range->blockName = blockName; |
| 1251 | atom->ranges[atom->nbRanges++] = range; |
| 1252 | |
| 1253 | } |
| 1254 | |
| 1255 | static int |
| 1256 | xmlRegGetCounter(xmlRegParserCtxtPtr ctxt) { |
| 1257 | if (ctxt->maxCounters == 0) { |
| 1258 | ctxt->maxCounters = 4; |
| 1259 | ctxt->counters = (xmlRegCounter *) xmlMalloc(ctxt->maxCounters * |
| 1260 | sizeof(xmlRegCounter)); |
| 1261 | if (ctxt->counters == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1262 | xmlRegexpErrMemory(ctxt, "allocating counter"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1263 | ctxt->maxCounters = 0; |
| 1264 | return(-1); |
| 1265 | } |
| 1266 | } else if (ctxt->nbCounters >= ctxt->maxCounters) { |
| 1267 | xmlRegCounter *tmp; |
| 1268 | ctxt->maxCounters *= 2; |
| 1269 | tmp = (xmlRegCounter *) xmlRealloc(ctxt->counters, ctxt->maxCounters * |
| 1270 | sizeof(xmlRegCounter)); |
| 1271 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1272 | xmlRegexpErrMemory(ctxt, "allocating counter"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1273 | ctxt->maxCounters /= 2; |
| 1274 | return(-1); |
| 1275 | } |
| 1276 | ctxt->counters = tmp; |
| 1277 | } |
| 1278 | ctxt->counters[ctxt->nbCounters].min = -1; |
| 1279 | ctxt->counters[ctxt->nbCounters].max = -1; |
| 1280 | return(ctxt->nbCounters++); |
| 1281 | } |
| 1282 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1283 | static int |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1284 | xmlRegAtomPush(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) { |
| 1285 | if (atom == NULL) { |
| 1286 | ERROR("atom push: atom is NULL"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1287 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1288 | } |
| 1289 | if (ctxt->maxAtoms == 0) { |
| 1290 | ctxt->maxAtoms = 4; |
| 1291 | ctxt->atoms = (xmlRegAtomPtr *) xmlMalloc(ctxt->maxAtoms * |
| 1292 | sizeof(xmlRegAtomPtr)); |
| 1293 | if (ctxt->atoms == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1294 | xmlRegexpErrMemory(ctxt, "pushing atom"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1295 | ctxt->maxAtoms = 0; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1296 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1297 | } |
| 1298 | } else if (ctxt->nbAtoms >= ctxt->maxAtoms) { |
| 1299 | xmlRegAtomPtr *tmp; |
| 1300 | ctxt->maxAtoms *= 2; |
| 1301 | tmp = (xmlRegAtomPtr *) xmlRealloc(ctxt->atoms, ctxt->maxAtoms * |
| 1302 | sizeof(xmlRegAtomPtr)); |
| 1303 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1304 | xmlRegexpErrMemory(ctxt, "allocating counter"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1305 | ctxt->maxAtoms /= 2; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1306 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1307 | } |
| 1308 | ctxt->atoms = tmp; |
| 1309 | } |
| 1310 | atom->no = ctxt->nbAtoms; |
| 1311 | ctxt->atoms[ctxt->nbAtoms++] = atom; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1312 | return(0); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
| 1315 | static void |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1316 | xmlRegStateAddTransTo(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr target, |
| 1317 | int from) { |
| 1318 | if (target->maxTransTo == 0) { |
| 1319 | target->maxTransTo = 8; |
| 1320 | target->transTo = (int *) xmlMalloc(target->maxTransTo * |
| 1321 | sizeof(int)); |
| 1322 | if (target->transTo == NULL) { |
| 1323 | xmlRegexpErrMemory(ctxt, "adding transition"); |
| 1324 | target->maxTransTo = 0; |
| 1325 | return; |
| 1326 | } |
| 1327 | } else if (target->nbTransTo >= target->maxTransTo) { |
| 1328 | int *tmp; |
| 1329 | target->maxTransTo *= 2; |
| 1330 | tmp = (int *) xmlRealloc(target->transTo, target->maxTransTo * |
| 1331 | sizeof(int)); |
| 1332 | if (tmp == NULL) { |
| 1333 | xmlRegexpErrMemory(ctxt, "adding transition"); |
| 1334 | target->maxTransTo /= 2; |
| 1335 | return; |
| 1336 | } |
| 1337 | target->transTo = tmp; |
| 1338 | } |
| 1339 | target->transTo[target->nbTransTo] = from; |
| 1340 | target->nbTransTo++; |
| 1341 | } |
| 1342 | |
| 1343 | static void |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1344 | xmlRegStateAddTrans(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, |
| 1345 | xmlRegAtomPtr atom, xmlRegStatePtr target, |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1346 | int counter, int count) { |
William M. Brack | f9b5fa2 | 2004-05-10 07:52:15 +0000 | [diff] [blame] | 1347 | |
| 1348 | int nrtrans; |
| 1349 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1350 | if (state == NULL) { |
| 1351 | ERROR("add state: state is NULL"); |
| 1352 | return; |
| 1353 | } |
| 1354 | if (target == NULL) { |
| 1355 | ERROR("add state: target is NULL"); |
| 1356 | return; |
| 1357 | } |
William M. Brack | f9b5fa2 | 2004-05-10 07:52:15 +0000 | [diff] [blame] | 1358 | /* |
| 1359 | * Other routines follow the philosophy 'When in doubt, add a transition' |
| 1360 | * so we check here whether such a transition is already present and, if |
| 1361 | * so, silently ignore this request. |
| 1362 | */ |
| 1363 | |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1364 | for (nrtrans = state->nbTrans - 1; nrtrans >= 0; nrtrans--) { |
| 1365 | xmlRegTransPtr trans = &(state->trans[nrtrans]); |
| 1366 | if ((trans->atom == atom) && |
| 1367 | (trans->to == target->no) && |
| 1368 | (trans->counter == counter) && |
| 1369 | (trans->count == count)) { |
William M. Brack | f9b5fa2 | 2004-05-10 07:52:15 +0000 | [diff] [blame] | 1370 | #ifdef DEBUG_REGEXP_GRAPH |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1371 | printf("Ignoring duplicate transition from %d to %d\n", |
| 1372 | state->no, target->no); |
William M. Brack | f9b5fa2 | 2004-05-10 07:52:15 +0000 | [diff] [blame] | 1373 | #endif |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1374 | return; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1375 | } |
William M. Brack | f9b5fa2 | 2004-05-10 07:52:15 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1378 | if (state->maxTrans == 0) { |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1379 | state->maxTrans = 8; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1380 | state->trans = (xmlRegTrans *) xmlMalloc(state->maxTrans * |
| 1381 | sizeof(xmlRegTrans)); |
| 1382 | if (state->trans == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1383 | xmlRegexpErrMemory(ctxt, "adding transition"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1384 | state->maxTrans = 0; |
| 1385 | return; |
| 1386 | } |
| 1387 | } else if (state->nbTrans >= state->maxTrans) { |
| 1388 | xmlRegTrans *tmp; |
| 1389 | state->maxTrans *= 2; |
| 1390 | tmp = (xmlRegTrans *) xmlRealloc(state->trans, state->maxTrans * |
| 1391 | sizeof(xmlRegTrans)); |
| 1392 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1393 | xmlRegexpErrMemory(ctxt, "adding transition"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1394 | state->maxTrans /= 2; |
| 1395 | return; |
| 1396 | } |
| 1397 | state->trans = tmp; |
| 1398 | } |
| 1399 | #ifdef DEBUG_REGEXP_GRAPH |
| 1400 | printf("Add trans from %d to %d ", state->no, target->no); |
Daniel Veillard | 8a001f6 | 2002-04-20 07:24:11 +0000 | [diff] [blame] | 1401 | if (count == REGEXP_ALL_COUNTER) |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 1402 | printf("all transition\n"); |
Daniel Veillard | 4402ab4 | 2002-09-12 16:02:56 +0000 | [diff] [blame] | 1403 | else if (count >= 0) |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 1404 | printf("count based %d\n", count); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1405 | else if (counter >= 0) |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 1406 | printf("counted %d\n", counter); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1407 | else if (atom == NULL) |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 1408 | printf("epsilon transition\n"); |
| 1409 | else if (atom != NULL) |
| 1410 | xmlRegPrintAtom(stdout, atom); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1411 | #endif |
| 1412 | |
| 1413 | state->trans[state->nbTrans].atom = atom; |
| 1414 | state->trans[state->nbTrans].to = target->no; |
| 1415 | state->trans[state->nbTrans].counter = counter; |
| 1416 | state->trans[state->nbTrans].count = count; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 1417 | state->trans[state->nbTrans].nd = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1418 | state->nbTrans++; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1419 | xmlRegStateAddTransTo(ctxt, target, state->no); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1422 | static int |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1423 | xmlRegStatePush(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state) { |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1424 | if (state == NULL) return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1425 | if (ctxt->maxStates == 0) { |
| 1426 | ctxt->maxStates = 4; |
| 1427 | ctxt->states = (xmlRegStatePtr *) xmlMalloc(ctxt->maxStates * |
| 1428 | sizeof(xmlRegStatePtr)); |
| 1429 | if (ctxt->states == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1430 | xmlRegexpErrMemory(ctxt, "adding state"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1431 | ctxt->maxStates = 0; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1432 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1433 | } |
| 1434 | } else if (ctxt->nbStates >= ctxt->maxStates) { |
| 1435 | xmlRegStatePtr *tmp; |
| 1436 | ctxt->maxStates *= 2; |
| 1437 | tmp = (xmlRegStatePtr *) xmlRealloc(ctxt->states, ctxt->maxStates * |
| 1438 | sizeof(xmlRegStatePtr)); |
| 1439 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 1440 | xmlRegexpErrMemory(ctxt, "adding state"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1441 | ctxt->maxStates /= 2; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1442 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1443 | } |
| 1444 | ctxt->states = tmp; |
| 1445 | } |
| 1446 | state->no = ctxt->nbStates; |
| 1447 | ctxt->states[ctxt->nbStates++] = state; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1448 | return(0); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | /** |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 1452 | * xmlFAGenerateAllTransition: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1453 | * @ctxt: a regexp parser context |
| 1454 | * @from: the from state |
| 1455 | * @to: the target state or NULL for building a new one |
| 1456 | * @lax: |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 1457 | * |
| 1458 | */ |
| 1459 | static void |
| 1460 | xmlFAGenerateAllTransition(xmlRegParserCtxtPtr ctxt, |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1461 | xmlRegStatePtr from, xmlRegStatePtr to, |
| 1462 | int lax) { |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 1463 | if (to == NULL) { |
| 1464 | to = xmlRegNewState(ctxt); |
| 1465 | xmlRegStatePush(ctxt, to); |
| 1466 | ctxt->state = to; |
| 1467 | } |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1468 | if (lax) |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1469 | xmlRegStateAddTrans(ctxt, from, NULL, to, -1, REGEXP_ALL_LAX_COUNTER); |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1470 | else |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1471 | xmlRegStateAddTrans(ctxt, from, NULL, to, -1, REGEXP_ALL_COUNTER); |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 1472 | } |
| 1473 | |
| 1474 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1475 | * xmlFAGenerateEpsilonTransition: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1476 | * @ctxt: a regexp parser context |
| 1477 | * @from: the from state |
| 1478 | * @to: the target state or NULL for building a new one |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1479 | * |
| 1480 | */ |
| 1481 | static void |
| 1482 | xmlFAGenerateEpsilonTransition(xmlRegParserCtxtPtr ctxt, |
| 1483 | xmlRegStatePtr from, xmlRegStatePtr to) { |
| 1484 | if (to == NULL) { |
| 1485 | to = xmlRegNewState(ctxt); |
| 1486 | xmlRegStatePush(ctxt, to); |
| 1487 | ctxt->state = to; |
| 1488 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1489 | xmlRegStateAddTrans(ctxt, from, NULL, to, -1, -1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | /** |
| 1493 | * xmlFAGenerateCountedEpsilonTransition: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1494 | * @ctxt: a regexp parser context |
| 1495 | * @from: the from state |
| 1496 | * @to: the target state or NULL for building a new one |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1497 | * counter: the counter for that transition |
| 1498 | * |
| 1499 | */ |
| 1500 | static void |
| 1501 | xmlFAGenerateCountedEpsilonTransition(xmlRegParserCtxtPtr ctxt, |
| 1502 | xmlRegStatePtr from, xmlRegStatePtr to, int counter) { |
| 1503 | if (to == NULL) { |
| 1504 | to = xmlRegNewState(ctxt); |
| 1505 | xmlRegStatePush(ctxt, to); |
| 1506 | ctxt->state = to; |
| 1507 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1508 | xmlRegStateAddTrans(ctxt, from, NULL, to, counter, -1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | /** |
| 1512 | * xmlFAGenerateCountedTransition: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1513 | * @ctxt: a regexp parser context |
| 1514 | * @from: the from state |
| 1515 | * @to: the target state or NULL for building a new one |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1516 | * counter: the counter for that transition |
| 1517 | * |
| 1518 | */ |
| 1519 | static void |
| 1520 | xmlFAGenerateCountedTransition(xmlRegParserCtxtPtr ctxt, |
| 1521 | xmlRegStatePtr from, xmlRegStatePtr to, int counter) { |
| 1522 | if (to == NULL) { |
| 1523 | to = xmlRegNewState(ctxt); |
| 1524 | xmlRegStatePush(ctxt, to); |
| 1525 | ctxt->state = to; |
| 1526 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1527 | xmlRegStateAddTrans(ctxt, from, NULL, to, -1, counter); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1528 | } |
| 1529 | |
| 1530 | /** |
| 1531 | * xmlFAGenerateTransitions: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1532 | * @ctxt: a regexp parser context |
| 1533 | * @from: the from state |
| 1534 | * @to: the target state or NULL for building a new one |
| 1535 | * @atom: the atom generating the transition |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1536 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 1537 | * Returns 0 if success and -1 in case of error. |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1538 | */ |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1539 | static int |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1540 | xmlFAGenerateTransitions(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from, |
| 1541 | xmlRegStatePtr to, xmlRegAtomPtr atom) { |
Daniel Veillard | 10bda62 | 2008-03-13 07:27:24 +0000 | [diff] [blame] | 1542 | xmlRegStatePtr end; |
| 1543 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1544 | if (atom == NULL) { |
| 1545 | ERROR("genrate transition: atom == NULL"); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1546 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1547 | } |
| 1548 | if (atom->type == XML_REGEXP_SUBREG) { |
| 1549 | /* |
| 1550 | * this is a subexpression handling one should not need to |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 1551 | * create a new node except for XML_REGEXP_QUANT_RANGE. |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1552 | */ |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1553 | if (xmlRegAtomPush(ctxt, atom) < 0) { |
| 1554 | return(-1); |
| 1555 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1556 | if ((to != NULL) && (atom->stop != to) && |
| 1557 | (atom->quant != XML_REGEXP_QUANT_RANGE)) { |
| 1558 | /* |
| 1559 | * Generate an epsilon transition to link to the target |
| 1560 | */ |
| 1561 | xmlFAGenerateEpsilonTransition(ctxt, atom->stop, to); |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 1562 | #ifdef DV |
| 1563 | } else if ((to == NULL) && (atom->quant != XML_REGEXP_QUANT_RANGE) && |
| 1564 | (atom->quant != XML_REGEXP_QUANT_ONCE)) { |
| 1565 | to = xmlRegNewState(ctxt); |
| 1566 | xmlRegStatePush(ctxt, to); |
| 1567 | ctxt->state = to; |
| 1568 | xmlFAGenerateEpsilonTransition(ctxt, atom->stop, to); |
| 1569 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1570 | } |
| 1571 | switch (atom->quant) { |
| 1572 | case XML_REGEXP_QUANT_OPT: |
| 1573 | atom->quant = XML_REGEXP_QUANT_ONCE; |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 1574 | /* |
| 1575 | * transition done to the state after end of atom. |
| 1576 | * 1. set transition from atom start to new state |
| 1577 | * 2. set transition from atom end to this state. |
| 1578 | */ |
Daniel Veillard | d80d072 | 2009-08-22 18:56:01 +0200 | [diff] [blame] | 1579 | if (to == NULL) { |
| 1580 | xmlFAGenerateEpsilonTransition(ctxt, atom->start, 0); |
| 1581 | xmlFAGenerateEpsilonTransition(ctxt, atom->stop, |
| 1582 | ctxt->state); |
| 1583 | } else { |
| 1584 | xmlFAGenerateEpsilonTransition(ctxt, atom->start, to); |
| 1585 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1586 | break; |
| 1587 | case XML_REGEXP_QUANT_MULT: |
| 1588 | atom->quant = XML_REGEXP_QUANT_ONCE; |
| 1589 | xmlFAGenerateEpsilonTransition(ctxt, atom->start, atom->stop); |
| 1590 | xmlFAGenerateEpsilonTransition(ctxt, atom->stop, atom->start); |
| 1591 | break; |
| 1592 | case XML_REGEXP_QUANT_PLUS: |
| 1593 | atom->quant = XML_REGEXP_QUANT_ONCE; |
| 1594 | xmlFAGenerateEpsilonTransition(ctxt, atom->stop, atom->start); |
| 1595 | break; |
| 1596 | case XML_REGEXP_QUANT_RANGE: { |
| 1597 | int counter; |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1598 | xmlRegStatePtr inter, newstate; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1599 | |
| 1600 | /* |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1601 | * create the final state now if needed |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1602 | */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1603 | if (to != NULL) { |
| 1604 | newstate = to; |
| 1605 | } else { |
| 1606 | newstate = xmlRegNewState(ctxt); |
| 1607 | xmlRegStatePush(ctxt, newstate); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1608 | } |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1609 | |
| 1610 | /* |
| 1611 | * The principle here is to use counted transition |
| 1612 | * to avoid explosion in the number of states in the |
| 1613 | * graph. This is clearly more complex but should not |
| 1614 | * be exploitable at runtime. |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 1615 | */ |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1616 | if ((atom->min == 0) && (atom->start0 == NULL)) { |
| 1617 | xmlRegAtomPtr copy; |
| 1618 | /* |
| 1619 | * duplicate a transition based on atom to count next |
| 1620 | * occurences after 1. We cannot loop to atom->start |
| 1621 | * directly because we need an epsilon transition to |
| 1622 | * newstate. |
| 1623 | */ |
| 1624 | /* ???? For some reason it seems we never reach that |
| 1625 | case, I suppose this got optimized out before when |
| 1626 | building the automata */ |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 1627 | copy = xmlRegCopyAtom(ctxt, atom); |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1628 | if (copy == NULL) |
| 1629 | return(-1); |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 1630 | copy->quant = XML_REGEXP_QUANT_ONCE; |
| 1631 | copy->min = 0; |
| 1632 | copy->max = 0; |
| 1633 | |
| 1634 | if (xmlFAGenerateTransitions(ctxt, atom->start, NULL, copy) |
| 1635 | < 0) |
| 1636 | return(-1); |
| 1637 | inter = ctxt->state; |
| 1638 | counter = xmlRegGetCounter(ctxt); |
| 1639 | ctxt->counters[counter].min = atom->min - 1; |
| 1640 | ctxt->counters[counter].max = atom->max - 1; |
| 1641 | /* count the number of times we see it again */ |
| 1642 | xmlFAGenerateCountedEpsilonTransition(ctxt, inter, |
| 1643 | atom->stop, counter); |
| 1644 | /* allow a way out based on the count */ |
| 1645 | xmlFAGenerateCountedTransition(ctxt, inter, |
| 1646 | newstate, counter); |
| 1647 | /* and also allow a direct exit for 0 */ |
| 1648 | xmlFAGenerateEpsilonTransition(ctxt, atom->start, |
| 1649 | newstate); |
| 1650 | } else { |
| 1651 | /* |
| 1652 | * either we need the atom at least once or there |
| 1653 | * is an atom->start0 allowing to easilly plug the |
| 1654 | * epsilon transition. |
| 1655 | */ |
| 1656 | counter = xmlRegGetCounter(ctxt); |
| 1657 | ctxt->counters[counter].min = atom->min - 1; |
| 1658 | ctxt->counters[counter].max = atom->max - 1; |
| 1659 | /* count the number of times we see it again */ |
| 1660 | xmlFAGenerateCountedEpsilonTransition(ctxt, atom->stop, |
| 1661 | atom->start, counter); |
| 1662 | /* allow a way out based on the count */ |
| 1663 | xmlFAGenerateCountedTransition(ctxt, atom->stop, |
| 1664 | newstate, counter); |
| 1665 | /* and if needed allow a direct exit for 0 */ |
| 1666 | if (atom->min == 0) |
| 1667 | xmlFAGenerateEpsilonTransition(ctxt, atom->start0, |
| 1668 | newstate); |
| 1669 | |
| 1670 | } |
| 1671 | atom->min = 0; |
| 1672 | atom->max = 0; |
| 1673 | atom->quant = XML_REGEXP_QUANT_ONCE; |
| 1674 | ctxt->state = newstate; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1675 | } |
| 1676 | default: |
| 1677 | break; |
| 1678 | } |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1679 | return(0); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 1680 | } |
| 1681 | if ((atom->min == 0) && (atom->max == 0) && |
Daniel Veillard | 99c394d | 2005-07-14 12:58:49 +0000 | [diff] [blame] | 1682 | (atom->quant == XML_REGEXP_QUANT_RANGE)) { |
| 1683 | /* |
| 1684 | * we can discard the atom and generate an epsilon transition instead |
| 1685 | */ |
| 1686 | if (to == NULL) { |
| 1687 | to = xmlRegNewState(ctxt); |
| 1688 | if (to != NULL) |
| 1689 | xmlRegStatePush(ctxt, to); |
| 1690 | else { |
| 1691 | return(-1); |
| 1692 | } |
| 1693 | } |
| 1694 | xmlFAGenerateEpsilonTransition(ctxt, from, to); |
| 1695 | ctxt->state = to; |
| 1696 | xmlRegFreeAtom(atom); |
| 1697 | return(0); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 1698 | } |
| 1699 | if (to == NULL) { |
| 1700 | to = xmlRegNewState(ctxt); |
| 1701 | if (to != NULL) |
| 1702 | xmlRegStatePush(ctxt, to); |
| 1703 | else { |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1704 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1705 | } |
Daniel Veillard | 10bda62 | 2008-03-13 07:27:24 +0000 | [diff] [blame] | 1706 | } |
| 1707 | end = to; |
| 1708 | if ((atom->quant == XML_REGEXP_QUANT_MULT) || |
| 1709 | (atom->quant == XML_REGEXP_QUANT_PLUS)) { |
| 1710 | /* |
| 1711 | * Do not pollute the target state by adding transitions from |
| 1712 | * it as it is likely to be the shared target of multiple branches. |
| 1713 | * So isolate with an epsilon transition. |
| 1714 | */ |
| 1715 | xmlRegStatePtr tmp; |
| 1716 | |
| 1717 | tmp = xmlRegNewState(ctxt); |
| 1718 | if (tmp != NULL) |
| 1719 | xmlRegStatePush(ctxt, tmp); |
| 1720 | else { |
| 1721 | return(-1); |
| 1722 | } |
| 1723 | xmlFAGenerateEpsilonTransition(ctxt, tmp, to); |
| 1724 | to = tmp; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1725 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 1726 | if (xmlRegAtomPush(ctxt, atom) < 0) { |
| 1727 | return(-1); |
| 1728 | } |
| 1729 | xmlRegStateAddTrans(ctxt, from, atom, to, -1, -1); |
Daniel Veillard | 10bda62 | 2008-03-13 07:27:24 +0000 | [diff] [blame] | 1730 | ctxt->state = end; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1731 | switch (atom->quant) { |
| 1732 | case XML_REGEXP_QUANT_OPT: |
| 1733 | atom->quant = XML_REGEXP_QUANT_ONCE; |
| 1734 | xmlFAGenerateEpsilonTransition(ctxt, from, to); |
| 1735 | break; |
| 1736 | case XML_REGEXP_QUANT_MULT: |
| 1737 | atom->quant = XML_REGEXP_QUANT_ONCE; |
| 1738 | xmlFAGenerateEpsilonTransition(ctxt, from, to); |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1739 | xmlRegStateAddTrans(ctxt, to, atom, to, -1, -1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1740 | break; |
| 1741 | case XML_REGEXP_QUANT_PLUS: |
| 1742 | atom->quant = XML_REGEXP_QUANT_ONCE; |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1743 | xmlRegStateAddTrans(ctxt, to, atom, to, -1, -1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1744 | break; |
William M. Brack | 5657837 | 2007-04-11 14:33:46 +0000 | [diff] [blame] | 1745 | case XML_REGEXP_QUANT_RANGE: |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 1746 | #if DV_test |
William M. Brack | 5657837 | 2007-04-11 14:33:46 +0000 | [diff] [blame] | 1747 | if (atom->min == 0) { |
| 1748 | xmlFAGenerateEpsilonTransition(ctxt, from, to); |
| 1749 | } |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 1750 | #endif |
William M. Brack | 5657837 | 2007-04-11 14:33:46 +0000 | [diff] [blame] | 1751 | break; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1752 | default: |
| 1753 | break; |
| 1754 | } |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1755 | return(0); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * xmlFAReduceEpsilonTransitions: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1760 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1761 | * @fromnr: the from state |
| 1762 | * @tonr: the to state |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 1763 | * @counter: should that transition be associated to a counted |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1764 | * |
| 1765 | */ |
| 1766 | static void |
| 1767 | xmlFAReduceEpsilonTransitions(xmlRegParserCtxtPtr ctxt, int fromnr, |
| 1768 | int tonr, int counter) { |
| 1769 | int transnr; |
| 1770 | xmlRegStatePtr from; |
| 1771 | xmlRegStatePtr to; |
| 1772 | |
| 1773 | #ifdef DEBUG_REGEXP_GRAPH |
| 1774 | printf("xmlFAReduceEpsilonTransitions(%d, %d)\n", fromnr, tonr); |
| 1775 | #endif |
| 1776 | from = ctxt->states[fromnr]; |
| 1777 | if (from == NULL) |
| 1778 | return; |
| 1779 | to = ctxt->states[tonr]; |
| 1780 | if (to == NULL) |
| 1781 | return; |
| 1782 | if ((to->mark == XML_REGEXP_MARK_START) || |
| 1783 | (to->mark == XML_REGEXP_MARK_VISITED)) |
| 1784 | return; |
| 1785 | |
| 1786 | to->mark = XML_REGEXP_MARK_VISITED; |
| 1787 | if (to->type == XML_REGEXP_FINAL_STATE) { |
| 1788 | #ifdef DEBUG_REGEXP_GRAPH |
| 1789 | printf("State %d is final, so %d becomes final\n", tonr, fromnr); |
| 1790 | #endif |
| 1791 | from->type = XML_REGEXP_FINAL_STATE; |
| 1792 | } |
| 1793 | for (transnr = 0;transnr < to->nbTrans;transnr++) { |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1794 | if (to->trans[transnr].to < 0) |
| 1795 | continue; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1796 | if (to->trans[transnr].atom == NULL) { |
| 1797 | /* |
| 1798 | * Don't remove counted transitions |
| 1799 | * Don't loop either |
| 1800 | */ |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1801 | if (to->trans[transnr].to != fromnr) { |
| 1802 | if (to->trans[transnr].count >= 0) { |
| 1803 | int newto = to->trans[transnr].to; |
| 1804 | |
| 1805 | xmlRegStateAddTrans(ctxt, from, NULL, |
| 1806 | ctxt->states[newto], |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1807 | -1, to->trans[transnr].count); |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1808 | } else { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1809 | #ifdef DEBUG_REGEXP_GRAPH |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1810 | printf("Found epsilon trans %d from %d to %d\n", |
| 1811 | transnr, tonr, to->trans[transnr].to); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1812 | #endif |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1813 | if (to->trans[transnr].counter >= 0) { |
| 1814 | xmlFAReduceEpsilonTransitions(ctxt, fromnr, |
| 1815 | to->trans[transnr].to, |
| 1816 | to->trans[transnr].counter); |
| 1817 | } else { |
| 1818 | xmlFAReduceEpsilonTransitions(ctxt, fromnr, |
| 1819 | to->trans[transnr].to, |
| 1820 | counter); |
| 1821 | } |
| 1822 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1823 | } |
| 1824 | } else { |
| 1825 | int newto = to->trans[transnr].to; |
| 1826 | |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1827 | if (to->trans[transnr].counter >= 0) { |
| 1828 | xmlRegStateAddTrans(ctxt, from, to->trans[transnr].atom, |
| 1829 | ctxt->states[newto], |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1830 | to->trans[transnr].counter, -1); |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1831 | } else { |
| 1832 | xmlRegStateAddTrans(ctxt, from, to->trans[transnr].atom, |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 1833 | ctxt->states[newto], counter, -1); |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 1834 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1835 | } |
| 1836 | } |
| 1837 | to->mark = XML_REGEXP_MARK_NORMAL; |
| 1838 | } |
| 1839 | |
| 1840 | /** |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1841 | * xmlFAEliminateSimpleEpsilonTransitions: |
| 1842 | * @ctxt: a regexp parser context |
| 1843 | * |
| 1844 | * Eliminating general epsilon transitions can get costly in the general |
| 1845 | * algorithm due to the large amount of generated new transitions and |
| 1846 | * associated comparisons. However for simple epsilon transition used just |
| 1847 | * to separate building blocks when generating the automata this can be |
| 1848 | * reduced to state elimination: |
| 1849 | * - if there exists an epsilon from X to Y |
| 1850 | * - if there is no other transition from X |
| 1851 | * then X and Y are semantically equivalent and X can be eliminated |
| 1852 | * If X is the start state then make Y the start state, else replace the |
| 1853 | * target of all transitions to X by transitions to Y. |
| 1854 | */ |
| 1855 | static void |
| 1856 | xmlFAEliminateSimpleEpsilonTransitions(xmlRegParserCtxtPtr ctxt) { |
| 1857 | int statenr, i, j, newto; |
| 1858 | xmlRegStatePtr state, tmp; |
| 1859 | |
| 1860 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 1861 | state = ctxt->states[statenr]; |
| 1862 | if (state == NULL) |
| 1863 | continue; |
| 1864 | if (state->nbTrans != 1) |
| 1865 | continue; |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1866 | if (state->type == XML_REGEXP_UNREACH_STATE) |
| 1867 | continue; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1868 | /* is the only transition out a basic transition */ |
| 1869 | if ((state->trans[0].atom == NULL) && |
| 1870 | (state->trans[0].to >= 0) && |
| 1871 | (state->trans[0].to != statenr) && |
| 1872 | (state->trans[0].counter < 0) && |
| 1873 | (state->trans[0].count < 0)) { |
| 1874 | newto = state->trans[0].to; |
| 1875 | |
| 1876 | if (state->type == XML_REGEXP_START_STATE) { |
| 1877 | #ifdef DEBUG_REGEXP_GRAPH |
| 1878 | printf("Found simple epsilon trans from start %d to %d\n", |
| 1879 | statenr, newto); |
| 1880 | #endif |
| 1881 | } else { |
| 1882 | #ifdef DEBUG_REGEXP_GRAPH |
| 1883 | printf("Found simple epsilon trans from %d to %d\n", |
| 1884 | statenr, newto); |
| 1885 | #endif |
| 1886 | for (i = 0;i < state->nbTransTo;i++) { |
| 1887 | tmp = ctxt->states[state->transTo[i]]; |
| 1888 | for (j = 0;j < tmp->nbTrans;j++) { |
| 1889 | if (tmp->trans[j].to == statenr) { |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1890 | #ifdef DEBUG_REGEXP_GRAPH |
| 1891 | printf("Changed transition %d on %d to go to %d\n", |
| 1892 | j, tmp->no, newto); |
| 1893 | #endif |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1894 | tmp->trans[j].to = -1; |
| 1895 | xmlRegStateAddTrans(ctxt, tmp, tmp->trans[j].atom, |
| 1896 | ctxt->states[newto], |
| 1897 | tmp->trans[j].counter, |
| 1898 | tmp->trans[j].count); |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1899 | } |
| 1900 | } |
| 1901 | } |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1902 | if (state->type == XML_REGEXP_FINAL_STATE) |
| 1903 | ctxt->states[newto]->type = XML_REGEXP_FINAL_STATE; |
| 1904 | /* eliminate the transition completely */ |
| 1905 | state->nbTrans = 0; |
| 1906 | |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1907 | state->type = XML_REGEXP_UNREACH_STATE; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1908 | |
| 1909 | } |
| 1910 | |
| 1911 | } |
| 1912 | } |
| 1913 | } |
| 1914 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1915 | * xmlFAEliminateEpsilonTransitions: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 1916 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1917 | * |
| 1918 | */ |
| 1919 | static void |
| 1920 | xmlFAEliminateEpsilonTransitions(xmlRegParserCtxtPtr ctxt) { |
| 1921 | int statenr, transnr; |
| 1922 | xmlRegStatePtr state; |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1923 | int has_epsilon; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1924 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1925 | if (ctxt->states == NULL) return; |
| 1926 | |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1927 | /* |
| 1928 | * Eliminate simple epsilon transition and the associated unreachable |
| 1929 | * states. |
| 1930 | */ |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1931 | xmlFAEliminateSimpleEpsilonTransitions(ctxt); |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1932 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 1933 | state = ctxt->states[statenr]; |
| 1934 | if ((state != NULL) && (state->type == XML_REGEXP_UNREACH_STATE)) { |
| 1935 | #ifdef DEBUG_REGEXP_GRAPH |
| 1936 | printf("Removed unreachable state %d\n", statenr); |
| 1937 | #endif |
| 1938 | xmlRegFreeState(state); |
| 1939 | ctxt->states[statenr] = NULL; |
| 1940 | } |
| 1941 | } |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1942 | |
| 1943 | has_epsilon = 0; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 1944 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1945 | /* |
Daniel Veillard | fcd18ff | 2006-11-02 10:28:04 +0000 | [diff] [blame] | 1946 | * Build the completed transitions bypassing the epsilons |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1947 | * Use a marking algorithm to avoid loops |
Daniel Veillard | fcd18ff | 2006-11-02 10:28:04 +0000 | [diff] [blame] | 1948 | * Mark sink states too. |
| 1949 | * Process from the latests states backward to the start when |
| 1950 | * there is long cascading epsilon chains this minimize the |
| 1951 | * recursions and transition compares when adding the new ones |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1952 | */ |
Daniel Veillard | fcd18ff | 2006-11-02 10:28:04 +0000 | [diff] [blame] | 1953 | for (statenr = ctxt->nbStates - 1;statenr >= 0;statenr--) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1954 | state = ctxt->states[statenr]; |
| 1955 | if (state == NULL) |
| 1956 | continue; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 1957 | if ((state->nbTrans == 0) && |
| 1958 | (state->type != XML_REGEXP_FINAL_STATE)) { |
| 1959 | state->type = XML_REGEXP_SINK_STATE; |
| 1960 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1961 | for (transnr = 0;transnr < state->nbTrans;transnr++) { |
| 1962 | if ((state->trans[transnr].atom == NULL) && |
| 1963 | (state->trans[transnr].to >= 0)) { |
| 1964 | if (state->trans[transnr].to == statenr) { |
| 1965 | state->trans[transnr].to = -1; |
| 1966 | #ifdef DEBUG_REGEXP_GRAPH |
| 1967 | printf("Removed loopback epsilon trans %d on %d\n", |
| 1968 | transnr, statenr); |
| 1969 | #endif |
| 1970 | } else if (state->trans[transnr].count < 0) { |
| 1971 | int newto = state->trans[transnr].to; |
| 1972 | |
| 1973 | #ifdef DEBUG_REGEXP_GRAPH |
| 1974 | printf("Found epsilon trans %d from %d to %d\n", |
| 1975 | transnr, statenr, newto); |
| 1976 | #endif |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1977 | has_epsilon = 1; |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 1978 | state->trans[transnr].to = -2; |
| 1979 | state->mark = XML_REGEXP_MARK_START; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1980 | xmlFAReduceEpsilonTransitions(ctxt, statenr, |
| 1981 | newto, state->trans[transnr].counter); |
| 1982 | state->mark = XML_REGEXP_MARK_NORMAL; |
| 1983 | #ifdef DEBUG_REGEXP_GRAPH |
| 1984 | } else { |
| 1985 | printf("Found counted transition %d on %d\n", |
| 1986 | transnr, statenr); |
| 1987 | #endif |
| 1988 | } |
| 1989 | } |
| 1990 | } |
| 1991 | } |
| 1992 | /* |
| 1993 | * Eliminate the epsilon transitions |
| 1994 | */ |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 1995 | if (has_epsilon) { |
| 1996 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 1997 | state = ctxt->states[statenr]; |
| 1998 | if (state == NULL) |
| 1999 | continue; |
| 2000 | for (transnr = 0;transnr < state->nbTrans;transnr++) { |
| 2001 | xmlRegTransPtr trans = &(state->trans[transnr]); |
| 2002 | if ((trans->atom == NULL) && |
| 2003 | (trans->count < 0) && |
| 2004 | (trans->to >= 0)) { |
| 2005 | trans->to = -1; |
| 2006 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2007 | } |
| 2008 | } |
| 2009 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2010 | |
| 2011 | /* |
| 2012 | * Use this pass to detect unreachable states too |
| 2013 | */ |
| 2014 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 2015 | state = ctxt->states[statenr]; |
| 2016 | if (state != NULL) |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2017 | state->reached = XML_REGEXP_MARK_NORMAL; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2018 | } |
| 2019 | state = ctxt->states[0]; |
| 2020 | if (state != NULL) |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2021 | state->reached = XML_REGEXP_MARK_START; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2022 | while (state != NULL) { |
| 2023 | xmlRegStatePtr target = NULL; |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2024 | state->reached = XML_REGEXP_MARK_VISITED; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2025 | /* |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 2026 | * Mark all states reachable from the current reachable state |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2027 | */ |
| 2028 | for (transnr = 0;transnr < state->nbTrans;transnr++) { |
| 2029 | if ((state->trans[transnr].to >= 0) && |
| 2030 | ((state->trans[transnr].atom != NULL) || |
| 2031 | (state->trans[transnr].count >= 0))) { |
| 2032 | int newto = state->trans[transnr].to; |
| 2033 | |
| 2034 | if (ctxt->states[newto] == NULL) |
| 2035 | continue; |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2036 | if (ctxt->states[newto]->reached == XML_REGEXP_MARK_NORMAL) { |
| 2037 | ctxt->states[newto]->reached = XML_REGEXP_MARK_START; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2038 | target = ctxt->states[newto]; |
| 2039 | } |
| 2040 | } |
| 2041 | } |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 2042 | |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2043 | /* |
| 2044 | * find the next accessible state not explored |
| 2045 | */ |
| 2046 | if (target == NULL) { |
| 2047 | for (statenr = 1;statenr < ctxt->nbStates;statenr++) { |
| 2048 | state = ctxt->states[statenr]; |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2049 | if ((state != NULL) && (state->reached == |
| 2050 | XML_REGEXP_MARK_START)) { |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2051 | target = state; |
| 2052 | break; |
| 2053 | } |
| 2054 | } |
| 2055 | } |
| 2056 | state = target; |
| 2057 | } |
| 2058 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 2059 | state = ctxt->states[statenr]; |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 2060 | if ((state != NULL) && (state->reached == XML_REGEXP_MARK_NORMAL)) { |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 2061 | #ifdef DEBUG_REGEXP_GRAPH |
| 2062 | printf("Removed unreachable state %d\n", statenr); |
| 2063 | #endif |
| 2064 | xmlRegFreeState(state); |
| 2065 | ctxt->states[statenr] = NULL; |
| 2066 | } |
| 2067 | } |
| 2068 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2069 | } |
| 2070 | |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2071 | static int |
| 2072 | xmlFACompareRanges(xmlRegRangePtr range1, xmlRegRangePtr range2) { |
| 2073 | int ret = 0; |
| 2074 | |
| 2075 | if ((range1->type == XML_REGEXP_RANGES) || |
| 2076 | (range2->type == XML_REGEXP_RANGES) || |
| 2077 | (range2->type == XML_REGEXP_SUBREG) || |
| 2078 | (range1->type == XML_REGEXP_SUBREG) || |
| 2079 | (range1->type == XML_REGEXP_STRING) || |
| 2080 | (range2->type == XML_REGEXP_STRING)) |
| 2081 | return(-1); |
| 2082 | |
| 2083 | /* put them in order */ |
| 2084 | if (range1->type > range2->type) { |
| 2085 | xmlRegRangePtr tmp; |
| 2086 | |
| 2087 | tmp = range1; |
| 2088 | range1 = range2; |
| 2089 | range2 = tmp; |
| 2090 | } |
| 2091 | if ((range1->type == XML_REGEXP_ANYCHAR) || |
| 2092 | (range2->type == XML_REGEXP_ANYCHAR)) { |
| 2093 | ret = 1; |
| 2094 | } else if ((range1->type == XML_REGEXP_EPSILON) || |
| 2095 | (range2->type == XML_REGEXP_EPSILON)) { |
| 2096 | return(0); |
| 2097 | } else if (range1->type == range2->type) { |
| 2098 | if ((range1->type != XML_REGEXP_CHARVAL) || |
| 2099 | (range1->end < range2->start) || |
| 2100 | (range2->end < range1->start)) |
| 2101 | ret = 1; |
| 2102 | else |
| 2103 | ret = 0; |
| 2104 | } else if (range1->type == XML_REGEXP_CHARVAL) { |
| 2105 | int codepoint; |
| 2106 | int neg = 0; |
| 2107 | |
| 2108 | /* |
| 2109 | * just check all codepoints in the range for acceptance, |
| 2110 | * this is usually way cheaper since done only once at |
| 2111 | * compilation than testing over and over at runtime or |
| 2112 | * pushing too many states when evaluating. |
| 2113 | */ |
| 2114 | if (((range1->neg == 0) && (range2->neg != 0)) || |
| 2115 | ((range1->neg != 0) && (range2->neg == 0))) |
| 2116 | neg = 1; |
| 2117 | |
| 2118 | for (codepoint = range1->start;codepoint <= range1->end ;codepoint++) { |
| 2119 | ret = xmlRegCheckCharacterRange(range2->type, codepoint, |
| 2120 | 0, range2->start, range2->end, |
| 2121 | range2->blockName); |
| 2122 | if (ret < 0) |
| 2123 | return(-1); |
| 2124 | if (((neg == 1) && (ret == 0)) || |
| 2125 | ((neg == 0) && (ret == 1))) |
| 2126 | return(1); |
| 2127 | } |
| 2128 | return(0); |
| 2129 | } else if ((range1->type == XML_REGEXP_BLOCK_NAME) || |
| 2130 | (range2->type == XML_REGEXP_BLOCK_NAME)) { |
| 2131 | if (range1->type == range2->type) { |
| 2132 | ret = xmlStrEqual(range1->blockName, range2->blockName); |
| 2133 | } else { |
| 2134 | /* |
| 2135 | * comparing a block range with anything else is way |
| 2136 | * too costly, and maintining the table is like too much |
| 2137 | * memory too, so let's force the automata to save state |
| 2138 | * here. |
| 2139 | */ |
| 2140 | return(1); |
| 2141 | } |
| 2142 | } else if ((range1->type < XML_REGEXP_LETTER) || |
| 2143 | (range2->type < XML_REGEXP_LETTER)) { |
| 2144 | if ((range1->type == XML_REGEXP_ANYSPACE) && |
| 2145 | (range2->type == XML_REGEXP_NOTSPACE)) |
| 2146 | ret = 0; |
| 2147 | else if ((range1->type == XML_REGEXP_INITNAME) && |
| 2148 | (range2->type == XML_REGEXP_NOTINITNAME)) |
| 2149 | ret = 0; |
| 2150 | else if ((range1->type == XML_REGEXP_NAMECHAR) && |
| 2151 | (range2->type == XML_REGEXP_NOTNAMECHAR)) |
| 2152 | ret = 0; |
| 2153 | else if ((range1->type == XML_REGEXP_DECIMAL) && |
| 2154 | (range2->type == XML_REGEXP_NOTDECIMAL)) |
| 2155 | ret = 0; |
| 2156 | else if ((range1->type == XML_REGEXP_REALCHAR) && |
| 2157 | (range2->type == XML_REGEXP_NOTREALCHAR)) |
| 2158 | ret = 0; |
| 2159 | else { |
| 2160 | /* same thing to limit complexity */ |
| 2161 | return(1); |
| 2162 | } |
| 2163 | } else { |
| 2164 | ret = 0; |
| 2165 | /* range1->type < range2->type here */ |
| 2166 | switch (range1->type) { |
| 2167 | case XML_REGEXP_LETTER: |
| 2168 | /* all disjoint except in the subgroups */ |
| 2169 | if ((range2->type == XML_REGEXP_LETTER_UPPERCASE) || |
| 2170 | (range2->type == XML_REGEXP_LETTER_LOWERCASE) || |
| 2171 | (range2->type == XML_REGEXP_LETTER_TITLECASE) || |
| 2172 | (range2->type == XML_REGEXP_LETTER_MODIFIER) || |
| 2173 | (range2->type == XML_REGEXP_LETTER_OTHERS)) |
| 2174 | ret = 1; |
| 2175 | break; |
| 2176 | case XML_REGEXP_MARK: |
| 2177 | if ((range2->type == XML_REGEXP_MARK_NONSPACING) || |
| 2178 | (range2->type == XML_REGEXP_MARK_SPACECOMBINING) || |
| 2179 | (range2->type == XML_REGEXP_MARK_ENCLOSING)) |
| 2180 | ret = 1; |
| 2181 | break; |
| 2182 | case XML_REGEXP_NUMBER: |
| 2183 | if ((range2->type == XML_REGEXP_NUMBER_DECIMAL) || |
| 2184 | (range2->type == XML_REGEXP_NUMBER_LETTER) || |
| 2185 | (range2->type == XML_REGEXP_NUMBER_OTHERS)) |
| 2186 | ret = 1; |
| 2187 | break; |
| 2188 | case XML_REGEXP_PUNCT: |
| 2189 | if ((range2->type == XML_REGEXP_PUNCT_CONNECTOR) || |
| 2190 | (range2->type == XML_REGEXP_PUNCT_DASH) || |
| 2191 | (range2->type == XML_REGEXP_PUNCT_OPEN) || |
| 2192 | (range2->type == XML_REGEXP_PUNCT_CLOSE) || |
| 2193 | (range2->type == XML_REGEXP_PUNCT_INITQUOTE) || |
| 2194 | (range2->type == XML_REGEXP_PUNCT_FINQUOTE) || |
| 2195 | (range2->type == XML_REGEXP_PUNCT_OTHERS)) |
| 2196 | ret = 1; |
| 2197 | break; |
| 2198 | case XML_REGEXP_SEPAR: |
| 2199 | if ((range2->type == XML_REGEXP_SEPAR_SPACE) || |
| 2200 | (range2->type == XML_REGEXP_SEPAR_LINE) || |
| 2201 | (range2->type == XML_REGEXP_SEPAR_PARA)) |
| 2202 | ret = 1; |
| 2203 | break; |
| 2204 | case XML_REGEXP_SYMBOL: |
| 2205 | if ((range2->type == XML_REGEXP_SYMBOL_MATH) || |
| 2206 | (range2->type == XML_REGEXP_SYMBOL_CURRENCY) || |
| 2207 | (range2->type == XML_REGEXP_SYMBOL_MODIFIER) || |
| 2208 | (range2->type == XML_REGEXP_SYMBOL_OTHERS)) |
| 2209 | ret = 1; |
| 2210 | break; |
| 2211 | case XML_REGEXP_OTHER: |
| 2212 | if ((range2->type == XML_REGEXP_OTHER_CONTROL) || |
| 2213 | (range2->type == XML_REGEXP_OTHER_FORMAT) || |
| 2214 | (range2->type == XML_REGEXP_OTHER_PRIVATE)) |
| 2215 | ret = 1; |
| 2216 | break; |
| 2217 | default: |
| 2218 | if ((range2->type >= XML_REGEXP_LETTER) && |
| 2219 | (range2->type < XML_REGEXP_BLOCK_NAME)) |
| 2220 | ret = 0; |
| 2221 | else { |
| 2222 | /* safety net ! */ |
| 2223 | return(1); |
| 2224 | } |
| 2225 | } |
| 2226 | } |
| 2227 | if (((range1->neg == 0) && (range2->neg != 0)) || |
| 2228 | ((range1->neg != 0) && (range2->neg == 0))) |
| 2229 | ret = !ret; |
| 2230 | return(1); |
| 2231 | } |
| 2232 | |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2233 | /** |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2234 | * xmlFACompareAtomTypes: |
| 2235 | * @type1: an atom type |
| 2236 | * @type2: an atom type |
| 2237 | * |
| 2238 | * Compares two atoms type to check whether they intersect in some ways, |
| 2239 | * this is used by xmlFACompareAtoms only |
| 2240 | * |
| 2241 | * Returns 1 if they may intersect and 0 otherwise |
| 2242 | */ |
| 2243 | static int |
| 2244 | xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { |
| 2245 | if ((type1 == XML_REGEXP_EPSILON) || |
| 2246 | (type1 == XML_REGEXP_CHARVAL) || |
| 2247 | (type1 == XML_REGEXP_RANGES) || |
| 2248 | (type1 == XML_REGEXP_SUBREG) || |
| 2249 | (type1 == XML_REGEXP_STRING) || |
| 2250 | (type1 == XML_REGEXP_ANYCHAR)) |
| 2251 | return(1); |
| 2252 | if ((type2 == XML_REGEXP_EPSILON) || |
| 2253 | (type2 == XML_REGEXP_CHARVAL) || |
| 2254 | (type2 == XML_REGEXP_RANGES) || |
| 2255 | (type2 == XML_REGEXP_SUBREG) || |
| 2256 | (type2 == XML_REGEXP_STRING) || |
| 2257 | (type2 == XML_REGEXP_ANYCHAR)) |
| 2258 | return(1); |
| 2259 | |
| 2260 | if (type1 == type2) return(1); |
| 2261 | |
| 2262 | /* simplify subsequent compares by making sure type1 < type2 */ |
| 2263 | if (type1 > type2) { |
| 2264 | xmlRegAtomType tmp = type1; |
| 2265 | type1 = type2; |
| 2266 | type2 = tmp; |
| 2267 | } |
| 2268 | switch (type1) { |
| 2269 | case XML_REGEXP_ANYSPACE: /* \s */ |
| 2270 | /* can't be a letter, number, mark, pontuation, symbol */ |
| 2271 | if ((type2 == XML_REGEXP_NOTSPACE) || |
| 2272 | ((type2 >= XML_REGEXP_LETTER) && |
| 2273 | (type2 <= XML_REGEXP_LETTER_OTHERS)) || |
| 2274 | ((type2 >= XML_REGEXP_NUMBER) && |
| 2275 | (type2 <= XML_REGEXP_NUMBER_OTHERS)) || |
| 2276 | ((type2 >= XML_REGEXP_MARK) && |
| 2277 | (type2 <= XML_REGEXP_MARK_ENCLOSING)) || |
| 2278 | ((type2 >= XML_REGEXP_PUNCT) && |
| 2279 | (type2 <= XML_REGEXP_PUNCT_OTHERS)) || |
| 2280 | ((type2 >= XML_REGEXP_SYMBOL) && |
| 2281 | (type2 <= XML_REGEXP_SYMBOL_OTHERS)) |
| 2282 | ) return(0); |
| 2283 | break; |
| 2284 | case XML_REGEXP_NOTSPACE: /* \S */ |
| 2285 | break; |
| 2286 | case XML_REGEXP_INITNAME: /* \l */ |
| 2287 | /* can't be a number, mark, separator, pontuation, symbol or other */ |
| 2288 | if ((type2 == XML_REGEXP_NOTINITNAME) || |
| 2289 | ((type2 >= XML_REGEXP_NUMBER) && |
| 2290 | (type2 <= XML_REGEXP_NUMBER_OTHERS)) || |
| 2291 | ((type2 >= XML_REGEXP_MARK) && |
| 2292 | (type2 <= XML_REGEXP_MARK_ENCLOSING)) || |
| 2293 | ((type2 >= XML_REGEXP_SEPAR) && |
| 2294 | (type2 <= XML_REGEXP_SEPAR_PARA)) || |
| 2295 | ((type2 >= XML_REGEXP_PUNCT) && |
| 2296 | (type2 <= XML_REGEXP_PUNCT_OTHERS)) || |
| 2297 | ((type2 >= XML_REGEXP_SYMBOL) && |
| 2298 | (type2 <= XML_REGEXP_SYMBOL_OTHERS)) || |
| 2299 | ((type2 >= XML_REGEXP_OTHER) && |
| 2300 | (type2 <= XML_REGEXP_OTHER_NA)) |
| 2301 | ) return(0); |
| 2302 | break; |
| 2303 | case XML_REGEXP_NOTINITNAME: /* \L */ |
| 2304 | break; |
| 2305 | case XML_REGEXP_NAMECHAR: /* \c */ |
| 2306 | /* can't be a mark, separator, pontuation, symbol or other */ |
| 2307 | if ((type2 == XML_REGEXP_NOTNAMECHAR) || |
| 2308 | ((type2 >= XML_REGEXP_MARK) && |
| 2309 | (type2 <= XML_REGEXP_MARK_ENCLOSING)) || |
| 2310 | ((type2 >= XML_REGEXP_PUNCT) && |
| 2311 | (type2 <= XML_REGEXP_PUNCT_OTHERS)) || |
| 2312 | ((type2 >= XML_REGEXP_SEPAR) && |
| 2313 | (type2 <= XML_REGEXP_SEPAR_PARA)) || |
| 2314 | ((type2 >= XML_REGEXP_SYMBOL) && |
| 2315 | (type2 <= XML_REGEXP_SYMBOL_OTHERS)) || |
| 2316 | ((type2 >= XML_REGEXP_OTHER) && |
| 2317 | (type2 <= XML_REGEXP_OTHER_NA)) |
| 2318 | ) return(0); |
| 2319 | break; |
| 2320 | case XML_REGEXP_NOTNAMECHAR: /* \C */ |
| 2321 | break; |
| 2322 | case XML_REGEXP_DECIMAL: /* \d */ |
| 2323 | /* can't be a letter, mark, separator, pontuation, symbol or other */ |
| 2324 | if ((type2 == XML_REGEXP_NOTDECIMAL) || |
| 2325 | (type2 == XML_REGEXP_REALCHAR) || |
| 2326 | ((type2 >= XML_REGEXP_LETTER) && |
| 2327 | (type2 <= XML_REGEXP_LETTER_OTHERS)) || |
| 2328 | ((type2 >= XML_REGEXP_MARK) && |
| 2329 | (type2 <= XML_REGEXP_MARK_ENCLOSING)) || |
| 2330 | ((type2 >= XML_REGEXP_PUNCT) && |
| 2331 | (type2 <= XML_REGEXP_PUNCT_OTHERS)) || |
| 2332 | ((type2 >= XML_REGEXP_SEPAR) && |
| 2333 | (type2 <= XML_REGEXP_SEPAR_PARA)) || |
| 2334 | ((type2 >= XML_REGEXP_SYMBOL) && |
| 2335 | (type2 <= XML_REGEXP_SYMBOL_OTHERS)) || |
| 2336 | ((type2 >= XML_REGEXP_OTHER) && |
| 2337 | (type2 <= XML_REGEXP_OTHER_NA)) |
| 2338 | )return(0); |
| 2339 | break; |
| 2340 | case XML_REGEXP_NOTDECIMAL: /* \D */ |
| 2341 | break; |
| 2342 | case XML_REGEXP_REALCHAR: /* \w */ |
| 2343 | /* can't be a mark, separator, pontuation, symbol or other */ |
| 2344 | if ((type2 == XML_REGEXP_NOTDECIMAL) || |
| 2345 | ((type2 >= XML_REGEXP_MARK) && |
| 2346 | (type2 <= XML_REGEXP_MARK_ENCLOSING)) || |
| 2347 | ((type2 >= XML_REGEXP_PUNCT) && |
| 2348 | (type2 <= XML_REGEXP_PUNCT_OTHERS)) || |
| 2349 | ((type2 >= XML_REGEXP_SEPAR) && |
| 2350 | (type2 <= XML_REGEXP_SEPAR_PARA)) || |
| 2351 | ((type2 >= XML_REGEXP_SYMBOL) && |
| 2352 | (type2 <= XML_REGEXP_SYMBOL_OTHERS)) || |
| 2353 | ((type2 >= XML_REGEXP_OTHER) && |
| 2354 | (type2 <= XML_REGEXP_OTHER_NA)) |
| 2355 | )return(0); |
| 2356 | break; |
| 2357 | case XML_REGEXP_NOTREALCHAR: /* \W */ |
| 2358 | break; |
| 2359 | /* |
| 2360 | * at that point we know both type 1 and type2 are from |
| 2361 | * character categories are ordered and are different, |
| 2362 | * it becomes simple because this is a partition |
| 2363 | */ |
| 2364 | case XML_REGEXP_LETTER: |
| 2365 | if (type2 <= XML_REGEXP_LETTER_OTHERS) |
| 2366 | return(1); |
| 2367 | return(0); |
| 2368 | case XML_REGEXP_LETTER_UPPERCASE: |
| 2369 | case XML_REGEXP_LETTER_LOWERCASE: |
| 2370 | case XML_REGEXP_LETTER_TITLECASE: |
| 2371 | case XML_REGEXP_LETTER_MODIFIER: |
| 2372 | case XML_REGEXP_LETTER_OTHERS: |
| 2373 | return(0); |
| 2374 | case XML_REGEXP_MARK: |
| 2375 | if (type2 <= XML_REGEXP_MARK_ENCLOSING) |
| 2376 | return(1); |
| 2377 | return(0); |
| 2378 | case XML_REGEXP_MARK_NONSPACING: |
| 2379 | case XML_REGEXP_MARK_SPACECOMBINING: |
| 2380 | case XML_REGEXP_MARK_ENCLOSING: |
| 2381 | return(0); |
| 2382 | case XML_REGEXP_NUMBER: |
| 2383 | if (type2 <= XML_REGEXP_NUMBER_OTHERS) |
| 2384 | return(1); |
| 2385 | return(0); |
| 2386 | case XML_REGEXP_NUMBER_DECIMAL: |
| 2387 | case XML_REGEXP_NUMBER_LETTER: |
| 2388 | case XML_REGEXP_NUMBER_OTHERS: |
| 2389 | return(0); |
| 2390 | case XML_REGEXP_PUNCT: |
| 2391 | if (type2 <= XML_REGEXP_PUNCT_OTHERS) |
| 2392 | return(1); |
| 2393 | return(0); |
| 2394 | case XML_REGEXP_PUNCT_CONNECTOR: |
| 2395 | case XML_REGEXP_PUNCT_DASH: |
| 2396 | case XML_REGEXP_PUNCT_OPEN: |
| 2397 | case XML_REGEXP_PUNCT_CLOSE: |
| 2398 | case XML_REGEXP_PUNCT_INITQUOTE: |
| 2399 | case XML_REGEXP_PUNCT_FINQUOTE: |
| 2400 | case XML_REGEXP_PUNCT_OTHERS: |
| 2401 | return(0); |
| 2402 | case XML_REGEXP_SEPAR: |
| 2403 | if (type2 <= XML_REGEXP_SEPAR_PARA) |
| 2404 | return(1); |
| 2405 | return(0); |
| 2406 | case XML_REGEXP_SEPAR_SPACE: |
| 2407 | case XML_REGEXP_SEPAR_LINE: |
| 2408 | case XML_REGEXP_SEPAR_PARA: |
| 2409 | return(0); |
| 2410 | case XML_REGEXP_SYMBOL: |
| 2411 | if (type2 <= XML_REGEXP_SYMBOL_OTHERS) |
| 2412 | return(1); |
| 2413 | return(0); |
| 2414 | case XML_REGEXP_SYMBOL_MATH: |
| 2415 | case XML_REGEXP_SYMBOL_CURRENCY: |
| 2416 | case XML_REGEXP_SYMBOL_MODIFIER: |
| 2417 | case XML_REGEXP_SYMBOL_OTHERS: |
| 2418 | return(0); |
| 2419 | case XML_REGEXP_OTHER: |
| 2420 | if (type2 <= XML_REGEXP_OTHER_NA) |
| 2421 | return(1); |
| 2422 | return(0); |
| 2423 | case XML_REGEXP_OTHER_CONTROL: |
| 2424 | case XML_REGEXP_OTHER_FORMAT: |
| 2425 | case XML_REGEXP_OTHER_PRIVATE: |
| 2426 | case XML_REGEXP_OTHER_NA: |
| 2427 | return(0); |
| 2428 | default: |
| 2429 | break; |
| 2430 | } |
| 2431 | return(1); |
| 2432 | } |
| 2433 | |
| 2434 | /** |
| 2435 | * xmlFAEqualAtoms: |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2436 | * @atom1: an atom |
| 2437 | * @atom2: an atom |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2438 | * @deep: if not set only compare string pointers |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2439 | * |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2440 | * Compares two atoms to check whether they are the same exactly |
| 2441 | * this is used to remove equivalent transitions |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2442 | * |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2443 | * Returns 1 if same and 0 otherwise |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2444 | */ |
| 2445 | static int |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2446 | xmlFAEqualAtoms(xmlRegAtomPtr atom1, xmlRegAtomPtr atom2, int deep) { |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2447 | int ret = 0; |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 2448 | |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2449 | if (atom1 == atom2) |
| 2450 | return(1); |
| 2451 | if ((atom1 == NULL) || (atom2 == NULL)) |
| 2452 | return(0); |
| 2453 | |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2454 | if (atom1->type != atom2->type) |
| 2455 | return(0); |
| 2456 | switch (atom1->type) { |
| 2457 | case XML_REGEXP_EPSILON: |
| 2458 | ret = 0; |
| 2459 | break; |
| 2460 | case XML_REGEXP_STRING: |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2461 | if (!deep) |
| 2462 | ret = (atom1->valuep == atom2->valuep); |
| 2463 | else |
| 2464 | ret = xmlStrEqual((xmlChar *)atom1->valuep, |
| 2465 | (xmlChar *)atom2->valuep); |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2466 | break; |
| 2467 | case XML_REGEXP_CHARVAL: |
| 2468 | ret = (atom1->codepoint == atom2->codepoint); |
| 2469 | break; |
| 2470 | case XML_REGEXP_RANGES: |
| 2471 | /* too hard to do in the general case */ |
| 2472 | ret = 0; |
| 2473 | default: |
| 2474 | break; |
| 2475 | } |
| 2476 | return(ret); |
| 2477 | } |
| 2478 | |
| 2479 | /** |
| 2480 | * xmlFACompareAtoms: |
| 2481 | * @atom1: an atom |
| 2482 | * @atom2: an atom |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2483 | * @deep: if not set only compare string pointers |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2484 | * |
| 2485 | * Compares two atoms to check whether they intersect in some ways, |
| 2486 | * this is used by xmlFAComputesDeterminism and xmlFARecurseDeterminism only |
| 2487 | * |
| 2488 | * Returns 1 if yes and 0 otherwise |
| 2489 | */ |
| 2490 | static int |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2491 | xmlFACompareAtoms(xmlRegAtomPtr atom1, xmlRegAtomPtr atom2, int deep) { |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2492 | int ret = 1; |
| 2493 | |
| 2494 | if (atom1 == atom2) |
| 2495 | return(1); |
| 2496 | if ((atom1 == NULL) || (atom2 == NULL)) |
| 2497 | return(0); |
| 2498 | |
| 2499 | if ((atom1->type == XML_REGEXP_ANYCHAR) || |
| 2500 | (atom2->type == XML_REGEXP_ANYCHAR)) |
| 2501 | return(1); |
| 2502 | |
| 2503 | if (atom1->type > atom2->type) { |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2504 | xmlRegAtomPtr tmp; |
| 2505 | tmp = atom1; |
| 2506 | atom1 = atom2; |
| 2507 | atom2 = tmp; |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2508 | } |
| 2509 | if (atom1->type != atom2->type) { |
| 2510 | ret = xmlFACompareAtomTypes(atom1->type, atom2->type); |
| 2511 | /* if they can't intersect at the type level break now */ |
| 2512 | if (ret == 0) |
| 2513 | return(0); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2514 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2515 | switch (atom1->type) { |
| 2516 | case XML_REGEXP_STRING: |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2517 | if (!deep) |
| 2518 | ret = (atom1->valuep != atom2->valuep); |
| 2519 | else |
| 2520 | ret = xmlRegStrEqualWildcard((xmlChar *)atom1->valuep, |
| 2521 | (xmlChar *)atom2->valuep); |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 2522 | break; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2523 | case XML_REGEXP_EPSILON: |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2524 | goto not_determinist; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2525 | case XML_REGEXP_CHARVAL: |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2526 | if (atom2->type == XML_REGEXP_CHARVAL) { |
| 2527 | ret = (atom1->codepoint == atom2->codepoint); |
| 2528 | } else { |
| 2529 | ret = xmlRegCheckCharacter(atom2, atom1->codepoint); |
| 2530 | if (ret < 0) |
| 2531 | ret = 1; |
| 2532 | } |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 2533 | break; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2534 | case XML_REGEXP_RANGES: |
Daniel Veillard | fc011b7 | 2006-02-12 19:14:15 +0000 | [diff] [blame] | 2535 | if (atom2->type == XML_REGEXP_RANGES) { |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2536 | int i, j, res; |
| 2537 | xmlRegRangePtr r1, r2; |
| 2538 | |
| 2539 | /* |
| 2540 | * need to check that none of the ranges eventually matches |
| 2541 | */ |
| 2542 | for (i = 0;i < atom1->nbRanges;i++) { |
| 2543 | for (j = 0;j < atom2->nbRanges;j++) { |
| 2544 | r1 = atom1->ranges[i]; |
| 2545 | r2 = atom2->ranges[j]; |
| 2546 | res = xmlFACompareRanges(r1, r2); |
| 2547 | if (res == 1) { |
| 2548 | ret = 1; |
| 2549 | goto done; |
| 2550 | } |
| 2551 | } |
| 2552 | } |
| 2553 | ret = 0; |
| 2554 | } |
| 2555 | break; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2556 | default: |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2557 | goto not_determinist; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2558 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2559 | done: |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 2560 | if (atom1->neg != atom2->neg) { |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 2561 | ret = !ret; |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 2562 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2563 | if (ret == 0) |
| 2564 | return(0); |
| 2565 | not_determinist: |
| 2566 | return(1); |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2567 | } |
| 2568 | |
| 2569 | /** |
| 2570 | * xmlFARecurseDeterminism: |
| 2571 | * @ctxt: a regexp parser context |
| 2572 | * |
| 2573 | * Check whether the associated regexp is determinist, |
| 2574 | * should be called after xmlFAEliminateEpsilonTransitions() |
| 2575 | * |
| 2576 | */ |
| 2577 | static int |
| 2578 | xmlFARecurseDeterminism(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, |
| 2579 | int to, xmlRegAtomPtr atom) { |
| 2580 | int ret = 1; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2581 | int res; |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 2582 | int transnr, nbTrans; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2583 | xmlRegTransPtr t1; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2584 | int deep = 1; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2585 | |
| 2586 | if (state == NULL) |
| 2587 | return(ret); |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2588 | |
| 2589 | if (ctxt->flags & AM_AUTOMATA_RNG) |
| 2590 | deep = 0; |
| 2591 | |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 2592 | /* |
| 2593 | * don't recurse on transitions potentially added in the course of |
| 2594 | * the elimination. |
| 2595 | */ |
| 2596 | nbTrans = state->nbTrans; |
| 2597 | for (transnr = 0;transnr < nbTrans;transnr++) { |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2598 | t1 = &(state->trans[transnr]); |
| 2599 | /* |
| 2600 | * check transitions conflicting with the one looked at |
| 2601 | */ |
| 2602 | if (t1->atom == NULL) { |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 2603 | if (t1->to < 0) |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2604 | continue; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2605 | res = xmlFARecurseDeterminism(ctxt, ctxt->states[t1->to], |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2606 | to, atom); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2607 | if (res == 0) { |
| 2608 | ret = 0; |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 2609 | /* t1->nd = 1; */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2610 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2611 | continue; |
| 2612 | } |
| 2613 | if (t1->to != to) |
| 2614 | continue; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2615 | if (xmlFACompareAtoms(t1->atom, atom, deep)) { |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2616 | ret = 0; |
| 2617 | /* mark the transition as non-deterministic */ |
| 2618 | t1->nd = 1; |
| 2619 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2620 | } |
| 2621 | return(ret); |
| 2622 | } |
| 2623 | |
| 2624 | /** |
| 2625 | * xmlFAComputesDeterminism: |
| 2626 | * @ctxt: a regexp parser context |
| 2627 | * |
| 2628 | * Check whether the associated regexp is determinist, |
| 2629 | * should be called after xmlFAEliminateEpsilonTransitions() |
| 2630 | * |
| 2631 | */ |
| 2632 | static int |
| 2633 | xmlFAComputesDeterminism(xmlRegParserCtxtPtr ctxt) { |
| 2634 | int statenr, transnr; |
| 2635 | xmlRegStatePtr state; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2636 | xmlRegTransPtr t1, t2, last; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2637 | int i; |
| 2638 | int ret = 1; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2639 | int deep = 1; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2640 | |
Daniel Veillard | 4402ab4 | 2002-09-12 16:02:56 +0000 | [diff] [blame] | 2641 | #ifdef DEBUG_REGEXP_GRAPH |
| 2642 | printf("xmlFAComputesDeterminism\n"); |
| 2643 | xmlRegPrintCtxt(stdout, ctxt); |
| 2644 | #endif |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2645 | if (ctxt->determinist != -1) |
| 2646 | return(ctxt->determinist); |
| 2647 | |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2648 | if (ctxt->flags & AM_AUTOMATA_RNG) |
| 2649 | deep = 0; |
| 2650 | |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2651 | /* |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2652 | * First cleanup the automata removing cancelled transitions |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2653 | */ |
| 2654 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 2655 | state = ctxt->states[statenr]; |
| 2656 | if (state == NULL) |
| 2657 | continue; |
Daniel Veillard | 4f82c8a | 2005-08-09 21:40:08 +0000 | [diff] [blame] | 2658 | if (state->nbTrans < 2) |
| 2659 | continue; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2660 | for (transnr = 0;transnr < state->nbTrans;transnr++) { |
| 2661 | t1 = &(state->trans[transnr]); |
| 2662 | /* |
| 2663 | * Determinism checks in case of counted or all transitions |
| 2664 | * will have to be handled separately |
| 2665 | */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2666 | if (t1->atom == NULL) { |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 2667 | /* t1->nd = 1; */ |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2668 | continue; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2669 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2670 | if (t1->to == -1) /* eliminated */ |
| 2671 | continue; |
| 2672 | for (i = 0;i < transnr;i++) { |
| 2673 | t2 = &(state->trans[i]); |
| 2674 | if (t2->to == -1) /* eliminated */ |
| 2675 | continue; |
| 2676 | if (t2->atom != NULL) { |
| 2677 | if (t1->to == t2->to) { |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2678 | /* |
| 2679 | * Here we use deep because we want to keep the |
| 2680 | * transitions which indicate a conflict |
| 2681 | */ |
| 2682 | if (xmlFAEqualAtoms(t1->atom, t2->atom, deep) && |
Daniel Veillard | 11e28e4 | 2009-08-12 12:21:42 +0200 | [diff] [blame] | 2683 | (t1->counter == t2->counter) && |
| 2684 | (t1->count == t2->count)) |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 2685 | t2->to = -1; /* eliminated */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2686 | } |
| 2687 | } |
| 2688 | } |
| 2689 | } |
| 2690 | } |
| 2691 | |
| 2692 | /* |
| 2693 | * Check for all states that there aren't 2 transitions |
| 2694 | * with the same atom and a different target. |
| 2695 | */ |
| 2696 | for (statenr = 0;statenr < ctxt->nbStates;statenr++) { |
| 2697 | state = ctxt->states[statenr]; |
| 2698 | if (state == NULL) |
| 2699 | continue; |
| 2700 | if (state->nbTrans < 2) |
| 2701 | continue; |
| 2702 | last = NULL; |
| 2703 | for (transnr = 0;transnr < state->nbTrans;transnr++) { |
| 2704 | t1 = &(state->trans[transnr]); |
| 2705 | /* |
| 2706 | * Determinism checks in case of counted or all transitions |
| 2707 | * will have to be handled separately |
| 2708 | */ |
| 2709 | if (t1->atom == NULL) { |
| 2710 | continue; |
| 2711 | } |
| 2712 | if (t1->to == -1) /* eliminated */ |
| 2713 | continue; |
| 2714 | for (i = 0;i < transnr;i++) { |
| 2715 | t2 = &(state->trans[i]); |
| 2716 | if (t2->to == -1) /* eliminated */ |
| 2717 | continue; |
| 2718 | if (t2->atom != NULL) { |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 2719 | /* |
| 2720 | * But here we don't use deep because we want to |
| 2721 | * find transitions which indicate a conflict |
| 2722 | */ |
| 2723 | if (xmlFACompareAtoms(t1->atom, t2->atom, 1)) { |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2724 | ret = 0; |
| 2725 | /* mark the transitions as non-deterministic ones */ |
| 2726 | t1->nd = 1; |
| 2727 | t2->nd = 1; |
| 2728 | last = t1; |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2729 | } |
| 2730 | } else if (t1->to != -1) { |
| 2731 | /* |
| 2732 | * do the closure in case of remaining specific |
| 2733 | * epsilon transitions like choices or all |
| 2734 | */ |
| 2735 | ret = xmlFARecurseDeterminism(ctxt, ctxt->states[t1->to], |
| 2736 | t2->to, t2->atom); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2737 | /* don't shortcut the computation so all non deterministic |
| 2738 | transition get marked down |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2739 | if (ret == 0) |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 2740 | return(0); |
| 2741 | */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2742 | if (ret == 0) { |
| 2743 | t1->nd = 1; |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 2744 | /* t2->nd = 1; */ |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2745 | last = t1; |
| 2746 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2747 | } |
| 2748 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2749 | /* don't shortcut the computation so all non deterministic |
| 2750 | transition get marked down |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2751 | if (ret == 0) |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2752 | break; */ |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2753 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2754 | |
| 2755 | /* |
| 2756 | * mark specifically the last non-deterministic transition |
| 2757 | * from a state since there is no need to set-up rollback |
| 2758 | * from it |
| 2759 | */ |
| 2760 | if (last != NULL) { |
| 2761 | last->nd = 2; |
| 2762 | } |
| 2763 | |
| 2764 | /* don't shortcut the computation so all non deterministic |
| 2765 | transition get marked down |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2766 | if (ret == 0) |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2767 | break; */ |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2768 | } |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 2769 | |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 2770 | ctxt->determinist = ret; |
| 2771 | return(ret); |
| 2772 | } |
| 2773 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2774 | /************************************************************************ |
| 2775 | * * |
| 2776 | * Routines to check input against transition atoms * |
| 2777 | * * |
| 2778 | ************************************************************************/ |
| 2779 | |
| 2780 | static int |
| 2781 | xmlRegCheckCharacterRange(xmlRegAtomType type, int codepoint, int neg, |
| 2782 | int start, int end, const xmlChar *blockName) { |
| 2783 | int ret = 0; |
| 2784 | |
| 2785 | switch (type) { |
| 2786 | case XML_REGEXP_STRING: |
| 2787 | case XML_REGEXP_SUBREG: |
| 2788 | case XML_REGEXP_RANGES: |
| 2789 | case XML_REGEXP_EPSILON: |
| 2790 | return(-1); |
| 2791 | case XML_REGEXP_ANYCHAR: |
| 2792 | ret = ((codepoint != '\n') && (codepoint != '\r')); |
| 2793 | break; |
| 2794 | case XML_REGEXP_CHARVAL: |
| 2795 | ret = ((codepoint >= start) && (codepoint <= end)); |
| 2796 | break; |
| 2797 | case XML_REGEXP_NOTSPACE: |
| 2798 | neg = !neg; |
| 2799 | case XML_REGEXP_ANYSPACE: |
| 2800 | ret = ((codepoint == '\n') || (codepoint == '\r') || |
| 2801 | (codepoint == '\t') || (codepoint == ' ')); |
| 2802 | break; |
| 2803 | case XML_REGEXP_NOTINITNAME: |
| 2804 | neg = !neg; |
| 2805 | case XML_REGEXP_INITNAME: |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 2806 | ret = (IS_LETTER(codepoint) || |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2807 | (codepoint == '_') || (codepoint == ':')); |
| 2808 | break; |
| 2809 | case XML_REGEXP_NOTNAMECHAR: |
| 2810 | neg = !neg; |
| 2811 | case XML_REGEXP_NAMECHAR: |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 2812 | ret = (IS_LETTER(codepoint) || IS_DIGIT(codepoint) || |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2813 | (codepoint == '.') || (codepoint == '-') || |
| 2814 | (codepoint == '_') || (codepoint == ':') || |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 2815 | IS_COMBINING(codepoint) || IS_EXTENDER(codepoint)); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2816 | break; |
| 2817 | case XML_REGEXP_NOTDECIMAL: |
| 2818 | neg = !neg; |
| 2819 | case XML_REGEXP_DECIMAL: |
| 2820 | ret = xmlUCSIsCatNd(codepoint); |
| 2821 | break; |
| 2822 | case XML_REGEXP_REALCHAR: |
| 2823 | neg = !neg; |
| 2824 | case XML_REGEXP_NOTREALCHAR: |
| 2825 | ret = xmlUCSIsCatP(codepoint); |
| 2826 | if (ret == 0) |
| 2827 | ret = xmlUCSIsCatZ(codepoint); |
| 2828 | if (ret == 0) |
| 2829 | ret = xmlUCSIsCatC(codepoint); |
| 2830 | break; |
| 2831 | case XML_REGEXP_LETTER: |
| 2832 | ret = xmlUCSIsCatL(codepoint); |
| 2833 | break; |
| 2834 | case XML_REGEXP_LETTER_UPPERCASE: |
| 2835 | ret = xmlUCSIsCatLu(codepoint); |
| 2836 | break; |
| 2837 | case XML_REGEXP_LETTER_LOWERCASE: |
| 2838 | ret = xmlUCSIsCatLl(codepoint); |
| 2839 | break; |
| 2840 | case XML_REGEXP_LETTER_TITLECASE: |
| 2841 | ret = xmlUCSIsCatLt(codepoint); |
| 2842 | break; |
| 2843 | case XML_REGEXP_LETTER_MODIFIER: |
| 2844 | ret = xmlUCSIsCatLm(codepoint); |
| 2845 | break; |
| 2846 | case XML_REGEXP_LETTER_OTHERS: |
| 2847 | ret = xmlUCSIsCatLo(codepoint); |
| 2848 | break; |
| 2849 | case XML_REGEXP_MARK: |
| 2850 | ret = xmlUCSIsCatM(codepoint); |
| 2851 | break; |
| 2852 | case XML_REGEXP_MARK_NONSPACING: |
| 2853 | ret = xmlUCSIsCatMn(codepoint); |
| 2854 | break; |
| 2855 | case XML_REGEXP_MARK_SPACECOMBINING: |
| 2856 | ret = xmlUCSIsCatMc(codepoint); |
| 2857 | break; |
| 2858 | case XML_REGEXP_MARK_ENCLOSING: |
| 2859 | ret = xmlUCSIsCatMe(codepoint); |
| 2860 | break; |
| 2861 | case XML_REGEXP_NUMBER: |
| 2862 | ret = xmlUCSIsCatN(codepoint); |
| 2863 | break; |
| 2864 | case XML_REGEXP_NUMBER_DECIMAL: |
| 2865 | ret = xmlUCSIsCatNd(codepoint); |
| 2866 | break; |
| 2867 | case XML_REGEXP_NUMBER_LETTER: |
| 2868 | ret = xmlUCSIsCatNl(codepoint); |
| 2869 | break; |
| 2870 | case XML_REGEXP_NUMBER_OTHERS: |
| 2871 | ret = xmlUCSIsCatNo(codepoint); |
| 2872 | break; |
| 2873 | case XML_REGEXP_PUNCT: |
| 2874 | ret = xmlUCSIsCatP(codepoint); |
| 2875 | break; |
| 2876 | case XML_REGEXP_PUNCT_CONNECTOR: |
| 2877 | ret = xmlUCSIsCatPc(codepoint); |
| 2878 | break; |
| 2879 | case XML_REGEXP_PUNCT_DASH: |
| 2880 | ret = xmlUCSIsCatPd(codepoint); |
| 2881 | break; |
| 2882 | case XML_REGEXP_PUNCT_OPEN: |
| 2883 | ret = xmlUCSIsCatPs(codepoint); |
| 2884 | break; |
| 2885 | case XML_REGEXP_PUNCT_CLOSE: |
| 2886 | ret = xmlUCSIsCatPe(codepoint); |
| 2887 | break; |
| 2888 | case XML_REGEXP_PUNCT_INITQUOTE: |
| 2889 | ret = xmlUCSIsCatPi(codepoint); |
| 2890 | break; |
| 2891 | case XML_REGEXP_PUNCT_FINQUOTE: |
| 2892 | ret = xmlUCSIsCatPf(codepoint); |
| 2893 | break; |
| 2894 | case XML_REGEXP_PUNCT_OTHERS: |
| 2895 | ret = xmlUCSIsCatPo(codepoint); |
| 2896 | break; |
| 2897 | case XML_REGEXP_SEPAR: |
| 2898 | ret = xmlUCSIsCatZ(codepoint); |
| 2899 | break; |
| 2900 | case XML_REGEXP_SEPAR_SPACE: |
| 2901 | ret = xmlUCSIsCatZs(codepoint); |
| 2902 | break; |
| 2903 | case XML_REGEXP_SEPAR_LINE: |
| 2904 | ret = xmlUCSIsCatZl(codepoint); |
| 2905 | break; |
| 2906 | case XML_REGEXP_SEPAR_PARA: |
| 2907 | ret = xmlUCSIsCatZp(codepoint); |
| 2908 | break; |
| 2909 | case XML_REGEXP_SYMBOL: |
| 2910 | ret = xmlUCSIsCatS(codepoint); |
| 2911 | break; |
| 2912 | case XML_REGEXP_SYMBOL_MATH: |
| 2913 | ret = xmlUCSIsCatSm(codepoint); |
| 2914 | break; |
| 2915 | case XML_REGEXP_SYMBOL_CURRENCY: |
| 2916 | ret = xmlUCSIsCatSc(codepoint); |
| 2917 | break; |
| 2918 | case XML_REGEXP_SYMBOL_MODIFIER: |
| 2919 | ret = xmlUCSIsCatSk(codepoint); |
| 2920 | break; |
| 2921 | case XML_REGEXP_SYMBOL_OTHERS: |
| 2922 | ret = xmlUCSIsCatSo(codepoint); |
| 2923 | break; |
| 2924 | case XML_REGEXP_OTHER: |
| 2925 | ret = xmlUCSIsCatC(codepoint); |
| 2926 | break; |
| 2927 | case XML_REGEXP_OTHER_CONTROL: |
| 2928 | ret = xmlUCSIsCatCc(codepoint); |
| 2929 | break; |
| 2930 | case XML_REGEXP_OTHER_FORMAT: |
| 2931 | ret = xmlUCSIsCatCf(codepoint); |
| 2932 | break; |
| 2933 | case XML_REGEXP_OTHER_PRIVATE: |
| 2934 | ret = xmlUCSIsCatCo(codepoint); |
| 2935 | break; |
| 2936 | case XML_REGEXP_OTHER_NA: |
| 2937 | /* ret = xmlUCSIsCatCn(codepoint); */ |
| 2938 | /* Seems it doesn't exist anymore in recent Unicode releases */ |
| 2939 | ret = 0; |
| 2940 | break; |
| 2941 | case XML_REGEXP_BLOCK_NAME: |
| 2942 | ret = xmlUCSIsBlock(codepoint, (const char *) blockName); |
| 2943 | break; |
| 2944 | } |
| 2945 | if (neg) |
| 2946 | return(!ret); |
| 2947 | return(ret); |
| 2948 | } |
| 2949 | |
| 2950 | static int |
| 2951 | xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) { |
| 2952 | int i, ret = 0; |
| 2953 | xmlRegRangePtr range; |
| 2954 | |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 2955 | if ((atom == NULL) || (!IS_CHAR(codepoint))) |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2956 | return(-1); |
| 2957 | |
| 2958 | switch (atom->type) { |
| 2959 | case XML_REGEXP_SUBREG: |
| 2960 | case XML_REGEXP_EPSILON: |
| 2961 | return(-1); |
| 2962 | case XML_REGEXP_CHARVAL: |
| 2963 | return(codepoint == atom->codepoint); |
| 2964 | case XML_REGEXP_RANGES: { |
| 2965 | int accept = 0; |
Daniel Veillard | f2a1283 | 2003-11-24 13:04:35 +0000 | [diff] [blame] | 2966 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2967 | for (i = 0;i < atom->nbRanges;i++) { |
| 2968 | range = atom->ranges[i]; |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 2969 | if (range->neg == 2) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2970 | ret = xmlRegCheckCharacterRange(range->type, codepoint, |
| 2971 | 0, range->start, range->end, |
| 2972 | range->blockName); |
| 2973 | if (ret != 0) |
| 2974 | return(0); /* excluded char */ |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 2975 | } else if (range->neg) { |
| 2976 | ret = xmlRegCheckCharacterRange(range->type, codepoint, |
| 2977 | 0, range->start, range->end, |
| 2978 | range->blockName); |
| 2979 | if (ret == 0) |
Daniel Veillard | f2a1283 | 2003-11-24 13:04:35 +0000 | [diff] [blame] | 2980 | accept = 1; |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 2981 | else |
| 2982 | return(0); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 2983 | } else { |
| 2984 | ret = xmlRegCheckCharacterRange(range->type, codepoint, |
| 2985 | 0, range->start, range->end, |
| 2986 | range->blockName); |
| 2987 | if (ret != 0) |
| 2988 | accept = 1; /* might still be excluded */ |
| 2989 | } |
| 2990 | } |
| 2991 | return(accept); |
| 2992 | } |
| 2993 | case XML_REGEXP_STRING: |
| 2994 | printf("TODO: XML_REGEXP_STRING\n"); |
| 2995 | return(-1); |
| 2996 | case XML_REGEXP_ANYCHAR: |
| 2997 | case XML_REGEXP_ANYSPACE: |
| 2998 | case XML_REGEXP_NOTSPACE: |
| 2999 | case XML_REGEXP_INITNAME: |
| 3000 | case XML_REGEXP_NOTINITNAME: |
| 3001 | case XML_REGEXP_NAMECHAR: |
| 3002 | case XML_REGEXP_NOTNAMECHAR: |
| 3003 | case XML_REGEXP_DECIMAL: |
| 3004 | case XML_REGEXP_NOTDECIMAL: |
| 3005 | case XML_REGEXP_REALCHAR: |
| 3006 | case XML_REGEXP_NOTREALCHAR: |
| 3007 | case XML_REGEXP_LETTER: |
| 3008 | case XML_REGEXP_LETTER_UPPERCASE: |
| 3009 | case XML_REGEXP_LETTER_LOWERCASE: |
| 3010 | case XML_REGEXP_LETTER_TITLECASE: |
| 3011 | case XML_REGEXP_LETTER_MODIFIER: |
| 3012 | case XML_REGEXP_LETTER_OTHERS: |
| 3013 | case XML_REGEXP_MARK: |
| 3014 | case XML_REGEXP_MARK_NONSPACING: |
| 3015 | case XML_REGEXP_MARK_SPACECOMBINING: |
| 3016 | case XML_REGEXP_MARK_ENCLOSING: |
| 3017 | case XML_REGEXP_NUMBER: |
| 3018 | case XML_REGEXP_NUMBER_DECIMAL: |
| 3019 | case XML_REGEXP_NUMBER_LETTER: |
| 3020 | case XML_REGEXP_NUMBER_OTHERS: |
| 3021 | case XML_REGEXP_PUNCT: |
| 3022 | case XML_REGEXP_PUNCT_CONNECTOR: |
| 3023 | case XML_REGEXP_PUNCT_DASH: |
| 3024 | case XML_REGEXP_PUNCT_OPEN: |
| 3025 | case XML_REGEXP_PUNCT_CLOSE: |
| 3026 | case XML_REGEXP_PUNCT_INITQUOTE: |
| 3027 | case XML_REGEXP_PUNCT_FINQUOTE: |
| 3028 | case XML_REGEXP_PUNCT_OTHERS: |
| 3029 | case XML_REGEXP_SEPAR: |
| 3030 | case XML_REGEXP_SEPAR_SPACE: |
| 3031 | case XML_REGEXP_SEPAR_LINE: |
| 3032 | case XML_REGEXP_SEPAR_PARA: |
| 3033 | case XML_REGEXP_SYMBOL: |
| 3034 | case XML_REGEXP_SYMBOL_MATH: |
| 3035 | case XML_REGEXP_SYMBOL_CURRENCY: |
| 3036 | case XML_REGEXP_SYMBOL_MODIFIER: |
| 3037 | case XML_REGEXP_SYMBOL_OTHERS: |
| 3038 | case XML_REGEXP_OTHER: |
| 3039 | case XML_REGEXP_OTHER_CONTROL: |
| 3040 | case XML_REGEXP_OTHER_FORMAT: |
| 3041 | case XML_REGEXP_OTHER_PRIVATE: |
| 3042 | case XML_REGEXP_OTHER_NA: |
| 3043 | case XML_REGEXP_BLOCK_NAME: |
| 3044 | ret = xmlRegCheckCharacterRange(atom->type, codepoint, 0, 0, 0, |
| 3045 | (const xmlChar *)atom->valuep); |
| 3046 | if (atom->neg) |
| 3047 | ret = !ret; |
| 3048 | break; |
| 3049 | } |
| 3050 | return(ret); |
| 3051 | } |
| 3052 | |
| 3053 | /************************************************************************ |
| 3054 | * * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 3055 | * Saving and restoring state of an execution context * |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3056 | * * |
| 3057 | ************************************************************************/ |
| 3058 | |
| 3059 | #ifdef DEBUG_REGEXP_EXEC |
| 3060 | static void |
| 3061 | xmlFARegDebugExec(xmlRegExecCtxtPtr exec) { |
| 3062 | printf("state: %d:%d:idx %d", exec->state->no, exec->transno, exec->index); |
| 3063 | if (exec->inputStack != NULL) { |
| 3064 | int i; |
| 3065 | printf(": "); |
| 3066 | for (i = 0;(i < 3) && (i < exec->inputStackNr);i++) |
Daniel Veillard | 0e05f4c | 2006-11-01 15:33:04 +0000 | [diff] [blame] | 3067 | printf("%s ", (const char *) |
| 3068 | exec->inputStack[exec->inputStackNr - (i + 1)].value); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3069 | } else { |
| 3070 | printf(": %s", &(exec->inputString[exec->index])); |
| 3071 | } |
| 3072 | printf("\n"); |
| 3073 | } |
| 3074 | #endif |
| 3075 | |
| 3076 | static void |
| 3077 | xmlFARegExecSave(xmlRegExecCtxtPtr exec) { |
| 3078 | #ifdef DEBUG_REGEXP_EXEC |
| 3079 | printf("saving "); |
| 3080 | exec->transno++; |
| 3081 | xmlFARegDebugExec(exec); |
| 3082 | exec->transno--; |
| 3083 | #endif |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 3084 | #ifdef MAX_PUSH |
| 3085 | if (exec->nbPush > MAX_PUSH) { |
| 3086 | return; |
| 3087 | } |
| 3088 | exec->nbPush++; |
| 3089 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3090 | |
| 3091 | if (exec->maxRollbacks == 0) { |
| 3092 | exec->maxRollbacks = 4; |
| 3093 | exec->rollbacks = (xmlRegExecRollback *) xmlMalloc(exec->maxRollbacks * |
| 3094 | sizeof(xmlRegExecRollback)); |
| 3095 | if (exec->rollbacks == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3096 | xmlRegexpErrMemory(NULL, "saving regexp"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3097 | exec->maxRollbacks = 0; |
| 3098 | return; |
| 3099 | } |
| 3100 | memset(exec->rollbacks, 0, |
| 3101 | exec->maxRollbacks * sizeof(xmlRegExecRollback)); |
| 3102 | } else if (exec->nbRollbacks >= exec->maxRollbacks) { |
| 3103 | xmlRegExecRollback *tmp; |
| 3104 | int len = exec->maxRollbacks; |
| 3105 | |
| 3106 | exec->maxRollbacks *= 2; |
| 3107 | tmp = (xmlRegExecRollback *) xmlRealloc(exec->rollbacks, |
| 3108 | exec->maxRollbacks * sizeof(xmlRegExecRollback)); |
| 3109 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3110 | xmlRegexpErrMemory(NULL, "saving regexp"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3111 | exec->maxRollbacks /= 2; |
| 3112 | return; |
| 3113 | } |
| 3114 | exec->rollbacks = tmp; |
| 3115 | tmp = &exec->rollbacks[len]; |
| 3116 | memset(tmp, 0, (exec->maxRollbacks - len) * sizeof(xmlRegExecRollback)); |
| 3117 | } |
| 3118 | exec->rollbacks[exec->nbRollbacks].state = exec->state; |
| 3119 | exec->rollbacks[exec->nbRollbacks].index = exec->index; |
| 3120 | exec->rollbacks[exec->nbRollbacks].nextbranch = exec->transno + 1; |
| 3121 | if (exec->comp->nbCounters > 0) { |
| 3122 | if (exec->rollbacks[exec->nbRollbacks].counts == NULL) { |
| 3123 | exec->rollbacks[exec->nbRollbacks].counts = (int *) |
| 3124 | xmlMalloc(exec->comp->nbCounters * sizeof(int)); |
| 3125 | if (exec->rollbacks[exec->nbRollbacks].counts == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3126 | xmlRegexpErrMemory(NULL, "saving regexp"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3127 | exec->status = -5; |
| 3128 | return; |
| 3129 | } |
| 3130 | } |
| 3131 | memcpy(exec->rollbacks[exec->nbRollbacks].counts, exec->counts, |
| 3132 | exec->comp->nbCounters * sizeof(int)); |
| 3133 | } |
| 3134 | exec->nbRollbacks++; |
| 3135 | } |
| 3136 | |
| 3137 | static void |
| 3138 | xmlFARegExecRollBack(xmlRegExecCtxtPtr exec) { |
| 3139 | if (exec->nbRollbacks <= 0) { |
| 3140 | exec->status = -1; |
| 3141 | #ifdef DEBUG_REGEXP_EXEC |
| 3142 | printf("rollback failed on empty stack\n"); |
| 3143 | #endif |
| 3144 | return; |
| 3145 | } |
| 3146 | exec->nbRollbacks--; |
| 3147 | exec->state = exec->rollbacks[exec->nbRollbacks].state; |
| 3148 | exec->index = exec->rollbacks[exec->nbRollbacks].index; |
| 3149 | exec->transno = exec->rollbacks[exec->nbRollbacks].nextbranch; |
| 3150 | if (exec->comp->nbCounters > 0) { |
| 3151 | if (exec->rollbacks[exec->nbRollbacks].counts == NULL) { |
| 3152 | fprintf(stderr, "exec save: allocation failed"); |
| 3153 | exec->status = -6; |
| 3154 | return; |
| 3155 | } |
| 3156 | memcpy(exec->counts, exec->rollbacks[exec->nbRollbacks].counts, |
| 3157 | exec->comp->nbCounters * sizeof(int)); |
| 3158 | } |
| 3159 | |
| 3160 | #ifdef DEBUG_REGEXP_EXEC |
| 3161 | printf("restored "); |
| 3162 | xmlFARegDebugExec(exec); |
| 3163 | #endif |
| 3164 | } |
| 3165 | |
| 3166 | /************************************************************************ |
| 3167 | * * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 3168 | * Verifier, running an input against a compiled regexp * |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3169 | * * |
| 3170 | ************************************************************************/ |
| 3171 | |
| 3172 | static int |
| 3173 | xmlFARegExec(xmlRegexpPtr comp, const xmlChar *content) { |
| 3174 | xmlRegExecCtxt execval; |
| 3175 | xmlRegExecCtxtPtr exec = &execval; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 3176 | int ret, codepoint = 0, len, deter; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3177 | |
| 3178 | exec->inputString = content; |
| 3179 | exec->index = 0; |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 3180 | exec->nbPush = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3181 | exec->determinist = 1; |
| 3182 | exec->maxRollbacks = 0; |
| 3183 | exec->nbRollbacks = 0; |
| 3184 | exec->rollbacks = NULL; |
| 3185 | exec->status = 0; |
| 3186 | exec->comp = comp; |
| 3187 | exec->state = comp->states[0]; |
| 3188 | exec->transno = 0; |
| 3189 | exec->transcount = 0; |
Daniel Veillard | f2a1283 | 2003-11-24 13:04:35 +0000 | [diff] [blame] | 3190 | exec->inputStack = NULL; |
| 3191 | exec->inputStackMax = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3192 | if (comp->nbCounters > 0) { |
| 3193 | exec->counts = (int *) xmlMalloc(comp->nbCounters * sizeof(int)); |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3194 | if (exec->counts == NULL) { |
| 3195 | xmlRegexpErrMemory(NULL, "running regexp"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3196 | return(-1); |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3197 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3198 | memset(exec->counts, 0, comp->nbCounters * sizeof(int)); |
| 3199 | } else |
| 3200 | exec->counts = NULL; |
| 3201 | while ((exec->status == 0) && |
| 3202 | ((exec->inputString[exec->index] != 0) || |
Daniel Veillard | ad55998 | 2008-05-12 13:15:35 +0000 | [diff] [blame] | 3203 | ((exec->state != NULL) && |
| 3204 | (exec->state->type != XML_REGEXP_FINAL_STATE)))) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3205 | xmlRegTransPtr trans; |
| 3206 | xmlRegAtomPtr atom; |
| 3207 | |
| 3208 | /* |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3209 | * If end of input on non-terminal state, rollback, however we may |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3210 | * still have epsilon like transition for counted transitions |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3211 | * on counters, in that case don't break too early. Additionally, |
| 3212 | * if we are working on a range like "AB{0,2}", where B is not present, |
| 3213 | * we don't want to break. |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3214 | */ |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3215 | len = 1; |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3216 | if ((exec->inputString[exec->index] == 0) && (exec->counts == NULL)) { |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 3217 | /* |
| 3218 | * if there is a transition, we must check if |
| 3219 | * atom allows minOccurs of 0 |
| 3220 | */ |
| 3221 | if (exec->transno < exec->state->nbTrans) { |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3222 | trans = &exec->state->trans[exec->transno]; |
| 3223 | if (trans->to >=0) { |
| 3224 | atom = trans->atom; |
| 3225 | if (!((atom->min == 0) && (atom->max > 0))) |
| 3226 | goto rollback; |
| 3227 | } |
| 3228 | } else |
| 3229 | goto rollback; |
| 3230 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3231 | |
| 3232 | exec->transcount = 0; |
| 3233 | for (;exec->transno < exec->state->nbTrans;exec->transno++) { |
| 3234 | trans = &exec->state->trans[exec->transno]; |
| 3235 | if (trans->to < 0) |
| 3236 | continue; |
| 3237 | atom = trans->atom; |
| 3238 | ret = 0; |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 3239 | deter = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3240 | if (trans->count >= 0) { |
| 3241 | int count; |
| 3242 | xmlRegCounterPtr counter; |
| 3243 | |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3244 | if (exec->counts == NULL) { |
| 3245 | exec->status = -1; |
| 3246 | goto error; |
| 3247 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3248 | /* |
| 3249 | * A counted transition. |
| 3250 | */ |
| 3251 | |
| 3252 | count = exec->counts[trans->count]; |
| 3253 | counter = &exec->comp->counters[trans->count]; |
| 3254 | #ifdef DEBUG_REGEXP_EXEC |
| 3255 | printf("testing count %d: val %d, min %d, max %d\n", |
| 3256 | trans->count, count, counter->min, counter->max); |
| 3257 | #endif |
| 3258 | ret = ((count >= counter->min) && (count <= counter->max)); |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 3259 | if ((ret) && (counter->min != counter->max)) |
| 3260 | deter = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3261 | } else if (atom == NULL) { |
| 3262 | fprintf(stderr, "epsilon transition left at runtime\n"); |
| 3263 | exec->status = -2; |
| 3264 | break; |
| 3265 | } else if (exec->inputString[exec->index] != 0) { |
| 3266 | codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len); |
| 3267 | ret = xmlRegCheckCharacter(atom, codepoint); |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3268 | if ((ret == 1) && (atom->min >= 0) && (atom->max > 0)) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3269 | xmlRegStatePtr to = comp->states[trans->to]; |
| 3270 | |
| 3271 | /* |
| 3272 | * this is a multiple input sequence |
Daniel Veillard | fc6eca0 | 2005-11-01 15:24:02 +0000 | [diff] [blame] | 3273 | * If there is a counter associated increment it now. |
| 3274 | * before potentially saving and rollback |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 3275 | * do not increment if the counter is already over the |
| 3276 | * maximum limit in which case get to next transition |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3277 | */ |
Daniel Veillard | fc6eca0 | 2005-11-01 15:24:02 +0000 | [diff] [blame] | 3278 | if (trans->counter >= 0) { |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 3279 | xmlRegCounterPtr counter; |
| 3280 | |
| 3281 | if ((exec->counts == NULL) || |
| 3282 | (exec->comp == NULL) || |
| 3283 | (exec->comp->counters == NULL)) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3284 | exec->status = -1; |
| 3285 | goto error; |
| 3286 | } |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 3287 | counter = &exec->comp->counters[trans->counter]; |
| 3288 | if (exec->counts[trans->counter] >= counter->max) |
| 3289 | continue; /* for loop on transitions */ |
| 3290 | |
Daniel Veillard | fc6eca0 | 2005-11-01 15:24:02 +0000 | [diff] [blame] | 3291 | #ifdef DEBUG_REGEXP_EXEC |
| 3292 | printf("Increasing count %d\n", trans->counter); |
| 3293 | #endif |
| 3294 | exec->counts[trans->counter]++; |
| 3295 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3296 | if (exec->state->nbTrans > exec->transno + 1) { |
| 3297 | xmlFARegExecSave(exec); |
| 3298 | } |
| 3299 | exec->transcount = 1; |
| 3300 | do { |
| 3301 | /* |
| 3302 | * Try to progress as much as possible on the input |
| 3303 | */ |
| 3304 | if (exec->transcount == atom->max) { |
| 3305 | break; |
| 3306 | } |
| 3307 | exec->index += len; |
| 3308 | /* |
| 3309 | * End of input: stop here |
| 3310 | */ |
| 3311 | if (exec->inputString[exec->index] == 0) { |
| 3312 | exec->index -= len; |
| 3313 | break; |
| 3314 | } |
| 3315 | if (exec->transcount >= atom->min) { |
| 3316 | int transno = exec->transno; |
| 3317 | xmlRegStatePtr state = exec->state; |
| 3318 | |
| 3319 | /* |
| 3320 | * The transition is acceptable save it |
| 3321 | */ |
| 3322 | exec->transno = -1; /* trick */ |
| 3323 | exec->state = to; |
| 3324 | xmlFARegExecSave(exec); |
| 3325 | exec->transno = transno; |
| 3326 | exec->state = state; |
| 3327 | } |
| 3328 | codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), |
| 3329 | len); |
| 3330 | ret = xmlRegCheckCharacter(atom, codepoint); |
| 3331 | exec->transcount++; |
| 3332 | } while (ret == 1); |
| 3333 | if (exec->transcount < atom->min) |
| 3334 | ret = 0; |
| 3335 | |
| 3336 | /* |
| 3337 | * If the last check failed but one transition was found |
| 3338 | * possible, rollback |
| 3339 | */ |
| 3340 | if (ret < 0) |
| 3341 | ret = 0; |
| 3342 | if (ret == 0) { |
| 3343 | goto rollback; |
| 3344 | } |
Daniel Veillard | fc6eca0 | 2005-11-01 15:24:02 +0000 | [diff] [blame] | 3345 | if (trans->counter >= 0) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3346 | if (exec->counts == NULL) { |
| 3347 | exec->status = -1; |
| 3348 | goto error; |
| 3349 | } |
Daniel Veillard | fc6eca0 | 2005-11-01 15:24:02 +0000 | [diff] [blame] | 3350 | #ifdef DEBUG_REGEXP_EXEC |
| 3351 | printf("Decreasing count %d\n", trans->counter); |
| 3352 | #endif |
| 3353 | exec->counts[trans->counter]--; |
| 3354 | } |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3355 | } else if ((ret == 0) && (atom->min == 0) && (atom->max > 0)) { |
| 3356 | /* |
| 3357 | * we don't match on the codepoint, but minOccurs of 0 |
| 3358 | * says that's ok. Setting len to 0 inhibits stepping |
| 3359 | * over the codepoint. |
| 3360 | */ |
| 3361 | exec->transcount = 1; |
| 3362 | len = 0; |
| 3363 | ret = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3364 | } |
William M. Brack | 0e00b28 | 2004-04-26 15:40:47 +0000 | [diff] [blame] | 3365 | } else if ((atom->min == 0) && (atom->max > 0)) { |
| 3366 | /* another spot to match when minOccurs is 0 */ |
| 3367 | exec->transcount = 1; |
| 3368 | len = 0; |
| 3369 | ret = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3370 | } |
| 3371 | if (ret == 1) { |
Daniel Veillard | 567a45b | 2005-10-18 19:11:55 +0000 | [diff] [blame] | 3372 | if ((trans->nd == 1) || |
| 3373 | ((trans->count >= 0) && (deter == 0) && |
| 3374 | (exec->state->nbTrans > exec->transno + 1))) { |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 3375 | #ifdef DEBUG_REGEXP_EXEC |
| 3376 | if (trans->nd == 1) |
| 3377 | printf("Saving on nd transition atom %d for %c at %d\n", |
| 3378 | trans->atom->no, codepoint, exec->index); |
| 3379 | else |
| 3380 | printf("Saving on counted transition count %d for %c at %d\n", |
| 3381 | trans->count, codepoint, exec->index); |
| 3382 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3383 | xmlFARegExecSave(exec); |
| 3384 | } |
| 3385 | if (trans->counter >= 0) { |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 3386 | xmlRegCounterPtr counter; |
| 3387 | |
| 3388 | /* make sure we don't go over the counter maximum value */ |
| 3389 | if ((exec->counts == NULL) || |
| 3390 | (exec->comp == NULL) || |
| 3391 | (exec->comp->counters == NULL)) { |
| 3392 | exec->status = -1; |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3393 | goto error; |
| 3394 | } |
Daniel Veillard | c821e03 | 2007-08-28 17:33:45 +0000 | [diff] [blame] | 3395 | counter = &exec->comp->counters[trans->counter]; |
| 3396 | if (exec->counts[trans->counter] >= counter->max) |
| 3397 | continue; /* for loop on transitions */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3398 | #ifdef DEBUG_REGEXP_EXEC |
| 3399 | printf("Increasing count %d\n", trans->counter); |
| 3400 | #endif |
| 3401 | exec->counts[trans->counter]++; |
| 3402 | } |
Daniel Veillard | 1075228 | 2005-08-08 13:05:13 +0000 | [diff] [blame] | 3403 | if ((trans->count >= 0) && |
| 3404 | (trans->count < REGEXP_ALL_COUNTER)) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3405 | if (exec->counts == NULL) { |
| 3406 | exec->status = -1; |
| 3407 | goto error; |
| 3408 | } |
Daniel Veillard | 1075228 | 2005-08-08 13:05:13 +0000 | [diff] [blame] | 3409 | #ifdef DEBUG_REGEXP_EXEC |
| 3410 | printf("resetting count %d on transition\n", |
| 3411 | trans->count); |
| 3412 | #endif |
| 3413 | exec->counts[trans->count] = 0; |
| 3414 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3415 | #ifdef DEBUG_REGEXP_EXEC |
| 3416 | printf("entering state %d\n", trans->to); |
| 3417 | #endif |
| 3418 | exec->state = comp->states[trans->to]; |
| 3419 | exec->transno = 0; |
| 3420 | if (trans->atom != NULL) { |
| 3421 | exec->index += len; |
| 3422 | } |
| 3423 | goto progress; |
| 3424 | } else if (ret < 0) { |
| 3425 | exec->status = -4; |
| 3426 | break; |
| 3427 | } |
| 3428 | } |
| 3429 | if ((exec->transno != 0) || (exec->state->nbTrans == 0)) { |
| 3430 | rollback: |
| 3431 | /* |
| 3432 | * Failed to find a way out |
| 3433 | */ |
| 3434 | exec->determinist = 0; |
Daniel Veillard | aa62201 | 2005-10-20 15:55:25 +0000 | [diff] [blame] | 3435 | #ifdef DEBUG_REGEXP_EXEC |
| 3436 | printf("rollback from state %d on %d:%c\n", exec->state->no, |
| 3437 | codepoint,codepoint); |
| 3438 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3439 | xmlFARegExecRollBack(exec); |
| 3440 | } |
| 3441 | progress: |
| 3442 | continue; |
| 3443 | } |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3444 | error: |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3445 | if (exec->rollbacks != NULL) { |
| 3446 | if (exec->counts != NULL) { |
| 3447 | int i; |
| 3448 | |
| 3449 | for (i = 0;i < exec->maxRollbacks;i++) |
| 3450 | if (exec->rollbacks[i].counts != NULL) |
| 3451 | xmlFree(exec->rollbacks[i].counts); |
| 3452 | } |
| 3453 | xmlFree(exec->rollbacks); |
| 3454 | } |
| 3455 | if (exec->counts != NULL) |
| 3456 | xmlFree(exec->counts); |
| 3457 | if (exec->status == 0) |
| 3458 | return(1); |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 3459 | if (exec->status == -1) { |
| 3460 | if (exec->nbPush > MAX_PUSH) |
| 3461 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3462 | return(0); |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 3463 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3464 | return(exec->status); |
| 3465 | } |
| 3466 | |
| 3467 | /************************************************************************ |
| 3468 | * * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 3469 | * Progressive interface to the verifier one atom at a time * |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3470 | * * |
| 3471 | ************************************************************************/ |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3472 | #ifdef DEBUG_ERR |
| 3473 | static void testerr(xmlRegExecCtxtPtr exec); |
| 3474 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3475 | |
| 3476 | /** |
Daniel Veillard | 01c13b5 | 2002-12-10 15:19:08 +0000 | [diff] [blame] | 3477 | * xmlRegNewExecCtxt: |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3478 | * @comp: a precompiled regular expression |
| 3479 | * @callback: a callback function used for handling progresses in the |
| 3480 | * automata matching phase |
| 3481 | * @data: the context data associated to the callback in this context |
| 3482 | * |
| 3483 | * Build a context used for progressive evaluation of a regexp. |
Daniel Veillard | 01c13b5 | 2002-12-10 15:19:08 +0000 | [diff] [blame] | 3484 | * |
| 3485 | * Returns the new context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3486 | */ |
| 3487 | xmlRegExecCtxtPtr |
| 3488 | xmlRegNewExecCtxt(xmlRegexpPtr comp, xmlRegExecCallbacks callback, void *data) { |
| 3489 | xmlRegExecCtxtPtr exec; |
| 3490 | |
| 3491 | if (comp == NULL) |
| 3492 | return(NULL); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 3493 | if ((comp->compact == NULL) && (comp->states == NULL)) |
| 3494 | return(NULL); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3495 | exec = (xmlRegExecCtxtPtr) xmlMalloc(sizeof(xmlRegExecCtxt)); |
| 3496 | if (exec == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3497 | xmlRegexpErrMemory(NULL, "creating execution context"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3498 | return(NULL); |
| 3499 | } |
| 3500 | memset(exec, 0, sizeof(xmlRegExecCtxt)); |
| 3501 | exec->inputString = NULL; |
| 3502 | exec->index = 0; |
| 3503 | exec->determinist = 1; |
| 3504 | exec->maxRollbacks = 0; |
| 3505 | exec->nbRollbacks = 0; |
| 3506 | exec->rollbacks = NULL; |
| 3507 | exec->status = 0; |
| 3508 | exec->comp = comp; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3509 | if (comp->compact == NULL) |
| 3510 | exec->state = comp->states[0]; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3511 | exec->transno = 0; |
| 3512 | exec->transcount = 0; |
| 3513 | exec->callback = callback; |
| 3514 | exec->data = data; |
| 3515 | if (comp->nbCounters > 0) { |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3516 | /* |
| 3517 | * For error handling, exec->counts is allocated twice the size |
| 3518 | * the second half is used to store the data in case of rollback |
| 3519 | */ |
| 3520 | exec->counts = (int *) xmlMalloc(comp->nbCounters * sizeof(int) |
| 3521 | * 2); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3522 | if (exec->counts == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3523 | xmlRegexpErrMemory(NULL, "creating execution context"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3524 | xmlFree(exec); |
| 3525 | return(NULL); |
| 3526 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3527 | memset(exec->counts, 0, comp->nbCounters * sizeof(int) * 2); |
| 3528 | exec->errCounts = &exec->counts[comp->nbCounters]; |
| 3529 | } else { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3530 | exec->counts = NULL; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3531 | exec->errCounts = NULL; |
| 3532 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3533 | exec->inputStackMax = 0; |
| 3534 | exec->inputStackNr = 0; |
| 3535 | exec->inputStack = NULL; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3536 | exec->errStateNo = -1; |
| 3537 | exec->errString = NULL; |
Daniel Veillard | 94cc103 | 2005-09-15 13:09:00 +0000 | [diff] [blame] | 3538 | exec->nbPush = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3539 | return(exec); |
| 3540 | } |
| 3541 | |
| 3542 | /** |
| 3543 | * xmlRegFreeExecCtxt: |
| 3544 | * @exec: a regular expression evaulation context |
| 3545 | * |
| 3546 | * Free the structures associated to a regular expression evaulation context. |
| 3547 | */ |
| 3548 | void |
| 3549 | xmlRegFreeExecCtxt(xmlRegExecCtxtPtr exec) { |
| 3550 | if (exec == NULL) |
| 3551 | return; |
| 3552 | |
| 3553 | if (exec->rollbacks != NULL) { |
| 3554 | if (exec->counts != NULL) { |
| 3555 | int i; |
| 3556 | |
| 3557 | for (i = 0;i < exec->maxRollbacks;i++) |
| 3558 | if (exec->rollbacks[i].counts != NULL) |
| 3559 | xmlFree(exec->rollbacks[i].counts); |
| 3560 | } |
| 3561 | xmlFree(exec->rollbacks); |
| 3562 | } |
| 3563 | if (exec->counts != NULL) |
| 3564 | xmlFree(exec->counts); |
| 3565 | if (exec->inputStack != NULL) { |
| 3566 | int i; |
| 3567 | |
Daniel Veillard | 3237023 | 2002-10-16 14:08:14 +0000 | [diff] [blame] | 3568 | for (i = 0;i < exec->inputStackNr;i++) { |
| 3569 | if (exec->inputStack[i].value != NULL) |
| 3570 | xmlFree(exec->inputStack[i].value); |
| 3571 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3572 | xmlFree(exec->inputStack); |
| 3573 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3574 | if (exec->errString != NULL) |
| 3575 | xmlFree(exec->errString); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3576 | xmlFree(exec); |
| 3577 | } |
| 3578 | |
| 3579 | static void |
| 3580 | xmlFARegExecSaveInputString(xmlRegExecCtxtPtr exec, const xmlChar *value, |
| 3581 | void *data) { |
| 3582 | #ifdef DEBUG_PUSH |
| 3583 | printf("saving value: %d:%s\n", exec->inputStackNr, value); |
| 3584 | #endif |
| 3585 | if (exec->inputStackMax == 0) { |
| 3586 | exec->inputStackMax = 4; |
| 3587 | exec->inputStack = (xmlRegInputTokenPtr) |
| 3588 | xmlMalloc(exec->inputStackMax * sizeof(xmlRegInputToken)); |
| 3589 | if (exec->inputStack == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3590 | xmlRegexpErrMemory(NULL, "pushing input string"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3591 | exec->inputStackMax = 0; |
| 3592 | return; |
| 3593 | } |
| 3594 | } else if (exec->inputStackNr + 1 >= exec->inputStackMax) { |
| 3595 | xmlRegInputTokenPtr tmp; |
| 3596 | |
| 3597 | exec->inputStackMax *= 2; |
| 3598 | tmp = (xmlRegInputTokenPtr) xmlRealloc(exec->inputStack, |
| 3599 | exec->inputStackMax * sizeof(xmlRegInputToken)); |
| 3600 | if (tmp == NULL) { |
Daniel Veillard | ff46a04 | 2003-10-08 08:53:17 +0000 | [diff] [blame] | 3601 | xmlRegexpErrMemory(NULL, "pushing input string"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3602 | exec->inputStackMax /= 2; |
| 3603 | return; |
| 3604 | } |
| 3605 | exec->inputStack = tmp; |
| 3606 | } |
| 3607 | exec->inputStack[exec->inputStackNr].value = xmlStrdup(value); |
| 3608 | exec->inputStack[exec->inputStackNr].data = data; |
| 3609 | exec->inputStackNr++; |
| 3610 | exec->inputStack[exec->inputStackNr].value = NULL; |
| 3611 | exec->inputStack[exec->inputStackNr].data = NULL; |
| 3612 | } |
| 3613 | |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3614 | /** |
| 3615 | * xmlRegStrEqualWildcard: |
| 3616 | * @expStr: the string to be evaluated |
| 3617 | * @valStr: the validation string |
| 3618 | * |
| 3619 | * Checks if both strings are equal or have the same content. "*" |
| 3620 | * can be used as a wildcard in @valStr; "|" is used as a seperator of |
| 3621 | * substrings in both @expStr and @valStr. |
| 3622 | * |
| 3623 | * Returns 1 if the comparison is satisfied and the number of substrings |
| 3624 | * is equal, 0 otherwise. |
| 3625 | */ |
| 3626 | |
| 3627 | static int |
| 3628 | xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr) { |
| 3629 | if (expStr == valStr) return(1); |
| 3630 | if (expStr == NULL) return(0); |
| 3631 | if (valStr == NULL) return(0); |
| 3632 | do { |
| 3633 | /* |
| 3634 | * Eval if we have a wildcard for the current item. |
| 3635 | */ |
| 3636 | if (*expStr != *valStr) { |
Daniel Veillard | 4f82c8a | 2005-08-09 21:40:08 +0000 | [diff] [blame] | 3637 | /* if one of them starts with a wildcard make valStr be it */ |
| 3638 | if (*valStr == '*') { |
| 3639 | const xmlChar *tmp; |
| 3640 | |
| 3641 | tmp = valStr; |
| 3642 | valStr = expStr; |
| 3643 | expStr = tmp; |
| 3644 | } |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3645 | if ((*valStr != 0) && (*expStr != 0) && (*expStr++ == '*')) { |
| 3646 | do { |
| 3647 | if (*valStr == XML_REG_STRING_SEPARATOR) |
| 3648 | break; |
Kasimier T. Buchcik | c0e833f | 2005-04-19 15:02:20 +0000 | [diff] [blame] | 3649 | valStr++; |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3650 | } while (*valStr != 0); |
| 3651 | continue; |
| 3652 | } else |
| 3653 | return(0); |
| 3654 | } |
Kasimier T. Buchcik | c0e833f | 2005-04-19 15:02:20 +0000 | [diff] [blame] | 3655 | expStr++; |
| 3656 | valStr++; |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3657 | } while (*valStr != 0); |
| 3658 | if (*expStr != 0) |
| 3659 | return (0); |
| 3660 | else |
| 3661 | return (1); |
| 3662 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3663 | |
| 3664 | /** |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3665 | * xmlRegCompactPushString: |
| 3666 | * @exec: a regexp execution context |
| 3667 | * @comp: the precompiled exec with a compact table |
| 3668 | * @value: a string token input |
| 3669 | * @data: data associated to the token to reuse in callbacks |
| 3670 | * |
| 3671 | * Push one input token in the execution context |
| 3672 | * |
| 3673 | * Returns: 1 if the regexp reached a final state, 0 if non-final, and |
| 3674 | * a negative value in case of error. |
| 3675 | */ |
| 3676 | static int |
| 3677 | xmlRegCompactPushString(xmlRegExecCtxtPtr exec, |
| 3678 | xmlRegexpPtr comp, |
| 3679 | const xmlChar *value, |
| 3680 | void *data) { |
| 3681 | int state = exec->index; |
| 3682 | int i, target; |
| 3683 | |
| 3684 | if ((comp == NULL) || (comp->compact == NULL) || (comp->stringMap == NULL)) |
| 3685 | return(-1); |
| 3686 | |
| 3687 | if (value == NULL) { |
| 3688 | /* |
| 3689 | * are we at a final state ? |
| 3690 | */ |
| 3691 | if (comp->compact[state * (comp->nbstrings + 1)] == |
| 3692 | XML_REGEXP_FINAL_STATE) |
| 3693 | return(1); |
| 3694 | return(0); |
| 3695 | } |
| 3696 | |
| 3697 | #ifdef DEBUG_PUSH |
| 3698 | printf("value pushed: %s\n", value); |
| 3699 | #endif |
| 3700 | |
| 3701 | /* |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 3702 | * Examine all outside transitions from current state |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3703 | */ |
| 3704 | for (i = 0;i < comp->nbstrings;i++) { |
| 3705 | target = comp->compact[state * (comp->nbstrings + 1) + i + 1]; |
| 3706 | if ((target > 0) && (target <= comp->nbstates)) { |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3707 | target--; /* to avoid 0 */ |
| 3708 | if (xmlRegStrEqualWildcard(comp->stringMap[i], value)) { |
| 3709 | exec->index = target; |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 3710 | if ((exec->callback != NULL) && (comp->transdata != NULL)) { |
| 3711 | exec->callback(exec->data, value, |
| 3712 | comp->transdata[state * comp->nbstrings + i], data); |
| 3713 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3714 | #ifdef DEBUG_PUSH |
| 3715 | printf("entering state %d\n", target); |
| 3716 | #endif |
| 3717 | if (comp->compact[target * (comp->nbstrings + 1)] == |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 3718 | XML_REGEXP_SINK_STATE) |
| 3719 | goto error; |
| 3720 | |
| 3721 | if (comp->compact[target * (comp->nbstrings + 1)] == |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3722 | XML_REGEXP_FINAL_STATE) |
| 3723 | return(1); |
| 3724 | return(0); |
| 3725 | } |
| 3726 | } |
| 3727 | } |
| 3728 | /* |
| 3729 | * Failed to find an exit transition out from current state for the |
| 3730 | * current token |
| 3731 | */ |
| 3732 | #ifdef DEBUG_PUSH |
| 3733 | printf("failed to find a transition for %s on state %d\n", value, state); |
| 3734 | #endif |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 3735 | error: |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3736 | if (exec->errString != NULL) |
| 3737 | xmlFree(exec->errString); |
| 3738 | exec->errString = xmlStrdup(value); |
| 3739 | exec->errStateNo = state; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3740 | exec->status = -1; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 3741 | #ifdef DEBUG_ERR |
| 3742 | testerr(exec); |
| 3743 | #endif |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3744 | return(-1); |
| 3745 | } |
| 3746 | |
| 3747 | /** |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 3748 | * xmlRegExecPushStringInternal: |
Daniel Veillard | ea7751d | 2002-12-20 00:16:24 +0000 | [diff] [blame] | 3749 | * @exec: a regexp execution context or NULL to indicate the end |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3750 | * @value: a string token input |
| 3751 | * @data: data associated to the token to reuse in callbacks |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 3752 | * @compound: value was assembled from 2 strings |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3753 | * |
| 3754 | * Push one input token in the execution context |
| 3755 | * |
| 3756 | * Returns: 1 if the regexp reached a final state, 0 if non-final, and |
| 3757 | * a negative value in case of error. |
| 3758 | */ |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 3759 | static int |
| 3760 | xmlRegExecPushStringInternal(xmlRegExecCtxtPtr exec, const xmlChar *value, |
| 3761 | void *data, int compound) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3762 | xmlRegTransPtr trans; |
| 3763 | xmlRegAtomPtr atom; |
| 3764 | int ret; |
| 3765 | int final = 0; |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 3766 | int progress = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3767 | |
| 3768 | if (exec == NULL) |
| 3769 | return(-1); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3770 | if (exec->comp == NULL) |
| 3771 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3772 | if (exec->status != 0) |
| 3773 | return(exec->status); |
| 3774 | |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 3775 | if (exec->comp->compact != NULL) |
| 3776 | return(xmlRegCompactPushString(exec, exec->comp, value, data)); |
| 3777 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3778 | if (value == NULL) { |
| 3779 | if (exec->state->type == XML_REGEXP_FINAL_STATE) |
| 3780 | return(1); |
| 3781 | final = 1; |
| 3782 | } |
| 3783 | |
| 3784 | #ifdef DEBUG_PUSH |
| 3785 | printf("value pushed: %s\n", value); |
| 3786 | #endif |
| 3787 | /* |
| 3788 | * If we have an active rollback stack push the new value there |
| 3789 | * and get back to where we were left |
| 3790 | */ |
| 3791 | if ((value != NULL) && (exec->inputStackNr > 0)) { |
| 3792 | xmlFARegExecSaveInputString(exec, value, data); |
| 3793 | value = exec->inputStack[exec->index].value; |
| 3794 | data = exec->inputStack[exec->index].data; |
| 3795 | #ifdef DEBUG_PUSH |
| 3796 | printf("value loaded: %s\n", value); |
| 3797 | #endif |
| 3798 | } |
| 3799 | |
| 3800 | while ((exec->status == 0) && |
| 3801 | ((value != NULL) || |
| 3802 | ((final == 1) && |
| 3803 | (exec->state->type != XML_REGEXP_FINAL_STATE)))) { |
| 3804 | |
| 3805 | /* |
| 3806 | * End of input on non-terminal state, rollback, however we may |
| 3807 | * still have epsilon like transition for counted transitions |
| 3808 | * on counters, in that case don't break too early. |
| 3809 | */ |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 3810 | if ((value == NULL) && (exec->counts == NULL)) |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3811 | goto rollback; |
| 3812 | |
| 3813 | exec->transcount = 0; |
| 3814 | for (;exec->transno < exec->state->nbTrans;exec->transno++) { |
| 3815 | trans = &exec->state->trans[exec->transno]; |
| 3816 | if (trans->to < 0) |
| 3817 | continue; |
| 3818 | atom = trans->atom; |
| 3819 | ret = 0; |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 3820 | if (trans->count == REGEXP_ALL_LAX_COUNTER) { |
| 3821 | int i; |
| 3822 | int count; |
| 3823 | xmlRegTransPtr t; |
| 3824 | xmlRegCounterPtr counter; |
| 3825 | |
| 3826 | ret = 0; |
| 3827 | |
| 3828 | #ifdef DEBUG_PUSH |
| 3829 | printf("testing all lax %d\n", trans->count); |
| 3830 | #endif |
| 3831 | /* |
| 3832 | * Check all counted transitions from the current state |
| 3833 | */ |
| 3834 | if ((value == NULL) && (final)) { |
| 3835 | ret = 1; |
| 3836 | } else if (value != NULL) { |
| 3837 | for (i = 0;i < exec->state->nbTrans;i++) { |
| 3838 | t = &exec->state->trans[i]; |
| 3839 | if ((t->counter < 0) || (t == trans)) |
| 3840 | continue; |
| 3841 | counter = &exec->comp->counters[t->counter]; |
| 3842 | count = exec->counts[t->counter]; |
| 3843 | if ((count < counter->max) && |
| 3844 | (t->atom != NULL) && |
| 3845 | (xmlStrEqual(value, t->atom->valuep))) { |
| 3846 | ret = 0; |
| 3847 | break; |
| 3848 | } |
| 3849 | if ((count >= counter->min) && |
| 3850 | (count < counter->max) && |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 3851 | (t->atom != NULL) && |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 3852 | (xmlStrEqual(value, t->atom->valuep))) { |
| 3853 | ret = 1; |
| 3854 | break; |
| 3855 | } |
| 3856 | } |
| 3857 | } |
| 3858 | } else if (trans->count == REGEXP_ALL_COUNTER) { |
Daniel Veillard | 8a001f6 | 2002-04-20 07:24:11 +0000 | [diff] [blame] | 3859 | int i; |
| 3860 | int count; |
| 3861 | xmlRegTransPtr t; |
| 3862 | xmlRegCounterPtr counter; |
| 3863 | |
| 3864 | ret = 1; |
| 3865 | |
| 3866 | #ifdef DEBUG_PUSH |
| 3867 | printf("testing all %d\n", trans->count); |
| 3868 | #endif |
| 3869 | /* |
| 3870 | * Check all counted transitions from the current state |
| 3871 | */ |
| 3872 | for (i = 0;i < exec->state->nbTrans;i++) { |
| 3873 | t = &exec->state->trans[i]; |
| 3874 | if ((t->counter < 0) || (t == trans)) |
| 3875 | continue; |
| 3876 | counter = &exec->comp->counters[t->counter]; |
| 3877 | count = exec->counts[t->counter]; |
| 3878 | if ((count < counter->min) || (count > counter->max)) { |
| 3879 | ret = 0; |
| 3880 | break; |
| 3881 | } |
| 3882 | } |
| 3883 | } else if (trans->count >= 0) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3884 | int count; |
| 3885 | xmlRegCounterPtr counter; |
| 3886 | |
| 3887 | /* |
| 3888 | * A counted transition. |
| 3889 | */ |
| 3890 | |
| 3891 | count = exec->counts[trans->count]; |
| 3892 | counter = &exec->comp->counters[trans->count]; |
| 3893 | #ifdef DEBUG_PUSH |
| 3894 | printf("testing count %d: val %d, min %d, max %d\n", |
| 3895 | trans->count, count, counter->min, counter->max); |
| 3896 | #endif |
| 3897 | ret = ((count >= counter->min) && (count <= counter->max)); |
| 3898 | } else if (atom == NULL) { |
| 3899 | fprintf(stderr, "epsilon transition left at runtime\n"); |
| 3900 | exec->status = -2; |
| 3901 | break; |
| 3902 | } else if (value != NULL) { |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 3903 | ret = xmlRegStrEqualWildcard(atom->valuep, value); |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 3904 | if (atom->neg) { |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 3905 | ret = !ret; |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 3906 | if (!compound) |
| 3907 | ret = 0; |
| 3908 | } |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 3909 | if ((ret == 1) && (trans->counter >= 0)) { |
| 3910 | xmlRegCounterPtr counter; |
| 3911 | int count; |
| 3912 | |
| 3913 | count = exec->counts[trans->counter]; |
| 3914 | counter = &exec->comp->counters[trans->counter]; |
| 3915 | if (count >= counter->max) |
| 3916 | ret = 0; |
| 3917 | } |
| 3918 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3919 | if ((ret == 1) && (atom->min > 0) && (atom->max > 0)) { |
| 3920 | xmlRegStatePtr to = exec->comp->states[trans->to]; |
| 3921 | |
| 3922 | /* |
| 3923 | * this is a multiple input sequence |
| 3924 | */ |
| 3925 | if (exec->state->nbTrans > exec->transno + 1) { |
| 3926 | if (exec->inputStackNr <= 0) { |
| 3927 | xmlFARegExecSaveInputString(exec, value, data); |
| 3928 | } |
| 3929 | xmlFARegExecSave(exec); |
| 3930 | } |
| 3931 | exec->transcount = 1; |
| 3932 | do { |
| 3933 | /* |
| 3934 | * Try to progress as much as possible on the input |
| 3935 | */ |
| 3936 | if (exec->transcount == atom->max) { |
| 3937 | break; |
| 3938 | } |
| 3939 | exec->index++; |
| 3940 | value = exec->inputStack[exec->index].value; |
| 3941 | data = exec->inputStack[exec->index].data; |
| 3942 | #ifdef DEBUG_PUSH |
| 3943 | printf("value loaded: %s\n", value); |
| 3944 | #endif |
| 3945 | |
| 3946 | /* |
| 3947 | * End of input: stop here |
| 3948 | */ |
| 3949 | if (value == NULL) { |
| 3950 | exec->index --; |
| 3951 | break; |
| 3952 | } |
| 3953 | if (exec->transcount >= atom->min) { |
| 3954 | int transno = exec->transno; |
| 3955 | xmlRegStatePtr state = exec->state; |
| 3956 | |
| 3957 | /* |
| 3958 | * The transition is acceptable save it |
| 3959 | */ |
| 3960 | exec->transno = -1; /* trick */ |
| 3961 | exec->state = to; |
| 3962 | if (exec->inputStackNr <= 0) { |
| 3963 | xmlFARegExecSaveInputString(exec, value, data); |
| 3964 | } |
| 3965 | xmlFARegExecSave(exec); |
| 3966 | exec->transno = transno; |
| 3967 | exec->state = state; |
| 3968 | } |
| 3969 | ret = xmlStrEqual(value, atom->valuep); |
| 3970 | exec->transcount++; |
| 3971 | } while (ret == 1); |
| 3972 | if (exec->transcount < atom->min) |
| 3973 | ret = 0; |
| 3974 | |
| 3975 | /* |
| 3976 | * If the last check failed but one transition was found |
| 3977 | * possible, rollback |
| 3978 | */ |
| 3979 | if (ret < 0) |
| 3980 | ret = 0; |
| 3981 | if (ret == 0) { |
| 3982 | goto rollback; |
| 3983 | } |
| 3984 | } |
| 3985 | } |
| 3986 | if (ret == 1) { |
William M. Brack | 9887395 | 2003-12-26 06:03:14 +0000 | [diff] [blame] | 3987 | if ((exec->callback != NULL) && (atom != NULL) && |
| 3988 | (data != NULL)) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 3989 | exec->callback(exec->data, atom->valuep, |
| 3990 | atom->data, data); |
| 3991 | } |
| 3992 | if (exec->state->nbTrans > exec->transno + 1) { |
| 3993 | if (exec->inputStackNr <= 0) { |
| 3994 | xmlFARegExecSaveInputString(exec, value, data); |
| 3995 | } |
| 3996 | xmlFARegExecSave(exec); |
| 3997 | } |
| 3998 | if (trans->counter >= 0) { |
| 3999 | #ifdef DEBUG_PUSH |
| 4000 | printf("Increasing count %d\n", trans->counter); |
| 4001 | #endif |
| 4002 | exec->counts[trans->counter]++; |
| 4003 | } |
Daniel Veillard | 1075228 | 2005-08-08 13:05:13 +0000 | [diff] [blame] | 4004 | if ((trans->count >= 0) && |
| 4005 | (trans->count < REGEXP_ALL_COUNTER)) { |
| 4006 | #ifdef DEBUG_REGEXP_EXEC |
| 4007 | printf("resetting count %d on transition\n", |
| 4008 | trans->count); |
| 4009 | #endif |
| 4010 | exec->counts[trans->count] = 0; |
| 4011 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4012 | #ifdef DEBUG_PUSH |
| 4013 | printf("entering state %d\n", trans->to); |
| 4014 | #endif |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4015 | if ((exec->comp->states[trans->to] != NULL) && |
| 4016 | (exec->comp->states[trans->to]->type == |
| 4017 | XML_REGEXP_SINK_STATE)) { |
| 4018 | /* |
| 4019 | * entering a sink state, save the current state as error |
| 4020 | * state. |
| 4021 | */ |
| 4022 | if (exec->errString != NULL) |
| 4023 | xmlFree(exec->errString); |
| 4024 | exec->errString = xmlStrdup(value); |
| 4025 | exec->errState = exec->state; |
| 4026 | memcpy(exec->errCounts, exec->counts, |
| 4027 | exec->comp->nbCounters * sizeof(int)); |
| 4028 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4029 | exec->state = exec->comp->states[trans->to]; |
| 4030 | exec->transno = 0; |
| 4031 | if (trans->atom != NULL) { |
| 4032 | if (exec->inputStack != NULL) { |
| 4033 | exec->index++; |
| 4034 | if (exec->index < exec->inputStackNr) { |
| 4035 | value = exec->inputStack[exec->index].value; |
| 4036 | data = exec->inputStack[exec->index].data; |
| 4037 | #ifdef DEBUG_PUSH |
| 4038 | printf("value loaded: %s\n", value); |
| 4039 | #endif |
| 4040 | } else { |
| 4041 | value = NULL; |
| 4042 | data = NULL; |
| 4043 | #ifdef DEBUG_PUSH |
| 4044 | printf("end of input\n"); |
| 4045 | #endif |
| 4046 | } |
| 4047 | } else { |
| 4048 | value = NULL; |
| 4049 | data = NULL; |
| 4050 | #ifdef DEBUG_PUSH |
| 4051 | printf("end of input\n"); |
| 4052 | #endif |
| 4053 | } |
| 4054 | } |
| 4055 | goto progress; |
| 4056 | } else if (ret < 0) { |
| 4057 | exec->status = -4; |
| 4058 | break; |
| 4059 | } |
| 4060 | } |
| 4061 | if ((exec->transno != 0) || (exec->state->nbTrans == 0)) { |
| 4062 | rollback: |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4063 | /* |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4064 | * if we didn't yet rollback on the current input |
| 4065 | * store the current state as the error state. |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4066 | */ |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4067 | if ((progress) && (exec->state != NULL) && |
| 4068 | (exec->state->type != XML_REGEXP_SINK_STATE)) { |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4069 | progress = 0; |
| 4070 | if (exec->errString != NULL) |
| 4071 | xmlFree(exec->errString); |
| 4072 | exec->errString = xmlStrdup(value); |
| 4073 | exec->errState = exec->state; |
| 4074 | memcpy(exec->errCounts, exec->counts, |
| 4075 | exec->comp->nbCounters * sizeof(int)); |
| 4076 | } |
| 4077 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4078 | /* |
| 4079 | * Failed to find a way out |
| 4080 | */ |
| 4081 | exec->determinist = 0; |
| 4082 | xmlFARegExecRollBack(exec); |
| 4083 | if (exec->status == 0) { |
| 4084 | value = exec->inputStack[exec->index].value; |
| 4085 | data = exec->inputStack[exec->index].data; |
| 4086 | #ifdef DEBUG_PUSH |
| 4087 | printf("value loaded: %s\n", value); |
| 4088 | #endif |
| 4089 | } |
| 4090 | } |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4091 | continue; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4092 | progress: |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4093 | progress = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4094 | continue; |
| 4095 | } |
| 4096 | if (exec->status == 0) { |
| 4097 | return(exec->state->type == XML_REGEXP_FINAL_STATE); |
| 4098 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4099 | #ifdef DEBUG_ERR |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4100 | if (exec->status < 0) { |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4101 | testerr(exec); |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4102 | } |
Daniel Veillard | 9070015 | 2005-01-08 22:05:09 +0000 | [diff] [blame] | 4103 | #endif |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4104 | return(exec->status); |
| 4105 | } |
| 4106 | |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4107 | /** |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 4108 | * xmlRegExecPushString: |
| 4109 | * @exec: a regexp execution context or NULL to indicate the end |
| 4110 | * @value: a string token input |
| 4111 | * @data: data associated to the token to reuse in callbacks |
| 4112 | * |
| 4113 | * Push one input token in the execution context |
| 4114 | * |
| 4115 | * Returns: 1 if the regexp reached a final state, 0 if non-final, and |
| 4116 | * a negative value in case of error. |
| 4117 | */ |
| 4118 | int |
| 4119 | xmlRegExecPushString(xmlRegExecCtxtPtr exec, const xmlChar *value, |
| 4120 | void *data) { |
| 4121 | return(xmlRegExecPushStringInternal(exec, value, data, 0)); |
| 4122 | } |
| 4123 | |
| 4124 | /** |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4125 | * xmlRegExecPushString2: |
| 4126 | * @exec: a regexp execution context or NULL to indicate the end |
| 4127 | * @value: the first string token input |
| 4128 | * @value2: the second string token input |
| 4129 | * @data: data associated to the token to reuse in callbacks |
| 4130 | * |
| 4131 | * Push one input token in the execution context |
| 4132 | * |
| 4133 | * Returns: 1 if the regexp reached a final state, 0 if non-final, and |
| 4134 | * a negative value in case of error. |
| 4135 | */ |
| 4136 | int |
| 4137 | xmlRegExecPushString2(xmlRegExecCtxtPtr exec, const xmlChar *value, |
| 4138 | const xmlChar *value2, void *data) { |
| 4139 | xmlChar buf[150]; |
| 4140 | int lenn, lenp, ret; |
| 4141 | xmlChar *str; |
| 4142 | |
| 4143 | if (exec == NULL) |
| 4144 | return(-1); |
| 4145 | if (exec->comp == NULL) |
| 4146 | return(-1); |
| 4147 | if (exec->status != 0) |
| 4148 | return(exec->status); |
| 4149 | |
| 4150 | if (value2 == NULL) |
| 4151 | return(xmlRegExecPushString(exec, value, data)); |
| 4152 | |
| 4153 | lenn = strlen((char *) value2); |
| 4154 | lenp = strlen((char *) value); |
| 4155 | |
| 4156 | if (150 < lenn + lenp + 2) { |
Daniel Veillard | 3c908dc | 2003-04-19 00:07:51 +0000 | [diff] [blame] | 4157 | str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4158 | if (str == NULL) { |
| 4159 | exec->status = -1; |
| 4160 | return(-1); |
| 4161 | } |
| 4162 | } else { |
| 4163 | str = buf; |
| 4164 | } |
| 4165 | memcpy(&str[0], value, lenp); |
Daniel Veillard | c0826a7 | 2004-08-10 14:17:33 +0000 | [diff] [blame] | 4166 | str[lenp] = XML_REG_STRING_SEPARATOR; |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4167 | memcpy(&str[lenp + 1], value2, lenn); |
| 4168 | str[lenn + lenp + 1] = 0; |
| 4169 | |
| 4170 | if (exec->comp->compact != NULL) |
| 4171 | ret = xmlRegCompactPushString(exec, exec->comp, str, data); |
| 4172 | else |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 4173 | ret = xmlRegExecPushStringInternal(exec, str, data, 1); |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4174 | |
| 4175 | if (str != buf) |
Daniel Veillard | 0b1ff14 | 2005-12-28 21:13:33 +0000 | [diff] [blame] | 4176 | xmlFree(str); |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 4177 | return(ret); |
| 4178 | } |
| 4179 | |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4180 | /** |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 4181 | * xmlRegExecGetValues: |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4182 | * @exec: a regexp execution context |
| 4183 | * @err: error extraction or normal one |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4184 | * @nbval: pointer to the number of accepted values IN/OUT |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4185 | * @nbneg: return number of negative transitions |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4186 | * @values: pointer to the array of acceptable values |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4187 | * @terminal: return value if this was a terminal state |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4188 | * |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4189 | * Extract informations from the regexp execution, internal routine to |
| 4190 | * implement xmlRegExecNextValues() and xmlRegExecErrInfo() |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4191 | * |
| 4192 | * Returns: 0 in case of success or -1 in case of error. |
| 4193 | */ |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4194 | static int |
| 4195 | xmlRegExecGetValues(xmlRegExecCtxtPtr exec, int err, |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4196 | int *nbval, int *nbneg, |
| 4197 | xmlChar **values, int *terminal) { |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4198 | int maxval; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4199 | int nb = 0; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4200 | |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4201 | if ((exec == NULL) || (nbval == NULL) || (nbneg == NULL) || |
| 4202 | (values == NULL) || (*nbval <= 0)) |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4203 | return(-1); |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4204 | |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4205 | maxval = *nbval; |
| 4206 | *nbval = 0; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4207 | *nbneg = 0; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4208 | if ((exec->comp != NULL) && (exec->comp->compact != NULL)) { |
| 4209 | xmlRegexpPtr comp; |
| 4210 | int target, i, state; |
| 4211 | |
| 4212 | comp = exec->comp; |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4213 | |
| 4214 | if (err) { |
| 4215 | if (exec->errStateNo == -1) return(-1); |
| 4216 | state = exec->errStateNo; |
| 4217 | } else { |
| 4218 | state = exec->index; |
| 4219 | } |
| 4220 | if (terminal != NULL) { |
| 4221 | if (comp->compact[state * (comp->nbstrings + 1)] == |
| 4222 | XML_REGEXP_FINAL_STATE) |
| 4223 | *terminal = 1; |
| 4224 | else |
| 4225 | *terminal = 0; |
| 4226 | } |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4227 | for (i = 0;(i < comp->nbstrings) && (nb < maxval);i++) { |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4228 | target = comp->compact[state * (comp->nbstrings + 1) + i + 1]; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4229 | if ((target > 0) && (target <= comp->nbstates) && |
| 4230 | (comp->compact[(target - 1) * (comp->nbstrings + 1)] != |
| 4231 | XML_REGEXP_SINK_STATE)) { |
| 4232 | values[nb++] = comp->stringMap[i]; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4233 | (*nbval)++; |
| 4234 | } |
| 4235 | } |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4236 | for (i = 0;(i < comp->nbstrings) && (nb < maxval);i++) { |
| 4237 | target = comp->compact[state * (comp->nbstrings + 1) + i + 1]; |
| 4238 | if ((target > 0) && (target <= comp->nbstates) && |
| 4239 | (comp->compact[(target - 1) * (comp->nbstrings + 1)] == |
| 4240 | XML_REGEXP_SINK_STATE)) { |
| 4241 | values[nb++] = comp->stringMap[i]; |
| 4242 | (*nbneg)++; |
| 4243 | } |
| 4244 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4245 | } else { |
| 4246 | int transno; |
| 4247 | xmlRegTransPtr trans; |
| 4248 | xmlRegAtomPtr atom; |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4249 | xmlRegStatePtr state; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4250 | |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4251 | if (terminal != NULL) { |
| 4252 | if (exec->state->type == XML_REGEXP_FINAL_STATE) |
| 4253 | *terminal = 1; |
| 4254 | else |
| 4255 | *terminal = 0; |
| 4256 | } |
| 4257 | |
| 4258 | if (err) { |
| 4259 | if (exec->errState == NULL) return(-1); |
| 4260 | state = exec->errState; |
| 4261 | } else { |
| 4262 | if (exec->state == NULL) return(-1); |
| 4263 | state = exec->state; |
| 4264 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4265 | for (transno = 0; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4266 | (transno < state->nbTrans) && (nb < maxval); |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4267 | transno++) { |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4268 | trans = &state->trans[transno]; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4269 | if (trans->to < 0) |
| 4270 | continue; |
| 4271 | atom = trans->atom; |
| 4272 | if ((atom == NULL) || (atom->valuep == NULL)) |
| 4273 | continue; |
| 4274 | if (trans->count == REGEXP_ALL_LAX_COUNTER) { |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4275 | /* this should not be reached but ... */ |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4276 | TODO; |
| 4277 | } else if (trans->count == REGEXP_ALL_COUNTER) { |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4278 | /* this should not be reached but ... */ |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4279 | TODO; |
| 4280 | } else if (trans->counter >= 0) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 4281 | xmlRegCounterPtr counter = NULL; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4282 | int count; |
| 4283 | |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4284 | if (err) |
| 4285 | count = exec->errCounts[trans->counter]; |
| 4286 | else |
| 4287 | count = exec->counts[trans->counter]; |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 4288 | if (exec->comp != NULL) |
| 4289 | counter = &exec->comp->counters[trans->counter]; |
| 4290 | if ((counter == NULL) || (count < counter->max)) { |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 4291 | if (atom->neg) |
| 4292 | values[nb++] = (xmlChar *) atom->valuep2; |
| 4293 | else |
| 4294 | values[nb++] = (xmlChar *) atom->valuep; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4295 | (*nbval)++; |
| 4296 | } |
| 4297 | } else { |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4298 | if ((exec->comp->states[trans->to] != NULL) && |
| 4299 | (exec->comp->states[trans->to]->type != |
| 4300 | XML_REGEXP_SINK_STATE)) { |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 4301 | if (atom->neg) |
| 4302 | values[nb++] = (xmlChar *) atom->valuep2; |
| 4303 | else |
| 4304 | values[nb++] = (xmlChar *) atom->valuep; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4305 | (*nbval)++; |
| 4306 | } |
| 4307 | } |
| 4308 | } |
| 4309 | for (transno = 0; |
| 4310 | (transno < state->nbTrans) && (nb < maxval); |
| 4311 | transno++) { |
| 4312 | trans = &state->trans[transno]; |
| 4313 | if (trans->to < 0) |
| 4314 | continue; |
| 4315 | atom = trans->atom; |
| 4316 | if ((atom == NULL) || (atom->valuep == NULL)) |
| 4317 | continue; |
| 4318 | if (trans->count == REGEXP_ALL_LAX_COUNTER) { |
| 4319 | continue; |
| 4320 | } else if (trans->count == REGEXP_ALL_COUNTER) { |
| 4321 | continue; |
| 4322 | } else if (trans->counter >= 0) { |
| 4323 | continue; |
| 4324 | } else { |
| 4325 | if ((exec->comp->states[trans->to] != NULL) && |
| 4326 | (exec->comp->states[trans->to]->type == |
| 4327 | XML_REGEXP_SINK_STATE)) { |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 4328 | if (atom->neg) |
| 4329 | values[nb++] = (xmlChar *) atom->valuep2; |
| 4330 | else |
| 4331 | values[nb++] = (xmlChar *) atom->valuep; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4332 | (*nbneg)++; |
| 4333 | } |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4334 | } |
| 4335 | } |
| 4336 | } |
| 4337 | return(0); |
| 4338 | } |
| 4339 | |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4340 | /** |
| 4341 | * xmlRegExecNextValues: |
| 4342 | * @exec: a regexp execution context |
| 4343 | * @nbval: pointer to the number of accepted values IN/OUT |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4344 | * @nbneg: return number of negative transitions |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4345 | * @values: pointer to the array of acceptable values |
| 4346 | * @terminal: return value if this was a terminal state |
| 4347 | * |
| 4348 | * Extract informations from the regexp execution, |
| 4349 | * the parameter @values must point to an array of @nbval string pointers |
| 4350 | * on return nbval will contain the number of possible strings in that |
| 4351 | * state and the @values array will be updated with them. The string values |
| 4352 | * returned will be freed with the @exec context and don't need to be |
| 4353 | * deallocated. |
| 4354 | * |
| 4355 | * Returns: 0 in case of success or -1 in case of error. |
| 4356 | */ |
| 4357 | int |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4358 | xmlRegExecNextValues(xmlRegExecCtxtPtr exec, int *nbval, int *nbneg, |
| 4359 | xmlChar **values, int *terminal) { |
| 4360 | return(xmlRegExecGetValues(exec, 0, nbval, nbneg, values, terminal)); |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4361 | } |
| 4362 | |
| 4363 | /** |
| 4364 | * xmlRegExecErrInfo: |
| 4365 | * @exec: a regexp execution context generating an error |
| 4366 | * @string: return value for the error string |
| 4367 | * @nbval: pointer to the number of accepted values IN/OUT |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4368 | * @nbneg: return number of negative transitions |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4369 | * @values: pointer to the array of acceptable values |
| 4370 | * @terminal: return value if this was a terminal state |
| 4371 | * |
| 4372 | * Extract error informations from the regexp execution, the parameter |
| 4373 | * @string will be updated with the value pushed and not accepted, |
| 4374 | * the parameter @values must point to an array of @nbval string pointers |
| 4375 | * on return nbval will contain the number of possible strings in that |
| 4376 | * state and the @values array will be updated with them. The string values |
| 4377 | * returned will be freed with the @exec context and don't need to be |
| 4378 | * deallocated. |
| 4379 | * |
| 4380 | * Returns: 0 in case of success or -1 in case of error. |
| 4381 | */ |
| 4382 | int |
| 4383 | xmlRegExecErrInfo(xmlRegExecCtxtPtr exec, const xmlChar **string, |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4384 | int *nbval, int *nbneg, xmlChar **values, int *terminal) { |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4385 | if (exec == NULL) |
| 4386 | return(-1); |
| 4387 | if (string != NULL) { |
| 4388 | if (exec->status != 0) |
| 4389 | *string = exec->errString; |
| 4390 | else |
| 4391 | *string = NULL; |
| 4392 | } |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4393 | return(xmlRegExecGetValues(exec, 1, nbval, nbneg, values, terminal)); |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4394 | } |
| 4395 | |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4396 | #ifdef DEBUG_ERR |
| 4397 | static void testerr(xmlRegExecCtxtPtr exec) { |
| 4398 | const xmlChar *string; |
Daniel Veillard | cee2b3a | 2005-01-25 00:22:52 +0000 | [diff] [blame] | 4399 | xmlChar *values[5]; |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4400 | int nb = 5; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4401 | int nbneg; |
Daniel Veillard | fc0b6f6 | 2005-01-09 17:48:02 +0000 | [diff] [blame] | 4402 | int terminal; |
Daniel Veillard | cc026dc | 2005-01-12 13:21:17 +0000 | [diff] [blame] | 4403 | xmlRegExecErrInfo(exec, &string, &nb, &nbneg, &values[0], &terminal); |
Daniel Veillard | 7bd8b4b | 2005-01-07 13:56:19 +0000 | [diff] [blame] | 4404 | } |
| 4405 | #endif |
| 4406 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4407 | #if 0 |
| 4408 | static int |
| 4409 | xmlRegExecPushChar(xmlRegExecCtxtPtr exec, int UCS) { |
| 4410 | xmlRegTransPtr trans; |
| 4411 | xmlRegAtomPtr atom; |
| 4412 | int ret; |
| 4413 | int codepoint, len; |
| 4414 | |
| 4415 | if (exec == NULL) |
| 4416 | return(-1); |
| 4417 | if (exec->status != 0) |
| 4418 | return(exec->status); |
| 4419 | |
| 4420 | while ((exec->status == 0) && |
| 4421 | ((exec->inputString[exec->index] != 0) || |
| 4422 | (exec->state->type != XML_REGEXP_FINAL_STATE))) { |
| 4423 | |
| 4424 | /* |
| 4425 | * End of input on non-terminal state, rollback, however we may |
| 4426 | * still have epsilon like transition for counted transitions |
| 4427 | * on counters, in that case don't break too early. |
| 4428 | */ |
| 4429 | if ((exec->inputString[exec->index] == 0) && (exec->counts == NULL)) |
| 4430 | goto rollback; |
| 4431 | |
| 4432 | exec->transcount = 0; |
| 4433 | for (;exec->transno < exec->state->nbTrans;exec->transno++) { |
| 4434 | trans = &exec->state->trans[exec->transno]; |
| 4435 | if (trans->to < 0) |
| 4436 | continue; |
| 4437 | atom = trans->atom; |
| 4438 | ret = 0; |
| 4439 | if (trans->count >= 0) { |
| 4440 | int count; |
| 4441 | xmlRegCounterPtr counter; |
| 4442 | |
| 4443 | /* |
| 4444 | * A counted transition. |
| 4445 | */ |
| 4446 | |
| 4447 | count = exec->counts[trans->count]; |
| 4448 | counter = &exec->comp->counters[trans->count]; |
| 4449 | #ifdef DEBUG_REGEXP_EXEC |
| 4450 | printf("testing count %d: val %d, min %d, max %d\n", |
| 4451 | trans->count, count, counter->min, counter->max); |
| 4452 | #endif |
| 4453 | ret = ((count >= counter->min) && (count <= counter->max)); |
| 4454 | } else if (atom == NULL) { |
| 4455 | fprintf(stderr, "epsilon transition left at runtime\n"); |
| 4456 | exec->status = -2; |
| 4457 | break; |
| 4458 | } else if (exec->inputString[exec->index] != 0) { |
| 4459 | codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), len); |
| 4460 | ret = xmlRegCheckCharacter(atom, codepoint); |
| 4461 | if ((ret == 1) && (atom->min > 0) && (atom->max > 0)) { |
| 4462 | xmlRegStatePtr to = exec->comp->states[trans->to]; |
| 4463 | |
| 4464 | /* |
| 4465 | * this is a multiple input sequence |
| 4466 | */ |
| 4467 | if (exec->state->nbTrans > exec->transno + 1) { |
| 4468 | xmlFARegExecSave(exec); |
| 4469 | } |
| 4470 | exec->transcount = 1; |
| 4471 | do { |
| 4472 | /* |
| 4473 | * Try to progress as much as possible on the input |
| 4474 | */ |
| 4475 | if (exec->transcount == atom->max) { |
| 4476 | break; |
| 4477 | } |
| 4478 | exec->index += len; |
| 4479 | /* |
| 4480 | * End of input: stop here |
| 4481 | */ |
| 4482 | if (exec->inputString[exec->index] == 0) { |
| 4483 | exec->index -= len; |
| 4484 | break; |
| 4485 | } |
| 4486 | if (exec->transcount >= atom->min) { |
| 4487 | int transno = exec->transno; |
| 4488 | xmlRegStatePtr state = exec->state; |
| 4489 | |
| 4490 | /* |
| 4491 | * The transition is acceptable save it |
| 4492 | */ |
| 4493 | exec->transno = -1; /* trick */ |
| 4494 | exec->state = to; |
| 4495 | xmlFARegExecSave(exec); |
| 4496 | exec->transno = transno; |
| 4497 | exec->state = state; |
| 4498 | } |
| 4499 | codepoint = CUR_SCHAR(&(exec->inputString[exec->index]), |
| 4500 | len); |
| 4501 | ret = xmlRegCheckCharacter(atom, codepoint); |
| 4502 | exec->transcount++; |
| 4503 | } while (ret == 1); |
| 4504 | if (exec->transcount < atom->min) |
| 4505 | ret = 0; |
| 4506 | |
| 4507 | /* |
| 4508 | * If the last check failed but one transition was found |
| 4509 | * possible, rollback |
| 4510 | */ |
| 4511 | if (ret < 0) |
| 4512 | ret = 0; |
| 4513 | if (ret == 0) { |
| 4514 | goto rollback; |
| 4515 | } |
| 4516 | } |
| 4517 | } |
| 4518 | if (ret == 1) { |
| 4519 | if (exec->state->nbTrans > exec->transno + 1) { |
| 4520 | xmlFARegExecSave(exec); |
| 4521 | } |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 4522 | /* |
| 4523 | * restart count for expressions like this ((abc){2})* |
| 4524 | */ |
| 4525 | if (trans->count >= 0) { |
| 4526 | #ifdef DEBUG_REGEXP_EXEC |
| 4527 | printf("Reset count %d\n", trans->count); |
| 4528 | #endif |
| 4529 | exec->counts[trans->count] = 0; |
| 4530 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4531 | if (trans->counter >= 0) { |
| 4532 | #ifdef DEBUG_REGEXP_EXEC |
| 4533 | printf("Increasing count %d\n", trans->counter); |
| 4534 | #endif |
| 4535 | exec->counts[trans->counter]++; |
| 4536 | } |
| 4537 | #ifdef DEBUG_REGEXP_EXEC |
| 4538 | printf("entering state %d\n", trans->to); |
| 4539 | #endif |
| 4540 | exec->state = exec->comp->states[trans->to]; |
| 4541 | exec->transno = 0; |
| 4542 | if (trans->atom != NULL) { |
| 4543 | exec->index += len; |
| 4544 | } |
| 4545 | goto progress; |
| 4546 | } else if (ret < 0) { |
| 4547 | exec->status = -4; |
| 4548 | break; |
| 4549 | } |
| 4550 | } |
| 4551 | if ((exec->transno != 0) || (exec->state->nbTrans == 0)) { |
| 4552 | rollback: |
| 4553 | /* |
| 4554 | * Failed to find a way out |
| 4555 | */ |
| 4556 | exec->determinist = 0; |
| 4557 | xmlFARegExecRollBack(exec); |
| 4558 | } |
| 4559 | progress: |
| 4560 | continue; |
| 4561 | } |
| 4562 | } |
| 4563 | #endif |
| 4564 | /************************************************************************ |
| 4565 | * * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 4566 | * Parser for the Schemas Datatype Regular Expressions * |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4567 | * http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#regexs * |
| 4568 | * * |
| 4569 | ************************************************************************/ |
| 4570 | |
| 4571 | /** |
| 4572 | * xmlFAIsChar: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 4573 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4574 | * |
| 4575 | * [10] Char ::= [^.\?*+()|#x5B#x5D] |
| 4576 | */ |
| 4577 | static int |
| 4578 | xmlFAIsChar(xmlRegParserCtxtPtr ctxt) { |
| 4579 | int cur; |
| 4580 | int len; |
| 4581 | |
| 4582 | cur = CUR_SCHAR(ctxt->cur, len); |
| 4583 | if ((cur == '.') || (cur == '\\') || (cur == '?') || |
| 4584 | (cur == '*') || (cur == '+') || (cur == '(') || |
| 4585 | (cur == ')') || (cur == '|') || (cur == 0x5B) || |
| 4586 | (cur == 0x5D) || (cur == 0)) |
| 4587 | return(-1); |
| 4588 | return(cur); |
| 4589 | } |
| 4590 | |
| 4591 | /** |
| 4592 | * xmlFAParseCharProp: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 4593 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4594 | * |
| 4595 | * [27] charProp ::= IsCategory | IsBlock |
| 4596 | * [28] IsCategory ::= Letters | Marks | Numbers | Punctuation | |
| 4597 | * Separators | Symbols | Others |
| 4598 | * [29] Letters ::= 'L' [ultmo]? |
| 4599 | * [30] Marks ::= 'M' [nce]? |
| 4600 | * [31] Numbers ::= 'N' [dlo]? |
| 4601 | * [32] Punctuation ::= 'P' [cdseifo]? |
| 4602 | * [33] Separators ::= 'Z' [slp]? |
| 4603 | * [34] Symbols ::= 'S' [mcko]? |
| 4604 | * [35] Others ::= 'C' [cfon]? |
| 4605 | * [36] IsBlock ::= 'Is' [a-zA-Z0-9#x2D]+ |
| 4606 | */ |
| 4607 | static void |
| 4608 | xmlFAParseCharProp(xmlRegParserCtxtPtr ctxt) { |
| 4609 | int cur; |
William M. Brack | 779af00 | 2003-08-01 15:55:39 +0000 | [diff] [blame] | 4610 | xmlRegAtomType type = (xmlRegAtomType) 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4611 | xmlChar *blockName = NULL; |
| 4612 | |
| 4613 | cur = CUR; |
| 4614 | if (cur == 'L') { |
| 4615 | NEXT; |
| 4616 | cur = CUR; |
| 4617 | if (cur == 'u') { |
| 4618 | NEXT; |
| 4619 | type = XML_REGEXP_LETTER_UPPERCASE; |
| 4620 | } else if (cur == 'l') { |
| 4621 | NEXT; |
| 4622 | type = XML_REGEXP_LETTER_LOWERCASE; |
| 4623 | } else if (cur == 't') { |
| 4624 | NEXT; |
| 4625 | type = XML_REGEXP_LETTER_TITLECASE; |
| 4626 | } else if (cur == 'm') { |
| 4627 | NEXT; |
| 4628 | type = XML_REGEXP_LETTER_MODIFIER; |
| 4629 | } else if (cur == 'o') { |
| 4630 | NEXT; |
| 4631 | type = XML_REGEXP_LETTER_OTHERS; |
| 4632 | } else { |
| 4633 | type = XML_REGEXP_LETTER; |
| 4634 | } |
| 4635 | } else if (cur == 'M') { |
| 4636 | NEXT; |
| 4637 | cur = CUR; |
| 4638 | if (cur == 'n') { |
| 4639 | NEXT; |
| 4640 | /* nonspacing */ |
| 4641 | type = XML_REGEXP_MARK_NONSPACING; |
| 4642 | } else if (cur == 'c') { |
| 4643 | NEXT; |
| 4644 | /* spacing combining */ |
| 4645 | type = XML_REGEXP_MARK_SPACECOMBINING; |
| 4646 | } else if (cur == 'e') { |
| 4647 | NEXT; |
| 4648 | /* enclosing */ |
| 4649 | type = XML_REGEXP_MARK_ENCLOSING; |
| 4650 | } else { |
| 4651 | /* all marks */ |
| 4652 | type = XML_REGEXP_MARK; |
| 4653 | } |
| 4654 | } else if (cur == 'N') { |
| 4655 | NEXT; |
| 4656 | cur = CUR; |
| 4657 | if (cur == 'd') { |
| 4658 | NEXT; |
| 4659 | /* digital */ |
| 4660 | type = XML_REGEXP_NUMBER_DECIMAL; |
| 4661 | } else if (cur == 'l') { |
| 4662 | NEXT; |
| 4663 | /* letter */ |
| 4664 | type = XML_REGEXP_NUMBER_LETTER; |
| 4665 | } else if (cur == 'o') { |
| 4666 | NEXT; |
| 4667 | /* other */ |
| 4668 | type = XML_REGEXP_NUMBER_OTHERS; |
| 4669 | } else { |
| 4670 | /* all numbers */ |
| 4671 | type = XML_REGEXP_NUMBER; |
| 4672 | } |
| 4673 | } else if (cur == 'P') { |
| 4674 | NEXT; |
| 4675 | cur = CUR; |
| 4676 | if (cur == 'c') { |
| 4677 | NEXT; |
| 4678 | /* connector */ |
| 4679 | type = XML_REGEXP_PUNCT_CONNECTOR; |
| 4680 | } else if (cur == 'd') { |
| 4681 | NEXT; |
| 4682 | /* dash */ |
| 4683 | type = XML_REGEXP_PUNCT_DASH; |
| 4684 | } else if (cur == 's') { |
| 4685 | NEXT; |
| 4686 | /* open */ |
| 4687 | type = XML_REGEXP_PUNCT_OPEN; |
| 4688 | } else if (cur == 'e') { |
| 4689 | NEXT; |
| 4690 | /* close */ |
| 4691 | type = XML_REGEXP_PUNCT_CLOSE; |
| 4692 | } else if (cur == 'i') { |
| 4693 | NEXT; |
| 4694 | /* initial quote */ |
| 4695 | type = XML_REGEXP_PUNCT_INITQUOTE; |
| 4696 | } else if (cur == 'f') { |
| 4697 | NEXT; |
| 4698 | /* final quote */ |
| 4699 | type = XML_REGEXP_PUNCT_FINQUOTE; |
| 4700 | } else if (cur == 'o') { |
| 4701 | NEXT; |
| 4702 | /* other */ |
| 4703 | type = XML_REGEXP_PUNCT_OTHERS; |
| 4704 | } else { |
| 4705 | /* all punctuation */ |
| 4706 | type = XML_REGEXP_PUNCT; |
| 4707 | } |
| 4708 | } else if (cur == 'Z') { |
| 4709 | NEXT; |
| 4710 | cur = CUR; |
| 4711 | if (cur == 's') { |
| 4712 | NEXT; |
| 4713 | /* space */ |
| 4714 | type = XML_REGEXP_SEPAR_SPACE; |
| 4715 | } else if (cur == 'l') { |
| 4716 | NEXT; |
| 4717 | /* line */ |
| 4718 | type = XML_REGEXP_SEPAR_LINE; |
| 4719 | } else if (cur == 'p') { |
| 4720 | NEXT; |
| 4721 | /* paragraph */ |
| 4722 | type = XML_REGEXP_SEPAR_PARA; |
| 4723 | } else { |
| 4724 | /* all separators */ |
| 4725 | type = XML_REGEXP_SEPAR; |
| 4726 | } |
| 4727 | } else if (cur == 'S') { |
| 4728 | NEXT; |
| 4729 | cur = CUR; |
| 4730 | if (cur == 'm') { |
| 4731 | NEXT; |
| 4732 | type = XML_REGEXP_SYMBOL_MATH; |
| 4733 | /* math */ |
| 4734 | } else if (cur == 'c') { |
| 4735 | NEXT; |
| 4736 | type = XML_REGEXP_SYMBOL_CURRENCY; |
| 4737 | /* currency */ |
| 4738 | } else if (cur == 'k') { |
| 4739 | NEXT; |
| 4740 | type = XML_REGEXP_SYMBOL_MODIFIER; |
| 4741 | /* modifiers */ |
| 4742 | } else if (cur == 'o') { |
| 4743 | NEXT; |
| 4744 | type = XML_REGEXP_SYMBOL_OTHERS; |
| 4745 | /* other */ |
| 4746 | } else { |
| 4747 | /* all symbols */ |
| 4748 | type = XML_REGEXP_SYMBOL; |
| 4749 | } |
| 4750 | } else if (cur == 'C') { |
| 4751 | NEXT; |
| 4752 | cur = CUR; |
| 4753 | if (cur == 'c') { |
| 4754 | NEXT; |
| 4755 | /* control */ |
| 4756 | type = XML_REGEXP_OTHER_CONTROL; |
| 4757 | } else if (cur == 'f') { |
| 4758 | NEXT; |
| 4759 | /* format */ |
| 4760 | type = XML_REGEXP_OTHER_FORMAT; |
| 4761 | } else if (cur == 'o') { |
| 4762 | NEXT; |
| 4763 | /* private use */ |
| 4764 | type = XML_REGEXP_OTHER_PRIVATE; |
| 4765 | } else if (cur == 'n') { |
| 4766 | NEXT; |
| 4767 | /* not assigned */ |
| 4768 | type = XML_REGEXP_OTHER_NA; |
| 4769 | } else { |
| 4770 | /* all others */ |
| 4771 | type = XML_REGEXP_OTHER; |
| 4772 | } |
| 4773 | } else if (cur == 'I') { |
| 4774 | const xmlChar *start; |
| 4775 | NEXT; |
| 4776 | cur = CUR; |
| 4777 | if (cur != 's') { |
| 4778 | ERROR("IsXXXX expected"); |
| 4779 | return; |
| 4780 | } |
| 4781 | NEXT; |
| 4782 | start = ctxt->cur; |
| 4783 | cur = CUR; |
| 4784 | if (((cur >= 'a') && (cur <= 'z')) || |
| 4785 | ((cur >= 'A') && (cur <= 'Z')) || |
| 4786 | ((cur >= '0') && (cur <= '9')) || |
| 4787 | (cur == 0x2D)) { |
| 4788 | NEXT; |
| 4789 | cur = CUR; |
| 4790 | while (((cur >= 'a') && (cur <= 'z')) || |
| 4791 | ((cur >= 'A') && (cur <= 'Z')) || |
| 4792 | ((cur >= '0') && (cur <= '9')) || |
| 4793 | (cur == 0x2D)) { |
| 4794 | NEXT; |
| 4795 | cur = CUR; |
| 4796 | } |
| 4797 | } |
| 4798 | type = XML_REGEXP_BLOCK_NAME; |
| 4799 | blockName = xmlStrndup(start, ctxt->cur - start); |
| 4800 | } else { |
| 4801 | ERROR("Unknown char property"); |
| 4802 | return; |
| 4803 | } |
| 4804 | if (ctxt->atom == NULL) { |
| 4805 | ctxt->atom = xmlRegNewAtom(ctxt, type); |
| 4806 | if (ctxt->atom != NULL) |
| 4807 | ctxt->atom->valuep = blockName; |
| 4808 | } else if (ctxt->atom->type == XML_REGEXP_RANGES) { |
| 4809 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 4810 | type, 0, 0, blockName); |
| 4811 | } |
| 4812 | } |
| 4813 | |
| 4814 | /** |
| 4815 | * xmlFAParseCharClassEsc: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 4816 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4817 | * |
| 4818 | * [23] charClassEsc ::= ( SingleCharEsc | MultiCharEsc | catEsc | complEsc ) |
| 4819 | * [24] SingleCharEsc ::= '\' [nrt\|.?*+(){}#x2D#x5B#x5D#x5E] |
| 4820 | * [25] catEsc ::= '\p{' charProp '}' |
| 4821 | * [26] complEsc ::= '\P{' charProp '}' |
| 4822 | * [37] MultiCharEsc ::= '.' | ('\' [sSiIcCdDwW]) |
| 4823 | */ |
| 4824 | static void |
| 4825 | xmlFAParseCharClassEsc(xmlRegParserCtxtPtr ctxt) { |
| 4826 | int cur; |
| 4827 | |
| 4828 | if (CUR == '.') { |
| 4829 | if (ctxt->atom == NULL) { |
| 4830 | ctxt->atom = xmlRegNewAtom(ctxt, XML_REGEXP_ANYCHAR); |
| 4831 | } else if (ctxt->atom->type == XML_REGEXP_RANGES) { |
| 4832 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 4833 | XML_REGEXP_ANYCHAR, 0, 0, NULL); |
| 4834 | } |
| 4835 | NEXT; |
| 4836 | return; |
| 4837 | } |
| 4838 | if (CUR != '\\') { |
| 4839 | ERROR("Escaped sequence: expecting \\"); |
| 4840 | return; |
| 4841 | } |
| 4842 | NEXT; |
| 4843 | cur = CUR; |
| 4844 | if (cur == 'p') { |
| 4845 | NEXT; |
| 4846 | if (CUR != '{') { |
| 4847 | ERROR("Expecting '{'"); |
| 4848 | return; |
| 4849 | } |
| 4850 | NEXT; |
| 4851 | xmlFAParseCharProp(ctxt); |
| 4852 | if (CUR != '}') { |
| 4853 | ERROR("Expecting '}'"); |
| 4854 | return; |
| 4855 | } |
| 4856 | NEXT; |
| 4857 | } else if (cur == 'P') { |
| 4858 | NEXT; |
| 4859 | if (CUR != '{') { |
| 4860 | ERROR("Expecting '{'"); |
| 4861 | return; |
| 4862 | } |
| 4863 | NEXT; |
| 4864 | xmlFAParseCharProp(ctxt); |
| 4865 | ctxt->atom->neg = 1; |
| 4866 | if (CUR != '}') { |
| 4867 | ERROR("Expecting '}'"); |
| 4868 | return; |
| 4869 | } |
| 4870 | NEXT; |
| 4871 | } else if ((cur == 'n') || (cur == 'r') || (cur == 't') || (cur == '\\') || |
| 4872 | (cur == '|') || (cur == '.') || (cur == '?') || (cur == '*') || |
| 4873 | (cur == '+') || (cur == '(') || (cur == ')') || (cur == '{') || |
| 4874 | (cur == '}') || (cur == 0x2D) || (cur == 0x5B) || (cur == 0x5D) || |
| 4875 | (cur == 0x5E)) { |
| 4876 | if (ctxt->atom == NULL) { |
| 4877 | ctxt->atom = xmlRegNewAtom(ctxt, XML_REGEXP_CHARVAL); |
Daniel Veillard | 99c394d | 2005-07-14 12:58:49 +0000 | [diff] [blame] | 4878 | if (ctxt->atom != NULL) { |
| 4879 | switch (cur) { |
| 4880 | case 'n': |
| 4881 | ctxt->atom->codepoint = '\n'; |
| 4882 | break; |
| 4883 | case 'r': |
| 4884 | ctxt->atom->codepoint = '\r'; |
| 4885 | break; |
| 4886 | case 't': |
| 4887 | ctxt->atom->codepoint = '\t'; |
| 4888 | break; |
| 4889 | default: |
| 4890 | ctxt->atom->codepoint = cur; |
| 4891 | } |
| 4892 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4893 | } else if (ctxt->atom->type == XML_REGEXP_RANGES) { |
| 4894 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 4895 | XML_REGEXP_CHARVAL, cur, cur, NULL); |
| 4896 | } |
| 4897 | NEXT; |
| 4898 | } else if ((cur == 's') || (cur == 'S') || (cur == 'i') || (cur == 'I') || |
| 4899 | (cur == 'c') || (cur == 'C') || (cur == 'd') || (cur == 'D') || |
| 4900 | (cur == 'w') || (cur == 'W')) { |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 4901 | xmlRegAtomType type = XML_REGEXP_ANYSPACE; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4902 | |
| 4903 | switch (cur) { |
| 4904 | case 's': |
| 4905 | type = XML_REGEXP_ANYSPACE; |
| 4906 | break; |
| 4907 | case 'S': |
| 4908 | type = XML_REGEXP_NOTSPACE; |
| 4909 | break; |
| 4910 | case 'i': |
| 4911 | type = XML_REGEXP_INITNAME; |
| 4912 | break; |
| 4913 | case 'I': |
| 4914 | type = XML_REGEXP_NOTINITNAME; |
| 4915 | break; |
| 4916 | case 'c': |
| 4917 | type = XML_REGEXP_NAMECHAR; |
| 4918 | break; |
| 4919 | case 'C': |
| 4920 | type = XML_REGEXP_NOTNAMECHAR; |
| 4921 | break; |
| 4922 | case 'd': |
| 4923 | type = XML_REGEXP_DECIMAL; |
| 4924 | break; |
| 4925 | case 'D': |
| 4926 | type = XML_REGEXP_NOTDECIMAL; |
| 4927 | break; |
| 4928 | case 'w': |
| 4929 | type = XML_REGEXP_REALCHAR; |
| 4930 | break; |
| 4931 | case 'W': |
| 4932 | type = XML_REGEXP_NOTREALCHAR; |
| 4933 | break; |
| 4934 | } |
| 4935 | NEXT; |
| 4936 | if (ctxt->atom == NULL) { |
| 4937 | ctxt->atom = xmlRegNewAtom(ctxt, type); |
| 4938 | } else if (ctxt->atom->type == XML_REGEXP_RANGES) { |
| 4939 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 4940 | type, 0, 0, NULL); |
| 4941 | } |
Daniel Veillard | cb4284e | 2007-04-25 13:55:20 +0000 | [diff] [blame] | 4942 | } else { |
| 4943 | ERROR("Wrong escape sequence, misuse of character '\\'"); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4944 | } |
| 4945 | } |
| 4946 | |
| 4947 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4948 | * xmlFAParseCharRange: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 4949 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4950 | * |
| 4951 | * [17] charRange ::= seRange | XmlCharRef | XmlCharIncDash |
| 4952 | * [18] seRange ::= charOrEsc '-' charOrEsc |
| 4953 | * [20] charOrEsc ::= XmlChar | SingleCharEsc |
| 4954 | * [21] XmlChar ::= [^\#x2D#x5B#x5D] |
| 4955 | * [22] XmlCharIncDash ::= [^\#x5B#x5D] |
| 4956 | */ |
| 4957 | static void |
| 4958 | xmlFAParseCharRange(xmlRegParserCtxtPtr ctxt) { |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 4959 | int cur, len; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4960 | int start = -1; |
| 4961 | int end = -1; |
| 4962 | |
Daniel Veillard | 777737e | 2006-10-17 21:23:17 +0000 | [diff] [blame] | 4963 | if (CUR == '\0') { |
| 4964 | ERROR("Expecting ']'"); |
| 4965 | return; |
| 4966 | } |
| 4967 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4968 | cur = CUR; |
| 4969 | if (cur == '\\') { |
| 4970 | NEXT; |
| 4971 | cur = CUR; |
| 4972 | switch (cur) { |
| 4973 | case 'n': start = 0xA; break; |
| 4974 | case 'r': start = 0xD; break; |
| 4975 | case 't': start = 0x9; break; |
| 4976 | case '\\': case '|': case '.': case '-': case '^': case '?': |
| 4977 | case '*': case '+': case '{': case '}': case '(': case ')': |
| 4978 | case '[': case ']': |
| 4979 | start = cur; break; |
| 4980 | default: |
| 4981 | ERROR("Invalid escape value"); |
| 4982 | return; |
| 4983 | } |
| 4984 | end = start; |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 4985 | len = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4986 | } else if ((cur != 0x5B) && (cur != 0x5D)) { |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 4987 | end = start = CUR_SCHAR(ctxt->cur, len); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4988 | } else { |
| 4989 | ERROR("Expecting a char range"); |
| 4990 | return; |
| 4991 | } |
William M. Brack | a9cbf28 | 2007-03-21 13:16:33 +0000 | [diff] [blame] | 4992 | /* |
| 4993 | * Since we are "inside" a range, we can assume ctxt->cur is past |
| 4994 | * the start of ctxt->string, and PREV should be safe |
| 4995 | */ |
| 4996 | if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) { |
| 4997 | NEXTL(len); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 4998 | return; |
| 4999 | } |
William M. Brack | a9cbf28 | 2007-03-21 13:16:33 +0000 | [diff] [blame] | 5000 | NEXTL(len); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5001 | cur = CUR; |
William M. Brack | 10f1ef4 | 2004-03-20 14:51:25 +0000 | [diff] [blame] | 5002 | if ((cur != '-') || (NXT(1) == ']')) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5003 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 5004 | XML_REGEXP_CHARVAL, start, end, NULL); |
| 5005 | return; |
| 5006 | } |
| 5007 | NEXT; |
| 5008 | cur = CUR; |
| 5009 | if (cur == '\\') { |
| 5010 | NEXT; |
| 5011 | cur = CUR; |
| 5012 | switch (cur) { |
| 5013 | case 'n': end = 0xA; break; |
| 5014 | case 'r': end = 0xD; break; |
| 5015 | case 't': end = 0x9; break; |
| 5016 | case '\\': case '|': case '.': case '-': case '^': case '?': |
| 5017 | case '*': case '+': case '{': case '}': case '(': case ')': |
| 5018 | case '[': case ']': |
| 5019 | end = cur; break; |
| 5020 | default: |
| 5021 | ERROR("Invalid escape value"); |
| 5022 | return; |
| 5023 | } |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 5024 | len = 1; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5025 | } else if ((cur != 0x5B) && (cur != 0x5D)) { |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 5026 | end = CUR_SCHAR(ctxt->cur, len); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5027 | } else { |
| 5028 | ERROR("Expecting the end of a char range"); |
| 5029 | return; |
| 5030 | } |
William M. Brack | dc99df9 | 2003-12-27 01:54:25 +0000 | [diff] [blame] | 5031 | NEXTL(len); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5032 | /* TODO check that the values are acceptable character ranges for XML */ |
| 5033 | if (end < start) { |
| 5034 | ERROR("End of range is before start of range"); |
| 5035 | } else { |
| 5036 | xmlRegAtomAddRange(ctxt, ctxt->atom, ctxt->neg, |
| 5037 | XML_REGEXP_CHARVAL, start, end, NULL); |
| 5038 | } |
| 5039 | return; |
| 5040 | } |
| 5041 | |
| 5042 | /** |
| 5043 | * xmlFAParsePosCharGroup: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5044 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5045 | * |
| 5046 | * [14] posCharGroup ::= ( charRange | charClassEsc )+ |
| 5047 | */ |
| 5048 | static void |
| 5049 | xmlFAParsePosCharGroup(xmlRegParserCtxtPtr ctxt) { |
| 5050 | do { |
Daniel Veillard | 041b687 | 2008-02-08 10:37:18 +0000 | [diff] [blame] | 5051 | if (CUR == '\\') { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5052 | xmlFAParseCharClassEsc(ctxt); |
| 5053 | } else { |
| 5054 | xmlFAParseCharRange(ctxt); |
| 5055 | } |
| 5056 | } while ((CUR != ']') && (CUR != '^') && (CUR != '-') && |
Daniel Veillard | 777737e | 2006-10-17 21:23:17 +0000 | [diff] [blame] | 5057 | (CUR != 0) && (ctxt->error == 0)); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5058 | } |
| 5059 | |
| 5060 | /** |
| 5061 | * xmlFAParseCharGroup: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5062 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5063 | * |
| 5064 | * [13] charGroup ::= posCharGroup | negCharGroup | charClassSub |
| 5065 | * [15] negCharGroup ::= '^' posCharGroup |
| 5066 | * [16] charClassSub ::= ( posCharGroup | negCharGroup ) '-' charClassExpr |
| 5067 | * [12] charClassExpr ::= '[' charGroup ']' |
| 5068 | */ |
| 5069 | static void |
| 5070 | xmlFAParseCharGroup(xmlRegParserCtxtPtr ctxt) { |
| 5071 | int n = ctxt->neg; |
| 5072 | while ((CUR != ']') && (ctxt->error == 0)) { |
| 5073 | if (CUR == '^') { |
| 5074 | int neg = ctxt->neg; |
| 5075 | |
| 5076 | NEXT; |
| 5077 | ctxt->neg = !ctxt->neg; |
| 5078 | xmlFAParsePosCharGroup(ctxt); |
| 5079 | ctxt->neg = neg; |
William M. Brack | 10f1ef4 | 2004-03-20 14:51:25 +0000 | [diff] [blame] | 5080 | } else if ((CUR == '-') && (NXT(1) == '[')) { |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 5081 | int neg = ctxt->neg; |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 5082 | ctxt->neg = 2; |
William M. Brack | 10f1ef4 | 2004-03-20 14:51:25 +0000 | [diff] [blame] | 5083 | NEXT; /* eat the '-' */ |
| 5084 | NEXT; /* eat the '[' */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5085 | xmlFAParseCharGroup(ctxt); |
| 5086 | if (CUR == ']') { |
| 5087 | NEXT; |
| 5088 | } else { |
| 5089 | ERROR("charClassExpr: ']' expected"); |
| 5090 | break; |
| 5091 | } |
Daniel Veillard | f8b9de3 | 2003-11-24 14:27:26 +0000 | [diff] [blame] | 5092 | ctxt->neg = neg; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5093 | break; |
| 5094 | } else if (CUR != ']') { |
| 5095 | xmlFAParsePosCharGroup(ctxt); |
| 5096 | } |
| 5097 | } |
| 5098 | ctxt->neg = n; |
| 5099 | } |
| 5100 | |
| 5101 | /** |
| 5102 | * xmlFAParseCharClass: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5103 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5104 | * |
| 5105 | * [11] charClass ::= charClassEsc | charClassExpr |
| 5106 | * [12] charClassExpr ::= '[' charGroup ']' |
| 5107 | */ |
| 5108 | static void |
| 5109 | xmlFAParseCharClass(xmlRegParserCtxtPtr ctxt) { |
| 5110 | if (CUR == '[') { |
| 5111 | NEXT; |
| 5112 | ctxt->atom = xmlRegNewAtom(ctxt, XML_REGEXP_RANGES); |
| 5113 | if (ctxt->atom == NULL) |
| 5114 | return; |
| 5115 | xmlFAParseCharGroup(ctxt); |
| 5116 | if (CUR == ']') { |
| 5117 | NEXT; |
| 5118 | } else { |
| 5119 | ERROR("xmlFAParseCharClass: ']' expected"); |
| 5120 | } |
| 5121 | } else { |
| 5122 | xmlFAParseCharClassEsc(ctxt); |
| 5123 | } |
| 5124 | } |
| 5125 | |
| 5126 | /** |
| 5127 | * xmlFAParseQuantExact: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5128 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5129 | * |
| 5130 | * [8] QuantExact ::= [0-9]+ |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5131 | * |
| 5132 | * Returns 0 if success or -1 in case of error |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5133 | */ |
| 5134 | static int |
| 5135 | xmlFAParseQuantExact(xmlRegParserCtxtPtr ctxt) { |
| 5136 | int ret = 0; |
| 5137 | int ok = 0; |
| 5138 | |
| 5139 | while ((CUR >= '0') && (CUR <= '9')) { |
| 5140 | ret = ret * 10 + (CUR - '0'); |
| 5141 | ok = 1; |
| 5142 | NEXT; |
| 5143 | } |
| 5144 | if (ok != 1) { |
| 5145 | return(-1); |
| 5146 | } |
| 5147 | return(ret); |
| 5148 | } |
| 5149 | |
| 5150 | /** |
| 5151 | * xmlFAParseQuantifier: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5152 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5153 | * |
| 5154 | * [4] quantifier ::= [?*+] | ( '{' quantity '}' ) |
| 5155 | * [5] quantity ::= quantRange | quantMin | QuantExact |
| 5156 | * [6] quantRange ::= QuantExact ',' QuantExact |
| 5157 | * [7] quantMin ::= QuantExact ',' |
| 5158 | * [8] QuantExact ::= [0-9]+ |
| 5159 | */ |
| 5160 | static int |
| 5161 | xmlFAParseQuantifier(xmlRegParserCtxtPtr ctxt) { |
| 5162 | int cur; |
| 5163 | |
| 5164 | cur = CUR; |
| 5165 | if ((cur == '?') || (cur == '*') || (cur == '+')) { |
| 5166 | if (ctxt->atom != NULL) { |
| 5167 | if (cur == '?') |
| 5168 | ctxt->atom->quant = XML_REGEXP_QUANT_OPT; |
| 5169 | else if (cur == '*') |
| 5170 | ctxt->atom->quant = XML_REGEXP_QUANT_MULT; |
| 5171 | else if (cur == '+') |
| 5172 | ctxt->atom->quant = XML_REGEXP_QUANT_PLUS; |
| 5173 | } |
| 5174 | NEXT; |
| 5175 | return(1); |
| 5176 | } |
| 5177 | if (cur == '{') { |
| 5178 | int min = 0, max = 0; |
| 5179 | |
| 5180 | NEXT; |
| 5181 | cur = xmlFAParseQuantExact(ctxt); |
| 5182 | if (cur >= 0) |
| 5183 | min = cur; |
| 5184 | if (CUR == ',') { |
| 5185 | NEXT; |
Daniel Veillard | ebe48c6 | 2003-12-03 12:12:27 +0000 | [diff] [blame] | 5186 | if (CUR == '}') |
| 5187 | max = INT_MAX; |
| 5188 | else { |
| 5189 | cur = xmlFAParseQuantExact(ctxt); |
| 5190 | if (cur >= 0) |
| 5191 | max = cur; |
| 5192 | else { |
| 5193 | ERROR("Improper quantifier"); |
| 5194 | } |
| 5195 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5196 | } |
| 5197 | if (CUR == '}') { |
| 5198 | NEXT; |
| 5199 | } else { |
| 5200 | ERROR("Unterminated quantifier"); |
| 5201 | } |
| 5202 | if (max == 0) |
| 5203 | max = min; |
| 5204 | if (ctxt->atom != NULL) { |
| 5205 | ctxt->atom->quant = XML_REGEXP_QUANT_RANGE; |
| 5206 | ctxt->atom->min = min; |
| 5207 | ctxt->atom->max = max; |
| 5208 | } |
| 5209 | return(1); |
| 5210 | } |
| 5211 | return(0); |
| 5212 | } |
| 5213 | |
| 5214 | /** |
| 5215 | * xmlFAParseAtom: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5216 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5217 | * |
| 5218 | * [9] atom ::= Char | charClass | ( '(' regExp ')' ) |
| 5219 | */ |
| 5220 | static int |
| 5221 | xmlFAParseAtom(xmlRegParserCtxtPtr ctxt) { |
| 5222 | int codepoint, len; |
| 5223 | |
| 5224 | codepoint = xmlFAIsChar(ctxt); |
| 5225 | if (codepoint > 0) { |
| 5226 | ctxt->atom = xmlRegNewAtom(ctxt, XML_REGEXP_CHARVAL); |
| 5227 | if (ctxt->atom == NULL) |
| 5228 | return(-1); |
| 5229 | codepoint = CUR_SCHAR(ctxt->cur, len); |
| 5230 | ctxt->atom->codepoint = codepoint; |
| 5231 | NEXTL(len); |
| 5232 | return(1); |
| 5233 | } else if (CUR == '|') { |
| 5234 | return(0); |
| 5235 | } else if (CUR == 0) { |
| 5236 | return(0); |
| 5237 | } else if (CUR == ')') { |
| 5238 | return(0); |
| 5239 | } else if (CUR == '(') { |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 5240 | xmlRegStatePtr start, oldend, start0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5241 | |
| 5242 | NEXT; |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 5243 | /* |
| 5244 | * this extra Epsilon transition is needed if we count with 0 allowed |
| 5245 | * unfortunately this can't be known at that point |
| 5246 | */ |
| 5247 | xmlFAGenerateEpsilonTransition(ctxt, ctxt->state, NULL); |
| 5248 | start0 = ctxt->state; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5249 | xmlFAGenerateEpsilonTransition(ctxt, ctxt->state, NULL); |
| 5250 | start = ctxt->state; |
| 5251 | oldend = ctxt->end; |
| 5252 | ctxt->end = NULL; |
| 5253 | ctxt->atom = NULL; |
| 5254 | xmlFAParseRegExp(ctxt, 0); |
| 5255 | if (CUR == ')') { |
| 5256 | NEXT; |
| 5257 | } else { |
| 5258 | ERROR("xmlFAParseAtom: expecting ')'"); |
| 5259 | } |
| 5260 | ctxt->atom = xmlRegNewAtom(ctxt, XML_REGEXP_SUBREG); |
| 5261 | if (ctxt->atom == NULL) |
| 5262 | return(-1); |
| 5263 | ctxt->atom->start = start; |
Daniel Veillard | 76d59b6 | 2007-08-22 16:29:21 +0000 | [diff] [blame] | 5264 | ctxt->atom->start0 = start0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5265 | ctxt->atom->stop = ctxt->state; |
| 5266 | ctxt->end = oldend; |
| 5267 | return(1); |
| 5268 | } else if ((CUR == '[') || (CUR == '\\') || (CUR == '.')) { |
| 5269 | xmlFAParseCharClass(ctxt); |
| 5270 | return(1); |
| 5271 | } |
| 5272 | return(0); |
| 5273 | } |
| 5274 | |
| 5275 | /** |
| 5276 | * xmlFAParsePiece: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5277 | * @ctxt: a regexp parser context |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5278 | * |
| 5279 | * [3] piece ::= atom quantifier? |
| 5280 | */ |
| 5281 | static int |
| 5282 | xmlFAParsePiece(xmlRegParserCtxtPtr ctxt) { |
| 5283 | int ret; |
| 5284 | |
| 5285 | ctxt->atom = NULL; |
| 5286 | ret = xmlFAParseAtom(ctxt); |
| 5287 | if (ret == 0) |
| 5288 | return(0); |
| 5289 | if (ctxt->atom == NULL) { |
| 5290 | ERROR("internal: no atom generated"); |
| 5291 | } |
| 5292 | xmlFAParseQuantifier(ctxt); |
| 5293 | return(1); |
| 5294 | } |
| 5295 | |
| 5296 | /** |
| 5297 | * xmlFAParseBranch: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5298 | * @ctxt: a regexp parser context |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5299 | * @to: optional target to the end of the branch |
| 5300 | * |
| 5301 | * @to is used to optimize by removing duplicate path in automata |
| 5302 | * in expressions like (a|b)(c|d) |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5303 | * |
| 5304 | * [2] branch ::= piece* |
| 5305 | */ |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5306 | static int |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5307 | xmlFAParseBranch(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr to) { |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5308 | xmlRegStatePtr previous; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5309 | int ret; |
| 5310 | |
| 5311 | previous = ctxt->state; |
| 5312 | ret = xmlFAParsePiece(ctxt); |
| 5313 | if (ret != 0) { |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5314 | if (xmlFAGenerateTransitions(ctxt, previous, |
| 5315 | (CUR=='|' || CUR==')') ? to : NULL, ctxt->atom) < 0) |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5316 | return(-1); |
| 5317 | previous = ctxt->state; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5318 | ctxt->atom = NULL; |
| 5319 | } |
| 5320 | while ((ret != 0) && (ctxt->error == 0)) { |
| 5321 | ret = xmlFAParsePiece(ctxt); |
| 5322 | if (ret != 0) { |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5323 | if (xmlFAGenerateTransitions(ctxt, previous, |
| 5324 | (CUR=='|' || CUR==')') ? to : NULL, ctxt->atom) < 0) |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5325 | return(-1); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5326 | previous = ctxt->state; |
| 5327 | ctxt->atom = NULL; |
| 5328 | } |
| 5329 | } |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5330 | return(0); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5331 | } |
| 5332 | |
| 5333 | /** |
| 5334 | * xmlFAParseRegExp: |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 5335 | * @ctxt: a regexp parser context |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5336 | * @top: is this the top-level expression ? |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5337 | * |
| 5338 | * [1] regExp ::= branch ( '|' branch )* |
| 5339 | */ |
| 5340 | static void |
| 5341 | xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top) { |
Daniel Veillard | c7e3cc4 | 2004-09-28 12:33:52 +0000 | [diff] [blame] | 5342 | xmlRegStatePtr start, end; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5343 | |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5344 | /* if not top start should have been generated by an epsilon trans */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5345 | start = ctxt->state; |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5346 | ctxt->end = NULL; |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5347 | xmlFAParseBranch(ctxt, NULL); |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5348 | if (top) { |
| 5349 | #ifdef DEBUG_REGEXP_GRAPH |
| 5350 | printf("State %d is final\n", ctxt->state->no); |
| 5351 | #endif |
| 5352 | ctxt->state->type = XML_REGEXP_FINAL_STATE; |
| 5353 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5354 | if (CUR != '|') { |
| 5355 | ctxt->end = ctxt->state; |
| 5356 | return; |
| 5357 | } |
| 5358 | end = ctxt->state; |
| 5359 | while ((CUR == '|') && (ctxt->error == 0)) { |
| 5360 | NEXT; |
| 5361 | ctxt->state = start; |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5362 | ctxt->end = NULL; |
Daniel Veillard | 54eb024 | 2006-03-21 23:17:57 +0000 | [diff] [blame] | 5363 | xmlFAParseBranch(ctxt, end); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5364 | } |
Daniel Veillard | 2cbf596 | 2004-03-31 15:50:43 +0000 | [diff] [blame] | 5365 | if (!top) { |
| 5366 | ctxt->state = end; |
| 5367 | ctxt->end = end; |
| 5368 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5369 | } |
| 5370 | |
| 5371 | /************************************************************************ |
| 5372 | * * |
| 5373 | * The basic API * |
| 5374 | * * |
| 5375 | ************************************************************************/ |
| 5376 | |
| 5377 | /** |
| 5378 | * xmlRegexpPrint: |
| 5379 | * @output: the file for the output debug |
| 5380 | * @regexp: the compiled regexp |
| 5381 | * |
| 5382 | * Print the content of the compiled regular expression |
| 5383 | */ |
| 5384 | void |
| 5385 | xmlRegexpPrint(FILE *output, xmlRegexpPtr regexp) { |
| 5386 | int i; |
| 5387 | |
Daniel Veillard | a82b182 | 2004-11-08 16:24:57 +0000 | [diff] [blame] | 5388 | if (output == NULL) |
| 5389 | return; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5390 | fprintf(output, " regexp: "); |
| 5391 | if (regexp == NULL) { |
| 5392 | fprintf(output, "NULL\n"); |
| 5393 | return; |
| 5394 | } |
| 5395 | fprintf(output, "'%s' ", regexp->string); |
| 5396 | fprintf(output, "\n"); |
| 5397 | fprintf(output, "%d atoms:\n", regexp->nbAtoms); |
| 5398 | for (i = 0;i < regexp->nbAtoms; i++) { |
| 5399 | fprintf(output, " %02d ", i); |
| 5400 | xmlRegPrintAtom(output, regexp->atoms[i]); |
| 5401 | } |
| 5402 | fprintf(output, "%d states:", regexp->nbStates); |
| 5403 | fprintf(output, "\n"); |
| 5404 | for (i = 0;i < regexp->nbStates; i++) { |
| 5405 | xmlRegPrintState(output, regexp->states[i]); |
| 5406 | } |
| 5407 | fprintf(output, "%d counters:\n", regexp->nbCounters); |
| 5408 | for (i = 0;i < regexp->nbCounters; i++) { |
| 5409 | fprintf(output, " %d: min %d max %d\n", i, regexp->counters[i].min, |
| 5410 | regexp->counters[i].max); |
| 5411 | } |
| 5412 | } |
| 5413 | |
| 5414 | /** |
| 5415 | * xmlRegexpCompile: |
| 5416 | * @regexp: a regular expression string |
| 5417 | * |
| 5418 | * Parses a regular expression conforming to XML Schemas Part 2 Datatype |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5419 | * Appendix F and builds an automata suitable for testing strings against |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5420 | * that regular expression |
| 5421 | * |
| 5422 | * Returns the compiled expression or NULL in case of error |
| 5423 | */ |
| 5424 | xmlRegexpPtr |
| 5425 | xmlRegexpCompile(const xmlChar *regexp) { |
| 5426 | xmlRegexpPtr ret; |
| 5427 | xmlRegParserCtxtPtr ctxt; |
| 5428 | |
| 5429 | ctxt = xmlRegNewParserCtxt(regexp); |
| 5430 | if (ctxt == NULL) |
| 5431 | return(NULL); |
| 5432 | |
| 5433 | /* initialize the parser */ |
| 5434 | ctxt->end = NULL; |
| 5435 | ctxt->start = ctxt->state = xmlRegNewState(ctxt); |
| 5436 | xmlRegStatePush(ctxt, ctxt->start); |
| 5437 | |
| 5438 | /* parse the expression building an automata */ |
| 5439 | xmlFAParseRegExp(ctxt, 1); |
| 5440 | if (CUR != 0) { |
| 5441 | ERROR("xmlFAParseRegExp: extra characters"); |
| 5442 | } |
Daniel Veillard | cb4284e | 2007-04-25 13:55:20 +0000 | [diff] [blame] | 5443 | if (ctxt->error != 0) { |
| 5444 | xmlRegFreeParserCtxt(ctxt); |
| 5445 | return(NULL); |
| 5446 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5447 | ctxt->end = ctxt->state; |
| 5448 | ctxt->start->type = XML_REGEXP_START_STATE; |
| 5449 | ctxt->end->type = XML_REGEXP_FINAL_STATE; |
| 5450 | |
| 5451 | /* remove the Epsilon except for counted transitions */ |
| 5452 | xmlFAEliminateEpsilonTransitions(ctxt); |
| 5453 | |
| 5454 | |
| 5455 | if (ctxt->error != 0) { |
| 5456 | xmlRegFreeParserCtxt(ctxt); |
| 5457 | return(NULL); |
| 5458 | } |
| 5459 | ret = xmlRegEpxFromParse(ctxt); |
| 5460 | xmlRegFreeParserCtxt(ctxt); |
| 5461 | return(ret); |
| 5462 | } |
| 5463 | |
| 5464 | /** |
| 5465 | * xmlRegexpExec: |
| 5466 | * @comp: the compiled regular expression |
| 5467 | * @content: the value to check against the regular expression |
| 5468 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5469 | * Check if the regular expression generates the value |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5470 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5471 | * Returns 1 if it matches, 0 if not and a negative value in case of error |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5472 | */ |
| 5473 | int |
| 5474 | xmlRegexpExec(xmlRegexpPtr comp, const xmlChar *content) { |
| 5475 | if ((comp == NULL) || (content == NULL)) |
| 5476 | return(-1); |
| 5477 | return(xmlFARegExec(comp, content)); |
| 5478 | } |
| 5479 | |
| 5480 | /** |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5481 | * xmlRegexpIsDeterminist: |
| 5482 | * @comp: the compiled regular expression |
| 5483 | * |
| 5484 | * Check if the regular expression is determinist |
| 5485 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5486 | * Returns 1 if it yes, 0 if not and a negative value in case of error |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5487 | */ |
| 5488 | int |
| 5489 | xmlRegexpIsDeterminist(xmlRegexpPtr comp) { |
| 5490 | xmlAutomataPtr am; |
| 5491 | int ret; |
| 5492 | |
| 5493 | if (comp == NULL) |
| 5494 | return(-1); |
| 5495 | if (comp->determinist != -1) |
| 5496 | return(comp->determinist); |
| 5497 | |
| 5498 | am = xmlNewAutomata(); |
Daniel Veillard | bd9afb5 | 2002-09-25 22:25:35 +0000 | [diff] [blame] | 5499 | if (am->states != NULL) { |
| 5500 | int i; |
| 5501 | |
| 5502 | for (i = 0;i < am->nbStates;i++) |
| 5503 | xmlRegFreeState(am->states[i]); |
| 5504 | xmlFree(am->states); |
| 5505 | } |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5506 | am->nbAtoms = comp->nbAtoms; |
| 5507 | am->atoms = comp->atoms; |
| 5508 | am->nbStates = comp->nbStates; |
| 5509 | am->states = comp->states; |
| 5510 | am->determinist = -1; |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 5511 | am->flags = comp->flags; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5512 | ret = xmlFAComputesDeterminism(am); |
| 5513 | am->atoms = NULL; |
| 5514 | am->states = NULL; |
| 5515 | xmlFreeAutomata(am); |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 5516 | comp->determinist = ret; |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5517 | return(ret); |
| 5518 | } |
| 5519 | |
| 5520 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5521 | * xmlRegFreeRegexp: |
| 5522 | * @regexp: the regexp |
| 5523 | * |
| 5524 | * Free a regexp |
| 5525 | */ |
| 5526 | void |
| 5527 | xmlRegFreeRegexp(xmlRegexpPtr regexp) { |
| 5528 | int i; |
| 5529 | if (regexp == NULL) |
| 5530 | return; |
| 5531 | |
| 5532 | if (regexp->string != NULL) |
| 5533 | xmlFree(regexp->string); |
| 5534 | if (regexp->states != NULL) { |
| 5535 | for (i = 0;i < regexp->nbStates;i++) |
| 5536 | xmlRegFreeState(regexp->states[i]); |
| 5537 | xmlFree(regexp->states); |
| 5538 | } |
| 5539 | if (regexp->atoms != NULL) { |
| 5540 | for (i = 0;i < regexp->nbAtoms;i++) |
| 5541 | xmlRegFreeAtom(regexp->atoms[i]); |
| 5542 | xmlFree(regexp->atoms); |
| 5543 | } |
| 5544 | if (regexp->counters != NULL) |
| 5545 | xmlFree(regexp->counters); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5546 | if (regexp->compact != NULL) |
| 5547 | xmlFree(regexp->compact); |
Daniel Veillard | 118aed7 | 2002-09-24 14:13:13 +0000 | [diff] [blame] | 5548 | if (regexp->transdata != NULL) |
| 5549 | xmlFree(regexp->transdata); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 5550 | if (regexp->stringMap != NULL) { |
| 5551 | for (i = 0; i < regexp->nbstrings;i++) |
| 5552 | xmlFree(regexp->stringMap[i]); |
| 5553 | xmlFree(regexp->stringMap); |
| 5554 | } |
| 5555 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5556 | xmlFree(regexp); |
| 5557 | } |
| 5558 | |
| 5559 | #ifdef LIBXML_AUTOMATA_ENABLED |
| 5560 | /************************************************************************ |
| 5561 | * * |
| 5562 | * The Automata interface * |
| 5563 | * * |
| 5564 | ************************************************************************/ |
| 5565 | |
| 5566 | /** |
| 5567 | * xmlNewAutomata: |
| 5568 | * |
| 5569 | * Create a new automata |
| 5570 | * |
| 5571 | * Returns the new object or NULL in case of failure |
| 5572 | */ |
| 5573 | xmlAutomataPtr |
| 5574 | xmlNewAutomata(void) { |
| 5575 | xmlAutomataPtr ctxt; |
| 5576 | |
| 5577 | ctxt = xmlRegNewParserCtxt(NULL); |
| 5578 | if (ctxt == NULL) |
| 5579 | return(NULL); |
| 5580 | |
| 5581 | /* initialize the parser */ |
| 5582 | ctxt->end = NULL; |
| 5583 | ctxt->start = ctxt->state = xmlRegNewState(ctxt); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5584 | if (ctxt->start == NULL) { |
| 5585 | xmlFreeAutomata(ctxt); |
| 5586 | return(NULL); |
| 5587 | } |
Daniel Veillard | d027147 | 2006-01-02 10:22:02 +0000 | [diff] [blame] | 5588 | ctxt->start->type = XML_REGEXP_START_STATE; |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5589 | if (xmlRegStatePush(ctxt, ctxt->start) < 0) { |
| 5590 | xmlRegFreeState(ctxt->start); |
| 5591 | xmlFreeAutomata(ctxt); |
| 5592 | return(NULL); |
| 5593 | } |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 5594 | ctxt->flags = 0; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5595 | |
| 5596 | return(ctxt); |
| 5597 | } |
| 5598 | |
| 5599 | /** |
| 5600 | * xmlFreeAutomata: |
| 5601 | * @am: an automata |
| 5602 | * |
| 5603 | * Free an automata |
| 5604 | */ |
| 5605 | void |
| 5606 | xmlFreeAutomata(xmlAutomataPtr am) { |
| 5607 | if (am == NULL) |
| 5608 | return; |
| 5609 | xmlRegFreeParserCtxt(am); |
| 5610 | } |
| 5611 | |
| 5612 | /** |
Daniel Veillard | 1ba2aca | 2009-08-31 16:47:39 +0200 | [diff] [blame] | 5613 | * xmlAutomataSetFlags |
| 5614 | * @am: an automata |
| 5615 | * @flags: a set of internal flags |
| 5616 | * |
| 5617 | * Set some flags on the automata |
| 5618 | */ |
| 5619 | void |
| 5620 | xmlAutomataSetFlags(xmlAutomataPtr am, int flags) { |
| 5621 | if (am == NULL) |
| 5622 | return; |
| 5623 | am->flags |= flags; |
| 5624 | } |
| 5625 | |
| 5626 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5627 | * xmlAutomataGetInitState: |
| 5628 | * @am: an automata |
| 5629 | * |
Daniel Veillard | a9b66d0 | 2002-12-11 14:23:49 +0000 | [diff] [blame] | 5630 | * Initial state lookup |
| 5631 | * |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5632 | * Returns the initial state of the automata |
| 5633 | */ |
| 5634 | xmlAutomataStatePtr |
| 5635 | xmlAutomataGetInitState(xmlAutomataPtr am) { |
| 5636 | if (am == NULL) |
| 5637 | return(NULL); |
| 5638 | return(am->start); |
| 5639 | } |
| 5640 | |
| 5641 | /** |
| 5642 | * xmlAutomataSetFinalState: |
| 5643 | * @am: an automata |
| 5644 | * @state: a state in this automata |
| 5645 | * |
| 5646 | * Makes that state a final state |
| 5647 | * |
| 5648 | * Returns 0 or -1 in case of error |
| 5649 | */ |
| 5650 | int |
| 5651 | xmlAutomataSetFinalState(xmlAutomataPtr am, xmlAutomataStatePtr state) { |
| 5652 | if ((am == NULL) || (state == NULL)) |
| 5653 | return(-1); |
| 5654 | state->type = XML_REGEXP_FINAL_STATE; |
| 5655 | return(0); |
| 5656 | } |
| 5657 | |
| 5658 | /** |
| 5659 | * xmlAutomataNewTransition: |
| 5660 | * @am: an automata |
| 5661 | * @from: the starting point of the transition |
| 5662 | * @to: the target point of the transition or NULL |
| 5663 | * @token: the input string associated to that transition |
| 5664 | * @data: data passed to the callback function if the transition is activated |
| 5665 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5666 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5667 | * and then adds a transition from the @from state to the target state |
| 5668 | * activated by the value of @token |
| 5669 | * |
| 5670 | * Returns the target state or NULL in case of error |
| 5671 | */ |
| 5672 | xmlAutomataStatePtr |
| 5673 | xmlAutomataNewTransition(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5674 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5675 | void *data) { |
| 5676 | xmlRegAtomPtr atom; |
| 5677 | |
| 5678 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 5679 | return(NULL); |
| 5680 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5681 | if (atom == NULL) |
| 5682 | return(NULL); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5683 | atom->data = data; |
| 5684 | if (atom == NULL) |
| 5685 | return(NULL); |
| 5686 | atom->valuep = xmlStrdup(token); |
| 5687 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5688 | if (xmlFAGenerateTransitions(am, from, to, atom) < 0) { |
| 5689 | xmlRegFreeAtom(atom); |
| 5690 | return(NULL); |
| 5691 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5692 | if (to == NULL) |
| 5693 | return(am->state); |
| 5694 | return(to); |
| 5695 | } |
| 5696 | |
| 5697 | /** |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5698 | * xmlAutomataNewTransition2: |
| 5699 | * @am: an automata |
| 5700 | * @from: the starting point of the transition |
| 5701 | * @to: the target point of the transition or NULL |
| 5702 | * @token: the first input string associated to that transition |
| 5703 | * @token2: the second input string associated to that transition |
| 5704 | * @data: data passed to the callback function if the transition is activated |
| 5705 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5706 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5707 | * and then adds a transition from the @from state to the target state |
| 5708 | * activated by the value of @token |
| 5709 | * |
| 5710 | * Returns the target state or NULL in case of error |
| 5711 | */ |
| 5712 | xmlAutomataStatePtr |
| 5713 | xmlAutomataNewTransition2(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5714 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5715 | const xmlChar *token2, void *data) { |
| 5716 | xmlRegAtomPtr atom; |
| 5717 | |
| 5718 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 5719 | return(NULL); |
| 5720 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5721 | if (atom == NULL) |
| 5722 | return(NULL); |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 5723 | atom->data = data; |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5724 | if ((token2 == NULL) || (*token2 == 0)) { |
| 5725 | atom->valuep = xmlStrdup(token); |
| 5726 | } else { |
| 5727 | int lenn, lenp; |
| 5728 | xmlChar *str; |
| 5729 | |
| 5730 | lenn = strlen((char *) token2); |
| 5731 | lenp = strlen((char *) token); |
| 5732 | |
Daniel Veillard | 3c908dc | 2003-04-19 00:07:51 +0000 | [diff] [blame] | 5733 | str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5734 | if (str == NULL) { |
| 5735 | xmlRegFreeAtom(atom); |
| 5736 | return(NULL); |
| 5737 | } |
| 5738 | memcpy(&str[0], token, lenp); |
| 5739 | str[lenp] = '|'; |
| 5740 | memcpy(&str[lenp + 1], token2, lenn); |
| 5741 | str[lenn + lenp + 1] = 0; |
| 5742 | |
| 5743 | atom->valuep = str; |
| 5744 | } |
| 5745 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5746 | if (xmlFAGenerateTransitions(am, from, to, atom) < 0) { |
| 5747 | xmlRegFreeAtom(atom); |
| 5748 | return(NULL); |
| 5749 | } |
Daniel Veillard | 52b48c7 | 2003-04-13 19:53:42 +0000 | [diff] [blame] | 5750 | if (to == NULL) |
| 5751 | return(am->state); |
| 5752 | return(to); |
| 5753 | } |
| 5754 | |
| 5755 | /** |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 5756 | * xmlAutomataNewNegTrans: |
| 5757 | * @am: an automata |
| 5758 | * @from: the starting point of the transition |
| 5759 | * @to: the target point of the transition or NULL |
| 5760 | * @token: the first input string associated to that transition |
| 5761 | * @token2: the second input string associated to that transition |
| 5762 | * @data: data passed to the callback function if the transition is activated |
| 5763 | * |
| 5764 | * If @to is NULL, this creates first a new target state in the automata |
| 5765 | * and then adds a transition from the @from state to the target state |
| 5766 | * activated by any value except (@token,@token2) |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 5767 | * Note that if @token2 is not NULL, then (X, NULL) won't match to follow |
| 5768 | # the semantic of XSD ##other |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 5769 | * |
| 5770 | * Returns the target state or NULL in case of error |
| 5771 | */ |
| 5772 | xmlAutomataStatePtr |
| 5773 | xmlAutomataNewNegTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5774 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5775 | const xmlChar *token2, void *data) { |
| 5776 | xmlRegAtomPtr atom; |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 5777 | xmlChar err_msg[200]; |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 5778 | |
| 5779 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 5780 | return(NULL); |
| 5781 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
| 5782 | if (atom == NULL) |
| 5783 | return(NULL); |
| 5784 | atom->data = data; |
| 5785 | atom->neg = 1; |
| 5786 | if ((token2 == NULL) || (*token2 == 0)) { |
| 5787 | atom->valuep = xmlStrdup(token); |
| 5788 | } else { |
| 5789 | int lenn, lenp; |
| 5790 | xmlChar *str; |
| 5791 | |
| 5792 | lenn = strlen((char *) token2); |
| 5793 | lenp = strlen((char *) token); |
| 5794 | |
| 5795 | str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); |
| 5796 | if (str == NULL) { |
| 5797 | xmlRegFreeAtom(atom); |
| 5798 | return(NULL); |
| 5799 | } |
| 5800 | memcpy(&str[0], token, lenp); |
| 5801 | str[lenp] = '|'; |
| 5802 | memcpy(&str[lenp + 1], token2, lenn); |
| 5803 | str[lenn + lenp + 1] = 0; |
| 5804 | |
| 5805 | atom->valuep = str; |
| 5806 | } |
Daniel Veillard | db68b74 | 2005-07-30 13:18:24 +0000 | [diff] [blame] | 5807 | snprintf((char *) err_msg, 199, "not %s", (const char *) atom->valuep); |
Daniel Veillard | 77005e6 | 2005-07-19 16:26:18 +0000 | [diff] [blame] | 5808 | err_msg[199] = 0; |
| 5809 | atom->valuep2 = xmlStrdup(err_msg); |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 5810 | |
| 5811 | if (xmlFAGenerateTransitions(am, from, to, atom) < 0) { |
| 5812 | xmlRegFreeAtom(atom); |
| 5813 | return(NULL); |
| 5814 | } |
Daniel Veillard | 6e65e15 | 2005-08-09 11:09:52 +0000 | [diff] [blame] | 5815 | am->negs++; |
Daniel Veillard | 9efc476 | 2005-07-19 14:33:55 +0000 | [diff] [blame] | 5816 | if (to == NULL) |
| 5817 | return(am->state); |
| 5818 | return(to); |
| 5819 | } |
| 5820 | |
| 5821 | /** |
Kasimier T. Buchcik | 8787640 | 2004-09-29 13:29:03 +0000 | [diff] [blame] | 5822 | * xmlAutomataNewCountTrans2: |
| 5823 | * @am: an automata |
| 5824 | * @from: the starting point of the transition |
| 5825 | * @to: the target point of the transition or NULL |
| 5826 | * @token: the input string associated to that transition |
| 5827 | * @token2: the second input string associated to that transition |
| 5828 | * @min: the minimum successive occurences of token |
| 5829 | * @max: the maximum successive occurences of token |
| 5830 | * @data: data associated to the transition |
| 5831 | * |
| 5832 | * If @to is NULL, this creates first a new target state in the automata |
| 5833 | * and then adds a transition from the @from state to the target state |
| 5834 | * activated by a succession of input of value @token and @token2 and |
| 5835 | * whose number is between @min and @max |
| 5836 | * |
| 5837 | * Returns the target state or NULL in case of error |
| 5838 | */ |
| 5839 | xmlAutomataStatePtr |
| 5840 | xmlAutomataNewCountTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5841 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5842 | const xmlChar *token2, |
| 5843 | int min, int max, void *data) { |
| 5844 | xmlRegAtomPtr atom; |
| 5845 | int counter; |
| 5846 | |
| 5847 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 5848 | return(NULL); |
| 5849 | if (min < 0) |
| 5850 | return(NULL); |
| 5851 | if ((max < min) || (max < 1)) |
| 5852 | return(NULL); |
| 5853 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
| 5854 | if (atom == NULL) |
| 5855 | return(NULL); |
| 5856 | if ((token2 == NULL) || (*token2 == 0)) { |
| 5857 | atom->valuep = xmlStrdup(token); |
| 5858 | } else { |
| 5859 | int lenn, lenp; |
| 5860 | xmlChar *str; |
| 5861 | |
| 5862 | lenn = strlen((char *) token2); |
| 5863 | lenp = strlen((char *) token); |
| 5864 | |
| 5865 | str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); |
| 5866 | if (str == NULL) { |
| 5867 | xmlRegFreeAtom(atom); |
| 5868 | return(NULL); |
| 5869 | } |
| 5870 | memcpy(&str[0], token, lenp); |
| 5871 | str[lenp] = '|'; |
| 5872 | memcpy(&str[lenp + 1], token2, lenn); |
| 5873 | str[lenn + lenp + 1] = 0; |
| 5874 | |
| 5875 | atom->valuep = str; |
| 5876 | } |
| 5877 | atom->data = data; |
| 5878 | if (min == 0) |
| 5879 | atom->min = 1; |
| 5880 | else |
| 5881 | atom->min = min; |
| 5882 | atom->max = max; |
| 5883 | |
| 5884 | /* |
| 5885 | * associate a counter to the transition. |
| 5886 | */ |
| 5887 | counter = xmlRegGetCounter(am); |
| 5888 | am->counters[counter].min = min; |
| 5889 | am->counters[counter].max = max; |
| 5890 | |
| 5891 | /* xmlFAGenerateTransitions(am, from, to, atom); */ |
| 5892 | if (to == NULL) { |
| 5893 | to = xmlRegNewState(am); |
| 5894 | xmlRegStatePush(am, to); |
| 5895 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 5896 | xmlRegStateAddTrans(am, from, atom, to, counter, -1); |
Kasimier T. Buchcik | 8787640 | 2004-09-29 13:29:03 +0000 | [diff] [blame] | 5897 | xmlRegAtomPush(am, atom); |
| 5898 | am->state = to; |
| 5899 | |
| 5900 | if (to == NULL) |
| 5901 | to = am->state; |
| 5902 | if (to == NULL) |
| 5903 | return(NULL); |
| 5904 | if (min == 0) |
| 5905 | xmlFAGenerateEpsilonTransition(am, from, to); |
| 5906 | return(to); |
| 5907 | } |
| 5908 | |
| 5909 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5910 | * xmlAutomataNewCountTrans: |
| 5911 | * @am: an automata |
| 5912 | * @from: the starting point of the transition |
| 5913 | * @to: the target point of the transition or NULL |
| 5914 | * @token: the input string associated to that transition |
| 5915 | * @min: the minimum successive occurences of token |
Daniel Veillard | a9b66d0 | 2002-12-11 14:23:49 +0000 | [diff] [blame] | 5916 | * @max: the maximum successive occurences of token |
| 5917 | * @data: data associated to the transition |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5918 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 5919 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5920 | * and then adds a transition from the @from state to the target state |
| 5921 | * activated by a succession of input of value @token and whose number |
| 5922 | * is between @min and @max |
| 5923 | * |
| 5924 | * Returns the target state or NULL in case of error |
| 5925 | */ |
| 5926 | xmlAutomataStatePtr |
| 5927 | xmlAutomataNewCountTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5928 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5929 | int min, int max, void *data) { |
| 5930 | xmlRegAtomPtr atom; |
Daniel Veillard | 0ddb21c | 2004-02-12 12:43:49 +0000 | [diff] [blame] | 5931 | int counter; |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5932 | |
| 5933 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 5934 | return(NULL); |
| 5935 | if (min < 0) |
| 5936 | return(NULL); |
| 5937 | if ((max < min) || (max < 1)) |
| 5938 | return(NULL); |
| 5939 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
| 5940 | if (atom == NULL) |
| 5941 | return(NULL); |
| 5942 | atom->valuep = xmlStrdup(token); |
| 5943 | atom->data = data; |
| 5944 | if (min == 0) |
| 5945 | atom->min = 1; |
| 5946 | else |
| 5947 | atom->min = min; |
| 5948 | atom->max = max; |
| 5949 | |
Daniel Veillard | 0ddb21c | 2004-02-12 12:43:49 +0000 | [diff] [blame] | 5950 | /* |
| 5951 | * associate a counter to the transition. |
| 5952 | */ |
| 5953 | counter = xmlRegGetCounter(am); |
| 5954 | am->counters[counter].min = min; |
| 5955 | am->counters[counter].max = max; |
| 5956 | |
| 5957 | /* xmlFAGenerateTransitions(am, from, to, atom); */ |
| 5958 | if (to == NULL) { |
| 5959 | to = xmlRegNewState(am); |
| 5960 | xmlRegStatePush(am, to); |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 5961 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 5962 | xmlRegStateAddTrans(am, from, atom, to, counter, -1); |
Daniel Veillard | 0ddb21c | 2004-02-12 12:43:49 +0000 | [diff] [blame] | 5963 | xmlRegAtomPush(am, atom); |
| 5964 | am->state = to; |
| 5965 | |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 5966 | if (to == NULL) |
| 5967 | to = am->state; |
| 5968 | if (to == NULL) |
| 5969 | return(NULL); |
| 5970 | if (min == 0) |
| 5971 | xmlFAGenerateEpsilonTransition(am, from, to); |
| 5972 | return(to); |
| 5973 | } |
| 5974 | |
| 5975 | /** |
Kasimier T. Buchcik | 8787640 | 2004-09-29 13:29:03 +0000 | [diff] [blame] | 5976 | * xmlAutomataNewOnceTrans2: |
| 5977 | * @am: an automata |
| 5978 | * @from: the starting point of the transition |
| 5979 | * @to: the target point of the transition or NULL |
| 5980 | * @token: the input string associated to that transition |
| 5981 | * @token2: the second input string associated to that transition |
| 5982 | * @min: the minimum successive occurences of token |
| 5983 | * @max: the maximum successive occurences of token |
| 5984 | * @data: data associated to the transition |
| 5985 | * |
| 5986 | * If @to is NULL, this creates first a new target state in the automata |
| 5987 | * and then adds a transition from the @from state to the target state |
| 5988 | * activated by a succession of input of value @token and @token2 and whose |
| 5989 | * number is between @min and @max, moreover that transition can only be |
| 5990 | * crossed once. |
| 5991 | * |
| 5992 | * Returns the target state or NULL in case of error |
| 5993 | */ |
| 5994 | xmlAutomataStatePtr |
| 5995 | xmlAutomataNewOnceTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 5996 | xmlAutomataStatePtr to, const xmlChar *token, |
| 5997 | const xmlChar *token2, |
| 5998 | int min, int max, void *data) { |
| 5999 | xmlRegAtomPtr atom; |
| 6000 | int counter; |
| 6001 | |
| 6002 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 6003 | return(NULL); |
| 6004 | if (min < 1) |
| 6005 | return(NULL); |
| 6006 | if ((max < min) || (max < 1)) |
| 6007 | return(NULL); |
| 6008 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
| 6009 | if (atom == NULL) |
| 6010 | return(NULL); |
| 6011 | if ((token2 == NULL) || (*token2 == 0)) { |
| 6012 | atom->valuep = xmlStrdup(token); |
| 6013 | } else { |
| 6014 | int lenn, lenp; |
| 6015 | xmlChar *str; |
| 6016 | |
| 6017 | lenn = strlen((char *) token2); |
| 6018 | lenp = strlen((char *) token); |
| 6019 | |
| 6020 | str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); |
| 6021 | if (str == NULL) { |
| 6022 | xmlRegFreeAtom(atom); |
| 6023 | return(NULL); |
| 6024 | } |
| 6025 | memcpy(&str[0], token, lenp); |
| 6026 | str[lenp] = '|'; |
| 6027 | memcpy(&str[lenp + 1], token2, lenn); |
| 6028 | str[lenn + lenp + 1] = 0; |
| 6029 | |
| 6030 | atom->valuep = str; |
| 6031 | } |
| 6032 | atom->data = data; |
| 6033 | atom->quant = XML_REGEXP_QUANT_ONCEONLY; |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 6034 | atom->min = min; |
Kasimier T. Buchcik | 8787640 | 2004-09-29 13:29:03 +0000 | [diff] [blame] | 6035 | atom->max = max; |
| 6036 | /* |
| 6037 | * associate a counter to the transition. |
| 6038 | */ |
| 6039 | counter = xmlRegGetCounter(am); |
| 6040 | am->counters[counter].min = 1; |
| 6041 | am->counters[counter].max = 1; |
| 6042 | |
| 6043 | /* xmlFAGenerateTransitions(am, from, to, atom); */ |
| 6044 | if (to == NULL) { |
| 6045 | to = xmlRegNewState(am); |
| 6046 | xmlRegStatePush(am, to); |
| 6047 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 6048 | xmlRegStateAddTrans(am, from, atom, to, counter, -1); |
Kasimier T. Buchcik | 8787640 | 2004-09-29 13:29:03 +0000 | [diff] [blame] | 6049 | xmlRegAtomPush(am, atom); |
| 6050 | am->state = to; |
| 6051 | return(to); |
| 6052 | } |
| 6053 | |
| 6054 | |
| 6055 | |
| 6056 | /** |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6057 | * xmlAutomataNewOnceTrans: |
| 6058 | * @am: an automata |
| 6059 | * @from: the starting point of the transition |
| 6060 | * @to: the target point of the transition or NULL |
| 6061 | * @token: the input string associated to that transition |
| 6062 | * @min: the minimum successive occurences of token |
Daniel Veillard | a9b66d0 | 2002-12-11 14:23:49 +0000 | [diff] [blame] | 6063 | * @max: the maximum successive occurences of token |
| 6064 | * @data: data associated to the transition |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6065 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6066 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6067 | * and then adds a transition from the @from state to the target state |
| 6068 | * activated by a succession of input of value @token and whose number |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6069 | * is between @min and @max, moreover that transition can only be crossed |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6070 | * once. |
| 6071 | * |
| 6072 | * Returns the target state or NULL in case of error |
| 6073 | */ |
| 6074 | xmlAutomataStatePtr |
| 6075 | xmlAutomataNewOnceTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 6076 | xmlAutomataStatePtr to, const xmlChar *token, |
| 6077 | int min, int max, void *data) { |
| 6078 | xmlRegAtomPtr atom; |
| 6079 | int counter; |
| 6080 | |
| 6081 | if ((am == NULL) || (from == NULL) || (token == NULL)) |
| 6082 | return(NULL); |
| 6083 | if (min < 1) |
| 6084 | return(NULL); |
| 6085 | if ((max < min) || (max < 1)) |
| 6086 | return(NULL); |
| 6087 | atom = xmlRegNewAtom(am, XML_REGEXP_STRING); |
| 6088 | if (atom == NULL) |
| 6089 | return(NULL); |
| 6090 | atom->valuep = xmlStrdup(token); |
| 6091 | atom->data = data; |
| 6092 | atom->quant = XML_REGEXP_QUANT_ONCEONLY; |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 6093 | atom->min = min; |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6094 | atom->max = max; |
| 6095 | /* |
| 6096 | * associate a counter to the transition. |
| 6097 | */ |
| 6098 | counter = xmlRegGetCounter(am); |
| 6099 | am->counters[counter].min = 1; |
| 6100 | am->counters[counter].max = 1; |
| 6101 | |
| 6102 | /* xmlFAGenerateTransitions(am, from, to, atom); */ |
| 6103 | if (to == NULL) { |
| 6104 | to = xmlRegNewState(am); |
| 6105 | xmlRegStatePush(am, to); |
| 6106 | } |
Daniel Veillard | 5de0938 | 2005-09-26 17:18:17 +0000 | [diff] [blame] | 6107 | xmlRegStateAddTrans(am, from, atom, to, counter, -1); |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6108 | xmlRegAtomPush(am, atom); |
| 6109 | am->state = to; |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6110 | return(to); |
| 6111 | } |
| 6112 | |
| 6113 | /** |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6114 | * xmlAutomataNewState: |
| 6115 | * @am: an automata |
| 6116 | * |
| 6117 | * Create a new disconnected state in the automata |
| 6118 | * |
| 6119 | * Returns the new state or NULL in case of error |
| 6120 | */ |
| 6121 | xmlAutomataStatePtr |
| 6122 | xmlAutomataNewState(xmlAutomataPtr am) { |
| 6123 | xmlAutomataStatePtr to; |
| 6124 | |
| 6125 | if (am == NULL) |
| 6126 | return(NULL); |
| 6127 | to = xmlRegNewState(am); |
| 6128 | xmlRegStatePush(am, to); |
| 6129 | return(to); |
| 6130 | } |
| 6131 | |
| 6132 | /** |
Daniel Veillard | a9b66d0 | 2002-12-11 14:23:49 +0000 | [diff] [blame] | 6133 | * xmlAutomataNewEpsilon: |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6134 | * @am: an automata |
| 6135 | * @from: the starting point of the transition |
| 6136 | * @to: the target point of the transition or NULL |
| 6137 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6138 | * If @to is NULL, this creates first a new target state in the automata |
| 6139 | * and then adds an epsilon transition from the @from state to the |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6140 | * target state |
| 6141 | * |
| 6142 | * Returns the target state or NULL in case of error |
| 6143 | */ |
| 6144 | xmlAutomataStatePtr |
| 6145 | xmlAutomataNewEpsilon(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 6146 | xmlAutomataStatePtr to) { |
| 6147 | if ((am == NULL) || (from == NULL)) |
| 6148 | return(NULL); |
| 6149 | xmlFAGenerateEpsilonTransition(am, from, to); |
| 6150 | if (to == NULL) |
| 6151 | return(am->state); |
| 6152 | return(to); |
| 6153 | } |
| 6154 | |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 6155 | /** |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6156 | * xmlAutomataNewAllTrans: |
| 6157 | * @am: an automata |
| 6158 | * @from: the starting point of the transition |
| 6159 | * @to: the target point of the transition or NULL |
Daniel Veillard | a9b66d0 | 2002-12-11 14:23:49 +0000 | [diff] [blame] | 6160 | * @lax: allow to transition if not all all transitions have been activated |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6161 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6162 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6163 | * and then adds a an ALL transition from the @from state to the |
| 6164 | * target state. That transition is an epsilon transition allowed only when |
| 6165 | * all transitions from the @from node have been activated. |
| 6166 | * |
| 6167 | * Returns the target state or NULL in case of error |
| 6168 | */ |
| 6169 | xmlAutomataStatePtr |
| 6170 | xmlAutomataNewAllTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 6171 | xmlAutomataStatePtr to, int lax) { |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6172 | if ((am == NULL) || (from == NULL)) |
| 6173 | return(NULL); |
Daniel Veillard | 441bc32 | 2002-04-20 17:38:48 +0000 | [diff] [blame] | 6174 | xmlFAGenerateAllTransition(am, from, to, lax); |
Daniel Veillard | 7646b18 | 2002-04-20 06:41:40 +0000 | [diff] [blame] | 6175 | if (to == NULL) |
| 6176 | return(am->state); |
| 6177 | return(to); |
| 6178 | } |
| 6179 | |
| 6180 | /** |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 6181 | * xmlAutomataNewCounter: |
| 6182 | * @am: an automata |
| 6183 | * @min: the minimal value on the counter |
| 6184 | * @max: the maximal value on the counter |
| 6185 | * |
| 6186 | * Create a new counter |
| 6187 | * |
| 6188 | * Returns the counter number or -1 in case of error |
| 6189 | */ |
| 6190 | int |
| 6191 | xmlAutomataNewCounter(xmlAutomataPtr am, int min, int max) { |
| 6192 | int ret; |
| 6193 | |
| 6194 | if (am == NULL) |
| 6195 | return(-1); |
| 6196 | |
| 6197 | ret = xmlRegGetCounter(am); |
| 6198 | if (ret < 0) |
| 6199 | return(-1); |
| 6200 | am->counters[ret].min = min; |
| 6201 | am->counters[ret].max = max; |
| 6202 | return(ret); |
| 6203 | } |
| 6204 | |
| 6205 | /** |
| 6206 | * xmlAutomataNewCountedTrans: |
| 6207 | * @am: an automata |
| 6208 | * @from: the starting point of the transition |
| 6209 | * @to: the target point of the transition or NULL |
| 6210 | * @counter: the counter associated to that transition |
| 6211 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6212 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 6213 | * and then adds an epsilon transition from the @from state to the target state |
| 6214 | * which will increment the counter provided |
| 6215 | * |
| 6216 | * Returns the target state or NULL in case of error |
| 6217 | */ |
| 6218 | xmlAutomataStatePtr |
| 6219 | xmlAutomataNewCountedTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 6220 | xmlAutomataStatePtr to, int counter) { |
| 6221 | if ((am == NULL) || (from == NULL) || (counter < 0)) |
| 6222 | return(NULL); |
| 6223 | xmlFAGenerateCountedEpsilonTransition(am, from, to, counter); |
| 6224 | if (to == NULL) |
| 6225 | return(am->state); |
| 6226 | return(to); |
| 6227 | } |
| 6228 | |
| 6229 | /** |
| 6230 | * xmlAutomataNewCounterTrans: |
| 6231 | * @am: an automata |
| 6232 | * @from: the starting point of the transition |
| 6233 | * @to: the target point of the transition or NULL |
| 6234 | * @counter: the counter associated to that transition |
| 6235 | * |
William M. Brack | ddf71d6 | 2004-05-06 04:17:26 +0000 | [diff] [blame] | 6236 | * If @to is NULL, this creates first a new target state in the automata |
Daniel Veillard | b509f15 | 2002-04-17 16:28:10 +0000 | [diff] [blame] | 6237 | * and then adds an epsilon transition from the @from state to the target state |
| 6238 | * which will be allowed only if the counter is within the right range. |
| 6239 | * |
| 6240 | * Returns the target state or NULL in case of error |
| 6241 | */ |
| 6242 | xmlAutomataStatePtr |
| 6243 | xmlAutomataNewCounterTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, |
| 6244 | xmlAutomataStatePtr to, int counter) { |
| 6245 | if ((am == NULL) || (from == NULL) || (counter < 0)) |
| 6246 | return(NULL); |
| 6247 | xmlFAGenerateCountedTransition(am, from, to, counter); |
| 6248 | if (to == NULL) |
| 6249 | return(am->state); |
| 6250 | return(to); |
| 6251 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6252 | |
| 6253 | /** |
| 6254 | * xmlAutomataCompile: |
| 6255 | * @am: an automata |
| 6256 | * |
| 6257 | * Compile the automata into a Reg Exp ready for being executed. |
| 6258 | * The automata should be free after this point. |
| 6259 | * |
| 6260 | * Returns the compiled regexp or NULL in case of error |
| 6261 | */ |
| 6262 | xmlRegexpPtr |
| 6263 | xmlAutomataCompile(xmlAutomataPtr am) { |
| 6264 | xmlRegexpPtr ret; |
| 6265 | |
Daniel Veillard | a76fe5c | 2003-04-24 16:06:47 +0000 | [diff] [blame] | 6266 | if ((am == NULL) || (am->error != 0)) return(NULL); |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6267 | xmlFAEliminateEpsilonTransitions(am); |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 6268 | /* xmlFAComputesDeterminism(am); */ |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6269 | ret = xmlRegEpxFromParse(am); |
| 6270 | |
| 6271 | return(ret); |
| 6272 | } |
Daniel Veillard | e19fc23 | 2002-04-22 16:01:24 +0000 | [diff] [blame] | 6273 | |
| 6274 | /** |
| 6275 | * xmlAutomataIsDeterminist: |
| 6276 | * @am: an automata |
| 6277 | * |
| 6278 | * Checks if an automata is determinist. |
| 6279 | * |
| 6280 | * Returns 1 if true, 0 if not, and -1 in case of error |
| 6281 | */ |
| 6282 | int |
| 6283 | xmlAutomataIsDeterminist(xmlAutomataPtr am) { |
| 6284 | int ret; |
| 6285 | |
| 6286 | if (am == NULL) |
| 6287 | return(-1); |
| 6288 | |
| 6289 | ret = xmlFAComputesDeterminism(am); |
| 6290 | return(ret); |
| 6291 | } |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 6292 | #endif /* LIBXML_AUTOMATA_ENABLED */ |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6293 | |
| 6294 | #ifdef LIBXML_EXPR_ENABLED |
| 6295 | /************************************************************************ |
| 6296 | * * |
| 6297 | * Formal Expression handling code * |
| 6298 | * * |
| 6299 | ************************************************************************/ |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6300 | /************************************************************************ |
| 6301 | * * |
| 6302 | * Expression handling context * |
| 6303 | * * |
| 6304 | ************************************************************************/ |
| 6305 | |
| 6306 | struct _xmlExpCtxt { |
| 6307 | xmlDictPtr dict; |
| 6308 | xmlExpNodePtr *table; |
| 6309 | int size; |
| 6310 | int nbElems; |
| 6311 | int nb_nodes; |
| 6312 | const char *expr; |
| 6313 | const char *cur; |
| 6314 | int nb_cons; |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6315 | int tabSize; |
| 6316 | }; |
| 6317 | |
| 6318 | /** |
| 6319 | * xmlExpNewCtxt: |
| 6320 | * @maxNodes: the maximum number of nodes |
| 6321 | * @dict: optional dictionnary to use internally |
| 6322 | * |
| 6323 | * Creates a new context for manipulating expressions |
| 6324 | * |
| 6325 | * Returns the context or NULL in case of error |
| 6326 | */ |
| 6327 | xmlExpCtxtPtr |
| 6328 | xmlExpNewCtxt(int maxNodes, xmlDictPtr dict) { |
| 6329 | xmlExpCtxtPtr ret; |
| 6330 | int size = 256; |
| 6331 | |
| 6332 | if (maxNodes <= 4096) |
| 6333 | maxNodes = 4096; |
| 6334 | |
| 6335 | ret = (xmlExpCtxtPtr) xmlMalloc(sizeof(xmlExpCtxt)); |
| 6336 | if (ret == NULL) |
| 6337 | return(NULL); |
| 6338 | memset(ret, 0, sizeof(xmlExpCtxt)); |
| 6339 | ret->size = size; |
| 6340 | ret->nbElems = 0; |
| 6341 | ret->table = xmlMalloc(size * sizeof(xmlExpNodePtr)); |
| 6342 | if (ret->table == NULL) { |
| 6343 | xmlFree(ret); |
| 6344 | return(NULL); |
| 6345 | } |
| 6346 | memset(ret->table, 0, size * sizeof(xmlExpNodePtr)); |
| 6347 | if (dict == NULL) { |
| 6348 | ret->dict = xmlDictCreate(); |
| 6349 | if (ret->dict == NULL) { |
| 6350 | xmlFree(ret->table); |
| 6351 | xmlFree(ret); |
| 6352 | return(NULL); |
| 6353 | } |
| 6354 | } else { |
| 6355 | ret->dict = dict; |
| 6356 | xmlDictReference(ret->dict); |
| 6357 | } |
| 6358 | return(ret); |
| 6359 | } |
| 6360 | |
| 6361 | /** |
| 6362 | * xmlExpFreeCtxt: |
| 6363 | * @ctxt: an expression context |
| 6364 | * |
| 6365 | * Free an expression context |
| 6366 | */ |
| 6367 | void |
| 6368 | xmlExpFreeCtxt(xmlExpCtxtPtr ctxt) { |
| 6369 | if (ctxt == NULL) |
| 6370 | return; |
| 6371 | xmlDictFree(ctxt->dict); |
| 6372 | if (ctxt->table != NULL) |
| 6373 | xmlFree(ctxt->table); |
| 6374 | xmlFree(ctxt); |
| 6375 | } |
| 6376 | |
| 6377 | /************************************************************************ |
| 6378 | * * |
| 6379 | * Structure associated to an expression node * |
| 6380 | * * |
| 6381 | ************************************************************************/ |
Daniel Veillard | 465a000 | 2005-08-22 12:07:04 +0000 | [diff] [blame] | 6382 | #define MAX_NODES 10000 |
| 6383 | |
| 6384 | /* #define DEBUG_DERIV */ |
| 6385 | |
| 6386 | /* |
| 6387 | * TODO: |
| 6388 | * - Wildcards |
| 6389 | * - public API for creation |
| 6390 | * |
| 6391 | * Started |
| 6392 | * - regression testing |
| 6393 | * |
| 6394 | * Done |
| 6395 | * - split into module and test tool |
| 6396 | * - memleaks |
| 6397 | */ |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6398 | |
| 6399 | typedef enum { |
| 6400 | XML_EXP_NILABLE = (1 << 0) |
| 6401 | } xmlExpNodeInfo; |
| 6402 | |
| 6403 | #define IS_NILLABLE(node) ((node)->info & XML_EXP_NILABLE) |
| 6404 | |
| 6405 | struct _xmlExpNode { |
| 6406 | unsigned char type;/* xmlExpNodeType */ |
| 6407 | unsigned char info;/* OR of xmlExpNodeInfo */ |
| 6408 | unsigned short key; /* the hash key */ |
| 6409 | unsigned int ref; /* The number of references */ |
| 6410 | int c_max; /* the maximum length it can consume */ |
| 6411 | xmlExpNodePtr exp_left; |
| 6412 | xmlExpNodePtr next;/* the next node in the hash table or free list */ |
| 6413 | union { |
| 6414 | struct { |
| 6415 | int f_min; |
| 6416 | int f_max; |
| 6417 | } count; |
| 6418 | struct { |
| 6419 | xmlExpNodePtr f_right; |
| 6420 | } children; |
| 6421 | const xmlChar *f_str; |
| 6422 | } field; |
| 6423 | }; |
| 6424 | |
| 6425 | #define exp_min field.count.f_min |
| 6426 | #define exp_max field.count.f_max |
| 6427 | /* #define exp_left field.children.f_left */ |
| 6428 | #define exp_right field.children.f_right |
| 6429 | #define exp_str field.f_str |
| 6430 | |
| 6431 | static xmlExpNodePtr xmlExpNewNode(xmlExpCtxtPtr ctxt, xmlExpNodeType type); |
| 6432 | static xmlExpNode forbiddenExpNode = { |
| 6433 | XML_EXP_FORBID, 0, 0, 0, 0, NULL, NULL, {{ 0, 0}} |
| 6434 | }; |
| 6435 | xmlExpNodePtr forbiddenExp = &forbiddenExpNode; |
| 6436 | static xmlExpNode emptyExpNode = { |
| 6437 | XML_EXP_EMPTY, 1, 0, 0, 0, NULL, NULL, {{ 0, 0}} |
| 6438 | }; |
| 6439 | xmlExpNodePtr emptyExp = &emptyExpNode; |
| 6440 | |
| 6441 | /************************************************************************ |
| 6442 | * * |
| 6443 | * The custom hash table for unicity and canonicalization * |
| 6444 | * of sub-expressions pointers * |
| 6445 | * * |
| 6446 | ************************************************************************/ |
| 6447 | /* |
| 6448 | * xmlExpHashNameComputeKey: |
| 6449 | * Calculate the hash key for a token |
| 6450 | */ |
| 6451 | static unsigned short |
| 6452 | xmlExpHashNameComputeKey(const xmlChar *name) { |
| 6453 | unsigned short value = 0L; |
| 6454 | char ch; |
| 6455 | |
| 6456 | if (name != NULL) { |
| 6457 | value += 30 * (*name); |
| 6458 | while ((ch = *name++) != 0) { |
| 6459 | value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch); |
| 6460 | } |
| 6461 | } |
| 6462 | return (value); |
| 6463 | } |
| 6464 | |
| 6465 | /* |
| 6466 | * xmlExpHashComputeKey: |
| 6467 | * Calculate the hash key for a compound expression |
| 6468 | */ |
| 6469 | static unsigned short |
| 6470 | xmlExpHashComputeKey(xmlExpNodeType type, xmlExpNodePtr left, |
| 6471 | xmlExpNodePtr right) { |
| 6472 | unsigned long value; |
| 6473 | unsigned short ret; |
| 6474 | |
| 6475 | switch (type) { |
| 6476 | case XML_EXP_SEQ: |
| 6477 | value = left->key; |
| 6478 | value += right->key; |
| 6479 | value *= 3; |
| 6480 | ret = (unsigned short) value; |
| 6481 | break; |
| 6482 | case XML_EXP_OR: |
| 6483 | value = left->key; |
| 6484 | value += right->key; |
| 6485 | value *= 7; |
| 6486 | ret = (unsigned short) value; |
| 6487 | break; |
| 6488 | case XML_EXP_COUNT: |
| 6489 | value = left->key; |
| 6490 | value += right->key; |
| 6491 | ret = (unsigned short) value; |
| 6492 | break; |
| 6493 | default: |
| 6494 | ret = 0; |
| 6495 | } |
| 6496 | return(ret); |
| 6497 | } |
| 6498 | |
| 6499 | |
| 6500 | static xmlExpNodePtr |
| 6501 | xmlExpNewNode(xmlExpCtxtPtr ctxt, xmlExpNodeType type) { |
| 6502 | xmlExpNodePtr ret; |
| 6503 | |
| 6504 | if (ctxt->nb_nodes >= MAX_NODES) |
| 6505 | return(NULL); |
| 6506 | ret = (xmlExpNodePtr) xmlMalloc(sizeof(xmlExpNode)); |
| 6507 | if (ret == NULL) |
| 6508 | return(NULL); |
| 6509 | memset(ret, 0, sizeof(xmlExpNode)); |
| 6510 | ret->type = type; |
| 6511 | ret->next = NULL; |
| 6512 | ctxt->nb_nodes++; |
| 6513 | ctxt->nb_cons++; |
| 6514 | return(ret); |
| 6515 | } |
| 6516 | |
| 6517 | /** |
| 6518 | * xmlExpHashGetEntry: |
| 6519 | * @table: the hash table |
| 6520 | * |
| 6521 | * Get the unique entry from the hash table. The entry is created if |
| 6522 | * needed. @left and @right are consumed, i.e. their ref count will |
| 6523 | * be decremented by the operation. |
| 6524 | * |
| 6525 | * Returns the pointer or NULL in case of error |
| 6526 | */ |
| 6527 | static xmlExpNodePtr |
| 6528 | xmlExpHashGetEntry(xmlExpCtxtPtr ctxt, xmlExpNodeType type, |
| 6529 | xmlExpNodePtr left, xmlExpNodePtr right, |
| 6530 | const xmlChar *name, int min, int max) { |
| 6531 | unsigned short kbase, key; |
| 6532 | xmlExpNodePtr entry; |
| 6533 | xmlExpNodePtr insert; |
| 6534 | |
| 6535 | if (ctxt == NULL) |
| 6536 | return(NULL); |
| 6537 | |
| 6538 | /* |
| 6539 | * Check for duplicate and insertion location. |
| 6540 | */ |
| 6541 | if (type == XML_EXP_ATOM) { |
| 6542 | kbase = xmlExpHashNameComputeKey(name); |
| 6543 | } else if (type == XML_EXP_COUNT) { |
| 6544 | /* COUNT reduction rule 1 */ |
| 6545 | /* a{1} -> a */ |
| 6546 | if (min == max) { |
| 6547 | if (min == 1) { |
| 6548 | return(left); |
| 6549 | } |
| 6550 | if (min == 0) { |
| 6551 | xmlExpFree(ctxt, left); |
| 6552 | return(emptyExp); |
| 6553 | } |
| 6554 | } |
| 6555 | if (min < 0) { |
| 6556 | xmlExpFree(ctxt, left); |
| 6557 | return(forbiddenExp); |
| 6558 | } |
| 6559 | if (max == -1) |
| 6560 | kbase = min + 79; |
| 6561 | else |
| 6562 | kbase = max - min; |
| 6563 | kbase += left->key; |
| 6564 | } else if (type == XML_EXP_OR) { |
| 6565 | /* Forbid reduction rules */ |
| 6566 | if (left->type == XML_EXP_FORBID) { |
| 6567 | xmlExpFree(ctxt, left); |
| 6568 | return(right); |
| 6569 | } |
| 6570 | if (right->type == XML_EXP_FORBID) { |
| 6571 | xmlExpFree(ctxt, right); |
| 6572 | return(left); |
| 6573 | } |
| 6574 | |
| 6575 | /* OR reduction rule 1 */ |
| 6576 | /* a | a reduced to a */ |
| 6577 | if (left == right) { |
| 6578 | left->ref--; |
| 6579 | return(left); |
| 6580 | } |
| 6581 | /* OR canonicalization rule 1 */ |
| 6582 | /* linearize (a | b) | c into a | (b | c) */ |
| 6583 | if ((left->type == XML_EXP_OR) && (right->type != XML_EXP_OR)) { |
| 6584 | xmlExpNodePtr tmp = left; |
| 6585 | left = right; |
| 6586 | right = tmp; |
| 6587 | } |
| 6588 | /* OR reduction rule 2 */ |
| 6589 | /* a | (a | b) and b | (a | b) are reduced to a | b */ |
| 6590 | if (right->type == XML_EXP_OR) { |
| 6591 | if ((left == right->exp_left) || |
| 6592 | (left == right->exp_right)) { |
| 6593 | xmlExpFree(ctxt, left); |
| 6594 | return(right); |
| 6595 | } |
| 6596 | } |
| 6597 | /* OR canonicalization rule 2 */ |
| 6598 | /* linearize (a | b) | c into a | (b | c) */ |
| 6599 | if (left->type == XML_EXP_OR) { |
| 6600 | xmlExpNodePtr tmp; |
| 6601 | |
| 6602 | /* OR canonicalization rule 2 */ |
| 6603 | if ((left->exp_right->type != XML_EXP_OR) && |
| 6604 | (left->exp_right->key < left->exp_left->key)) { |
| 6605 | tmp = left->exp_right; |
| 6606 | left->exp_right = left->exp_left; |
| 6607 | left->exp_left = tmp; |
| 6608 | } |
| 6609 | left->exp_right->ref++; |
| 6610 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, left->exp_right, right, |
| 6611 | NULL, 0, 0); |
| 6612 | left->exp_left->ref++; |
| 6613 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, left->exp_left, tmp, |
| 6614 | NULL, 0, 0); |
| 6615 | |
| 6616 | xmlExpFree(ctxt, left); |
| 6617 | return(tmp); |
| 6618 | } |
| 6619 | if (right->type == XML_EXP_OR) { |
| 6620 | /* Ordering in the tree */ |
| 6621 | /* C | (A | B) -> A | (B | C) */ |
| 6622 | if (left->key > right->exp_right->key) { |
| 6623 | xmlExpNodePtr tmp; |
| 6624 | right->exp_right->ref++; |
| 6625 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, right->exp_right, |
| 6626 | left, NULL, 0, 0); |
| 6627 | right->exp_left->ref++; |
| 6628 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, right->exp_left, |
| 6629 | tmp, NULL, 0, 0); |
| 6630 | xmlExpFree(ctxt, right); |
| 6631 | return(tmp); |
| 6632 | } |
| 6633 | /* Ordering in the tree */ |
| 6634 | /* B | (A | C) -> A | (B | C) */ |
| 6635 | if (left->key > right->exp_left->key) { |
| 6636 | xmlExpNodePtr tmp; |
| 6637 | right->exp_right->ref++; |
| 6638 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, left, |
| 6639 | right->exp_right, NULL, 0, 0); |
| 6640 | right->exp_left->ref++; |
| 6641 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_OR, right->exp_left, |
| 6642 | tmp, NULL, 0, 0); |
| 6643 | xmlExpFree(ctxt, right); |
| 6644 | return(tmp); |
| 6645 | } |
| 6646 | } |
| 6647 | /* we know both types are != XML_EXP_OR here */ |
| 6648 | else if (left->key > right->key) { |
| 6649 | xmlExpNodePtr tmp = left; |
| 6650 | left = right; |
| 6651 | right = tmp; |
| 6652 | } |
| 6653 | kbase = xmlExpHashComputeKey(type, left, right); |
| 6654 | } else if (type == XML_EXP_SEQ) { |
| 6655 | /* Forbid reduction rules */ |
| 6656 | if (left->type == XML_EXP_FORBID) { |
| 6657 | xmlExpFree(ctxt, right); |
| 6658 | return(left); |
| 6659 | } |
| 6660 | if (right->type == XML_EXP_FORBID) { |
| 6661 | xmlExpFree(ctxt, left); |
| 6662 | return(right); |
| 6663 | } |
| 6664 | /* Empty reduction rules */ |
| 6665 | if (right->type == XML_EXP_EMPTY) { |
| 6666 | return(left); |
| 6667 | } |
| 6668 | if (left->type == XML_EXP_EMPTY) { |
| 6669 | return(right); |
| 6670 | } |
| 6671 | kbase = xmlExpHashComputeKey(type, left, right); |
| 6672 | } else |
| 6673 | return(NULL); |
| 6674 | |
| 6675 | key = kbase % ctxt->size; |
| 6676 | if (ctxt->table[key] != NULL) { |
| 6677 | for (insert = ctxt->table[key]; insert != NULL; |
| 6678 | insert = insert->next) { |
| 6679 | if ((insert->key == kbase) && |
| 6680 | (insert->type == type)) { |
| 6681 | if (type == XML_EXP_ATOM) { |
| 6682 | if (name == insert->exp_str) { |
| 6683 | insert->ref++; |
| 6684 | return(insert); |
| 6685 | } |
| 6686 | } else if (type == XML_EXP_COUNT) { |
| 6687 | if ((insert->exp_min == min) && (insert->exp_max == max) && |
| 6688 | (insert->exp_left == left)) { |
| 6689 | insert->ref++; |
| 6690 | left->ref--; |
| 6691 | return(insert); |
| 6692 | } |
| 6693 | } else if ((insert->exp_left == left) && |
| 6694 | (insert->exp_right == right)) { |
| 6695 | insert->ref++; |
| 6696 | left->ref--; |
| 6697 | right->ref--; |
| 6698 | return(insert); |
| 6699 | } |
| 6700 | } |
| 6701 | } |
| 6702 | } |
| 6703 | |
| 6704 | entry = xmlExpNewNode(ctxt, type); |
| 6705 | if (entry == NULL) |
| 6706 | return(NULL); |
| 6707 | entry->key = kbase; |
| 6708 | if (type == XML_EXP_ATOM) { |
| 6709 | entry->exp_str = name; |
| 6710 | entry->c_max = 1; |
| 6711 | } else if (type == XML_EXP_COUNT) { |
| 6712 | entry->exp_min = min; |
| 6713 | entry->exp_max = max; |
| 6714 | entry->exp_left = left; |
| 6715 | if ((min == 0) || (IS_NILLABLE(left))) |
| 6716 | entry->info |= XML_EXP_NILABLE; |
| 6717 | if (max < 0) |
| 6718 | entry->c_max = -1; |
| 6719 | else |
| 6720 | entry->c_max = max * entry->exp_left->c_max; |
| 6721 | } else { |
| 6722 | entry->exp_left = left; |
| 6723 | entry->exp_right = right; |
| 6724 | if (type == XML_EXP_OR) { |
| 6725 | if ((IS_NILLABLE(left)) || (IS_NILLABLE(right))) |
| 6726 | entry->info |= XML_EXP_NILABLE; |
| 6727 | if ((entry->exp_left->c_max == -1) || |
| 6728 | (entry->exp_right->c_max == -1)) |
| 6729 | entry->c_max = -1; |
| 6730 | else if (entry->exp_left->c_max > entry->exp_right->c_max) |
| 6731 | entry->c_max = entry->exp_left->c_max; |
| 6732 | else |
| 6733 | entry->c_max = entry->exp_right->c_max; |
| 6734 | } else { |
| 6735 | if ((IS_NILLABLE(left)) && (IS_NILLABLE(right))) |
| 6736 | entry->info |= XML_EXP_NILABLE; |
| 6737 | if ((entry->exp_left->c_max == -1) || |
| 6738 | (entry->exp_right->c_max == -1)) |
| 6739 | entry->c_max = -1; |
| 6740 | else |
| 6741 | entry->c_max = entry->exp_left->c_max + entry->exp_right->c_max; |
| 6742 | } |
| 6743 | } |
| 6744 | entry->ref = 1; |
| 6745 | if (ctxt->table[key] != NULL) |
| 6746 | entry->next = ctxt->table[key]; |
| 6747 | |
| 6748 | ctxt->table[key] = entry; |
| 6749 | ctxt->nbElems++; |
| 6750 | |
| 6751 | return(entry); |
| 6752 | } |
| 6753 | |
| 6754 | /** |
| 6755 | * xmlExpFree: |
| 6756 | * @ctxt: the expression context |
| 6757 | * @exp: the expression |
| 6758 | * |
| 6759 | * Dereference the expression |
| 6760 | */ |
| 6761 | void |
| 6762 | xmlExpFree(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp) { |
| 6763 | if ((exp == NULL) || (exp == forbiddenExp) || (exp == emptyExp)) |
| 6764 | return; |
| 6765 | exp->ref--; |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6766 | if (exp->ref == 0) { |
| 6767 | unsigned short key; |
| 6768 | |
| 6769 | /* Unlink it first from the hash table */ |
| 6770 | key = exp->key % ctxt->size; |
| 6771 | if (ctxt->table[key] == exp) { |
| 6772 | ctxt->table[key] = exp->next; |
| 6773 | } else { |
| 6774 | xmlExpNodePtr tmp; |
| 6775 | |
| 6776 | tmp = ctxt->table[key]; |
| 6777 | while (tmp != NULL) { |
| 6778 | if (tmp->next == exp) { |
| 6779 | tmp->next = exp->next; |
| 6780 | break; |
| 6781 | } |
| 6782 | tmp = tmp->next; |
| 6783 | } |
| 6784 | } |
| 6785 | |
| 6786 | if ((exp->type == XML_EXP_SEQ) || (exp->type == XML_EXP_OR)) { |
| 6787 | xmlExpFree(ctxt, exp->exp_left); |
| 6788 | xmlExpFree(ctxt, exp->exp_right); |
| 6789 | } else if (exp->type == XML_EXP_COUNT) { |
| 6790 | xmlExpFree(ctxt, exp->exp_left); |
| 6791 | } |
| 6792 | xmlFree(exp); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6793 | ctxt->nb_nodes--; |
| 6794 | } |
| 6795 | } |
| 6796 | |
| 6797 | /** |
| 6798 | * xmlExpRef: |
| 6799 | * @exp: the expression |
| 6800 | * |
| 6801 | * Increase the reference count of the expression |
| 6802 | */ |
| 6803 | void |
| 6804 | xmlExpRef(xmlExpNodePtr exp) { |
| 6805 | if (exp != NULL) |
| 6806 | exp->ref++; |
| 6807 | } |
| 6808 | |
Daniel Veillard | ccb4d41 | 2005-08-23 13:41:17 +0000 | [diff] [blame] | 6809 | /** |
| 6810 | * xmlExpNewAtom: |
| 6811 | * @ctxt: the expression context |
| 6812 | * @name: the atom name |
| 6813 | * @len: the atom name lenght in byte (or -1); |
| 6814 | * |
| 6815 | * Get the atom associated to this name from that context |
| 6816 | * |
| 6817 | * Returns the node or NULL in case of error |
| 6818 | */ |
| 6819 | xmlExpNodePtr |
| 6820 | xmlExpNewAtom(xmlExpCtxtPtr ctxt, const xmlChar *name, int len) { |
| 6821 | if ((ctxt == NULL) || (name == NULL)) |
| 6822 | return(NULL); |
| 6823 | name = xmlDictLookup(ctxt->dict, name, len); |
| 6824 | if (name == NULL) |
| 6825 | return(NULL); |
| 6826 | return(xmlExpHashGetEntry(ctxt, XML_EXP_ATOM, NULL, NULL, name, 0, 0)); |
| 6827 | } |
| 6828 | |
| 6829 | /** |
| 6830 | * xmlExpNewOr: |
| 6831 | * @ctxt: the expression context |
| 6832 | * @left: left expression |
| 6833 | * @right: right expression |
| 6834 | * |
| 6835 | * Get the atom associated to the choice @left | @right |
| 6836 | * Note that @left and @right are consumed in the operation, to keep |
| 6837 | * an handle on them use xmlExpRef() and use xmlExpFree() to release them, |
| 6838 | * this is true even in case of failure (unless ctxt == NULL). |
| 6839 | * |
| 6840 | * Returns the node or NULL in case of error |
| 6841 | */ |
| 6842 | xmlExpNodePtr |
| 6843 | xmlExpNewOr(xmlExpCtxtPtr ctxt, xmlExpNodePtr left, xmlExpNodePtr right) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 6844 | if (ctxt == NULL) |
| 6845 | return(NULL); |
| 6846 | if ((left == NULL) || (right == NULL)) { |
Daniel Veillard | ccb4d41 | 2005-08-23 13:41:17 +0000 | [diff] [blame] | 6847 | xmlExpFree(ctxt, left); |
| 6848 | xmlExpFree(ctxt, right); |
| 6849 | return(NULL); |
| 6850 | } |
| 6851 | return(xmlExpHashGetEntry(ctxt, XML_EXP_OR, left, right, NULL, 0, 0)); |
| 6852 | } |
| 6853 | |
| 6854 | /** |
| 6855 | * xmlExpNewSeq: |
| 6856 | * @ctxt: the expression context |
| 6857 | * @left: left expression |
| 6858 | * @right: right expression |
| 6859 | * |
| 6860 | * Get the atom associated to the sequence @left , @right |
| 6861 | * Note that @left and @right are consumed in the operation, to keep |
| 6862 | * an handle on them use xmlExpRef() and use xmlExpFree() to release them, |
| 6863 | * this is true even in case of failure (unless ctxt == NULL). |
| 6864 | * |
| 6865 | * Returns the node or NULL in case of error |
| 6866 | */ |
| 6867 | xmlExpNodePtr |
| 6868 | xmlExpNewSeq(xmlExpCtxtPtr ctxt, xmlExpNodePtr left, xmlExpNodePtr right) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 6869 | if (ctxt == NULL) |
| 6870 | return(NULL); |
| 6871 | if ((left == NULL) || (right == NULL)) { |
Daniel Veillard | ccb4d41 | 2005-08-23 13:41:17 +0000 | [diff] [blame] | 6872 | xmlExpFree(ctxt, left); |
| 6873 | xmlExpFree(ctxt, right); |
| 6874 | return(NULL); |
| 6875 | } |
| 6876 | return(xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, left, right, NULL, 0, 0)); |
| 6877 | } |
| 6878 | |
| 6879 | /** |
| 6880 | * xmlExpNewRange: |
| 6881 | * @ctxt: the expression context |
| 6882 | * @subset: the expression to be repeated |
| 6883 | * @min: the lower bound for the repetition |
| 6884 | * @max: the upper bound for the repetition, -1 means infinite |
| 6885 | * |
| 6886 | * Get the atom associated to the range (@subset){@min, @max} |
| 6887 | * Note that @subset is consumed in the operation, to keep |
| 6888 | * an handle on it use xmlExpRef() and use xmlExpFree() to release it, |
| 6889 | * this is true even in case of failure (unless ctxt == NULL). |
| 6890 | * |
| 6891 | * Returns the node or NULL in case of error |
| 6892 | */ |
| 6893 | xmlExpNodePtr |
| 6894 | xmlExpNewRange(xmlExpCtxtPtr ctxt, xmlExpNodePtr subset, int min, int max) { |
Daniel Veillard | 11ce400 | 2006-03-10 00:36:23 +0000 | [diff] [blame] | 6895 | if (ctxt == NULL) |
| 6896 | return(NULL); |
| 6897 | if ((subset == NULL) || (min < 0) || (max < -1) || |
Daniel Veillard | ccb4d41 | 2005-08-23 13:41:17 +0000 | [diff] [blame] | 6898 | ((max >= 0) && (min > max))) { |
| 6899 | xmlExpFree(ctxt, subset); |
| 6900 | return(NULL); |
| 6901 | } |
| 6902 | return(xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, subset, |
| 6903 | NULL, NULL, min, max)); |
| 6904 | } |
| 6905 | |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6906 | /************************************************************************ |
| 6907 | * * |
| 6908 | * Public API for operations on expressions * |
| 6909 | * * |
| 6910 | ************************************************************************/ |
| 6911 | |
| 6912 | static int |
| 6913 | xmlExpGetLanguageInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
| 6914 | const xmlChar**list, int len, int nb) { |
| 6915 | int tmp, tmp2; |
| 6916 | tail: |
| 6917 | switch (exp->type) { |
| 6918 | case XML_EXP_EMPTY: |
| 6919 | return(0); |
| 6920 | case XML_EXP_ATOM: |
| 6921 | for (tmp = 0;tmp < nb;tmp++) |
| 6922 | if (list[tmp] == exp->exp_str) |
| 6923 | return(0); |
| 6924 | if (nb >= len) |
| 6925 | return(-2); |
Daniel Veillard | 13cee4e | 2009-09-05 14:52:55 +0200 | [diff] [blame] | 6926 | list[nb] = exp->exp_str; |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6927 | return(1); |
| 6928 | case XML_EXP_COUNT: |
| 6929 | exp = exp->exp_left; |
| 6930 | goto tail; |
| 6931 | case XML_EXP_SEQ: |
| 6932 | case XML_EXP_OR: |
| 6933 | tmp = xmlExpGetLanguageInt(ctxt, exp->exp_left, list, len, nb); |
| 6934 | if (tmp < 0) |
| 6935 | return(tmp); |
| 6936 | tmp2 = xmlExpGetLanguageInt(ctxt, exp->exp_right, list, len, |
| 6937 | nb + tmp); |
| 6938 | if (tmp2 < 0) |
| 6939 | return(tmp2); |
| 6940 | return(tmp + tmp2); |
| 6941 | } |
| 6942 | return(-1); |
| 6943 | } |
| 6944 | |
| 6945 | /** |
| 6946 | * xmlExpGetLanguage: |
| 6947 | * @ctxt: the expression context |
| 6948 | * @exp: the expression |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 6949 | * @langList: where to store the tokens |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6950 | * @len: the allocated lenght of @list |
| 6951 | * |
| 6952 | * Find all the strings used in @exp and store them in @list |
| 6953 | * |
| 6954 | * Returns the number of unique strings found, -1 in case of errors and |
| 6955 | * -2 if there is more than @len strings |
| 6956 | */ |
| 6957 | int |
| 6958 | xmlExpGetLanguage(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 6959 | const xmlChar**langList, int len) { |
| 6960 | if ((ctxt == NULL) || (exp == NULL) || (langList == NULL) || (len <= 0)) |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6961 | return(-1); |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 6962 | return(xmlExpGetLanguageInt(ctxt, exp, langList, len, 0)); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6963 | } |
| 6964 | |
| 6965 | static int |
| 6966 | xmlExpGetStartInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
| 6967 | const xmlChar**list, int len, int nb) { |
| 6968 | int tmp, tmp2; |
| 6969 | tail: |
| 6970 | switch (exp->type) { |
| 6971 | case XML_EXP_FORBID: |
| 6972 | return(0); |
| 6973 | case XML_EXP_EMPTY: |
| 6974 | return(0); |
| 6975 | case XML_EXP_ATOM: |
| 6976 | for (tmp = 0;tmp < nb;tmp++) |
| 6977 | if (list[tmp] == exp->exp_str) |
| 6978 | return(0); |
| 6979 | if (nb >= len) |
| 6980 | return(-2); |
Daniel Veillard | 13cee4e | 2009-09-05 14:52:55 +0200 | [diff] [blame] | 6981 | list[nb] = exp->exp_str; |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 6982 | return(1); |
| 6983 | case XML_EXP_COUNT: |
| 6984 | exp = exp->exp_left; |
| 6985 | goto tail; |
| 6986 | case XML_EXP_SEQ: |
| 6987 | tmp = xmlExpGetStartInt(ctxt, exp->exp_left, list, len, nb); |
| 6988 | if (tmp < 0) |
| 6989 | return(tmp); |
| 6990 | if (IS_NILLABLE(exp->exp_left)) { |
| 6991 | tmp2 = xmlExpGetStartInt(ctxt, exp->exp_right, list, len, |
| 6992 | nb + tmp); |
| 6993 | if (tmp2 < 0) |
| 6994 | return(tmp2); |
| 6995 | tmp += tmp2; |
| 6996 | } |
| 6997 | return(tmp); |
| 6998 | case XML_EXP_OR: |
| 6999 | tmp = xmlExpGetStartInt(ctxt, exp->exp_left, list, len, nb); |
| 7000 | if (tmp < 0) |
| 7001 | return(tmp); |
| 7002 | tmp2 = xmlExpGetStartInt(ctxt, exp->exp_right, list, len, |
| 7003 | nb + tmp); |
| 7004 | if (tmp2 < 0) |
| 7005 | return(tmp2); |
| 7006 | return(tmp + tmp2); |
| 7007 | } |
| 7008 | return(-1); |
| 7009 | } |
| 7010 | |
| 7011 | /** |
| 7012 | * xmlExpGetStart: |
| 7013 | * @ctxt: the expression context |
| 7014 | * @exp: the expression |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 7015 | * @tokList: where to store the tokens |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7016 | * @len: the allocated lenght of @list |
| 7017 | * |
| 7018 | * Find all the strings that appears at the start of the languages |
| 7019 | * accepted by @exp and store them in @list. E.g. for (a, b) | c |
| 7020 | * it will return the list [a, c] |
| 7021 | * |
| 7022 | * Returns the number of unique strings found, -1 in case of errors and |
| 7023 | * -2 if there is more than @len strings |
| 7024 | */ |
| 7025 | int |
| 7026 | xmlExpGetStart(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 7027 | const xmlChar**tokList, int len) { |
| 7028 | if ((ctxt == NULL) || (exp == NULL) || (tokList == NULL) || (len <= 0)) |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7029 | return(-1); |
Daniel Veillard | 7802ba5 | 2005-10-27 11:56:20 +0000 | [diff] [blame] | 7030 | return(xmlExpGetStartInt(ctxt, exp, tokList, len, 0)); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7031 | } |
| 7032 | |
| 7033 | /** |
| 7034 | * xmlExpIsNillable: |
| 7035 | * @exp: the expression |
| 7036 | * |
| 7037 | * Finds if the expression is nillable, i.e. if it accepts the empty sequqnce |
| 7038 | * |
| 7039 | * Returns 1 if nillable, 0 if not and -1 in case of error |
| 7040 | */ |
| 7041 | int |
| 7042 | xmlExpIsNillable(xmlExpNodePtr exp) { |
| 7043 | if (exp == NULL) |
| 7044 | return(-1); |
| 7045 | return(IS_NILLABLE(exp) != 0); |
| 7046 | } |
| 7047 | |
| 7048 | static xmlExpNodePtr |
| 7049 | xmlExpStringDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, const xmlChar *str) |
| 7050 | { |
| 7051 | xmlExpNodePtr ret; |
| 7052 | |
| 7053 | switch (exp->type) { |
| 7054 | case XML_EXP_EMPTY: |
| 7055 | return(forbiddenExp); |
| 7056 | case XML_EXP_FORBID: |
| 7057 | return(forbiddenExp); |
| 7058 | case XML_EXP_ATOM: |
| 7059 | if (exp->exp_str == str) { |
| 7060 | #ifdef DEBUG_DERIV |
| 7061 | printf("deriv atom: equal => Empty\n"); |
| 7062 | #endif |
| 7063 | ret = emptyExp; |
| 7064 | } else { |
| 7065 | #ifdef DEBUG_DERIV |
| 7066 | printf("deriv atom: mismatch => forbid\n"); |
| 7067 | #endif |
| 7068 | /* TODO wildcards here */ |
| 7069 | ret = forbiddenExp; |
| 7070 | } |
| 7071 | return(ret); |
| 7072 | case XML_EXP_OR: { |
| 7073 | xmlExpNodePtr tmp; |
| 7074 | |
| 7075 | #ifdef DEBUG_DERIV |
| 7076 | printf("deriv or: => or(derivs)\n"); |
| 7077 | #endif |
| 7078 | tmp = xmlExpStringDeriveInt(ctxt, exp->exp_left, str); |
| 7079 | if (tmp == NULL) { |
| 7080 | return(NULL); |
| 7081 | } |
| 7082 | ret = xmlExpStringDeriveInt(ctxt, exp->exp_right, str); |
| 7083 | if (ret == NULL) { |
| 7084 | xmlExpFree(ctxt, tmp); |
| 7085 | return(NULL); |
| 7086 | } |
| 7087 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_OR, tmp, ret, |
| 7088 | NULL, 0, 0); |
| 7089 | return(ret); |
| 7090 | } |
| 7091 | case XML_EXP_SEQ: |
| 7092 | #ifdef DEBUG_DERIV |
| 7093 | printf("deriv seq: starting with left\n"); |
| 7094 | #endif |
| 7095 | ret = xmlExpStringDeriveInt(ctxt, exp->exp_left, str); |
| 7096 | if (ret == NULL) { |
| 7097 | return(NULL); |
| 7098 | } else if (ret == forbiddenExp) { |
| 7099 | if (IS_NILLABLE(exp->exp_left)) { |
| 7100 | #ifdef DEBUG_DERIV |
| 7101 | printf("deriv seq: left failed but nillable\n"); |
| 7102 | #endif |
| 7103 | ret = xmlExpStringDeriveInt(ctxt, exp->exp_right, str); |
| 7104 | } |
| 7105 | } else { |
| 7106 | #ifdef DEBUG_DERIV |
| 7107 | printf("deriv seq: left match => sequence\n"); |
| 7108 | #endif |
| 7109 | exp->exp_right->ref++; |
| 7110 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, ret, exp->exp_right, |
| 7111 | NULL, 0, 0); |
| 7112 | } |
| 7113 | return(ret); |
| 7114 | case XML_EXP_COUNT: { |
| 7115 | int min, max; |
| 7116 | xmlExpNodePtr tmp; |
| 7117 | |
| 7118 | if (exp->exp_max == 0) |
| 7119 | return(forbiddenExp); |
| 7120 | ret = xmlExpStringDeriveInt(ctxt, exp->exp_left, str); |
| 7121 | if (ret == NULL) |
| 7122 | return(NULL); |
| 7123 | if (ret == forbiddenExp) { |
| 7124 | #ifdef DEBUG_DERIV |
| 7125 | printf("deriv count: pattern mismatch => forbid\n"); |
| 7126 | #endif |
| 7127 | return(ret); |
| 7128 | } |
| 7129 | if (exp->exp_max == 1) |
| 7130 | return(ret); |
| 7131 | if (exp->exp_max < 0) /* unbounded */ |
| 7132 | max = -1; |
| 7133 | else |
| 7134 | max = exp->exp_max - 1; |
| 7135 | if (exp->exp_min > 0) |
| 7136 | min = exp->exp_min - 1; |
| 7137 | else |
| 7138 | min = 0; |
| 7139 | exp->exp_left->ref++; |
| 7140 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, exp->exp_left, NULL, |
| 7141 | NULL, min, max); |
| 7142 | if (ret == emptyExp) { |
| 7143 | #ifdef DEBUG_DERIV |
| 7144 | printf("deriv count: match to empty => new count\n"); |
| 7145 | #endif |
| 7146 | return(tmp); |
| 7147 | } |
| 7148 | #ifdef DEBUG_DERIV |
| 7149 | printf("deriv count: match => sequence with new count\n"); |
| 7150 | #endif |
| 7151 | return(xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, ret, tmp, |
| 7152 | NULL, 0, 0)); |
| 7153 | } |
| 7154 | } |
| 7155 | return(NULL); |
| 7156 | } |
| 7157 | |
| 7158 | /** |
| 7159 | * xmlExpStringDerive: |
| 7160 | * @ctxt: the expression context |
| 7161 | * @exp: the expression |
| 7162 | * @str: the string |
| 7163 | * @len: the string len in bytes if available |
| 7164 | * |
| 7165 | * Do one step of Brzozowski derivation of the expression @exp with |
| 7166 | * respect to the input string |
| 7167 | * |
| 7168 | * Returns the resulting expression or NULL in case of internal error |
| 7169 | */ |
| 7170 | xmlExpNodePtr |
| 7171 | xmlExpStringDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
| 7172 | const xmlChar *str, int len) { |
| 7173 | const xmlChar *input; |
| 7174 | |
| 7175 | if ((exp == NULL) || (ctxt == NULL) || (str == NULL)) { |
| 7176 | return(NULL); |
| 7177 | } |
| 7178 | /* |
| 7179 | * check the string is in the dictionnary, if yes use an interned |
| 7180 | * copy, otherwise we know it's not an acceptable input |
| 7181 | */ |
| 7182 | input = xmlDictExists(ctxt->dict, str, len); |
| 7183 | if (input == NULL) { |
| 7184 | return(forbiddenExp); |
| 7185 | } |
| 7186 | return(xmlExpStringDeriveInt(ctxt, exp, input)); |
| 7187 | } |
| 7188 | |
| 7189 | static int |
| 7190 | xmlExpCheckCard(xmlExpNodePtr exp, xmlExpNodePtr sub) { |
| 7191 | int ret = 1; |
| 7192 | |
| 7193 | if (sub->c_max == -1) { |
| 7194 | if (exp->c_max != -1) |
| 7195 | ret = 0; |
| 7196 | } else if ((exp->c_max >= 0) && (exp->c_max < sub->c_max)) { |
| 7197 | ret = 0; |
| 7198 | } |
| 7199 | #if 0 |
| 7200 | if ((IS_NILLABLE(sub)) && (!IS_NILLABLE(exp))) |
| 7201 | ret = 0; |
| 7202 | #endif |
| 7203 | return(ret); |
| 7204 | } |
| 7205 | |
| 7206 | static xmlExpNodePtr xmlExpExpDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, |
| 7207 | xmlExpNodePtr sub); |
| 7208 | /** |
| 7209 | * xmlExpDivide: |
| 7210 | * @ctxt: the expressions context |
| 7211 | * @exp: the englobing expression |
| 7212 | * @sub: the subexpression |
| 7213 | * @mult: the multiple expression |
| 7214 | * @remain: the remain from the derivation of the multiple |
| 7215 | * |
| 7216 | * Check if exp is a multiple of sub, i.e. if there is a finite number n |
| 7217 | * so that sub{n} subsume exp |
| 7218 | * |
| 7219 | * Returns the multiple value if successful, 0 if it is not a multiple |
| 7220 | * and -1 in case of internel error. |
| 7221 | */ |
| 7222 | |
| 7223 | static int |
| 7224 | xmlExpDivide(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub, |
| 7225 | xmlExpNodePtr *mult, xmlExpNodePtr *remain) { |
| 7226 | int i; |
| 7227 | xmlExpNodePtr tmp, tmp2; |
| 7228 | |
| 7229 | if (mult != NULL) *mult = NULL; |
| 7230 | if (remain != NULL) *remain = NULL; |
| 7231 | if (exp->c_max == -1) return(0); |
| 7232 | if (IS_NILLABLE(exp) && (!IS_NILLABLE(sub))) return(0); |
| 7233 | |
| 7234 | for (i = 1;i <= exp->c_max;i++) { |
| 7235 | sub->ref++; |
| 7236 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, |
| 7237 | sub, NULL, NULL, i, i); |
| 7238 | if (tmp == NULL) { |
| 7239 | return(-1); |
| 7240 | } |
| 7241 | if (!xmlExpCheckCard(tmp, exp)) { |
| 7242 | xmlExpFree(ctxt, tmp); |
| 7243 | continue; |
| 7244 | } |
| 7245 | tmp2 = xmlExpExpDeriveInt(ctxt, tmp, exp); |
| 7246 | if (tmp2 == NULL) { |
| 7247 | xmlExpFree(ctxt, tmp); |
| 7248 | return(-1); |
| 7249 | } |
| 7250 | if ((tmp2 != forbiddenExp) && (IS_NILLABLE(tmp2))) { |
| 7251 | if (remain != NULL) |
| 7252 | *remain = tmp2; |
| 7253 | else |
| 7254 | xmlExpFree(ctxt, tmp2); |
| 7255 | if (mult != NULL) |
| 7256 | *mult = tmp; |
| 7257 | else |
| 7258 | xmlExpFree(ctxt, tmp); |
| 7259 | #ifdef DEBUG_DERIV |
| 7260 | printf("Divide succeeded %d\n", i); |
| 7261 | #endif |
| 7262 | return(i); |
| 7263 | } |
| 7264 | xmlExpFree(ctxt, tmp); |
| 7265 | xmlExpFree(ctxt, tmp2); |
| 7266 | } |
| 7267 | #ifdef DEBUG_DERIV |
| 7268 | printf("Divide failed\n"); |
| 7269 | #endif |
| 7270 | return(0); |
| 7271 | } |
| 7272 | |
| 7273 | /** |
| 7274 | * xmlExpExpDeriveInt: |
| 7275 | * @ctxt: the expressions context |
| 7276 | * @exp: the englobing expression |
| 7277 | * @sub: the subexpression |
| 7278 | * |
| 7279 | * Try to do a step of Brzozowski derivation but at a higher level |
| 7280 | * the input being a subexpression. |
| 7281 | * |
| 7282 | * Returns the resulting expression or NULL in case of internal error |
| 7283 | */ |
| 7284 | static xmlExpNodePtr |
| 7285 | xmlExpExpDeriveInt(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) { |
| 7286 | xmlExpNodePtr ret, tmp, tmp2, tmp3; |
| 7287 | const xmlChar **tab; |
| 7288 | int len, i; |
| 7289 | |
| 7290 | /* |
| 7291 | * In case of equality and if the expression can only consume a finite |
| 7292 | * amount, then the derivation is empty |
| 7293 | */ |
| 7294 | if ((exp == sub) && (exp->c_max >= 0)) { |
| 7295 | #ifdef DEBUG_DERIV |
| 7296 | printf("Equal(exp, sub) and finite -> Empty\n"); |
| 7297 | #endif |
| 7298 | return(emptyExp); |
| 7299 | } |
| 7300 | /* |
| 7301 | * decompose sub sequence first |
| 7302 | */ |
| 7303 | if (sub->type == XML_EXP_EMPTY) { |
| 7304 | #ifdef DEBUG_DERIV |
| 7305 | printf("Empty(sub) -> Empty\n"); |
| 7306 | #endif |
| 7307 | exp->ref++; |
| 7308 | return(exp); |
| 7309 | } |
| 7310 | if (sub->type == XML_EXP_SEQ) { |
| 7311 | #ifdef DEBUG_DERIV |
| 7312 | printf("Seq(sub) -> decompose\n"); |
| 7313 | #endif |
| 7314 | tmp = xmlExpExpDeriveInt(ctxt, exp, sub->exp_left); |
| 7315 | if (tmp == NULL) |
| 7316 | return(NULL); |
| 7317 | if (tmp == forbiddenExp) |
| 7318 | return(tmp); |
| 7319 | ret = xmlExpExpDeriveInt(ctxt, tmp, sub->exp_right); |
| 7320 | xmlExpFree(ctxt, tmp); |
| 7321 | return(ret); |
| 7322 | } |
| 7323 | if (sub->type == XML_EXP_OR) { |
| 7324 | #ifdef DEBUG_DERIV |
| 7325 | printf("Or(sub) -> decompose\n"); |
| 7326 | #endif |
| 7327 | tmp = xmlExpExpDeriveInt(ctxt, exp, sub->exp_left); |
| 7328 | if (tmp == forbiddenExp) |
| 7329 | return(tmp); |
| 7330 | if (tmp == NULL) |
| 7331 | return(NULL); |
| 7332 | ret = xmlExpExpDeriveInt(ctxt, exp, sub->exp_right); |
| 7333 | if ((ret == NULL) || (ret == forbiddenExp)) { |
| 7334 | xmlExpFree(ctxt, tmp); |
| 7335 | return(ret); |
| 7336 | } |
| 7337 | return(xmlExpHashGetEntry(ctxt, XML_EXP_OR, tmp, ret, NULL, 0, 0)); |
| 7338 | } |
| 7339 | if (!xmlExpCheckCard(exp, sub)) { |
| 7340 | #ifdef DEBUG_DERIV |
| 7341 | printf("CheckCard(exp, sub) failed -> Forbid\n"); |
| 7342 | #endif |
| 7343 | return(forbiddenExp); |
| 7344 | } |
| 7345 | switch (exp->type) { |
| 7346 | case XML_EXP_EMPTY: |
| 7347 | if (sub == emptyExp) |
| 7348 | return(emptyExp); |
| 7349 | #ifdef DEBUG_DERIV |
| 7350 | printf("Empty(exp) -> Forbid\n"); |
| 7351 | #endif |
| 7352 | return(forbiddenExp); |
| 7353 | case XML_EXP_FORBID: |
| 7354 | #ifdef DEBUG_DERIV |
| 7355 | printf("Forbid(exp) -> Forbid\n"); |
| 7356 | #endif |
| 7357 | return(forbiddenExp); |
| 7358 | case XML_EXP_ATOM: |
| 7359 | if (sub->type == XML_EXP_ATOM) { |
| 7360 | /* TODO: handle wildcards */ |
| 7361 | if (exp->exp_str == sub->exp_str) { |
| 7362 | #ifdef DEBUG_DERIV |
| 7363 | printf("Atom match -> Empty\n"); |
| 7364 | #endif |
| 7365 | return(emptyExp); |
| 7366 | } |
| 7367 | #ifdef DEBUG_DERIV |
| 7368 | printf("Atom mismatch -> Forbid\n"); |
| 7369 | #endif |
| 7370 | return(forbiddenExp); |
| 7371 | } |
| 7372 | if ((sub->type == XML_EXP_COUNT) && |
| 7373 | (sub->exp_max == 1) && |
| 7374 | (sub->exp_left->type == XML_EXP_ATOM)) { |
| 7375 | /* TODO: handle wildcards */ |
| 7376 | if (exp->exp_str == sub->exp_left->exp_str) { |
| 7377 | #ifdef DEBUG_DERIV |
| 7378 | printf("Atom match -> Empty\n"); |
| 7379 | #endif |
| 7380 | return(emptyExp); |
| 7381 | } |
| 7382 | #ifdef DEBUG_DERIV |
| 7383 | printf("Atom mismatch -> Forbid\n"); |
| 7384 | #endif |
| 7385 | return(forbiddenExp); |
| 7386 | } |
| 7387 | #ifdef DEBUG_DERIV |
| 7388 | printf("Compex exp vs Atom -> Forbid\n"); |
| 7389 | #endif |
| 7390 | return(forbiddenExp); |
| 7391 | case XML_EXP_SEQ: |
| 7392 | /* try to get the sequence consumed only if possible */ |
| 7393 | if (xmlExpCheckCard(exp->exp_left, sub)) { |
| 7394 | /* See if the sequence can be consumed directly */ |
| 7395 | #ifdef DEBUG_DERIV |
| 7396 | printf("Seq trying left only\n"); |
| 7397 | #endif |
| 7398 | ret = xmlExpExpDeriveInt(ctxt, exp->exp_left, sub); |
| 7399 | if ((ret != forbiddenExp) && (ret != NULL)) { |
| 7400 | #ifdef DEBUG_DERIV |
| 7401 | printf("Seq trying left only worked\n"); |
| 7402 | #endif |
| 7403 | /* |
| 7404 | * TODO: assumption here that we are determinist |
| 7405 | * i.e. we won't get to a nillable exp left |
| 7406 | * subset which could be matched by the right |
| 7407 | * part too. |
| 7408 | * e.g.: (a | b)+,(a | c) and 'a+,a' |
| 7409 | */ |
| 7410 | exp->exp_right->ref++; |
| 7411 | return(xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, ret, |
| 7412 | exp->exp_right, NULL, 0, 0)); |
| 7413 | } |
| 7414 | #ifdef DEBUG_DERIV |
| 7415 | } else { |
| 7416 | printf("Seq: left too short\n"); |
| 7417 | #endif |
| 7418 | } |
| 7419 | /* Try instead to decompose */ |
| 7420 | if (sub->type == XML_EXP_COUNT) { |
| 7421 | int min, max; |
| 7422 | |
| 7423 | #ifdef DEBUG_DERIV |
| 7424 | printf("Seq: sub is a count\n"); |
| 7425 | #endif |
| 7426 | ret = xmlExpExpDeriveInt(ctxt, exp->exp_left, sub->exp_left); |
| 7427 | if (ret == NULL) |
| 7428 | return(NULL); |
| 7429 | if (ret != forbiddenExp) { |
| 7430 | #ifdef DEBUG_DERIV |
| 7431 | printf("Seq , Count match on left\n"); |
| 7432 | #endif |
| 7433 | if (sub->exp_max < 0) |
| 7434 | max = -1; |
| 7435 | else |
| 7436 | max = sub->exp_max -1; |
| 7437 | if (sub->exp_min > 0) |
| 7438 | min = sub->exp_min -1; |
| 7439 | else |
| 7440 | min = 0; |
| 7441 | exp->exp_right->ref++; |
| 7442 | tmp = xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, ret, |
| 7443 | exp->exp_right, NULL, 0, 0); |
| 7444 | if (tmp == NULL) |
| 7445 | return(NULL); |
| 7446 | |
| 7447 | sub->exp_left->ref++; |
| 7448 | tmp2 = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, |
| 7449 | sub->exp_left, NULL, NULL, min, max); |
| 7450 | if (tmp2 == NULL) { |
| 7451 | xmlExpFree(ctxt, tmp); |
| 7452 | return(NULL); |
| 7453 | } |
| 7454 | ret = xmlExpExpDeriveInt(ctxt, tmp, tmp2); |
| 7455 | xmlExpFree(ctxt, tmp); |
| 7456 | xmlExpFree(ctxt, tmp2); |
| 7457 | return(ret); |
| 7458 | } |
| 7459 | } |
| 7460 | /* we made no progress on structured operations */ |
| 7461 | break; |
| 7462 | case XML_EXP_OR: |
| 7463 | #ifdef DEBUG_DERIV |
| 7464 | printf("Or , trying both side\n"); |
| 7465 | #endif |
| 7466 | ret = xmlExpExpDeriveInt(ctxt, exp->exp_left, sub); |
| 7467 | if (ret == NULL) |
| 7468 | return(NULL); |
| 7469 | tmp = xmlExpExpDeriveInt(ctxt, exp->exp_right, sub); |
| 7470 | if (tmp == NULL) { |
| 7471 | xmlExpFree(ctxt, ret); |
| 7472 | return(NULL); |
| 7473 | } |
| 7474 | return(xmlExpHashGetEntry(ctxt, XML_EXP_OR, ret, tmp, NULL, 0, 0)); |
| 7475 | case XML_EXP_COUNT: { |
| 7476 | int min, max; |
| 7477 | |
| 7478 | if (sub->type == XML_EXP_COUNT) { |
| 7479 | /* |
| 7480 | * Try to see if the loop is completely subsumed |
| 7481 | */ |
| 7482 | tmp = xmlExpExpDeriveInt(ctxt, exp->exp_left, sub->exp_left); |
| 7483 | if (tmp == NULL) |
| 7484 | return(NULL); |
| 7485 | if (tmp == forbiddenExp) { |
| 7486 | int mult; |
| 7487 | |
| 7488 | #ifdef DEBUG_DERIV |
| 7489 | printf("Count, Count inner don't subsume\n"); |
| 7490 | #endif |
| 7491 | mult = xmlExpDivide(ctxt, sub->exp_left, exp->exp_left, |
| 7492 | NULL, &tmp); |
| 7493 | if (mult <= 0) { |
| 7494 | #ifdef DEBUG_DERIV |
| 7495 | printf("Count, Count not multiple => forbidden\n"); |
| 7496 | #endif |
| 7497 | return(forbiddenExp); |
| 7498 | } |
| 7499 | if (sub->exp_max == -1) { |
| 7500 | max = -1; |
| 7501 | if (exp->exp_max == -1) { |
| 7502 | if (exp->exp_min <= sub->exp_min * mult) |
| 7503 | min = 0; |
| 7504 | else |
| 7505 | min = exp->exp_min - sub->exp_min * mult; |
| 7506 | } else { |
| 7507 | #ifdef DEBUG_DERIV |
| 7508 | printf("Count, Count finite can't subsume infinite\n"); |
| 7509 | #endif |
| 7510 | xmlExpFree(ctxt, tmp); |
| 7511 | return(forbiddenExp); |
| 7512 | } |
| 7513 | } else { |
| 7514 | if (exp->exp_max == -1) { |
| 7515 | #ifdef DEBUG_DERIV |
| 7516 | printf("Infinite loop consume mult finite loop\n"); |
| 7517 | #endif |
| 7518 | if (exp->exp_min > sub->exp_min * mult) { |
| 7519 | max = -1; |
| 7520 | min = exp->exp_min - sub->exp_min * mult; |
| 7521 | } else { |
| 7522 | max = -1; |
| 7523 | min = 0; |
| 7524 | } |
| 7525 | } else { |
| 7526 | if (exp->exp_max < sub->exp_max * mult) { |
| 7527 | #ifdef DEBUG_DERIV |
| 7528 | printf("loops max mult mismatch => forbidden\n"); |
| 7529 | #endif |
| 7530 | xmlExpFree(ctxt, tmp); |
| 7531 | return(forbiddenExp); |
| 7532 | } |
| 7533 | if (sub->exp_max * mult > exp->exp_min) |
| 7534 | min = 0; |
| 7535 | else |
| 7536 | min = exp->exp_min - sub->exp_max * mult; |
| 7537 | max = exp->exp_max - sub->exp_max * mult; |
| 7538 | } |
| 7539 | } |
| 7540 | } else if (!IS_NILLABLE(tmp)) { |
| 7541 | /* |
| 7542 | * TODO: loop here to try to grow if working on finite |
| 7543 | * blocks. |
| 7544 | */ |
| 7545 | #ifdef DEBUG_DERIV |
| 7546 | printf("Count, Count remain not nillable => forbidden\n"); |
| 7547 | #endif |
| 7548 | xmlExpFree(ctxt, tmp); |
| 7549 | return(forbiddenExp); |
| 7550 | } else if (sub->exp_max == -1) { |
| 7551 | if (exp->exp_max == -1) { |
| 7552 | if (exp->exp_min <= sub->exp_min) { |
| 7553 | #ifdef DEBUG_DERIV |
| 7554 | printf("Infinite loops Okay => COUNT(0,Inf)\n"); |
| 7555 | #endif |
| 7556 | max = -1; |
| 7557 | min = 0; |
| 7558 | } else { |
| 7559 | #ifdef DEBUG_DERIV |
| 7560 | printf("Infinite loops min => Count(X,Inf)\n"); |
| 7561 | #endif |
| 7562 | max = -1; |
| 7563 | min = exp->exp_min - sub->exp_min; |
| 7564 | } |
| 7565 | } else if (exp->exp_min > sub->exp_min) { |
| 7566 | #ifdef DEBUG_DERIV |
| 7567 | printf("loops min mismatch 1 => forbidden ???\n"); |
| 7568 | #endif |
| 7569 | xmlExpFree(ctxt, tmp); |
| 7570 | return(forbiddenExp); |
| 7571 | } else { |
| 7572 | max = -1; |
| 7573 | min = 0; |
| 7574 | } |
| 7575 | } else { |
| 7576 | if (exp->exp_max == -1) { |
| 7577 | #ifdef DEBUG_DERIV |
| 7578 | printf("Infinite loop consume finite loop\n"); |
| 7579 | #endif |
| 7580 | if (exp->exp_min > sub->exp_min) { |
| 7581 | max = -1; |
| 7582 | min = exp->exp_min - sub->exp_min; |
| 7583 | } else { |
| 7584 | max = -1; |
| 7585 | min = 0; |
| 7586 | } |
| 7587 | } else { |
| 7588 | if (exp->exp_max < sub->exp_max) { |
| 7589 | #ifdef DEBUG_DERIV |
| 7590 | printf("loops max mismatch => forbidden\n"); |
| 7591 | #endif |
| 7592 | xmlExpFree(ctxt, tmp); |
| 7593 | return(forbiddenExp); |
| 7594 | } |
| 7595 | if (sub->exp_max > exp->exp_min) |
| 7596 | min = 0; |
| 7597 | else |
| 7598 | min = exp->exp_min - sub->exp_max; |
| 7599 | max = exp->exp_max - sub->exp_max; |
| 7600 | } |
| 7601 | } |
| 7602 | #ifdef DEBUG_DERIV |
| 7603 | printf("loops match => SEQ(COUNT())\n"); |
| 7604 | #endif |
| 7605 | exp->exp_left->ref++; |
| 7606 | tmp2 = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, exp->exp_left, |
| 7607 | NULL, NULL, min, max); |
| 7608 | if (tmp2 == NULL) { |
| 7609 | return(NULL); |
| 7610 | } |
| 7611 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, tmp, tmp2, |
| 7612 | NULL, 0, 0); |
| 7613 | return(ret); |
| 7614 | } |
| 7615 | tmp = xmlExpExpDeriveInt(ctxt, exp->exp_left, sub); |
| 7616 | if (tmp == NULL) |
| 7617 | return(NULL); |
| 7618 | if (tmp == forbiddenExp) { |
| 7619 | #ifdef DEBUG_DERIV |
| 7620 | printf("loop mismatch => forbidden\n"); |
| 7621 | #endif |
| 7622 | return(forbiddenExp); |
| 7623 | } |
| 7624 | if (exp->exp_min > 0) |
| 7625 | min = exp->exp_min - 1; |
| 7626 | else |
| 7627 | min = 0; |
| 7628 | if (exp->exp_max < 0) |
| 7629 | max = -1; |
| 7630 | else |
| 7631 | max = exp->exp_max - 1; |
| 7632 | |
| 7633 | #ifdef DEBUG_DERIV |
| 7634 | printf("loop match => SEQ(COUNT())\n"); |
| 7635 | #endif |
| 7636 | exp->exp_left->ref++; |
| 7637 | tmp2 = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, exp->exp_left, |
| 7638 | NULL, NULL, min, max); |
| 7639 | if (tmp2 == NULL) |
| 7640 | return(NULL); |
| 7641 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, tmp, tmp2, |
| 7642 | NULL, 0, 0); |
| 7643 | return(ret); |
| 7644 | } |
| 7645 | } |
| 7646 | |
Daniel Veillard | ccb4d41 | 2005-08-23 13:41:17 +0000 | [diff] [blame] | 7647 | #ifdef DEBUG_DERIV |
| 7648 | printf("Fallback to derivative\n"); |
| 7649 | #endif |
| 7650 | if (IS_NILLABLE(sub)) { |
| 7651 | if (!(IS_NILLABLE(exp))) |
| 7652 | return(forbiddenExp); |
| 7653 | else |
| 7654 | ret = emptyExp; |
| 7655 | } else |
| 7656 | ret = NULL; |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7657 | /* |
| 7658 | * here the structured derivation made no progress so |
| 7659 | * we use the default token based derivation to force one more step |
| 7660 | */ |
| 7661 | if (ctxt->tabSize == 0) |
| 7662 | ctxt->tabSize = 40; |
| 7663 | |
| 7664 | tab = (const xmlChar **) xmlMalloc(ctxt->tabSize * |
| 7665 | sizeof(const xmlChar *)); |
| 7666 | if (tab == NULL) { |
| 7667 | return(NULL); |
| 7668 | } |
| 7669 | |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7670 | /* |
| 7671 | * collect all the strings accepted by the subexpression on input |
| 7672 | */ |
| 7673 | len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0); |
| 7674 | while (len < 0) { |
| 7675 | const xmlChar **temp; |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7676 | temp = (const xmlChar **) xmlRealloc((xmlChar **) tab, ctxt->tabSize * 2 * |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7677 | sizeof(const xmlChar *)); |
| 7678 | if (temp == NULL) { |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7679 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7680 | return(NULL); |
| 7681 | } |
| 7682 | tab = temp; |
| 7683 | ctxt->tabSize *= 2; |
| 7684 | len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0); |
| 7685 | } |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7686 | for (i = 0;i < len;i++) { |
| 7687 | tmp = xmlExpStringDeriveInt(ctxt, exp, tab[i]); |
| 7688 | if ((tmp == NULL) || (tmp == forbiddenExp)) { |
| 7689 | xmlExpFree(ctxt, ret); |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7690 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7691 | return(tmp); |
| 7692 | } |
| 7693 | tmp2 = xmlExpStringDeriveInt(ctxt, sub, tab[i]); |
| 7694 | if ((tmp2 == NULL) || (tmp2 == forbiddenExp)) { |
| 7695 | xmlExpFree(ctxt, tmp); |
| 7696 | xmlExpFree(ctxt, ret); |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7697 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7698 | return(tmp); |
| 7699 | } |
| 7700 | tmp3 = xmlExpExpDeriveInt(ctxt, tmp, tmp2); |
| 7701 | xmlExpFree(ctxt, tmp); |
| 7702 | xmlExpFree(ctxt, tmp2); |
| 7703 | |
| 7704 | if ((tmp3 == NULL) || (tmp3 == forbiddenExp)) { |
| 7705 | xmlExpFree(ctxt, ret); |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7706 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7707 | return(tmp3); |
| 7708 | } |
| 7709 | |
| 7710 | if (ret == NULL) |
| 7711 | ret = tmp3; |
| 7712 | else { |
| 7713 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_OR, ret, tmp3, NULL, 0, 0); |
| 7714 | if (ret == NULL) { |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7715 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7716 | return(NULL); |
| 7717 | } |
| 7718 | } |
| 7719 | } |
Rob Richards | 54a8f67 | 2005-10-07 02:33:00 +0000 | [diff] [blame] | 7720 | xmlFree((xmlChar **) tab); |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7721 | return(ret); |
| 7722 | } |
| 7723 | |
| 7724 | /** |
Daniel Veillard | 0090bd5 | 2005-08-22 14:43:43 +0000 | [diff] [blame] | 7725 | * xmlExpExpDerive: |
| 7726 | * @ctxt: the expressions context |
| 7727 | * @exp: the englobing expression |
| 7728 | * @sub: the subexpression |
| 7729 | * |
| 7730 | * Evaluates the expression resulting from @exp consuming a sub expression @sub |
| 7731 | * Based on algebraic derivation and sometimes direct Brzozowski derivation |
| 7732 | * it usually tatkes less than linear time and can handle expressions generating |
| 7733 | * infinite languages. |
| 7734 | * |
| 7735 | * Returns the resulting expression or NULL in case of internal error, the |
| 7736 | * result must be freed |
| 7737 | */ |
| 7738 | xmlExpNodePtr |
| 7739 | xmlExpExpDerive(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) { |
| 7740 | if ((exp == NULL) || (ctxt == NULL) || (sub == NULL)) |
| 7741 | return(NULL); |
| 7742 | |
| 7743 | /* |
| 7744 | * O(1) speedups |
| 7745 | */ |
| 7746 | if (IS_NILLABLE(sub) && (!IS_NILLABLE(exp))) { |
| 7747 | #ifdef DEBUG_DERIV |
| 7748 | printf("Sub nillable and not exp : can't subsume\n"); |
| 7749 | #endif |
| 7750 | return(forbiddenExp); |
| 7751 | } |
| 7752 | if (xmlExpCheckCard(exp, sub) == 0) { |
| 7753 | #ifdef DEBUG_DERIV |
| 7754 | printf("sub generate longuer sequances than exp : can't subsume\n"); |
| 7755 | #endif |
| 7756 | return(forbiddenExp); |
| 7757 | } |
| 7758 | return(xmlExpExpDeriveInt(ctxt, exp, sub)); |
| 7759 | } |
| 7760 | |
| 7761 | /** |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 7762 | * xmlExpSubsume: |
| 7763 | * @ctxt: the expressions context |
| 7764 | * @exp: the englobing expression |
| 7765 | * @sub: the subexpression |
| 7766 | * |
| 7767 | * Check whether @exp accepts all the languages accexpted by @sub |
| 7768 | * the input being a subexpression. |
| 7769 | * |
| 7770 | * Returns 1 if true 0 if false and -1 in case of failure. |
| 7771 | */ |
| 7772 | int |
| 7773 | xmlExpSubsume(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp, xmlExpNodePtr sub) { |
| 7774 | xmlExpNodePtr tmp; |
| 7775 | |
| 7776 | if ((exp == NULL) || (ctxt == NULL) || (sub == NULL)) |
| 7777 | return(-1); |
| 7778 | |
| 7779 | /* |
| 7780 | * TODO: speedup by checking the language of sub is a subset of the |
| 7781 | * language of exp |
| 7782 | */ |
| 7783 | /* |
| 7784 | * O(1) speedups |
| 7785 | */ |
| 7786 | if (IS_NILLABLE(sub) && (!IS_NILLABLE(exp))) { |
| 7787 | #ifdef DEBUG_DERIV |
| 7788 | printf("Sub nillable and not exp : can't subsume\n"); |
| 7789 | #endif |
| 7790 | return(0); |
| 7791 | } |
| 7792 | if (xmlExpCheckCard(exp, sub) == 0) { |
| 7793 | #ifdef DEBUG_DERIV |
| 7794 | printf("sub generate longuer sequances than exp : can't subsume\n"); |
| 7795 | #endif |
| 7796 | return(0); |
| 7797 | } |
| 7798 | tmp = xmlExpExpDeriveInt(ctxt, exp, sub); |
| 7799 | #ifdef DEBUG_DERIV |
| 7800 | printf("Result derivation :\n"); |
| 7801 | PRINT_EXP(tmp); |
| 7802 | #endif |
| 7803 | if (tmp == NULL) |
| 7804 | return(-1); |
| 7805 | if (tmp == forbiddenExp) |
| 7806 | return(0); |
| 7807 | if (tmp == emptyExp) |
| 7808 | return(1); |
| 7809 | if ((tmp != NULL) && (IS_NILLABLE(tmp))) { |
| 7810 | xmlExpFree(ctxt, tmp); |
| 7811 | return(1); |
| 7812 | } |
| 7813 | xmlExpFree(ctxt, tmp); |
| 7814 | return(0); |
| 7815 | } |
Daniel Veillard | 465a000 | 2005-08-22 12:07:04 +0000 | [diff] [blame] | 7816 | |
| 7817 | /************************************************************************ |
| 7818 | * * |
| 7819 | * Parsing expression * |
| 7820 | * * |
| 7821 | ************************************************************************/ |
| 7822 | |
| 7823 | static xmlExpNodePtr xmlExpParseExpr(xmlExpCtxtPtr ctxt); |
| 7824 | |
| 7825 | #undef CUR |
| 7826 | #define CUR (*ctxt->cur) |
| 7827 | #undef NEXT |
| 7828 | #define NEXT ctxt->cur++; |
| 7829 | #undef IS_BLANK |
| 7830 | #define IS_BLANK(c) ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) |
| 7831 | #define SKIP_BLANKS while (IS_BLANK(*ctxt->cur)) ctxt->cur++; |
| 7832 | |
| 7833 | static int |
| 7834 | xmlExpParseNumber(xmlExpCtxtPtr ctxt) { |
| 7835 | int ret = 0; |
| 7836 | |
| 7837 | SKIP_BLANKS |
| 7838 | if (CUR == '*') { |
| 7839 | NEXT |
| 7840 | return(-1); |
| 7841 | } |
| 7842 | if ((CUR < '0') || (CUR > '9')) |
| 7843 | return(-1); |
| 7844 | while ((CUR >= '0') && (CUR <= '9')) { |
| 7845 | ret = ret * 10 + (CUR - '0'); |
| 7846 | NEXT |
| 7847 | } |
| 7848 | return(ret); |
| 7849 | } |
| 7850 | |
| 7851 | static xmlExpNodePtr |
| 7852 | xmlExpParseOr(xmlExpCtxtPtr ctxt) { |
| 7853 | const char *base; |
| 7854 | xmlExpNodePtr ret; |
| 7855 | const xmlChar *val; |
| 7856 | |
| 7857 | SKIP_BLANKS |
| 7858 | base = ctxt->cur; |
| 7859 | if (*ctxt->cur == '(') { |
| 7860 | NEXT |
| 7861 | ret = xmlExpParseExpr(ctxt); |
| 7862 | SKIP_BLANKS |
| 7863 | if (*ctxt->cur != ')') { |
| 7864 | fprintf(stderr, "unbalanced '(' : %s\n", base); |
| 7865 | xmlExpFree(ctxt, ret); |
| 7866 | return(NULL); |
| 7867 | } |
| 7868 | NEXT; |
| 7869 | SKIP_BLANKS |
| 7870 | goto parse_quantifier; |
| 7871 | } |
| 7872 | while ((CUR != 0) && (!(IS_BLANK(CUR))) && (CUR != '(') && |
| 7873 | (CUR != ')') && (CUR != '|') && (CUR != ',') && (CUR != '{') && |
| 7874 | (CUR != '*') && (CUR != '+') && (CUR != '?') && (CUR != '}')) |
| 7875 | NEXT; |
| 7876 | val = xmlDictLookup(ctxt->dict, BAD_CAST base, ctxt->cur - base); |
| 7877 | if (val == NULL) |
| 7878 | return(NULL); |
| 7879 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_ATOM, NULL, NULL, val, 0, 0); |
| 7880 | if (ret == NULL) |
| 7881 | return(NULL); |
| 7882 | SKIP_BLANKS |
| 7883 | parse_quantifier: |
| 7884 | if (CUR == '{') { |
| 7885 | int min, max; |
| 7886 | |
| 7887 | NEXT |
| 7888 | min = xmlExpParseNumber(ctxt); |
| 7889 | if (min < 0) { |
| 7890 | xmlExpFree(ctxt, ret); |
| 7891 | return(NULL); |
| 7892 | } |
| 7893 | SKIP_BLANKS |
| 7894 | if (CUR == ',') { |
| 7895 | NEXT |
| 7896 | max = xmlExpParseNumber(ctxt); |
| 7897 | SKIP_BLANKS |
| 7898 | } else |
| 7899 | max = min; |
| 7900 | if (CUR != '}') { |
| 7901 | xmlExpFree(ctxt, ret); |
| 7902 | return(NULL); |
| 7903 | } |
| 7904 | NEXT |
| 7905 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, ret, NULL, NULL, |
| 7906 | min, max); |
| 7907 | SKIP_BLANKS |
| 7908 | } else if (CUR == '?') { |
| 7909 | NEXT |
| 7910 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, ret, NULL, NULL, |
| 7911 | 0, 1); |
| 7912 | SKIP_BLANKS |
| 7913 | } else if (CUR == '+') { |
| 7914 | NEXT |
| 7915 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, ret, NULL, NULL, |
| 7916 | 1, -1); |
| 7917 | SKIP_BLANKS |
| 7918 | } else if (CUR == '*') { |
| 7919 | NEXT |
| 7920 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_COUNT, ret, NULL, NULL, |
| 7921 | 0, -1); |
| 7922 | SKIP_BLANKS |
| 7923 | } |
| 7924 | return(ret); |
| 7925 | } |
| 7926 | |
| 7927 | |
| 7928 | static xmlExpNodePtr |
| 7929 | xmlExpParseSeq(xmlExpCtxtPtr ctxt) { |
| 7930 | xmlExpNodePtr ret, right; |
| 7931 | |
| 7932 | ret = xmlExpParseOr(ctxt); |
| 7933 | SKIP_BLANKS |
| 7934 | while (CUR == '|') { |
| 7935 | NEXT |
| 7936 | right = xmlExpParseOr(ctxt); |
| 7937 | if (right == NULL) { |
| 7938 | xmlExpFree(ctxt, ret); |
| 7939 | return(NULL); |
| 7940 | } |
| 7941 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_OR, ret, right, NULL, 0, 0); |
| 7942 | if (ret == NULL) |
| 7943 | return(NULL); |
| 7944 | } |
| 7945 | return(ret); |
| 7946 | } |
| 7947 | |
| 7948 | static xmlExpNodePtr |
| 7949 | xmlExpParseExpr(xmlExpCtxtPtr ctxt) { |
| 7950 | xmlExpNodePtr ret, right; |
| 7951 | |
| 7952 | ret = xmlExpParseSeq(ctxt); |
| 7953 | SKIP_BLANKS |
| 7954 | while (CUR == ',') { |
| 7955 | NEXT |
| 7956 | right = xmlExpParseSeq(ctxt); |
| 7957 | if (right == NULL) { |
| 7958 | xmlExpFree(ctxt, ret); |
| 7959 | return(NULL); |
| 7960 | } |
| 7961 | ret = xmlExpHashGetEntry(ctxt, XML_EXP_SEQ, ret, right, NULL, 0, 0); |
| 7962 | if (ret == NULL) |
| 7963 | return(NULL); |
| 7964 | } |
| 7965 | return(ret); |
| 7966 | } |
| 7967 | |
| 7968 | /** |
| 7969 | * xmlExpParse: |
| 7970 | * @ctxt: the expressions context |
| 7971 | * @expr: the 0 terminated string |
| 7972 | * |
| 7973 | * Minimal parser for regexps, it understand the following constructs |
| 7974 | * - string terminals |
| 7975 | * - choice operator | |
| 7976 | * - sequence operator , |
| 7977 | * - subexpressions (...) |
| 7978 | * - usual cardinality operators + * and ? |
| 7979 | * - finite sequences { min, max } |
| 7980 | * - infinite sequences { min, * } |
| 7981 | * There is minimal checkings made especially no checking on strings values |
| 7982 | * |
| 7983 | * Returns a new expression or NULL in case of failure |
| 7984 | */ |
| 7985 | xmlExpNodePtr |
| 7986 | xmlExpParse(xmlExpCtxtPtr ctxt, const char *expr) { |
| 7987 | xmlExpNodePtr ret; |
| 7988 | |
| 7989 | ctxt->expr = expr; |
| 7990 | ctxt->cur = expr; |
| 7991 | |
| 7992 | ret = xmlExpParseExpr(ctxt); |
| 7993 | SKIP_BLANKS |
| 7994 | if (*ctxt->cur != 0) { |
| 7995 | xmlExpFree(ctxt, ret); |
| 7996 | return(NULL); |
| 7997 | } |
| 7998 | return(ret); |
| 7999 | } |
| 8000 | |
| 8001 | static void |
| 8002 | xmlExpDumpInt(xmlBufferPtr buf, xmlExpNodePtr expr, int glob) { |
| 8003 | xmlExpNodePtr c; |
| 8004 | |
| 8005 | if (expr == NULL) return; |
| 8006 | if (glob) xmlBufferWriteChar(buf, "("); |
| 8007 | switch (expr->type) { |
| 8008 | case XML_EXP_EMPTY: |
| 8009 | xmlBufferWriteChar(buf, "empty"); |
| 8010 | break; |
| 8011 | case XML_EXP_FORBID: |
| 8012 | xmlBufferWriteChar(buf, "forbidden"); |
| 8013 | break; |
| 8014 | case XML_EXP_ATOM: |
| 8015 | xmlBufferWriteCHAR(buf, expr->exp_str); |
| 8016 | break; |
| 8017 | case XML_EXP_SEQ: |
| 8018 | c = expr->exp_left; |
| 8019 | if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) |
| 8020 | xmlExpDumpInt(buf, c, 1); |
| 8021 | else |
| 8022 | xmlExpDumpInt(buf, c, 0); |
| 8023 | xmlBufferWriteChar(buf, " , "); |
| 8024 | c = expr->exp_right; |
| 8025 | if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) |
| 8026 | xmlExpDumpInt(buf, c, 1); |
| 8027 | else |
| 8028 | xmlExpDumpInt(buf, c, 0); |
| 8029 | break; |
| 8030 | case XML_EXP_OR: |
| 8031 | c = expr->exp_left; |
| 8032 | if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) |
| 8033 | xmlExpDumpInt(buf, c, 1); |
| 8034 | else |
| 8035 | xmlExpDumpInt(buf, c, 0); |
| 8036 | xmlBufferWriteChar(buf, " | "); |
| 8037 | c = expr->exp_right; |
| 8038 | if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) |
| 8039 | xmlExpDumpInt(buf, c, 1); |
| 8040 | else |
| 8041 | xmlExpDumpInt(buf, c, 0); |
| 8042 | break; |
| 8043 | case XML_EXP_COUNT: { |
| 8044 | char rep[40]; |
| 8045 | |
| 8046 | c = expr->exp_left; |
| 8047 | if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) |
| 8048 | xmlExpDumpInt(buf, c, 1); |
| 8049 | else |
| 8050 | xmlExpDumpInt(buf, c, 0); |
| 8051 | if ((expr->exp_min == 0) && (expr->exp_max == 1)) { |
| 8052 | rep[0] = '?'; |
| 8053 | rep[1] = 0; |
| 8054 | } else if ((expr->exp_min == 0) && (expr->exp_max == -1)) { |
| 8055 | rep[0] = '*'; |
| 8056 | rep[1] = 0; |
| 8057 | } else if ((expr->exp_min == 1) && (expr->exp_max == -1)) { |
| 8058 | rep[0] = '+'; |
| 8059 | rep[1] = 0; |
| 8060 | } else if (expr->exp_max == expr->exp_min) { |
| 8061 | snprintf(rep, 39, "{%d}", expr->exp_min); |
| 8062 | } else if (expr->exp_max < 0) { |
| 8063 | snprintf(rep, 39, "{%d,inf}", expr->exp_min); |
| 8064 | } else { |
| 8065 | snprintf(rep, 39, "{%d,%d}", expr->exp_min, expr->exp_max); |
| 8066 | } |
| 8067 | rep[39] = 0; |
| 8068 | xmlBufferWriteChar(buf, rep); |
| 8069 | break; |
| 8070 | } |
| 8071 | default: |
| 8072 | fprintf(stderr, "Error in tree\n"); |
| 8073 | } |
| 8074 | if (glob) |
| 8075 | xmlBufferWriteChar(buf, ")"); |
| 8076 | } |
| 8077 | /** |
| 8078 | * xmlExpDump: |
| 8079 | * @buf: a buffer to receive the output |
| 8080 | * @expr: the compiled expression |
| 8081 | * |
| 8082 | * Serialize the expression as compiled to the buffer |
| 8083 | */ |
| 8084 | void |
Daniel Veillard | 5eee767 | 2005-08-22 21:22:27 +0000 | [diff] [blame] | 8085 | xmlExpDump(xmlBufferPtr buf, xmlExpNodePtr expr) { |
| 8086 | if ((buf == NULL) || (expr == NULL)) |
Daniel Veillard | 465a000 | 2005-08-22 12:07:04 +0000 | [diff] [blame] | 8087 | return; |
Daniel Veillard | 5eee767 | 2005-08-22 21:22:27 +0000 | [diff] [blame] | 8088 | xmlExpDumpInt(buf, expr, 0); |
Daniel Veillard | 465a000 | 2005-08-22 12:07:04 +0000 | [diff] [blame] | 8089 | } |
| 8090 | |
| 8091 | /** |
| 8092 | * xmlExpMaxToken: |
| 8093 | * @expr: a compiled expression |
| 8094 | * |
| 8095 | * Indicate the maximum number of input a expression can accept |
| 8096 | * |
| 8097 | * Returns the maximum length or -1 in case of error |
| 8098 | */ |
| 8099 | int |
| 8100 | xmlExpMaxToken(xmlExpNodePtr expr) { |
| 8101 | if (expr == NULL) |
| 8102 | return(-1); |
| 8103 | return(expr->c_max); |
| 8104 | } |
| 8105 | |
| 8106 | /** |
| 8107 | * xmlExpCtxtNbNodes: |
| 8108 | * @ctxt: an expression context |
| 8109 | * |
| 8110 | * Debugging facility provides the number of allocated nodes at a that point |
| 8111 | * |
| 8112 | * Returns the number of nodes in use or -1 in case of error |
| 8113 | */ |
| 8114 | int |
| 8115 | xmlExpCtxtNbNodes(xmlExpCtxtPtr ctxt) { |
| 8116 | if (ctxt == NULL) |
| 8117 | return(-1); |
| 8118 | return(ctxt->nb_nodes); |
| 8119 | } |
| 8120 | |
| 8121 | /** |
| 8122 | * xmlExpCtxtNbCons: |
| 8123 | * @ctxt: an expression context |
| 8124 | * |
| 8125 | * Debugging facility provides the number of allocated nodes over lifetime |
| 8126 | * |
| 8127 | * Returns the number of nodes ever allocated or -1 in case of error |
| 8128 | */ |
| 8129 | int |
| 8130 | xmlExpCtxtNbCons(xmlExpCtxtPtr ctxt) { |
| 8131 | if (ctxt == NULL) |
| 8132 | return(-1); |
| 8133 | return(ctxt->nb_cons); |
| 8134 | } |
| 8135 | |
Daniel Veillard | 81a8ec6 | 2005-08-22 00:20:58 +0000 | [diff] [blame] | 8136 | #endif /* LIBXML_EXPR_ENABLED */ |
Daniel Veillard | 5d4644e | 2005-04-01 13:11:58 +0000 | [diff] [blame] | 8137 | #define bottom_xmlregexp |
| 8138 | #include "elfgcchack.h" |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 8139 | #endif /* LIBXML_REGEXP_ENABLED */ |