Put local variables footer in all c, h files.
[idzebra-moved-to-github.git] / dfa / lexer.c
1 /* $Id: lexer.c,v 1.15 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
24 #include <stdio.h>
25 #include <assert.h>
26
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdarg.h>
30
31 #include <idzebra/util.h>
32 #include <dfa.h>
33 #include "imalloc.h"
34 #include "lexer.h"
35
36 static char *prog;
37
38
39 void error (const char *format, ...)
40 {
41     va_list argptr;
42     va_start (argptr, format);
43     fprintf (stderr, "%s error: ", prog);
44     (void) vfprintf (stderr, format, argptr);
45     putc ('\n', stderr);
46     exit (1);
47 }
48
49 int ccluse = 0;
50
51 static int lexer_options (int argc, char **argv)
52 {
53     while (--argc > 0)
54         if (**++argv == '-')
55             while (*++*argv)
56             {
57                 switch (**argv)
58                 {
59                 case 'V':
60                     fprintf (stderr, "%s: %s %s\n", prog, __DATE__, __TIME__);
61                     continue;
62                 case 's':
63                     dfa_verbose = 1;
64                     continue;
65                 case 'c':
66                     ccluse = 1;
67                     continue;
68                 case 'd':
69                     switch (*++*argv)
70                     {
71                     case 's':
72                         debug_dfa_tran = 1;
73                         break;
74                     case 't':
75                         debug_dfa_trav = 1;
76                         break;
77                     case 'f':
78                         debug_dfa_followpos = 1;
79                         break;
80                     default:
81                         --*argv;
82                         debug_dfa_tran = 1;
83                         debug_dfa_followpos = 1;
84                         debug_dfa_trav = 1;
85                     }
86                     continue;
87                 default:
88                     fprintf (stderr, "%s: unknown option `-%s'\n",
89                              prog, *argv);
90                     return 1;
91                 }
92                 break;
93             }
94     return 0;
95 }
96
97 int main (int argc, char **argv)
98 {
99     int i, no = 0;
100     struct DFA *dfa;
101
102     prog = *argv;
103     dfa = dfa_init ();
104     i = lexer_options (argc, argv);
105     if (i)
106         return i;
107
108     if (argc < 2)
109     {
110         fprintf (stderr, "usage\n  %s [-c] [-V] [-s] [-t] [-d[stf]] file\n",
111                  prog);
112         return 1;
113     }
114     else while (--argc > 0)
115         if (**++argv != '-' && **argv)
116         {
117             ++no;
118             
119             i = read_file (*argv, dfa);
120             if (i)
121                 return i;
122             dfa_mkstate (dfa);
123
124 #if MEMDEBUG
125     imemstat();
126 #endif
127         }
128     dfa_delete (&dfa);
129 #if MEMDEBUG
130     imemstat();
131 #endif
132     if (!no)
133     {
134         fprintf (stderr, "%s: no files specified\n", prog);
135         return 2;
136     }
137     return 0;
138 }
139
140 /*
141  * Local variables:
142  * c-basic-offset: 4
143  * indent-tabs-mode: nil
144  * End:
145  * vim: shiftwidth=4 tabstop=8 expandtab
146  */
147