1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009, 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/>. */
19 #include "output/tab.h"
26 #include "data/data-out.h"
27 #include "data/format.h"
28 #include "data/settings.h"
29 #include "data/value.h"
30 #include "data/variable.h"
31 #include "libpspp/assertion.h"
32 #include "libpspp/compiler.h"
33 #include "libpspp/i18n.h"
34 #include "libpspp/misc.h"
35 #include "libpspp/pool.h"
36 #include "output/driver.h"
37 #include "output/table-item.h"
38 #include "output/table-provider.h"
39 #include "output/text-item.h"
42 #include "gl/minmax.h"
43 #include "gl/xalloc.h"
46 #define _(msgid) gettext (msgid)
48 /* Set in the options field of cells that */
49 #define TAB_JOIN (1u << TAB_FIRST_AVAILABLE)
52 struct tab_joined_cell
54 int d[TABLE_N_AXES][2]; /* Table region, same as struct table_cell. */
58 static const struct table_class tab_table_class;
60 /* Creates and returns a new table with NC columns and NR rows and initially no
61 header rows or columns. The table's cells are initially empty. */
63 tab_create (int nc, int nr)
67 t = pool_create_container (struct tab_table, container);
68 table_init (&t->table, &tab_table_class);
69 table_set_nc (&t->table, nc);
70 table_set_nr (&t->table, nr);
74 t->cc = pool_calloc (t->container, nr * nc, sizeof *t->cc);
75 t->ct = pool_malloc (t->container, nr * nc);
76 memset (t->ct, 0, nc * nr);
78 t->rh = pool_nmalloc (t->container, nc, nr + 1);
79 memset (t->rh, 0, nc * (nr + 1));
81 t->rv = pool_nmalloc (t->container, nr, nc + 1);
82 memset (t->rv, TAL_GAP, nr * (nc + 1));
84 t->col_ofs = t->row_ofs = 0;
89 /* Sets the width and height of a table, in columns and rows,
90 respectively. Use only to reduce the size of a table, since it
91 does not change the amount of allocated memory.
93 This function is obsolete. Please do not add new uses of it. (Instead, use
94 table_select() or one of its helper functions.) */
96 tab_resize (struct tab_table *t, int nc, int nr)
100 assert (nc + t->col_ofs <= t->cf);
101 table_set_nc (&t->table, nc + t->col_ofs);
105 assert (nr + t->row_ofs <= tab_nr (t));
106 table_set_nr (&t->table, nr + t->row_ofs);
110 /* Changes either or both dimensions of a table and reallocates memory as
113 This function is obsolete. Please do not add new uses of it. (Instead, use
114 table_paste() or one of its helper functions to paste multiple tables
115 together into a larger one.) */
117 tab_realloc (struct tab_table *t, int nc, int nr)
124 tab_offset (t, 0, 0);
131 assert (nc == tab_nc (t));
135 int mr1 = MIN (nr, tab_nr (t));
136 int mc1 = MIN (nc, tab_nc (t));
139 unsigned char *new_ct;
142 new_cc = pool_calloc (t->container, nr * nc, sizeof *new_cc);
143 new_ct = pool_malloc (t->container, nr * nc);
144 for (r = 0; r < mr1; r++)
146 memcpy (&new_cc[r * nc], &t->cc[r * tab_nc (t)], mc1 * sizeof *t->cc);
147 memcpy (&new_ct[r * nc], &t->ct[r * tab_nc (t)], mc1);
148 memset (&new_ct[r * nc + tab_nc (t)], 0, nc - tab_nc (t));
150 pool_free (t->container, t->cc);
151 pool_free (t->container, t->ct);
156 else if (nr != tab_nr (t))
158 t->cc = pool_nrealloc (t->container, t->cc, nr * nc, sizeof *t->cc);
159 t->ct = pool_realloc (t->container, t->ct, nr * nc);
161 t->rh = pool_nrealloc (t->container, t->rh, nc, nr + 1);
162 t->rv = pool_nrealloc (t->container, t->rv, nr, nc + 1);
166 memset (&t->rh[nc * (tab_nr (t) + 1)], TAL_0, (nr - tab_nr (t)) * nc);
167 memset (&t->rv[(nc + 1) * tab_nr (t)], TAL_GAP,
168 (nr - tab_nr (t)) * (nc + 1));
172 memset (&t->ct[nc * tab_nr (t)], 0, nc * (nr - tab_nr (t)));
173 memset (&t->cc[nc * tab_nr (t)], 0, nc * (nr - tab_nr (t)) * sizeof *t->cc);
175 table_set_nr (&t->table, nr);
176 table_set_nc (&t->table, nc);
179 tab_offset (t, co, ro);
182 /* Sets the number of header rows on each side of TABLE to L on the
183 left, R on the right, T on the top, B on the bottom. Header rows
184 are repeated when a table is broken across multiple columns or
187 tab_headers (struct tab_table *table, int l, int r, int t, int b)
189 table_set_hl (&table->table, l);
190 table_set_hr (&table->table, r);
191 table_set_ht (&table->table, t);
192 table_set_hb (&table->table, b);
197 /* Draws a vertical line to the left of cells at horizontal position X
198 from Y1 to Y2 inclusive in style STYLE, if style is not -1. */
200 tab_vline (struct tab_table *t, int style, int x, int y1, int y2)
203 if (x + t->col_ofs < 0 || x + t->col_ofs > tab_nc (t)
204 || y1 + t->row_ofs < 0 || y1 + t->row_ofs >= tab_nr (t)
205 || y2 + t->row_ofs < 0 || y2 + t->row_ofs >= tab_nr (t))
207 printf (_("bad vline: x=%d+%d=%d y=(%d+%d=%d,%d+%d=%d) in "
208 "table size (%d,%d)\n"),
209 x, t->col_ofs, x + t->col_ofs,
210 y1, t->row_ofs, y1 + t->row_ofs,
211 y2, t->row_ofs, y2 + t->row_ofs,
212 tab_nc (t), tab_nr (t));
222 assert (x <= tab_nc (t));
225 assert (y2 <= tab_nr (t));
230 for (y = y1; y <= y2; y++)
231 t->rv[x + (t->cf + 1) * y] = style;
235 /* Draws a horizontal line above cells at vertical position Y from X1
236 to X2 inclusive in style STYLE, if style is not -1. */
238 tab_hline (struct tab_table * t, int style, int x1, int x2, int y)
241 if (y + t->row_ofs < 0 || y + t->row_ofs > tab_nr (t)
242 || x1 + t->col_ofs < 0 || x1 + t->col_ofs >= tab_nc (t)
243 || x2 + t->col_ofs < 0 || x2 + t->col_ofs >= tab_nc (t))
245 printf (_("bad hline: x=(%d+%d=%d,%d+%d=%d) y=%d+%d=%d in "
246 "table size (%d,%d)\n"),
247 x1, t->col_ofs, x1 + t->col_ofs,
248 x2, t->col_ofs, x2 + t->col_ofs,
249 y, t->row_ofs, y + t->row_ofs,
250 tab_nc (t), tab_nr (t));
260 assert (y <= tab_nr (t));
263 assert (x2 < tab_nc (t));
268 for (x = x1; x <= x2; x++)
269 t->rh[x + t->cf * y] = style;
273 /* Draws a box around cells (X1,Y1)-(X2,Y2) inclusive with horizontal
274 lines of style F_H and vertical lines of style F_V. Fills the
275 interior of the box with horizontal lines of style I_H and vertical
276 lines of style I_V. Any of the line styles may be -1 to avoid
277 drawing those lines. This is distinct from 0, which draws a null
280 tab_box (struct tab_table *t, int f_h, int f_v, int i_h, int i_v,
281 int x1, int y1, int x2, int y2)
284 if (x1 + t->col_ofs < 0 || x1 + t->col_ofs >= tab_nc (t)
285 || x2 + t->col_ofs < 0 || x2 + t->col_ofs >= tab_nc (t)
286 || y1 + t->row_ofs < 0 || y1 + t->row_ofs >= tab_nr (t)
287 || y2 + t->row_ofs < 0 || y2 + t->row_ofs >= tab_nr (t))
289 printf (_("bad box: (%d+%d=%d,%d+%d=%d)-(%d+%d=%d,%d+%d=%d) "
290 "in table size (%d,%d)\n"),
291 x1, t->col_ofs, x1 + t->col_ofs,
292 y1, t->row_ofs, y1 + t->row_ofs,
293 x2, t->col_ofs, x2 + t->col_ofs,
294 y2, t->row_ofs, y2 + t->row_ofs,
295 tab_nc (t), tab_nr (t));
309 assert (x2 < tab_nc (t));
310 assert (y2 < tab_nr (t));
315 for (x = x1; x <= x2; x++)
317 t->rh[x + t->cf * y1] = f_h;
318 t->rh[x + t->cf * (y2 + 1)] = f_h;
324 for (y = y1; y <= y2; y++)
326 t->rv[x1 + (t->cf + 1) * y] = f_v;
327 t->rv[(x2 + 1) + (t->cf + 1) * y] = f_v;
335 for (y = y1 + 1; y <= y2; y++)
339 for (x = x1; x <= x2; x++)
340 t->rh[x + t->cf * y] = i_h;
347 for (x = x1 + 1; x <= x2; x++)
351 for (y = y1; y <= y2; y++)
352 t->rv[x + (t->cf + 1) * y] = i_v;
359 /* Sets cell (C,R) in TABLE, with options OPT, to have a value taken
360 from V, displayed with format spec F. */
362 tab_value (struct tab_table *table, int c, int r, unsigned char opt,
363 const union value *v, const struct variable *var,
364 const struct fmt_spec *f)
369 if (c + table->col_ofs < 0 || r + table->row_ofs < 0
370 || c + table->col_ofs >= tab_nc (table)
371 || r + table->row_ofs >= tab_nr (table))
373 printf ("tab_value(): bad cell (%d+%d=%d,%d+%d=%d) in table size "
375 c, table->col_ofs, c + table->col_ofs,
376 r, table->row_ofs, r + table->row_ofs,
377 tab_nc (table), tab_nr (table));
382 contents = data_out_stretchy (v, var_get_encoding (var),
383 f != NULL ? f : var_get_print_format (var),
386 table->cc[c + r * table->cf] = contents;
387 table->ct[c + r * table->cf] = opt;
390 /* Sets cell (C,R) in TABLE, with options OPT, to have value VAL
391 with NDEC decimal places. */
393 tab_fixed (struct tab_table *table, int c, int r, unsigned char opt,
394 double val, int w, int d)
397 union value double_value;
401 assert (c < tab_nc (table));
403 assert (r < tab_nr (table));
405 f = fmt_for_output (FMT_F, w, d);
408 if (c + table->col_ofs < 0 || r + table->row_ofs < 0
409 || c + table->col_ofs >= tab_nc (table)
410 || r + table->row_ofs >= tab_nr (table))
412 printf ("tab_fixed(): bad cell (%d+%d=%d,%d+%d=%d) in table size "
414 c, table->col_ofs, c + table->col_ofs,
415 r, table->row_ofs, r + table->row_ofs,
416 tab_nc (table), tab_nr (table));
421 double_value.f = val;
422 s = data_out_stretchy (&double_value, C_ENCODING, &f, table->container);
424 table->cc[c + r * table->cf] = s + strspn (s, " ");
425 table->ct[c + r * table->cf] = opt;
428 /* Sets cell (C,R) in TABLE, with options OPT, to have value VAL as
430 If FMT is null, then the default print format will be used.
433 tab_double (struct tab_table *table, int c, int r, unsigned char opt,
434 double val, const struct fmt_spec *fmt)
436 union value double_value ;
440 assert (c < tab_nc (table));
442 assert (r < tab_nr (table));
445 fmt = settings_get_format ();
447 fmt_check_output (fmt);
450 if (c + table->col_ofs < 0 || r + table->row_ofs < 0
451 || c + table->col_ofs >= tab_nc (table)
452 || r + table->row_ofs >= tab_nr (table))
454 printf ("tab_double(): bad cell (%d+%d=%d,%d+%d=%d) in table size "
456 c, table->col_ofs, c + table->col_ofs,
457 r, table->row_ofs, r + table->row_ofs,
458 tab_nc (table), tab_nr (table));
463 double_value.f = val;
464 s = data_out_stretchy (&double_value, C_ENCODING, fmt, table->container);
465 table->cc[c + r * table->cf] = s + strspn (s, " ");
466 table->ct[c + r * table->cf] = opt;
471 do_tab_text (struct tab_table *table, int c, int r, unsigned opt, char *text)
475 assert (c < tab_nc (table));
476 assert (r < tab_nr (table));
479 if (c + table->col_ofs < 0 || r + table->row_ofs < 0
480 || c + table->col_ofs >= tab_nc (table)
481 || r + table->row_ofs >= tab_nr (table))
483 printf ("tab_text(): bad cell (%d+%d=%d,%d+%d=%d) in table size "
485 c, table->col_ofs, c + table->col_ofs,
486 r, table->row_ofs, r + table->row_ofs,
487 tab_nc (table), tab_nr (table));
492 table->cc[c + r * table->cf] = text;
493 table->ct[c + r * table->cf] = opt;
496 /* Sets cell (C,R) in TABLE, with options OPT, to have text value
499 tab_text (struct tab_table *table, int c, int r, unsigned opt,
502 do_tab_text (table, c, r, opt, pool_strdup (table->container, text));
505 /* Sets cell (C,R) in TABLE, with options OPT, to have text value
506 FORMAT, which is formatted as if passed to printf. */
508 tab_text_format (struct tab_table *table, int c, int r, unsigned opt,
509 const char *format, ...)
513 va_start (args, format);
514 do_tab_text (table, c, r, opt,
515 pool_vasprintf (table->container, format, args));
520 do_tab_joint_text (struct tab_table *table, int x1, int y1, int x2, int y2,
521 unsigned opt, char *text)
523 struct tab_joined_cell *j;
525 assert (x1 + table->col_ofs >= 0);
526 assert (y1 + table->row_ofs >= 0);
529 assert (y2 + table->row_ofs < tab_nr (table));
530 assert (x2 + table->col_ofs < tab_nc (table));
533 if (x1 + table->col_ofs < 0 || x1 + table->col_ofs >= tab_nc (table)
534 || y1 + table->row_ofs < 0 || y1 + table->row_ofs >= tab_nr (table)
535 || x2 < x1 || x2 + table->col_ofs >= tab_nc (table)
536 || y2 < y2 || y2 + table->row_ofs >= tab_nr (table))
538 printf ("tab_joint_text(): bad cell "
539 "(%d+%d=%d,%d+%d=%d)-(%d+%d=%d,%d+%d=%d) in table size (%d,%d)\n",
540 x1, table->col_ofs, x1 + table->col_ofs,
541 y1, table->row_ofs, y1 + table->row_ofs,
542 x2, table->col_ofs, x2 + table->col_ofs,
543 y2, table->row_ofs, y2 + table->row_ofs,
544 tab_nc (table), tab_nr (table));
549 tab_box (table, -1, -1, TAL_0, TAL_0, x1, y1, x2, y2);
551 j = pool_alloc (table->container, sizeof *j);
552 j->d[TABLE_HORZ][0] = x1 + table->col_ofs;
553 j->d[TABLE_VERT][0] = y1 + table->row_ofs;
554 j->d[TABLE_HORZ][1] = ++x2 + table->col_ofs;
555 j->d[TABLE_VERT][1] = ++y2 + table->row_ofs;
561 void **cc = &table->cc[x1 + y1 * table->cf];
562 unsigned char *ct = &table->ct[x1 + y1 * table->cf];
563 const int ofs = table->cf - (x2 - x1);
567 for (y = y1; y < y2; y++)
571 for (x = x1; x < x2; x++)
583 /* Joins cells (X1,X2)-(Y1,Y2) inclusive in TABLE, and sets them with
584 options OPT to have text value TEXT. */
586 tab_joint_text (struct tab_table *table, int x1, int y1, int x2, int y2,
587 unsigned opt, const char *text)
589 do_tab_joint_text (table, x1, y1, x2, y2, opt,
590 pool_strdup (table->container, text));
593 /* Joins cells (X1,X2)-(Y1,Y2) inclusive in TABLE, and sets them
594 with options OPT to have text value FORMAT, which is formatted
595 as if passed to printf. */
597 tab_joint_text_format (struct tab_table *table, int x1, int y1, int x2, int y2,
598 unsigned opt, const char *format, ...)
602 va_start (args, format);
603 do_tab_joint_text (table, x1, y1, x2, y2, opt,
604 pool_vasprintf (table->container, format, args));
609 tab_cell_is_empty (const struct tab_table *table, int c, int r)
611 return table->cc[c + r * table->cf] == NULL;
616 /* Set the title of table T to TITLE, which is formatted as if
617 passed to printf(). */
619 tab_title (struct tab_table *t, const char *title, ...)
624 va_start (args, title);
625 t->title = xvasprintf (title, args);
629 /* Easy, type-safe way to submit a tab table to som. */
631 tab_submit (struct tab_table *t)
633 table_item_submit (table_item_create (&t->table, t->title));
638 /* Set table row and column offsets for all functions that affect
641 tab_offset (struct tab_table *t, int col, int row)
646 if (row < -1 || row > tab_nr (t))
648 printf ("tab_offset(): row=%d in %d-row table\n", row, tab_nr (t));
651 if (col < -1 || col > tab_nc (t))
653 printf ("tab_offset(): col=%d in %d-column table\n", col, tab_nc (t));
659 diff += (row - t->row_ofs) * t->cf, t->row_ofs = row;
661 diff += (col - t->col_ofs), t->col_ofs = col;
667 /* Increment the row offset by one. If the table is too small,
668 increase its size. */
670 tab_next_row (struct tab_table *t)
674 if (++t->row_ofs >= tab_nr (t))
675 tab_realloc (t, -1, tab_nr (t) * 4 / 3);
678 /* Writes STRING to the output. OPTIONS may be any valid combination of TAB_*
681 This function is obsolete. Please do not add new uses of it. Instead, use
682 a text_item (see output/text-item.h). */
684 tab_output_text (int options, const char *string)
686 enum text_item_type type = (options & TAB_EMPH ? TEXT_ITEM_SUBHEAD
687 : options & TAB_FIX ? TEXT_ITEM_MONOSPACE
688 : TEXT_ITEM_PARAGRAPH);
689 text_item_submit (text_item_create (type, string));
692 /* Same as tab_output_text(), but FORMAT is passed through printf-like
693 formatting before output. */
695 tab_output_text_format (int options, const char *format, ...)
700 va_start (args, format);
701 text = xvasprintf (format, args);
704 tab_output_text (options, text);
709 /* Table class implementation. */
712 tab_destroy (struct table *table)
714 struct tab_table *t = tab_cast (table);
717 pool_destroy (t->container);
721 tab_get_cell (const struct table *table, int x, int y, struct table_cell *cell)
723 const struct tab_table *t = tab_cast (table);
724 int index = x + y * t->cf;
725 unsigned char opt = t->ct[index];
726 const void *content = t->cc[index];
731 const struct tab_joined_cell *jc = content;
732 cell->d[TABLE_HORZ][0] = jc->d[TABLE_HORZ][0];
733 cell->d[TABLE_HORZ][1] = jc->d[TABLE_HORZ][1];
734 cell->d[TABLE_VERT][0] = jc->d[TABLE_VERT][0];
735 cell->d[TABLE_VERT][1] = jc->d[TABLE_VERT][1];
736 cell->contents = jc->contents;
740 cell->d[TABLE_HORZ][0] = x;
741 cell->d[TABLE_HORZ][1] = x + 1;
742 cell->d[TABLE_VERT][0] = y;
743 cell->d[TABLE_VERT][1] = y + 1;
744 cell->contents = content != NULL ? content : "";
746 cell->destructor = NULL;
750 tab_get_rule (const struct table *table, enum table_axis axis, int x, int y)
752 const struct tab_table *t = tab_cast (table);
753 return (axis == TABLE_VERT
754 ? t->rh[x + t->cf * y]
755 : t->rv[x + (t->cf + 1) * y]);
758 static const struct table_class tab_table_class =
768 tab_cast (const struct table *table)
770 assert (table->class == &tab_table_class);
771 return UP_CAST (table, struct tab_table, table);