1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2010, 2011 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include "language/lexer/token.h"
25 #include "data/identifier.h"
26 #include "libpspp/assertion.h"
27 #include "libpspp/cast.h"
28 #include "libpspp/misc.h"
31 #include "gl/ftoastr.h"
32 #include "gl/xalloc.h"
34 /* Initializes TOKEN with an arbitrary type, number 0, and a null string. */
36 token_init (struct token *token)
40 token->string = ss_empty ();
43 /* Frees the string that TOKEN contains. */
45 token_destroy (struct token *token)
48 ss_dealloc (&token->string);
52 number_token_to_string (const struct token *token)
54 char buffer[DBL_BUFSIZE_BOUND];
56 c_dtoastr (buffer, sizeof buffer, 0, 0, fabs (token->number));
57 return (token->type == T_POS_NUM
59 : xasprintf ("-%s", buffer));
63 quoted_string_representation (struct substring ss, size_t n_quotes)
69 p = rep = xmalloc (1 + ss.length + n_quotes + 1 + 1);
71 for (i = 0; i < ss.length; i++)
73 uint8_t c = ss.string[i];
85 hex_string_representation (struct substring ss)
91 p = rep = xmalloc (2 + 2 * ss.length + 1 + 1);
94 for (i = 0; i < ss.length; i++)
96 static const char hex_digits[] = "0123456789abcdef";
97 uint8_t c = ss.string[i];
98 *p++ = hex_digits[c >> 4];
99 *p++ = hex_digits[c & 15];
108 string_representation (struct substring ss)
115 for (ofs = 0; ofs < ss.length; ofs += mblen)
119 mblen = u8_mbtoucr (&uc,
120 CHAR_CAST (const uint8_t *, ss.string + ofs),
122 if (mblen < 0 || !uc_is_print (uc))
123 return hex_string_representation (ss);
127 return quoted_string_representation (ss, n_quotes);
130 /* Returns a UTF-8 string that would yield TOKEN if it appeared in a syntax
131 file. The caller should free the returned string, with free(), when it is
134 The T_STOP token has no representation, so this function returns NULL. */
136 token_to_string (const struct token *token)
144 return number_token_to_string (token);
147 return ss_xstrdup (token->string);
150 return string_representation (token->string);
153 name = token_type_to_name (token->type);
154 return name != NULL ? xstrdup (name) : NULL;
158 /* Prints TOKEN on STREAM, for debugging. */
160 token_print (const struct token *token, FILE *stream)
162 fputs (token_type_to_name (token->type), stream);
163 if (token->type == T_POS_NUM || token->type == T_NEG_NUM
164 || token->number != 0.0)
166 char s[DBL_BUFSIZE_BOUND];
168 c_dtoastr (s, sizeof s, 0, 0, token->number);
169 fprintf (stream, "\t%s", s);
171 if (token->type == T_ID || token->type == T_STRING || token->string.length)
172 fprintf (stream, "\t\"%.*s\"",
173 (int) token->string.length, token->string.string);