1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2007, 2009, 2010 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/>. */
25 #include <data/dictionary.h>
26 #include <data/procedure.h>
27 #include <data/settings.h>
28 #include <libpspp/getl.h>
29 #include <language/command.h>
30 #include <language/lexer/lexer.h>
31 #include <language/lexer/variable-parser.h>
32 #include <libpspp/cast.h>
33 #include <libpspp/ll.h>
34 #include <libpspp/message.h>
35 #include <libpspp/misc.h>
36 #include <libpspp/pool.h>
37 #include <libpspp/str.h>
38 #include <data/variable.h>
44 #define _(msgid) gettext (msgid)
46 /* A line repeated by DO REPEAT. */
49 struct ll ll; /* In struct repeat_block line_list. */
50 const char *file_name; /* File name. */
51 int line_number; /* Line number. */
52 struct substring text; /* Contents. */
55 /* The type of substitution made for a DO REPEAT macro. */
56 enum repeat_macro_type
62 /* Describes one DO REPEAT macro. */
65 struct ll ll; /* In struct repeat_block macros. */
66 enum repeat_macro_type type; /* Types of replacements. */
67 struct substring name; /* Macro name. */
68 struct substring *replacements; /* Macro replacement. */
71 /* A DO REPEAT...END REPEAT block. */
74 struct getl_interface parent;
76 struct pool *pool; /* Pool used for storage. */
77 struct dataset *ds; /* The dataset for this block */
79 struct ll_list lines; /* Lines in buffer. */
80 struct ll *cur_line; /* Last line output. */
81 int loop_cnt; /* Number of loops. */
82 int loop_idx; /* Number of loops so far. */
84 struct ll_list macros; /* Table of macros. */
86 bool print; /* Print lines as executed? */
89 static bool parse_specification (struct lexer *, struct repeat_block *);
90 static bool parse_lines (struct lexer *, struct repeat_block *);
91 static void create_vars (struct repeat_block *);
93 static struct repeat_macro *find_macro (struct repeat_block *,
94 struct substring name);
96 static int parse_ids (struct lexer *, const struct dictionary *dict,
97 struct repeat_macro *, struct pool *);
99 static int parse_numbers (struct lexer *, struct repeat_macro *,
102 static int parse_strings (struct lexer *, struct repeat_macro *,
105 static void do_repeat_filter (struct getl_interface *,
107 static bool do_repeat_read (struct getl_interface *,
109 static void do_repeat_close (struct getl_interface *);
110 static bool always_false (const struct getl_interface *);
111 static const char *do_repeat_name (const struct getl_interface *);
112 static int do_repeat_location (const struct getl_interface *);
115 cmd_do_repeat (struct lexer *lexer, struct dataset *ds)
117 struct repeat_block *block;
119 block = pool_create_container (struct repeat_block, pool);
121 ll_init (&block->lines);
122 block->cur_line = ll_null (&block->lines);
124 ll_init (&block->macros);
126 if (!parse_specification (lexer, block) || !parse_lines (lexer, block))
131 block->parent.read = do_repeat_read;
132 block->parent.close = do_repeat_close;
133 block->parent.filter = do_repeat_filter;
134 block->parent.interactive = always_false;
135 block->parent.name = do_repeat_name;
136 block->parent.location = do_repeat_location;
138 if (!ll_is_empty (&block->lines))
139 getl_include_source (lex_get_source_stream (lexer),
141 lex_current_syntax_mode (lexer),
142 lex_current_error_mode (lexer)
145 pool_destroy (block->pool);
150 pool_destroy (block->pool);
151 return CMD_CASCADING_FAILURE;
154 /* Parses the whole DO REPEAT command specification.
157 parse_specification (struct lexer *lexer, struct repeat_block *block)
159 struct substring first_name;
164 struct repeat_macro *macro;
165 struct dictionary *dict = dataset_dict (block->ds);
168 /* Get a stand-in variable name and make sure it's unique. */
169 if (!lex_force_id (lexer))
171 if (dict_lookup_var (dict, lex_tokid (lexer)))
172 msg (SW, _("Dummy variable name `%s' hides dictionary "
174 lex_tokid (lexer), lex_tokid (lexer));
175 if (find_macro (block, ss_cstr (lex_tokid (lexer))))
177 msg (SE, _("Dummy variable name `%s' is given twice."),
182 /* Make a new macro. */
183 macro = pool_alloc (block->pool, sizeof *macro);
184 ss_alloc_substring_pool (¯o->name, ss_cstr (lex_tokid (lexer)),
186 ll_push_tail (&block->macros, ¯o->ll);
188 /* Skip equals sign. */
190 if (!lex_force_match (lexer, '='))
193 /* Get the details of the variable's possible values. */
194 if (lex_token (lexer) == T_ID)
195 count = parse_ids (lexer, dict, macro, block->pool);
196 else if (lex_is_number (lexer))
197 count = parse_numbers (lexer, macro, block->pool);
198 else if (lex_is_string (lexer))
199 count = parse_strings (lexer, macro, block->pool);
202 lex_error (lexer, NULL);
207 if (lex_token (lexer) != '/' && lex_token (lexer) != '.')
209 lex_error (lexer, NULL);
213 /* If this is the first variable then it defines how many
214 replacements there must be; otherwise enforce this number of
216 if (block->loop_cnt == 0)
218 block->loop_cnt = count;
219 first_name = macro->name;
221 else if (block->loop_cnt != count)
223 msg (SE, _("Dummy variable `%.*s' had %d "
224 "substitutions, so `%.*s' must also, but %d "
226 (int) ss_length (first_name), ss_data (first_name),
228 (int) ss_length (macro->name), ss_data (macro->name),
233 lex_match (lexer, '/');
235 while (lex_token (lexer) != '.');
240 /* Finds and returns a DO REPEAT macro with the given NAME, or
241 NULL if there is none */
242 static struct repeat_macro *
243 find_macro (struct repeat_block *block, struct substring name)
245 struct repeat_macro *macro;
247 ll_for_each (macro, struct repeat_macro, ll, &block->macros)
248 if (ss_equals (macro->name, name))
254 /* Advances LINE past white space and an identifier, if present.
255 Returns true if KEYWORD matches the identifer, false
258 recognize_keyword (struct substring *line, const char *keyword)
261 ss_ltrim (line, ss_cstr (CC_SPACES));
262 ss_get_chars (line, lex_id_get_length (*line), &id);
263 return lex_id_match (ss_cstr (keyword), id);
266 /* Returns true if LINE contains a DO REPEAT command, false
269 recognize_do_repeat (struct substring line)
271 return (recognize_keyword (&line, "do")
272 && recognize_keyword (&line, "repeat"));
275 /* Returns true if LINE contains an END REPEAT command, false
276 otherwise. Sets *PRINT to true for END REPEAT PRINT, false
279 recognize_end_repeat (struct substring line, bool *print)
281 if (!recognize_keyword (&line, "end")
282 || !recognize_keyword (&line, "repeat"))
285 *print = recognize_keyword (&line, "print");
289 /* Read all the lines we are going to substitute, inside the DO
290 REPEAT...END REPEAT block. */
292 parse_lines (struct lexer *lexer, struct repeat_block *block)
294 char *previous_file_name;
297 previous_file_name = NULL;
302 const char *cur_file_name;
303 struct repeat_line *line;
305 bool command_ends_before_line, command_ends_after_line;
307 /* Retrieve an input line and make a copy of it. */
308 if (!lex_get_line_raw (lexer))
310 msg (SE, _("DO REPEAT without END REPEAT."));
313 ds_init_string (&text, lex_entire_line_ds (lexer));
315 /* Record file name. */
316 cur_file_name = getl_source_name (lex_get_source_stream (lexer));
317 if (cur_file_name != NULL &&
318 (previous_file_name == NULL
319 || !strcmp (cur_file_name, previous_file_name)))
320 previous_file_name = pool_strdup (block->pool, cur_file_name);
322 /* Create a line structure. */
323 line = pool_alloc (block->pool, sizeof *line);
324 line->file_name = previous_file_name;
325 line->line_number = getl_source_location (lex_get_source_stream (lexer));
326 ss_alloc_substring_pool (&line->text, ds_ss (&text), block->pool);
329 /* Check whether the line contains a DO REPEAT or END
331 lex_preprocess_line (&text,
332 lex_current_syntax_mode (lexer),
333 &command_ends_before_line,
334 &command_ends_after_line);
335 if (recognize_do_repeat (ds_ss (&text)))
337 if (settings_get_syntax () == COMPATIBLE)
338 msg (SE, _("DO REPEAT may not nest in compatibility mode."));
342 else if (recognize_end_repeat (ds_ss (&text), &block->print)
343 && nesting_level-- == 0)
345 lex_discard_line (lexer);
351 /* Add the line to the list. */
352 ll_push_tail (&block->lines, &line->ll);
356 /* Creates variables for the given DO REPEAT. */
358 create_vars (struct repeat_block *block)
360 struct repeat_macro *macro;
362 ll_for_each (macro, struct repeat_macro, ll, &block->macros)
363 if (macro->type == VAR_NAMES)
367 for (i = 0; i < block->loop_cnt; i++)
369 /* Ignore return value: if the variable already
370 exists there is no harm done. */
371 char *var_name = ss_xstrdup (macro->replacements[i]);
372 dict_create_var (dataset_dict (block->ds), var_name, 0);
378 /* Parses a set of ids for DO REPEAT. */
380 parse_ids (struct lexer *lexer, const struct dictionary *dict,
381 struct repeat_macro *macro, struct pool *pool)
386 macro->type = VAR_NAMES;
387 if (!parse_mixed_vars_pool (lexer, dict, pool, &replacements, &n, PV_NONE))
390 macro->replacements = pool_nalloc (pool, n, sizeof *macro->replacements);
391 for (i = 0; i < n; i++)
392 macro->replacements[i] = ss_cstr (replacements[i]);
396 /* Adds REPLACEMENT to MACRO's list of replacements, which has
397 *USED elements and has room for *ALLOCATED. Allocates memory
400 add_replacement (struct substring replacement,
401 struct repeat_macro *macro, struct pool *pool,
402 size_t *used, size_t *allocated)
404 if (*used == *allocated)
405 macro->replacements = pool_2nrealloc (pool, macro->replacements, allocated,
406 sizeof *macro->replacements);
407 macro->replacements[(*used)++] = replacement;
410 /* Parses a list or range of numbers for DO REPEAT. */
412 parse_numbers (struct lexer *lexer, struct repeat_macro *macro,
416 size_t allocated = 0;
419 macro->replacements = NULL;
423 bool integer_value_seen;
426 /* Parse A TO B into a, b. */
427 if (!lex_force_num (lexer))
430 if ( (integer_value_seen = lex_is_integer (lexer) ) )
431 a = lex_integer (lexer);
433 a = lex_number (lexer);
436 if (lex_token (lexer) == T_TO)
438 if ( !integer_value_seen )
440 msg (SE, _("Ranges may only have integer bounds"));
444 if (!lex_force_int (lexer))
446 b = lex_integer (lexer);
449 msg (SE, _("%g TO %g is an invalid range."), a, b);
457 for (i = a; i <= b; i++)
458 add_replacement (ss_cstr (pool_asprintf (pool, "%g", i)),
459 macro, pool, &used, &allocated);
461 lex_match (lexer, ',');
463 while (lex_token (lexer) != '/' && lex_token (lexer) != '.');
468 /* Parses a list of strings for DO REPEAT. */
470 parse_strings (struct lexer *lexer, struct repeat_macro *macro, struct pool *pool)
473 size_t allocated = 0;
476 macro->replacements = NULL;
482 if (!lex_force_string (lexer))
484 msg (SE, _("String expected."));
488 string = lex_token_representation (lexer);
489 pool_register (pool, free, string);
490 add_replacement (ss_cstr (string), macro, pool, &used, &allocated);
493 lex_match (lexer, ',');
495 while (lex_token (lexer) != '/' && lex_token (lexer) != '.');
501 cmd_end_repeat (struct lexer *lexer UNUSED, struct dataset *ds UNUSED)
503 msg (SE, _("No matching DO REPEAT."));
504 return CMD_CASCADING_FAILURE;
507 /* Finds a DO REPEAT macro with the given NAME and returns the
508 appropriate substitution if found, or NAME otherwise. */
509 static struct substring
510 find_substitution (struct repeat_block *block, struct substring name)
512 struct repeat_macro *macro = find_macro (block, name);
513 return macro ? macro->replacements[block->loop_idx] : name;
516 /* Makes appropriate DO REPEAT macro substitutions within the
519 do_repeat_filter (struct getl_interface *interface, struct string *line)
521 struct repeat_block *block
522 = UP_CAST (interface, struct repeat_block, parent);
523 bool in_apos, in_quote, dot;
524 struct substring input;
525 struct string output;
528 ds_init_empty (&output);
530 /* Strip trailing whitespace, check for & remove terminal dot. */
531 ds_rtrim (line, ss_cstr (CC_SPACES));
532 dot = ds_chomp (line, settings_get_endcmd ());
533 input = ds_ss (line);
534 in_apos = in_quote = false;
535 while ((c = ss_first (input)) != EOF)
537 if (c == '\'' && !in_quote)
539 else if (c == '"' && !in_apos)
540 in_quote = !in_quote;
542 if (in_quote || in_apos || !lex_is_id1 (c))
544 ds_put_char (&output, c);
545 ss_advance (&input, 1);
550 ss_get_chars (&input, lex_id_get_length (input), &id);
551 ds_put_substring (&output, find_substitution (block, id));
555 ds_put_char (&output, settings_get_endcmd ());
557 ds_swap (line, &output);
558 ds_destroy (&output);
561 static struct repeat_line *
562 current_line (const struct getl_interface *interface)
564 struct repeat_block *block
565 = UP_CAST (interface, struct repeat_block, parent);
566 return (block->cur_line != ll_null (&block->lines)
567 ? ll_data (block->cur_line, struct repeat_line, ll)
571 /* Function called by getl to read a line. Puts the line in
572 OUTPUT and its syntax mode in *SYNTAX. Returns true if a line
573 was obtained, false if the source is exhausted. */
575 do_repeat_read (struct getl_interface *interface,
576 struct string *output)
578 struct repeat_block *block
579 = UP_CAST (interface, struct repeat_block, parent);
580 struct repeat_line *line;
582 block->cur_line = ll_next (block->cur_line);
583 if (block->cur_line == ll_null (&block->lines))
586 if (block->loop_idx >= block->loop_cnt)
589 block->cur_line = ll_head (&block->lines);
592 line = current_line (interface);
593 ds_assign_substring (output, line->text);
597 /* Frees a DO REPEAT block.
598 Called by getl to close out the DO REPEAT block. */
600 do_repeat_close (struct getl_interface *interface)
602 struct repeat_block *block
603 = UP_CAST (interface, struct repeat_block, parent);
604 pool_destroy (block->pool);
609 always_false (const struct getl_interface *i UNUSED)
614 /* Returns the name of the source file from which the previous
615 line was originally obtained, or a null pointer if none. */
617 do_repeat_name (const struct getl_interface *interface)
619 struct repeat_line *line = current_line (interface);
620 return line ? line->file_name : NULL;
623 /* Returns the line number in the source file from which the
624 previous line was originally obtained, or 0 if none. */
626 do_repeat_location (const struct getl_interface *interface)
628 struct repeat_line *line = current_line (interface);
629 return line ? line->line_number : 0;