Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / output / spv-driver.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2019 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/driver-provider.h"
20
21 #include <stdlib.h>
22
23 #include "data/file-handle-def.h"
24 #include "libpspp/cast.h"
25 #include "output/cairo-chart.h"
26 #include "output/output-item.h"
27 #include "output/spv/spv-writer.h"
28
29 #include "gl/xalloc.h"
30
31 #include "gettext.h"
32 #define _(msgid) gettext (msgid)
33
34 struct spv_driver
35   {
36     struct output_driver driver;
37     struct spv_writer *writer;
38     struct file_handle *handle;
39   };
40
41 static const struct output_driver_class spv_driver_class;
42
43 static struct spv_driver *
44 spv_driver_cast (struct output_driver *driver)
45 {
46   assert (driver->class == &spv_driver_class);
47   return UP_CAST (driver, struct spv_driver, driver);
48 }
49
50 static struct output_driver *
51 spv_create (struct file_handle *fh, enum settings_output_devices device_type,
52             struct string_map *o UNUSED)
53 {
54   struct output_driver *d;
55   struct spv_driver *spv = XZALLOC (struct spv_driver);
56   d = &spv->driver;
57   spv->handle = fh;
58   output_driver_init (&spv->driver, &spv_driver_class, fh_get_file_name (fh),
59                       device_type);
60
61   char *error = spv_writer_open (fh_get_file_name (fh), &spv->writer);
62   if (spv->writer == NULL)
63     {
64       msg (ME, "%s", error);
65       goto error;
66     }
67
68   return d;
69
70 error:
71   output_driver_destroy (d);
72   return NULL;
73 }
74
75 static void
76 spv_destroy (struct output_driver *driver)
77 {
78   struct spv_driver *spv = spv_driver_cast (driver);
79
80   char *error = spv_writer_close (spv->writer);
81   if (error)
82     msg (ME, "%s", error);
83   fh_unref (spv->handle);
84   free (spv);
85 }
86
87 static void
88 spv_submit (struct output_driver *driver,
89             const struct output_item *output_item)
90 {
91   struct spv_driver *spv = spv_driver_cast (driver);
92
93   spv_writer_write (spv->writer, output_item);
94 }
95
96 static void
97 spv_setup (struct output_driver *driver,
98            const struct page_setup *ps)
99 {
100   struct spv_driver *spv = spv_driver_cast (driver);
101
102   spv_writer_set_page_setup (spv->writer, ps);
103 }
104
105 struct output_driver_factory spv_driver_factory =
106   { "spv", "pspp.spv", spv_create };
107
108 static const struct output_driver_class spv_driver_class =
109   {
110     .name = "spv",
111     .destroy = spv_destroy,
112     .submit = spv_submit,
113     .setup = spv_setup,
114     .handles_show = true,
115     .handles_groups = true,
116   };