]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/lex.h
First cut AutoPrune
[bacula/bacula] / bacula / src / lib / lex.h
1 /*
2  *   lex.h  
3  *
4  *    Lexical scanning of configuration files, used by parsers.
5  *
6  *   Kern Sibbald, MM  
7  *
8  *   Version $Id$
9  *
10  */
11 /*
12    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
13
14    This program is free software; you can redistribute it and/or
15    modify it under the terms of the GNU General Public License as
16    published by the Free Software Foundation; either version 2 of
17    the License, or (at your option) any later version.
18
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public
25    License along with this program; if not, write to the Free
26    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27    MA 02111-1307, USA.
28
29  */
30
31 #ifndef _LEX_H
32 #define _LEX_H
33
34 /* Lex get_char() return values */
35 #define L_EOF                         (-1)
36 #define L_EOL                         (-2)
37
38 /* Internal tokens */
39 #define T_NONE                        100                              
40
41 /* Tokens returned by get_token() */
42 #define T_EOF                         101
43 #define T_NUMBER                      102
44 #define T_IPADDR                      103
45 #define T_IDENTIFIER                  104
46 #define T_STRING                      105
47 #define T_QUOTED_STRING               106
48 #define T_BOB                         108  /* begin block */
49 #define T_EOB                         109  /* end of block */
50 #define T_EQUALS                      110
51 #define T_COMMA                       111
52 #define T_EOL                         112
53 #define T_SEMI                        113
54 #define T_ERROR                       200
55
56 /* Lexical state */
57 enum lex_state {
58    lex_none,
59    lex_comment,
60    lex_number,
61    lex_ip_addr,
62    lex_identifier,
63    lex_string,
64    lex_quoted_string,
65    lex_include
66 };
67
68 /* Lex scan options */
69 #define LOPT_NO_IDENT            0x1  /* No Identifiers -- use string */
70
71 /* Lexical context */
72 typedef struct s_lex_context {
73    int options;                       /* scan options */
74    char *fname;                       /* filename */
75    FILE *fd;                          /* file descriptor */
76    char line[MAXSTRING];              /* input line */
77    char str[MAXSTRING];               /* string being scanned */
78    int str_len;                       /* length of string */
79    int line_no;                       /* file line number */
80    int col_no;                        /* char position on line */
81    enum lex_state state;              /* lex_state variable */
82    int ch;                            /* last char/L_VAL returned by get_char */
83    int token;
84    struct s_lex_context *next;        /* pointer to next lexical context */
85 } LEX;
86
87 #endif /* _LEX_H */