f0de59c3ea9abb7d090e6b8040a063412caca3a4
[idzebra-moved-to-github.git] / include / dfa.h
1 /* $Id: dfa.h,v 1.13 2006-05-10 08:13:18 adam Exp $
2    Copyright (C) 1995-2005
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
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
10 version.
11
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
15 for more details.
16
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
20 02111-1307, USA.
21 */
22
23 #ifndef DFA_H
24 #define DFA_H
25
26 #include <bset.h>
27 #include <dfaset.h>
28
29 #include <yaz/yconfig.h>
30
31 YAZ_BEGIN_CDECL
32
33 struct DFA_tran {
34     unsigned char ch[2];      /* transition on ch[0] <= c <= ch[1] to */
35     unsigned short to;        /* this state */
36 };
37
38 struct DFA_trans {
39     struct DFA_trans *next;   /* next DFA transition block */
40     struct DFA_tran *tran_block; /* pointer to transitions */
41     int  ptr;                 /* index of next transition in tran_block */
42     int  size;                /* allocated size of tran_block */
43 };
44
45 struct DFA_state {
46     struct DFA_state *next;   /* next entry in free/unmarked/marked list */
47     struct DFA_state *link;   /* link to next entry in hash chain */
48     struct DFA_tran *trans;   /* transition list */
49     DFASet set;               /* set of positions (important nfa states) */
50     short no;                 /* no of this state */
51     short tran_no;            /* no of transitions to other states */
52     short rule_no;            /* if non-zero, this holds accept rule no */
53     short rule_nno;           /* accept rule no - except start rules */
54 };
55
56 struct DFA {
57     int no_states;
58     struct DFA_state  **states;
59     struct DFA_states *state_info;
60     struct DFA_parse  *parse_info;
61 };
62
63 struct DFA *dfa_init (void);
64 void dfa_set_cmap (struct DFA *dfa, void *vp,
65                    const char **(*cmap)(void *vp, const char **from, int len));
66 int dfa_parse (struct DFA *, const char **);
67 void dfa_mkstate (struct DFA *);
68 void dfa_delete (struct DFA **);
69
70 void dfa_parse_cmap_clean (struct DFA *d);
71 void dfa_parse_cmap_new (struct DFA *d, const int *cmap);
72 void dfa_parse_cmap_del (struct DFA *d, int from);
73 void dfa_parse_cmap_add (struct DFA *d, int from, int to);
74
75 extern int  debug_dfa_trav;
76 extern int  debug_dfa_tran;
77 extern int  debug_dfa_followpos;
78 extern int  dfa_verbose;
79
80 extern unsigned short
81         dfa_thompson_chars[],
82         dfa_ccl_chars[];
83
84 #define L_LP 1
85 #define L_RP 2
86 #define L_CHAR 3
87 #define L_CHARS 4
88 #define L_ANY 5
89 #define L_ALT 6
90 #define L_ANYZ 7
91 #define L_WILD 8
92 #define L_QUEST 9
93 #define L_CLOS1 10
94 #define L_CLOS0 11
95 #define L_END 12
96 #define L_START 13
97
98 #define DFA_ERR_SYNTAX 1
99 #define DFA_ERR_LP     2
100 #define DFA_ERR_RP     3
101
102 YAZ_END_CDECL
103
104 #endif
105 /*
106  * Local variables:
107  * c-basic-offset: 4
108  * indent-tabs-mode: nil
109  * End:
110  * vim: shiftwidth=4 tabstop=8 expandtab
111  */
112