1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006 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/>. */
21 #include <data/case.h>
22 #include <data/data-out.h>
23 #include <data/procedure.h>
24 #include <data/transformations.h>
25 #include <data/variable.h>
26 #include <language/command.h>
27 #include <language/data-io/data-writer.h>
28 #include <language/data-io/file-handle.h>
29 #include <language/data-io/placement-parser.h>
30 #include <language/lexer/format-parser.h>
31 #include <language/lexer/lexer.h>
32 #include <language/lexer/variable-parser.h>
33 #include <libpspp/assertion.h>
34 #include <libpspp/compiler.h>
35 #include <libpspp/ll.h>
36 #include <libpspp/message.h>
37 #include <libpspp/misc.h>
38 #include <libpspp/pool.h>
39 #include <output/manager.h>
40 #include <output/table.h>
45 #define _(msgid) gettext (msgid)
47 /* Describes what to do when an output field is encountered. */
50 PRT_LITERAL, /* Literal string. */
51 PRT_VAR /* Variable. */
54 /* Describes how to output one field. */
58 struct ll ll; /* In struct print_trns `specs' list. */
59 enum field_type type; /* What type of field this is. */
60 int record; /* 1-based record number. */
61 int first_column; /* 0-based first column. */
64 const struct variable *var; /* Associated variable. */
65 struct fmt_spec format; /* Output spec. */
66 bool add_space; /* Add trailing space? */
67 bool sysmis_as_spaces; /* Output SYSMIS as spaces? */
69 /* PRT_LITERAL only. */
70 struct string string; /* String to output. */
73 static inline struct prt_out_spec *
74 ll_to_prt_out_spec (struct ll *ll)
76 return ll_data (ll, struct prt_out_spec, ll);
79 /* PRINT, PRINT EJECT, WRITE private data structure. */
82 struct pool *pool; /* Stores related data. */
83 bool eject; /* Eject page before printing? */
84 bool include_prefix; /* Prefix lines with space? */
85 enum legacy_encoding encoding; /* Encoding to use for output. */
86 struct dfm_writer *writer; /* Output file, NULL=listing file. */
87 struct ll_list specs; /* List of struct prt_out_specs. */
88 size_t record_cnt; /* Number of records to write. */
89 struct string line; /* Output buffer. */
98 static int internal_cmd_print (struct lexer *, struct dataset *ds,
99 enum which_formats, bool eject);
100 static trns_proc_func print_trns_proc;
101 static trns_free_func print_trns_free;
102 static bool parse_specs (struct lexer *, struct pool *tmp_pool, struct print_trns *,
103 struct dictionary *dict, enum which_formats);
104 static void dump_table (struct print_trns *, const struct file_handle *);
108 /* Parses PRINT command. */
110 cmd_print (struct lexer *lexer, struct dataset *ds)
112 return internal_cmd_print (lexer, ds, PRINT, false);
115 /* Parses PRINT EJECT command. */
117 cmd_print_eject (struct lexer *lexer, struct dataset *ds)
119 return internal_cmd_print (lexer, ds, PRINT, true);
122 /* Parses WRITE command. */
124 cmd_write (struct lexer *lexer, struct dataset *ds)
126 return internal_cmd_print (lexer, ds, WRITE, false);
129 /* Parses the output commands. */
131 internal_cmd_print (struct lexer *lexer, struct dataset *ds,
132 enum which_formats which_formats, bool eject)
134 bool print_table = 0;
135 struct print_trns *trns;
136 struct file_handle *fh = NULL;
137 struct pool *tmp_pool;
139 /* Fill in prt to facilitate error-handling. */
140 trns = pool_create_container (struct print_trns, pool);
143 trns->record_cnt = 0;
144 ll_init (&trns->specs);
145 ds_init_empty (&trns->line);
146 ds_register_pool (&trns->line, trns->pool);
148 tmp_pool = pool_create_subpool (trns->pool);
150 /* Parse the command options. */
151 while (lex_token (lexer) != '/' && lex_token (lexer) != '.')
153 if (lex_match_id (lexer, "OUTFILE"))
155 lex_match (lexer, '=');
157 fh = fh_parse (lexer, FH_REF_FILE);
161 else if (lex_match_id (lexer, "RECORDS"))
163 lex_match (lexer, '=');
164 lex_match (lexer, '(');
165 if (!lex_force_int (lexer))
167 trns->record_cnt = lex_integer (lexer);
169 lex_match (lexer, ')');
171 else if (lex_match_id (lexer, "TABLE"))
173 else if (lex_match_id (lexer, "NOTABLE"))
177 lex_error (lexer, _("expecting a valid subcommand"));
182 /* When PRINT or PRINT EJECT writes to an external file, we
183 prefix each line with a space for compatibility. */
184 trns->include_prefix = which_formats == PRINT && fh != NULL;
186 /* Parse variables and strings. */
187 if (!parse_specs (lexer, tmp_pool, trns, dataset_dict (ds), which_formats))
190 if (lex_end_of_command (lexer) != CMD_SUCCESS)
195 trns->writer = dfm_open_writer (fh);
196 if (trns->writer == NULL)
198 trns->encoding = dfm_writer_get_legacy_encoding (trns->writer);
201 trns->encoding = LEGACY_NATIVE;
203 /* Output the variable table if requested. */
205 dump_table (trns, fh);
207 /* Put the transformation in the queue. */
208 add_transformation (ds, print_trns_proc, print_trns_free, trns);
210 pool_destroy (tmp_pool);
216 print_trns_free (trns);
221 static bool parse_string_argument (struct lexer *, struct print_trns *,
222 int record, int *column);
223 static bool parse_variable_argument (struct lexer *, const struct dictionary *,
225 struct pool *tmp_pool,
226 int *record, int *column,
229 /* Parses all the variable and string specifications on a single
230 PRINT, PRINT EJECT, or WRITE command into the prt structure.
233 parse_specs (struct lexer *lexer, struct pool *tmp_pool, struct print_trns *trns,
234 struct dictionary *dict,
235 enum which_formats which_formats)
240 if (lex_token (lexer) == '.')
242 trns->record_cnt = 1;
246 while (lex_token (lexer) != '.')
250 if (!parse_record_placement (lexer, &record, &column))
253 if (lex_token (lexer) == T_STRING)
254 ok = parse_string_argument (lexer, trns, record, &column);
256 ok = parse_variable_argument (lexer, dict, trns, tmp_pool, &record, &column,
261 lex_match (lexer, ',');
264 if (trns->record_cnt != 0 && trns->record_cnt != record)
265 msg (SW, _("Output calls for %d records but %zu specified on RECORDS "
267 record, trns->record_cnt);
268 trns->record_cnt = record;
273 /* Parses a string argument to the PRINT commands. Returns success. */
275 parse_string_argument (struct lexer *lexer, struct print_trns *trns, int record, int *column)
277 struct prt_out_spec *spec = pool_alloc (trns->pool, sizeof *spec);
278 spec->type = PRT_LITERAL;
279 spec->record = record;
280 spec->first_column = *column;
281 ds_init_string (&spec->string, lex_tokstr (lexer));
282 ds_register_pool (&spec->string, trns->pool);
285 /* Parse the included column range. */
286 if (lex_is_number (lexer))
288 int first_column, last_column;
289 bool range_specified;
291 if (!parse_column_range (lexer, 1,
292 &first_column, &last_column, &range_specified))
295 spec->first_column = first_column;
297 ds_set_length (&spec->string, last_column - first_column + 1, ' ');
299 *column = spec->first_column + ds_length (&spec->string);
301 ll_push_tail (&trns->specs, &spec->ll);
305 /* Parses a variable argument to the PRINT commands by passing it off
306 to fixed_parse_compatible() or fixed_parse_fortran() as appropriate.
309 parse_variable_argument (struct lexer *lexer, const struct dictionary *dict,
310 struct print_trns *trns, struct pool *tmp_pool,
311 int *record, int *column,
312 enum which_formats which_formats)
314 const struct variable **vars;
315 size_t var_cnt, var_idx;
316 struct fmt_spec *formats, *f;
320 if (!parse_variables_const_pool (lexer, tmp_pool, dict,
321 &vars, &var_cnt, PV_DUPLICATE))
324 if (lex_is_number (lexer) || lex_token (lexer) == '(')
326 if (!parse_var_placements (lexer, tmp_pool, var_cnt, false,
327 &formats, &format_cnt))
335 lex_match (lexer, '*');
337 formats = pool_nmalloc (tmp_pool, var_cnt, sizeof *formats);
338 format_cnt = var_cnt;
339 for (i = 0; i < var_cnt; i++)
341 const struct variable *v = vars[i];
342 formats[i] = (which_formats == PRINT
343 ? *var_get_print_format (v)
344 : *var_get_write_format (v));
346 add_space = which_formats == PRINT;
350 for (f = formats; f < &formats[format_cnt]; f++)
351 if (!execute_placement_format (f, record, column))
353 const struct variable *var;
354 struct prt_out_spec *spec;
356 var = vars[var_idx++];
357 if (!fmt_check_width_compat (f, var_get_width (var)))
360 spec = pool_alloc (trns->pool, sizeof *spec);
361 spec->type = PRT_VAR;
362 spec->record = *record;
363 spec->first_column = *column;
366 spec->add_space = add_space;
368 /* This is a completely bizarre twist for compatibility:
369 WRITE outputs the system-missing value as a field
370 filled with spaces, instead of using the normal format
371 that usually contains a period. */
372 spec->sysmis_as_spaces = (which_formats == WRITE
373 && var_is_numeric (var)
374 && (fmt_get_category (spec->format.type)
377 ll_push_tail (&trns->specs, &spec->ll);
379 *column += f->w + add_space;
381 assert (var_idx == var_cnt);
386 /* Prints the table produced by the TABLE subcommand to the listing
389 dump_table (struct print_trns *trns, const struct file_handle *fh)
391 struct prt_out_spec *spec;
396 spec_cnt = ll_count (&trns->specs);
397 t = tab_create (4, spec_cnt + 1, 0);
398 tab_columns (t, TAB_COL_DOWN, 1);
399 tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 3, spec_cnt);
400 tab_hline (t, TAL_2, 0, 3, 1);
401 tab_headers (t, 0, 0, 1, 0);
402 tab_text (t, 0, 0, TAB_CENTER | TAT_TITLE, _("Variable"));
403 tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Record"));
404 tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Columns"));
405 tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Format"));
406 tab_dim (t, tab_natural_dimensions);
408 ll_for_each (spec, struct prt_out_spec, ll, &trns->specs)
410 char fmt_string[FMT_STRING_LEN_MAX + 1];
415 tab_text (t, 0, row, TAB_LEFT | TAB_FIX | TAT_PRINTF, "\"%.*s\"",
416 (int) ds_length (&spec->string), ds_data (&spec->string));
417 width = ds_length (&spec->string);
420 tab_text (t, 0, row, TAB_LEFT, var_get_name (spec->var));
421 tab_text (t, 3, row, TAB_LEFT | TAB_FIX,
422 fmt_to_string (&spec->format, fmt_string));
423 width = spec->format.w;
428 tab_text (t, 1, row, TAT_PRINTF, "%d", spec->record);
429 tab_text (t, 2, row, TAT_PRINTF, "%3d-%3d",
430 spec->first_column, spec->first_column + width - 1);
435 tab_title (t, ngettext ("Writing %d record to %s.",
436 "Writing %d records to %s.", trns->record_cnt),
437 trns->record_cnt, fh_get_name (fh));
439 tab_title (t, ngettext ("Writing %d record.",
440 "Writing %d records.", trns->record_cnt),
445 /* Transformation. */
447 static void flush_records (struct print_trns *, int target_record,
448 bool *eject, int *record);
450 /* Performs the transformation inside print_trns T on case C. */
452 print_trns_proc (void *trns_, struct ccase *c, casenumber case_num UNUSED)
454 struct print_trns *trns = trns_;
455 bool eject = trns->eject;
456 char encoded_space = legacy_from_native (trns->encoding, ' ');
458 struct prt_out_spec *spec;
460 ds_clear (&trns->line);
461 ds_put_char (&trns->line, ' ');
462 ll_for_each (spec, struct prt_out_spec, ll, &trns->specs)
464 flush_records (trns, spec->record, &eject, &record);
466 ds_set_length (&trns->line, spec->first_column, encoded_space);
467 if (spec->type == PRT_VAR)
469 const union value *input = case_data (c, spec->var);
470 char *output = ds_put_uninit (&trns->line, spec->format.w);
471 if (!spec->sysmis_as_spaces || input->f != SYSMIS)
472 data_out_legacy (input, trns->encoding, &spec->format, output);
474 memset (output, encoded_space, spec->format.w);
476 ds_put_char (&trns->line, encoded_space);
480 ds_put_substring (&trns->line, ds_ss (&spec->string));
481 if (trns->encoding != LEGACY_NATIVE)
483 size_t length = ds_length (&spec->string);
484 char *data = ss_data (ds_tail (&trns->line, length));
485 legacy_recode (LEGACY_NATIVE, data,
486 trns->encoding, data, length);
490 flush_records (trns, trns->record_cnt + 1, &eject, &record);
492 if (trns->writer != NULL && dfm_write_error (trns->writer))
494 return TRNS_CONTINUE;
497 /* Advance from *RECORD to TARGET_RECORD, outputting records
498 along the way. If *EJECT is true, then the first record
499 output is preceded by ejecting the page (and *EJECT is set
502 flush_records (struct print_trns *trns, int target_record,
503 bool *eject, int *record)
505 for (; target_record > *record; (*record)++)
507 char *line = ds_cstr (&trns->line);
508 size_t length = ds_length (&trns->line);
514 if (trns->writer == NULL)
519 line[0] = legacy_from_native (trns->encoding, leader);
521 if (trns->writer == NULL)
522 tab_output_text (TAB_FIX | TAT_NOWRAP, &line[1]);
525 if (!trns->include_prefix)
530 dfm_put_record (trns->writer, line, length);
533 ds_truncate (&trns->line, 1);
539 print_trns_free (void *trns_)
541 struct print_trns *trns = trns_;
544 if (trns->writer != NULL)
545 ok = dfm_close_writer (trns->writer);
546 pool_destroy (trns->pool);