blob: 00b52aaf4e5e320eb2707b10df16c6122663bceb [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 Pitrou766a16e2012-06-23 14:17:39 +020017 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 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020029 int logical_charsize; /* pattern charsize (or -1) */
30 int charsize;
Benjamin Petersone48944b2012-03-07 14:50:25 -060031 Py_buffer view;
Fredrik Lundh6f013982000-07-03 18:44:21 +000032 /* pattern code */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000033 Py_ssize_t codesize;
Fredrik Lundh6f013982000-07-03 18:44:21 +000034 SRE_CODE code[1];
Guido van Rossumb700df92000-03-31 14:59:30 +000035} PatternObject;
36
Fredrik Lundh6f013982000-07-03 18:44:21 +000037#define PatternObject_GetCode(o) (((PatternObject*)(o))->code)
Guido van Rossumb700df92000-03-31 14:59:30 +000038
39typedef struct {
Fredrik Lundh6f013982000-07-03 18:44:21 +000040 PyObject_VAR_HEAD
Fredrik Lundhb0f05bd2001-07-02 16:42:49 +000041 PyObject* string; /* link to the target string (must be first) */
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000042 PyObject* regs; /* cached list of matching spans */
Guido van Rossumb700df92000-03-31 14:59:30 +000043 PatternObject* pattern; /* link to the regex (pattern) object */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000044 Py_ssize_t pos, endpos; /* current target slice */
45 Py_ssize_t lastindex; /* last index marker seen by the engine (-1 if none) */
46 Py_ssize_t groups; /* number of groups (start/end marks) */
47 Py_ssize_t mark[1];
Guido van Rossumb700df92000-03-31 14:59:30 +000048} MatchObject;
49
Fredrik Lundh102f3ad2000-06-29 08:55:54 +000050typedef unsigned int (*SRE_TOLOWER_HOOK)(unsigned int ch);
51
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000052/* FIXME: <fl> shouldn't be a constant, really... */
53#define SRE_MARK_SIZE 200
54
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000055typedef struct SRE_REPEAT_T {
Thomas Wouters0e3f5912006-08-11 14:57:12 +000056 Py_ssize_t count;
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000057 SRE_CODE* pattern; /* points to REPEAT operator arguments */
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000058 void* last_ptr; /* helper to check for infinite loops */
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000059 struct SRE_REPEAT_T *prev; /* points to previous repeat context */
60} SRE_REPEAT;
61
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000062typedef struct {
63 /* string pointers */
64 void* ptr; /* current position (also end of current slice) */
65 void* beginning; /* start of original string */
66 void* start; /* start of current slice */
67 void* end; /* end of original string */
Fredrik Lundh8a3ebf82000-07-23 21:46:17 +000068 /* attributes for the match object */
69 PyObject* string;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000070 Py_ssize_t pos, endpos;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000071 /* character size */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020072 int logical_charsize; /* kind of thing: 1 - bytes, 2/4 - unicode */
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000073 int charsize;
74 /* registers */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000075 Py_ssize_t lastindex;
76 Py_ssize_t lastmark;
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000077 void* mark[SRE_MARK_SIZE];
Fredrik Lundh29c4ba92000-08-01 18:20:07 +000078 /* dynamically allocated stuff */
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000079 char* data_stack;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000080 size_t data_stack_size;
81 size_t data_stack_base;
Benjamin Petersone48944b2012-03-07 14:50:25 -060082 Py_buffer buffer;
Gustavo Niemeyerad3fc442003-10-17 22:13:16 +000083 /* current repeat context */
84 SRE_REPEAT *repeat;
Fredrik Lundh102f3ad2000-06-29 08:55:54 +000085 /* hooks */
Fredrik Lundhb389df32000-06-29 12:48:37 +000086 SRE_TOLOWER_HOOK lower;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000087} SRE_STATE;
Guido van Rossumb700df92000-03-31 14:59:30 +000088
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000089typedef struct {
90 PyObject_HEAD
91 PyObject* pattern;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000092 SRE_STATE state;
Fredrik Lundhbe2211e2000-06-29 16:57:40 +000093} ScannerObject;
Jeremy Hyltonb1aa1952000-06-01 17:39:12 +000094
95#endif