scan: Get rid of scan token types in favor of new scan result state.
[pspp] / src / language / lexer / token.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2010, 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef TOKEN_H
18 #define TOKEN_H 1
19
20 #include <stdbool.h>
21 #include <stdio.h>
22 #include "libpspp/assertion.h"
23 #include "libpspp/str.h"
24 #include "data/identifier.h"
25
26 /* A PSPP syntax token. */
27 struct token
28   {
29     enum token_type type;
30     double number;
31     struct substring string;
32   };
33
34 void token_copy (struct token *, const struct token *);
35 void token_uninit (struct token *);
36
37 bool token_equal (const struct token *, const struct token *);
38
39 char *token_to_string (const struct token *);
40
41 void token_print (const struct token *, FILE *);
42
43 static inline bool token_is_number (const struct token *);
44 static inline double token_number (const struct token *);
45 bool token_is_integer (const struct token *);
46 long token_integer (const struct token *);
47 static inline bool token_is_string (const struct token *);
48
49 static inline bool
50 token_is_number (const struct token *t)
51 {
52   return t->type == T_POS_NUM || t->type == T_NEG_NUM;
53 }
54
55 static inline double
56 token_number (const struct token *t)
57 {
58   assert (token_is_number (t));
59   return t->number;
60 }
61
62 static inline bool
63 token_is_string (const struct token *t)
64 {
65   return t->type == T_STRING;
66 }
67
68 #endif /* token.h */