7e22cf0c1bac7469904b4b545415683c407d3f53
[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       free (error);
66       goto error;
67     }
68
69   return d;
70
71 error:
72   output_driver_destroy (d);
73   return NULL;
74 }
75
76 static void
77 spv_destroy (struct output_driver *driver)
78 {
79   struct spv_driver *spv = spv_driver_cast (driver);
80
81   char *error = spv_writer_close (spv->writer);
82   if (error)
83     msg (ME, "%s", error);
84   fh_unref (spv->handle);
85   free (spv);
86 }
87
88 static void
89 spv_submit (struct output_driver *driver,
90             const struct output_item *output_item)
91 {
92   struct spv_driver *spv = spv_driver_cast (driver);
93
94   spv_writer_write (spv->writer, output_item);
95 }
96
97 static void
98 spv_setup (struct output_driver *driver,
99            const struct page_setup *ps)
100 {
101   struct spv_driver *spv = spv_driver_cast (driver);
102
103   spv_writer_set_page_setup (spv->writer, ps);
104 }
105
106 struct output_driver_factory spv_driver_factory =
107   { "spv", "pspp.spv", spv_create };
108
109 static const struct output_driver_class spv_driver_class =
110   {
111     .name = "spv",
112     .destroy = spv_destroy,
113     .submit = spv_submit,
114     .setup = spv_setup,
115     .handles_show = true,
116     .handles_groups = true,
117   };