1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2019 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/driver-provider.h"
23 #include "data/file-handle-def.h"
24 #include "libpspp/cast.h"
25 #include "output/group-item.h"
26 #include "output/page-setup-item.h"
27 #include "output/table-item.h"
28 #include "output/text-item.h"
29 #include "output/spv/spv-writer.h"
31 #include "gl/xalloc.h"
34 #define _(msgid) gettext (msgid)
38 struct output_driver driver;
39 struct spv_writer *writer;
40 struct file_handle *handle;
43 static const struct output_driver_class spv_driver_class;
45 static struct spv_driver *
46 spv_driver_cast (struct output_driver *driver)
48 assert (driver->class == &spv_driver_class);
49 return UP_CAST (driver, struct spv_driver, driver);
52 static struct output_driver *
53 spv_create (struct file_handle *fh, enum settings_output_devices device_type,
54 struct string_map *o UNUSED)
56 struct output_driver *d;
57 struct spv_driver *spv;
59 spv = xzalloc (sizeof *spv);
62 output_driver_init (&spv->driver, &spv_driver_class, fh_get_file_name (fh),
65 char *error = spv_writer_open (fh_get_file_name (fh), &spv->writer);
66 if (spv->writer == NULL)
68 msg (ME, "%s", error);
76 output_driver_destroy (d);
81 spv_destroy (struct output_driver *driver)
83 struct spv_driver *spv = spv_driver_cast (driver);
85 char *error = spv_writer_close (spv->writer);
87 msg (ME, "%s", error);
88 fh_unref (spv->handle);
93 spv_submit (struct output_driver *driver,
94 const struct output_item *output_item)
96 struct spv_driver *spv = spv_driver_cast (driver);
98 if (is_group_open_item (output_item))
99 spv_writer_open_heading (spv->writer,
100 to_group_open_item (output_item)->command_name,
101 to_group_open_item (output_item)->command_name);
102 else if (is_group_close_item (output_item))
103 spv_writer_close_heading (spv->writer);
104 else if (is_table_item (output_item))
106 const struct table_item *table_item = to_table_item (output_item);
108 spv_writer_put_table (spv->writer, table_item->pt);
110 else if (is_text_item (output_item))
111 spv_writer_put_text (spv->writer, to_text_item (output_item));
112 else if (is_page_setup_item (output_item))
113 spv_writer_set_page_setup (spv->writer,
114 to_page_setup_item (output_item)->page_setup);
117 struct output_driver_factory spv_driver_factory =
118 { "spv", "pspp.spv", spv_create };
120 static const struct output_driver_class spv_driver_class =