1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2009, 2010, 2011, 2012 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 "libpspp/assertion.h"
26 #include "libpspp/compiler.h"
27 #include "libpspp/string-map.h"
28 #include "output/ascii.h"
29 #include "output/driver.h"
30 #include "output/tab.h"
31 #include "output/table-item.h"
34 #include "gl/progname.h"
35 #include "gl/xalloc.h"
36 #include "gl/xvasprintf.h"
38 /* --transpose: Transpose the table before outputting? */
41 /* --emphasis: ASCII driver emphasis option. */
42 static char *emphasis;
44 /* --box: ASCII driver box option. */
47 /* --draw-mode: special ASCII driver test mode. */
50 /* ASCII driver, for ASCII driver test mode. */
51 static struct output_driver *ascii_driver;
53 static const char *parse_options (int argc, char **argv);
54 static void usage (void) NO_RETURN;
55 static struct table *read_table (FILE *);
56 static void draw (FILE *);
59 main (int argc, char **argv)
61 const char *input_file_name;
64 set_program_name (argv[0]);
65 input_file_name = parse_options (argc, argv);
67 if (!strcmp (input_file_name, "-"))
71 input = fopen (input_file_name, "r");
73 error (1, errno, "%s: open failed", input_file_name);
80 table = read_table (input);
83 table = table_transpose (table);
85 table_item_submit (table_item_create (table, NULL));
99 configure_drivers (int width, int length)
101 struct string_map options, tmp;
102 struct output_driver *driver;
104 string_map_init (&options);
105 string_map_insert (&options, "format", "txt");
106 string_map_insert (&options, "output-file", "-");
107 string_map_insert_nocopy (&options, xstrdup ("width"),
108 xasprintf ("%d", width));
109 string_map_insert_nocopy (&options, xstrdup ("length"),
110 xasprintf ("%d", length));
111 if (emphasis != NULL)
112 string_map_insert (&options, "emphasis", emphasis);
114 string_map_insert (&options, "box", box);
116 /* Render to stdout. */
117 string_map_clone (&tmp, &options);
118 ascii_driver = driver = output_driver_create (&tmp);
121 output_driver_register (driver);
122 string_map_destroy (&tmp);
126 string_map_destroy (&options);
130 /* Render to render.txt. */
131 string_map_replace (&options, "output-file", "render.txt");
132 driver = output_driver_create (&options);
135 output_driver_register (driver);
138 /* Render to render.pdf. */
139 string_map_insert (&options, "output-file", "render.pdf");
140 string_map_insert (&options, "top-margin", "0");
141 string_map_insert (&options, "bottom-margin", "0");
142 string_map_insert (&options, "left-margin", "0");
143 string_map_insert (&options, "right-margin", "0");
144 string_map_insert_nocopy (&options, xstrdup ("paper-size"),
145 xasprintf ("%dx%dpt", width * 5, length * 8));
146 driver = output_driver_create (&options);
149 output_driver_register (driver);
152 string_map_insert (&options, "output-file", "render.odt");
153 driver = output_driver_create (&options);
156 output_driver_register (driver);
158 string_map_destroy (&options);
162 parse_options (int argc, char **argv)
170 OPT_WIDTH = UCHAR_MAX + 1,
176 static const struct option options[] =
178 {"width", required_argument, NULL, OPT_WIDTH},
179 {"length", required_argument, NULL, OPT_LENGTH},
180 {"transpose", no_argument, &transpose, 1},
181 {"emphasis", required_argument, NULL, OPT_EMPHASIS},
182 {"box", required_argument, NULL, OPT_BOX},
183 {"draw-mode", no_argument, &draw_mode, 1},
184 {"help", no_argument, NULL, OPT_HELP},
188 int c = getopt_long (argc, argv, "", options, NULL);
195 width = atoi (optarg);
199 length = atoi (optarg);
226 configure_drivers (width, length);
228 if (optind + 1 != argc)
229 error (1, 0, "exactly one non-option argument required; "
230 "use --help for help");
237 printf ("%s, to test rendering of PSPP tables\n"
238 "usage: %s [OPTIONS] INPUT\n"
240 " --width=WIDTH set page width in characters\n"
241 " --length=LINE set page length in lines\n",
242 program_name, program_name);
247 replace_newlines (char *p)
251 for (q = p; *p != '\0'; )
252 if (*p == '\\' && p[1] == 'n')
262 static struct table *
263 read_table (FILE *stream)
265 struct tab_table *tab;
269 int nr, nc, hl, hr, ht, hb;
272 if (fgets (buffer, sizeof buffer, stream) == NULL
273 || (n_input = sscanf (buffer, "%d %d %d %d %d %d",
274 &input[0], &input[1], &input[2],
275 &input[3], &input[4], &input[5])) < 2)
276 error (1, 0, "syntax error reading row and column count");
280 hl = n_input >= 3 ? input[2] : 0;
281 hr = n_input >= 4 ? input[3] : 0;
282 ht = n_input >= 5 ? input[4] : 0;
283 hb = n_input >= 6 ? input[5] : 0;
285 tab = tab_create (nc, nr);
286 tab_headers (tab, hl, hr, ht, hb);
287 for (r = 0; r < nr; r++)
288 for (c = 0; c < nc; c++)
289 if (tab_cell_is_empty (tab, c, r))
295 if (fgets (buffer, sizeof buffer, stream) == NULL)
296 error (1, 0, "unexpected end of input reading row %d, column %d",
298 new_line = strchr (buffer, '\n');
299 if (new_line != NULL)
303 if (sscanf (text, "%d*%d", &rs, &cs) == 2)
305 while (*text != ' ' && *text != '\0')
316 while (*text && strchr ("<>^,@", *text))
320 tab_vline (tab, TAL_1, c, r, r + rs - 1);
324 tab_vline (tab, TAL_1, c + cs, r, r + rs - 1);
328 tab_hline (tab, TAL_1, c, c + cs - 1, r);
332 tab_hline (tab, TAL_1, c, c + cs - 1, r + rs);
336 tab_box (tab, TAL_1, TAL_1, -1, -1, c, r,
337 c + cs - 1, r + rs - 1);
344 replace_newlines (text);
346 tab_joint_text (tab, c, r, c + cs - 1, r + rs - 1, 0, text);
349 if (getc (stream) != EOF)
350 error (1, 0, "unread data at end of input");
361 while (fgets (buffer, sizeof buffer, stream))
363 char text[sizeof buffer];
369 if (strchr ("#\r\n", buffer[0]))
372 if (sscanf (buffer, "%d %d %d %[^\n]", &x, &y, &emph, text) == 4)
373 ascii_test_write (ascii_driver, text, x, y, emph ? TAB_EMPH : 0);
374 else if (sscanf (buffer, "set-length %d %d", &y, &length) == 2)
375 ascii_test_set_length (ascii_driver, y, length);
377 error (1, 0, "line %d has invalid format", line);