]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/lex.h
ec642a95be9e4ad79bbdbe6c7ab29c4ec1d57909
[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  * The following will be returned only if
57  * the appropriate expect flag has been set   
58  */
59 #define T_PINT32                      114  /* positive integer */
60 #define T_PINT32_RANGE                115  /* positive integer range */
61 #define T_INT32                       116  /* integer */
62 #define T_INT64                       117  /* 64 bit integer */
63 #define T_NAME                        118  /* resource name */
64
65 /* Lexical state */
66 enum lex_state {
67    lex_none,
68    lex_comment,
69    lex_number,
70    lex_ip_addr,
71    lex_identifier,
72    lex_string,
73    lex_quoted_string,
74    lex_include
75 };
76
77 /* Lex scan options */
78 #define LOPT_NO_IDENT            0x1  /* No Identifiers -- use string */
79
80 /* Lexical context */
81 typedef struct s_lex_context {
82    struct s_lex_context *next;        /* pointer to next lexical context */
83    int options;                       /* scan options */
84    int expect;                        /* types expected */
85    char *fname;                       /* filename */
86    FILE *fd;                          /* file descriptor */
87    char line[MAXSTRING];              /* input line */
88    char str[MAXSTRING];               /* string being scanned */
89    int str_len;                       /* length of string */
90    int line_no;                       /* file line number */
91    int col_no;                        /* char position on line */
92    enum lex_state state;              /* lex_state variable */
93    int ch;                            /* last char/L_VAL returned by get_char */
94    int token;
95    uint32_t pint32_val;
96    uint32_t pint32_val2;
97    int32_t int32_val;
98    int64_t int64_val;
99 } LEX;
100
101 #endif /* _LEX_H */