blob: d389b46dd136cac21dd0da6130d9bec9e405d897 [file] [log] [blame]
Guido van Rossumb700df92000-03-31 14:59:30 +00001/*
2 * Secret Labs' Regular Expression Engine
Guido van Rossumb700df92000-03-31 14:59:30 +00003 *
Fredrik Lundh80946112000-06-29 18:03:25 +00004 * regular expression matching engine
Guido van Rossumb700df92000-03-31 14:59:30 +00005 *
Fredrik Lundhb0f05bd2001-07-02 16:42:49 +00006 * Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
Guido van Rossumb700df92000-03-31 14:59:30 +00007 *
8 * See the _sre.c file for information on usage and redistribution.
9 */
10
11#ifndef SRE_INCLUDED
12#define SRE_INCLUDED
13
14#include "sre_constants.h"
15
Fredrik Lundh8f455852001-06-27 18:59:43 +000016/* size of a code word (must be unsigned short or larger, and
Antoine Pitrou39bdad82012-11-20 22:30:42 +010017 large enough to hold a UCS4 character) */
Martin v. Löwis7d9c6c72004-05-07 07:18:13 +000018#define SRE_CODE Py_UCS4
Fredrik Lundh102f3ad2000-06-29 08:55:54 +000019
Guido van Rossumb700df92000-03-31 14:59:30 +000020typedef struct {
Fredrik Lundh6f013982000-07-03 18:44:21 +000021 PyObject_VAR_HEAD
Thomas Wouters0e3f5912006-08-11 14:57:12 +000022 Py_ssize_t groups; /* must be first! */
Guido van Rossumb700df92000-03-31 14:59:30 +000023 PyObject* groupindex;
Fredrik Lundhc2301732000-07-02 22:25:39 +000024 PyObject* indexgroup;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000025 /* compatibility */
26 PyObject* pattern; /* pattern source (or None) */
27 int flags; /* flags used when compiling pattern source */
Raymond Hettinger027bb632004-05-31 03:09:25 +000028 PyObject *weakreflist; /* List of weak references */
Antoine Pitroufd036452008-08-19 17:56:33 +000029 int charsize; /* pattern charsize (or -1) */
Benjamin Petersone48944b2012-03-07 14:50:25 -060030 Py_buffer view;
Fredrik Lundh6f013982000-07-03 18:44:21 +000031 /* pattern code */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000032 Py_ssize_t codesize;
Fredrik Lundh6f013982000-07-03 18:44:21 +000033 SRE_CODE code[1];
Guido van Rossumb700df92000-03-31 14:59:30 +000034} PatternObject;
35
Fredrik Lundh6f013982000-07-03 18:44:21 +000036#define PatternObject_GetCode(o) (((PatternObject*)(o))->code)
Guido van Rossumb700df92000-03-31 14:59:30 +000037
38typedef struct {
Fredrik Lundh6f013982000-07-03 18:44:21 +000039 PyObject_VAR_HEAD
Fredrik Lundhb0f05bd2001-07-02 16:42:49 +000040 PyObject* string; /* link to the target string (must be first) */
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000041 PyObject* regs; /* cached list of matching spans */
Guido van Rossumb700df92000-03-31 14:59:30 +000042 PatternObject* pattern; /* link to the regex (pattern) object */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000043 Py_ssize_t pos, endpos; /* current target slice */
44 Py_ssize_t lastindex; /* last index marker seen by the engine (-1 if none) */
45 Py_ssize_t groups; /* number of groups (start/end marks) */
46 Py_ssize_t mark[1];
Guido van Rossumb700df92000-03-31 14:59:30 +000047} MatchObject;
48
Fredrik Lundh102f3ad2000-06-29 08:55:54 +000049typedef unsigned int (*SRE_TOLOWER_HOOK)(unsigned int ch);
50
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000051/* FIXME: <fl> shouldn't be a constant, really... */
52#define SRE_MARK_SIZE 200
53
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000054typedef struct SRE_REPEAT_T {
Thomas Wouters0e3f5912006-08-11 14:57:12 +000055 Py_ssize_t count;
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000056 SRE_CODE* pattern; /* points to REPEAT operator arguments */
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000057 void* last_ptr; /* helper to check for infinite loops */
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000058 struct SRE_REPEAT_T *prev; /* points to previous repeat context */
59} SRE_REPEAT;
60
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000061typedef struct {
62 /* string pointers */
63 void* ptr; /* current position (also end of current slice) */
64 void* beginning; /* start of original string */
65 void* start; /* start of current slice */
66 void* end; /* end of original string */
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000067 /* attributes for the match object */
68 PyObject* string;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000069 Py_ssize_t pos, endpos;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000070 /* character size */
71 int charsize;
72 /* registers */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000073 Py_ssize_t lastindex;
74 Py_ssize_t lastmark;
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000075 void* mark[SRE_MARK_SIZE];
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000076 /* dynamically allocated stuff */
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000077 char* data_stack;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000078 size_t data_stack_size;
79 size_t data_stack_base;
Benjamin Petersone48944b2012-03-07 14:50:25 -060080 Py_buffer buffer;
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000081 /* current repeat context */
82 SRE_REPEAT *repeat;
Fredrik Lundh102f3ad2000-06-29 08:55:54 +000083 /* hooks */
Fredrik Lundhb389df32000-06-29 12:48:37 +000084 SRE_TOLOWER_HOOK lower;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000085} SRE_STATE;
Guido van Rossumb700df92000-03-31 14:59:30 +000086
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000087typedef struct {
88 PyObject_HEAD
89 PyObject* pattern;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000090 SRE_STATE state;
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000091} ScannerObject;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000092
93#endif