blob: 4ec6b881437dcb5c2dd7b0517a510a8f433c3294 [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_GRAMMAR_H
2#define Py_GRAMMAR_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossumf70e43a1991-02-19 12:39:46 +00007/***********************************************************
Guido van Rossum5799b521995-01-04 19:06:22 +00008Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000010
11 All Rights Reserved
12
Guido van Rossumd266eb41996-10-25 14:44:06 +000013Permission to use, copy, modify, and distribute this software and its
14documentation for any purpose and without fee is hereby granted,
Guido van Rossumf70e43a1991-02-19 12:39:46 +000015provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000016both that copyright notice and this permission notice appear in
Guido van Rossumf70e43a1991-02-19 12:39:46 +000017supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000018Centrum or CWI or Corporation for National Research Initiatives or
19CNRI not be used in advertising or publicity pertaining to
20distribution of the software without specific, written prior
21permission.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000022
Guido van Rossumd266eb41996-10-25 14:44:06 +000023While CWI is the initial source for this software, a modified version
24is made available by the Corporation for National Research Initiatives
25(CNRI) at the Internet address ftp://ftp.python.org.
26
27STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
28REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
29MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
30CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
31DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
32PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
33TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34PERFORMANCE OF THIS SOFTWARE.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000035
36******************************************************************/
37
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000038/* Grammar interface */
39
40#include "bitset.h" /* Sigh... */
41
42/* A label of an arc */
43
Guido van Rossumb6775db1994-08-01 11:34:53 +000044typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000045 int lb_type;
46 char *lb_str;
47} label;
48
49#define EMPTY 0 /* Label number 0 is by definition the empty label */
50
51/* A list of labels */
52
Guido van Rossumb6775db1994-08-01 11:34:53 +000053typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000054 int ll_nlabels;
55 label *ll_label;
56} labellist;
57
58/* An arc from one state to another */
59
Guido van Rossumb6775db1994-08-01 11:34:53 +000060typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000061 short a_lbl; /* Label of this arc */
62 short a_arrow; /* State where this arc goes to */
63} arc;
64
65/* A state in a DFA */
66
Guido van Rossumb6775db1994-08-01 11:34:53 +000067typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000068 int s_narcs;
69 arc *s_arc; /* Array of arcs */
70
71 /* Optional accelerators */
72 int s_lower; /* Lowest label index */
73 int s_upper; /* Highest label index */
74 int *s_accel; /* Accelerator */
75 int s_accept; /* Nonzero for accepting state */
76} state;
77
78/* A DFA */
79
Guido van Rossumb6775db1994-08-01 11:34:53 +000080typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000081 int d_type; /* Non-terminal this represents */
82 char *d_name; /* For printing */
83 int d_initial; /* Initial state */
84 int d_nstates;
85 state *d_state; /* Array of states */
86 bitset d_first;
87} dfa;
88
89/* A grammar */
90
Guido van Rossumb6775db1994-08-01 11:34:53 +000091typedef struct {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000092 int g_ndfas;
93 dfa *g_dfa; /* Array of DFAs */
94 labellist g_ll;
95 int g_start; /* Start symbol of the grammar */
96 int g_accel; /* Set if accelerators present */
97} grammar;
98
99/* FUNCTIONS */
100
Guido van Rossumcaa63801995-01-12 11:45:45 +0000101grammar *newgrammar Py_PROTO((int start));
102dfa *adddfa Py_PROTO((grammar *g, int type, char *name));
103int addstate Py_PROTO((dfa *d));
104void addarc Py_PROTO((dfa *d, int from, int to, int lbl));
105dfa *PyGrammar_FindDFA Py_PROTO((grammar *g, int type));
106char *typename Py_PROTO((grammar *g, int lbl));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000107
Guido van Rossumcaa63801995-01-12 11:45:45 +0000108int addlabel Py_PROTO((labellist *ll, int type, char *str));
109int findlabel Py_PROTO((labellist *ll, int type, char *str));
110char *PyGrammar_LabelRepr Py_PROTO((label *lb));
111void translatelabels Py_PROTO((grammar *g));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000112
Guido van Rossumcaa63801995-01-12 11:45:45 +0000113void addfirstsets Py_PROTO((grammar *g));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000114
Guido van Rossumcaa63801995-01-12 11:45:45 +0000115void PyGrammar_AddAccelerators Py_PROTO((grammar *g));
Guido van Rossumbb301c51997-08-12 14:57:08 +0000116void PyGrammar_RemoveAccelerators Py_PROTO((grammar *));
Guido van Rossum3f5da241990-12-20 15:06:42 +0000117
Guido van Rossumcaa63801995-01-12 11:45:45 +0000118void printgrammar Py_PROTO((grammar *g, FILE *fp));
119void printnonterminals Py_PROTO((grammar *g, FILE *fp));
Guido van Rossuma3309961993-07-28 09:05:47 +0000120
121#ifdef __cplusplus
122}
123#endif
124#endif /* !Py_GRAMMAR_H */