45add25f346635e8ebc4ae67f94471876b11179d
[pspp] / src / output / table-item.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2011, 2014 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include "output/table-provider.h"
20
21 #include <assert.h>
22
23 #include "libpspp/assertion.h"
24 #include "libpspp/cast.h"
25 #include "output/driver.h"
26 #include "output/output-item-provider.h"
27 #include "output/table-item.h"
28
29 #include "gl/xalloc.h"
30
31 /* Initializes ITEM as a table item for rendering TABLE.  The new table item
32    initially has the specified TITLE, which may be NULL if no title is yet
33    available.  The caller retains ownership of TITLE. */
34 struct table_item *
35 table_item_create (struct table *table, const char *title)
36 {
37   struct table_item *item = xmalloc (sizeof *item);
38   output_item_init (&item->output_item, &table_item_class);
39   item->table = table;
40   item->title = title != NULL ? xstrdup (title) : NULL;
41   return item;
42 }
43
44 /* Returns the table contained by TABLE_ITEM.  The caller must not modify or
45    unref the returned table. */
46 const struct table *
47 table_item_get_table (const struct table_item *table_item)
48 {
49   return table_item->table;
50 }
51
52 /* Returns ITEM's title, which is a null pointer if no title has been
53    set. */
54 const char *
55 table_item_get_title (const struct table_item *item)
56 {
57   return item->title;
58 }
59
60 /* Sets ITEM's title to TITLE, replacing any previous title.  Specify NULL for
61    TITLE to clear any title from ITEM.  The caller retains ownership of TITLE.
62
63    This function may only be used on a table_item that is unshared. */
64 void
65 table_item_set_title (struct table_item *item, const char *title)
66 {
67   assert (!table_item_is_shared (item));
68   free (item->title);
69   item->title = title != NULL ? xstrdup (title) : NULL;
70 }
71
72 /* Submits TABLE_ITEM to the configured output drivers, and transfers ownership
73    to the output subsystem. */
74 void
75 table_item_submit (struct table_item *table_item)
76 {
77   output_submit (&table_item->output_item);
78 }
79 \f
80 static void
81 table_item_destroy (struct output_item *output_item)
82 {
83   struct table_item *item = to_table_item (output_item);
84   free (item->title);
85   table_unref (item->table);
86   free (item);
87 }
88
89 const struct output_item_class table_item_class =
90   {
91     table_item_destroy,
92   };