1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2010, 2011, 2013 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/>. */
28 #include "libpspp/assertion.h"
29 #include "libpspp/cast.h"
30 #include "libpspp/compiler.h"
31 #include "libpspp/misc.h"
32 #include "language/lexer/segment.h"
35 #include "gl/minmax.h"
36 #include "gl/progname.h"
37 #include "gl/read-file.h"
38 #include "gl/xalloc.h"
39 #include "gl/xmemdup0.h"
41 /* -a/--auto, -b/--batch, -i/--interactive: syntax mode. */
42 static enum segmenter_mode mode = SEG_MODE_AUTO;
44 /* -v, --verbose: Print row and column information. */
47 /* -1, --one-byte: Feed in one byte at a time? */
50 /* -0, --truncations: Check that every truncation of input yields a result. */
51 static bool check_truncations;
53 /* -s, --strip-trailing-newline: Strip trailing newline from last line of
55 static bool strip_trailing_newline;
57 static const char *parse_options (int argc, char **argv);
58 static void usage (void) NO_RETURN;
60 static void check_segmentation (const char *input, size_t length,
64 main (int argc, char *argv[])
66 const char *file_name;
70 set_program_name (argv[0]);
71 file_name = parse_options (argc, argv);
73 /* Read from stdin into 'input'. Ensure that 'input' ends in a new-line
74 followed by a null byte. */
75 input = (!strcmp (file_name, "-")
76 ? fread_file (stdin, 0, &length)
77 : read_file (file_name, 0, &length));
79 error (EXIT_FAILURE, errno, "reading %s failed", file_name);
81 if (strip_trailing_newline && length && input[length - 1] == '\n')
84 if (length && input[length - 1] == '\r')
88 if (!check_truncations)
89 check_segmentation (input, length, true);
94 for (test_len = 0; test_len <= length; test_len++)
96 char *copy = xmemdup (input, test_len);
97 check_segmentation (copy, test_len, false);
107 check_segmentation (const char *input, size_t length, bool print_segments)
110 segmenter_init (&s, mode);
112 size_t line_number = 1;
113 size_t line_offset = 0;
116 enum segment_type type;
119 const char *type_name, *p;
127 for (i = 0; i <= length - offset; i++)
129 /* Make a copy to ensure that segmenter_push() isn't actually
133 if (i > 0 && input[offset + i - 1] == '\n')
136 copy = xmemdup (input + offset, i);
137 n = segmenter_push (&s, copy, i, i + offset >= length, &type);
143 assert (n_newlines <= 2);
146 n = segmenter_push (&s, input + offset, length - offset, true, &type);
151 check_segmentation (input, length, true);
153 error (EXIT_FAILURE, 0, "segmenter_push returned -1 at offset %zu",
156 assert (offset + n <= length);
158 if (type == SEG_NEWLINE)
160 assert ((n == 1 && input[offset] == '\n')
162 && input[offset] == '\r' && input[offset + 1] == '\n'));
165 assert (memchr (&input[offset], '\n', n) == NULL);
175 if (prev_type != SEG_SPACES && prev_type != -1
176 && type == SEG_SPACES && n == 1 && input[offset] == ' ')
189 printf ("%2zu:%2zu: ", line_number, offset - line_offset);
191 type_name = segment_type_to_string (type);
192 for (p = type_name; *p != '\0'; p++)
193 putchar (tolower ((unsigned char) *p));
198 for (i = MIN (15, strlen (type_name)); i < 16; i++)
202 const uint8_t *u_input = CHAR_CAST (const uint8_t *, input);
206 mblen = u8_mbtoucr (&uc, u_input + (offset + i), n - i);
211 mblen = u8_mbtouc (&uc, u_input + (offset + i), n - i);
213 for (j = 0; j < mblen; j++)
217 printf ("%02x", input[offset + i + j]);
254 if (uc < 0x20 || uc == 0x00a0)
255 printf ("<U+%04X>", uc);
257 fwrite (input + offset + i, 1, mblen, stdout);
267 if (type == SEG_NEWLINE)
269 enum prompt_style prompt;
272 line_offset = offset;
274 prompt = segmenter_get_prompt (&s);
275 printf (" (%s)\n", prompt_style_to_string (prompt));
278 while (type != SEG_END);
285 parse_options (int argc, char **argv)
289 static const struct option options[] =
291 {"one-byte", no_argument, NULL, '1'},
292 {"truncations", no_argument, NULL, '0'},
293 {"strip-trailing-newline", no_argument, NULL, 's'},
294 {"auto", no_argument, NULL, 'a'},
295 {"batch", no_argument, NULL, 'b'},
296 {"interactive", no_argument, NULL, 'i'},
297 {"verbose", no_argument, NULL, 'v'},
298 {"help", no_argument, NULL, 'h'},
302 int c = getopt_long (argc, argv, "01abivhs", options, NULL);
313 check_truncations = true;
317 strip_trailing_newline = true;
321 mode = SEG_MODE_AUTO;
325 mode = SEG_MODE_BATCH;
329 mode = SEG_MODE_INTERACTIVE;
352 if (optind + 1 != argc)
353 error (1, 0, "exactly one non-option argument required; "
354 "use --help for help");
362 %s, to test breaking PSPP syntax into lexical segments\n\
363 usage: %s [OPTIONS] INPUT\n\
366 -1, --one-byte feed one byte at a time\n\
367 -0, --truncations check null truncation of each prefix of input\n\
368 -s, --strip-trailing-newline remove newline from end of input\n\
369 -a, --auto use \"auto\" syntax mode\n\
370 -b, --batch use \"batch\" syntax mode\n\
371 -i, --interactive use \"interactive\" syntax mode (default)\n\
372 -v, --verbose include rows and column numbers in output\n\
373 -h, --help print this help message\n",
374 program_name, program_name);