1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Grammar interface */
|
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_GRAMMAR_H
|
|
|
|
#define Py_GRAMMAR_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
#include "bitset.h" /* Sigh... */
|
|
|
|
|
|
|
|
/* A label of an arc */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
int lb_type;
|
2019-04-23 06:29:57 -03:00
|
|
|
const char *lb_str;
|
1990-10-14 09:07:46 -03:00
|
|
|
} label;
|
|
|
|
|
2017-11-28 11:56:10 -04:00
|
|
|
#define EMPTY 0 /* Label number 0 is by definition the empty label */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
/* A list of labels */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
int ll_nlabels;
|
2019-04-23 06:29:57 -03:00
|
|
|
const label *ll_label;
|
1990-10-14 09:07:46 -03:00
|
|
|
} labellist;
|
|
|
|
|
|
|
|
/* An arc from one state to another */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
short a_lbl; /* Label of this arc */
|
|
|
|
short a_arrow; /* State where this arc goes to */
|
1990-10-14 09:07:46 -03:00
|
|
|
} arc;
|
|
|
|
|
|
|
|
/* A state in a DFA */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
int s_narcs;
|
2019-04-23 06:29:57 -03:00
|
|
|
const arc *s_arc; /* Array of arcs */
|
2015-03-21 04:25:53 -03:00
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
/* Optional accelerators */
|
2017-11-28 11:56:10 -04:00
|
|
|
int s_lower; /* Lowest label index */
|
|
|
|
int s_upper; /* Highest label index */
|
|
|
|
int *s_accel; /* Accelerator */
|
|
|
|
int s_accept; /* Nonzero for accepting state */
|
1990-10-14 09:07:46 -03:00
|
|
|
} state;
|
|
|
|
|
|
|
|
/* A DFA */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
int d_type; /* Non-terminal this represents */
|
|
|
|
char *d_name; /* For printing */
|
|
|
|
int d_nstates;
|
|
|
|
state *d_state; /* Array of states */
|
|
|
|
bitset d_first;
|
1990-10-14 09:07:46 -03:00
|
|
|
} dfa;
|
|
|
|
|
|
|
|
/* A grammar */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
typedef struct {
|
2017-11-28 11:56:10 -04:00
|
|
|
int g_ndfas;
|
2019-04-23 06:29:57 -03:00
|
|
|
const dfa *g_dfa; /* Array of DFAs */
|
|
|
|
const labellist g_ll;
|
2017-11-28 11:56:10 -04:00
|
|
|
int g_start; /* Start symbol of the grammar */
|
|
|
|
int g_accel; /* Set if accelerators present */
|
1990-10-14 09:07:46 -03:00
|
|
|
} grammar;
|
|
|
|
|
|
|
|
/* FUNCTIONS */
|
2019-04-23 08:39:37 -03:00
|
|
|
const dfa *PyGrammar_FindDFA(grammar *g, int type);
|
2012-10-31 14:36:13 -03:00
|
|
|
const char *PyGrammar_LabelRepr(label *lb);
|
2000-07-08 21:20:36 -03:00
|
|
|
void PyGrammar_AddAccelerators(grammar *g);
|
|
|
|
void PyGrammar_RemoveAccelerators(grammar *);
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_GRAMMAR_H */
|