1 /* $Id: dfa.h,v 1.10 2002-08-02 19:26:55 adam Exp $
2 Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
36 unsigned char ch[2]; /* transition on ch[0] <= c <= ch[1] to */
37 unsigned short to; /* this state */
41 struct DFA_trans *next; /* next DFA transition block */
42 struct DFA_tran *tran_block; /* pointer to transitions */
43 int ptr; /* index of next transition in tran_block */
44 int size; /* allocated size of tran_block */
48 struct DFA_state *next; /* next entry in free/unmarked/marked list */
49 struct DFA_state *link; /* link to next entry in hash chain */
50 struct DFA_tran *trans; /* transition list */
51 Set set; /* set of positions (important nfa states) */
52 short no; /* no of this state */
53 short tran_no; /* no of transitions to other states */
54 short rule_no; /* if non-zero, this holds accept rule no */
55 short rule_nno; /* accept rule no - except start rules */
60 struct DFA_state **states;
61 struct DFA_states *state_info;
62 struct DFA_parse *parse_info;
65 struct DFA *dfa_init (void);
66 void dfa_set_cmap (struct DFA *dfa, void *vp,
67 const char **(*cmap)(void *vp, const char **from, int len));
68 int dfa_parse (struct DFA *, const char **);
69 void dfa_mkstate (struct DFA *);
70 void dfa_delete (struct DFA **);
72 void dfa_parse_cmap_clean (struct DFA *d);
73 void dfa_parse_cmap_new (struct DFA *d, const int *cmap);
74 void dfa_parse_cmap_del (struct DFA *d, int from);
75 void dfa_parse_cmap_add (struct DFA *d, int from, int to);
77 extern int debug_dfa_trav;
78 extern int debug_dfa_tran;
79 extern int debug_dfa_followpos;
80 extern int dfa_verbose;
100 #define DFA_ERR_SYNTAX 1