1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011, 2013, 2014, 2016 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"
41 #include "gl/minmax.h"
42 #include "gl/xalloc.h"
45 #define _(msgid) gettext (msgid)
48 static const bool debugging = true;
52 #define TAB_JOIN (1u << TAB_FIRST_AVAILABLE)
55 struct tab_joined_cell
57 int d[TABLE_N_AXES][2]; /* Table region, same as struct table_cell. */
61 const struct footnote **footnotes;
63 const struct area_style *style;
66 static const struct table_class tab_table_class;
68 /* Creates and returns a new table with NC columns and NR rows and initially no
69 header rows or columns. The table's cells are initially empty. */
71 tab_create (int nc, int nr)
75 t = pool_create_container (struct tab_table, container);
76 table_init (&t->table, &tab_table_class);
77 table_set_nc (&t->table, nc);
78 table_set_nr (&t->table, nr);
81 t->cc = pool_calloc (t->container, nr * nc, sizeof *t->cc);
82 t->ct = pool_calloc (t->container, nr * nc, sizeof *t->ct);
84 t->rh = pool_nmalloc (t->container, nc, nr + 1);
85 memset (t->rh, TAL_0, nc * (nr + 1));
87 t->rv = pool_nmalloc (t->container, nr, nc + 1);
88 memset (t->rv, TAL_0, nr * (nc + 1));
90 memset (t->styles, 0, sizeof t->styles);
91 memset (t->rule_colors, 0, sizeof t->rule_colors);
97 /* Sets the number of header rows on each side of TABLE to L on the
98 left, R on the right, T on the top, B on the bottom. Header rows
99 are repeated when a table is broken across multiple columns or
102 tab_headers (struct tab_table *table, int l, int r, int t, int b)
104 table_set_hl (&table->table, l);
105 table_set_hr (&table->table, r);
106 table_set_ht (&table->table, t);
107 table_set_hb (&table->table, b);
112 /* Draws a vertical line to the left of cells at horizontal position X
113 from Y1 to Y2 inclusive in style STYLE, if style is not -1. */
115 tab_vline (struct tab_table *t, int style, int x, int y1, int y2)
119 if (x < 0 || x > tab_nc (t)
120 || y1 < 0 || y1 >= tab_nr (t)
121 || y2 < 0 || y2 >= tab_nr (t))
123 printf (_("bad vline: x=%d y=(%d,%d) in table size (%d,%d)\n"),
124 x, y1, y2, tab_nc (t), tab_nr (t));
130 assert (x <= tab_nc (t));
133 assert (y2 <= tab_nr (t));
138 for (y = y1; y <= y2; y++)
139 t->rv[x + (t->cf + 1) * y] = style;
143 /* Draws a horizontal line above cells at vertical position Y from X1
144 to X2 inclusive in style STYLE, if style is not -1. */
146 tab_hline (struct tab_table *t, int style, int x1, int x2, int y)
150 if (y < 0 || y > tab_nr (t)
151 || x1 < 0 || x1 >= tab_nc (t)
152 || x2 < 0 || x2 >= tab_nc (t))
154 printf (_("bad hline: x=(%d,%d) y=%d in table size (%d,%d)\n"),
155 x1, x2, y, tab_nc (t), tab_nr (t));
161 assert (y <= tab_nr (t));
164 assert (x2 < tab_nc (t));
169 for (x = x1; x <= x2; x++)
170 t->rh[x + t->cf * y] = style;
174 /* Draws a box around cells (X1,Y1)-(X2,Y2) inclusive with horizontal
175 lines of style F_H and vertical lines of style F_V. Fills the
176 interior of the box with horizontal lines of style I_H and vertical
177 lines of style I_V. Any of the line styles may be -1 to avoid
178 drawing those lines. This is distinct from 0, which draws a null
181 tab_box (struct tab_table *t, int f_h, int f_v, int i_h, int i_v,
182 int x1, int y1, int x2, int y2)
186 if (x1 < 0 || x1 >= tab_nc (t)
187 || x2 < 0 || x2 >= tab_nc (t)
188 || y1 < 0 || y1 >= tab_nr (t)
189 || y2 < 0 || y2 >= tab_nr (t))
191 printf (_("bad box: (%d,%d)-(%d,%d) in table size (%d,%d)\n"),
192 x1, y1, x2, y2, tab_nc (t), tab_nr (t));
201 assert (x2 < tab_nc (t));
202 assert (y2 < tab_nr (t));
207 for (x = x1; x <= x2; x++)
209 t->rh[x + t->cf * y1] = f_h;
210 t->rh[x + t->cf * (y2 + 1)] = f_h;
216 for (y = y1; y <= y2; y++)
218 t->rv[x1 + (t->cf + 1) * y] = f_v;
219 t->rv[(x2 + 1) + (t->cf + 1) * y] = f_v;
227 for (y = y1 + 1; y <= y2; y++)
231 for (x = x1; x <= x2; x++)
232 t->rh[x + t->cf * y] = i_h;
239 for (x = x1 + 1; x <= x2; x++)
243 for (y = y1; y <= y2; y++)
244 t->rv[x + (t->cf + 1) * y] = i_v;
252 do_tab_text (struct tab_table *table, int c, int r, unsigned opt, char *text)
256 assert (c < tab_nc (table));
257 assert (r < tab_nr (table));
261 if (c < 0 || r < 0 || c >= tab_nc (table) || r >= tab_nr (table))
263 printf ("tab_text(): bad cell (%d,%d) in table size (%d,%d)\n",
264 c, r, tab_nc (table), tab_nr (table));
269 table->cc[c + r * table->cf] = text;
270 table->ct[c + r * table->cf] = opt;
273 /* Sets cell (C,R) in TABLE, with options OPT, to have text value
276 tab_text (struct tab_table *table, int c, int r, unsigned opt,
279 do_tab_text (table, c, r, opt, pool_strdup (table->container, text));
282 /* Sets cell (C,R) in TABLE, with options OPT, to have text value
283 FORMAT, which is formatted as if passed to printf. */
285 tab_text_format (struct tab_table *table, int c, int r, unsigned opt,
286 const char *format, ...)
290 va_start (args, format);
291 do_tab_text (table, c, r, opt,
292 pool_vasprintf (table->container, format, args));
296 static struct tab_joined_cell *
297 add_joined_cell (struct tab_table *table, int x1, int y1, int x2, int y2,
300 struct tab_joined_cell *j;
306 assert (y2 < tab_nr (table));
307 assert (x2 < tab_nc (table));
311 if (x1 < 0 || x1 >= tab_nc (table)
312 || y1 < 0 || y1 >= tab_nr (table)
313 || x2 < x1 || x2 >= tab_nc (table)
314 || y2 < y1 || y2 >= tab_nr (table))
316 printf ("tab_joint_text(): bad cell "
317 "(%d,%d)-(%d,%d) in table size (%d,%d)\n",
318 x1, y1, x2, y2, tab_nc (table), tab_nr (table));
323 tab_box (table, -1, -1, TAL_0, TAL_0, x1, y1, x2, y2);
325 j = pool_alloc (table->container, sizeof *j);
326 j->d[TABLE_HORZ][0] = x1;
327 j->d[TABLE_VERT][0] = y1;
328 j->d[TABLE_HORZ][1] = ++x2;
329 j->d[TABLE_VERT][1] = ++y2;
335 void **cc = &table->cc[x1 + y1 * table->cf];
336 unsigned short *ct = &table->ct[x1 + y1 * table->cf];
337 const int ofs = table->cf - (x2 - x1);
341 for (y = y1; y < y2; y++)
345 for (x = x1; x < x2; x++)
348 *ct++ = opt | TAB_JOIN;
359 /* Joins cells (X1,X2)-(Y1,Y2) inclusive in TABLE, and sets them with
360 options OPT to have text value TEXT. */
362 tab_joint_text (struct tab_table *table, int x1, int y1, int x2, int y2,
363 unsigned opt, const char *text)
365 char *s = pool_strdup (table->container, text);
366 if (x1 == x2 && y1 == y2)
367 do_tab_text (table, x1, y1, opt, s);
369 add_joined_cell (table, x1, y1, x2, y2, opt)->text = s;
373 tab_create_footnote (struct tab_table *table, size_t idx, const char *content,
374 const char *marker, struct area_style *style)
376 struct footnote *f = pool_alloc (table->container, sizeof *f);
378 f->content = pool_strdup (table->container, content);
379 f->marker = pool_strdup (table->container, marker);
385 tab_add_footnote (struct tab_table *table, int x, int y,
386 const struct footnote *f)
388 int index = x + y * table->cf;
389 unsigned short opt = table->ct[index];
390 struct tab_joined_cell *j;
393 j = table->cc[index];
396 char *text = table->cc[index];
398 j = add_joined_cell (table, x, y, x, y, table->ct[index]);
399 j->text = text ? text : xstrdup ("");
402 j->footnotes = pool_realloc (table->container, j->footnotes,
403 (j->n_footnotes + 1) * sizeof *j->footnotes);
405 j->footnotes[j->n_footnotes++] = f;
409 tab_add_style (struct tab_table *table, int x, int y,
410 const struct area_style *style)
412 int index = x + y * table->cf;
413 unsigned short opt = table->ct[index];
414 struct tab_joined_cell *j;
417 j = table->cc[index];
420 char *text = table->cc[index];
422 j = add_joined_cell (table, x, y, x, y, table->ct[index]);
423 j->text = text ? text : xstrdup ("");
430 tab_cell_is_empty (const struct tab_table *table, int c, int r)
432 return table->cc[c + r * table->cf] == NULL;
437 /* Writes STRING to the output. OPTIONS may be any valid combination of TAB_*
440 This function is obsolete. Please do not add new uses of it. Instead, use
441 a text_item (see output/text-item.h). */
443 tab_output_text (int options UNUSED, const char *string)
445 text_item_submit (text_item_create (TEXT_ITEM_LOG, string));
448 /* Same as tab_output_text(), but FORMAT is passed through printf-like
449 formatting before output. */
451 tab_output_text_format (int options, const char *format, ...)
456 va_start (args, format);
457 text = xvasprintf (format, args);
460 tab_output_text (options, text);
465 /* Table class implementation. */
468 tab_destroy (struct table *table)
470 struct tab_table *t = tab_cast (table);
471 pool_destroy (t->container);
475 tab_get_cell (const struct table *table, int x, int y,
476 struct table_cell *cell)
478 const struct tab_table *t = tab_cast (table);
479 int index = x + y * t->cf;
480 unsigned short opt = t->ct[index];
481 const void *cc = t->cc[index];
484 cell->n_footnotes = 0;
485 cell->destructor = NULL;
487 int style_idx = (opt & TAB_STYLE_MASK) >> TAB_STYLE_SHIFT;
488 const struct area_style *style = t->styles[style_idx];
493 static const struct area_style styles[3][3] = {
494 #define S(H,V) [H][V] = { AREA_STYLE_INITIALIZER__, \
495 .cell_style.halign = H, \
496 .cell_style.valign = V }
497 S(TABLE_HALIGN_LEFT, TABLE_VALIGN_TOP),
498 S(TABLE_HALIGN_LEFT, TABLE_VALIGN_CENTER),
499 S(TABLE_HALIGN_LEFT, TABLE_VALIGN_BOTTOM),
500 S(TABLE_HALIGN_CENTER, TABLE_VALIGN_TOP),
501 S(TABLE_HALIGN_CENTER, TABLE_VALIGN_CENTER),
502 S(TABLE_HALIGN_CENTER, TABLE_VALIGN_BOTTOM),
503 S(TABLE_HALIGN_RIGHT, TABLE_VALIGN_TOP),
504 S(TABLE_HALIGN_RIGHT, TABLE_VALIGN_CENTER),
505 S(TABLE_HALIGN_RIGHT, TABLE_VALIGN_BOTTOM),
508 enum table_halign halign
509 = ((opt & TAB_HALIGN) == TAB_LEFT ? TABLE_HALIGN_LEFT
510 : (opt & TAB_HALIGN) == TAB_CENTER ? TABLE_HALIGN_CENTER
511 : TABLE_HALIGN_RIGHT);
512 enum table_valign valign
513 = ((opt & TAB_VALIGN) == TAB_TOP ? TABLE_VALIGN_TOP
514 : (opt & TAB_VALIGN) == TAB_MIDDLE ? TABLE_VALIGN_CENTER
515 : TABLE_VALIGN_BOTTOM);
517 cell->style = &styles[halign][valign];
522 const struct tab_joined_cell *jc = cc;
523 cell->text = jc->text;
525 cell->footnotes = jc->footnotes;
526 cell->n_footnotes = jc->n_footnotes;
528 cell->d[TABLE_HORZ][0] = jc->d[TABLE_HORZ][0];
529 cell->d[TABLE_HORZ][1] = jc->d[TABLE_HORZ][1];
530 cell->d[TABLE_VERT][0] = jc->d[TABLE_VERT][0];
531 cell->d[TABLE_VERT][1] = jc->d[TABLE_VERT][1];
534 cell->style = jc->style;
538 cell->d[TABLE_HORZ][0] = x;
539 cell->d[TABLE_HORZ][1] = x + 1;
540 cell->d[TABLE_VERT][0] = y;
541 cell->d[TABLE_VERT][1] = y + 1;
542 cell->text = CONST_CAST (char *, cc ? cc : "");
547 tab_get_rule (const struct table *table, enum table_axis axis, int x, int y,
548 struct cell_color *color)
550 const struct tab_table *t = tab_cast (table);
551 uint8_t raw = (axis == TABLE_VERT
552 ? t->rh[x + t->cf * y] : t->rv[x + (t->cf + 1) * y]);
553 struct cell_color *p = t->rule_colors[(raw & TAB_RULE_STYLE_MASK)
554 >> TAB_RULE_STYLE_SHIFT];
557 return (raw & TAB_RULE_TYPE_MASK) >> TAB_RULE_TYPE_SHIFT;
560 static const struct table_class tab_table_class = {
567 tab_cast (const struct table *table)
569 assert (table->klass == &tab_table_class);
570 return UP_CAST (table, struct tab_table, table);