1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2009, 2010, 2012, 2013, 2014 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/>. */
22 #include "data/file-name.h"
23 #include "data/file-handle-def.h"
24 #include "libpspp/assertion.h"
25 #include "libpspp/compiler.h"
26 #include "libpspp/message.h"
27 #include "libpspp/str.h"
28 #include "libpspp/string-map.h"
29 #include "output/text-item.h"
30 #include "output/driver-provider.h"
31 #include "output/options.h"
32 #include "output/message-item.h"
33 #include "output/table-item.h"
34 #include "output/table-provider.h"
36 #include "gl/minmax.h"
37 #include "gl/xalloc.h"
38 #include "gl/xvasprintf.h"
41 #define _(msgid) gettext (msgid)
43 /* Comma-separated value output driver. */
46 struct output_driver driver;
48 char *separator; /* Field separator (usually comma or tab). */
49 int quote; /* Quote character (usually ' or ") or 0. */
50 char *quote_set; /* Characters that force quoting. */
51 bool titles; /* Print table titles? */
52 bool captions; /* Print table captions? */
54 struct file_handle *handle;
55 FILE *file; /* Output file. */
56 int n_items; /* Number of items output so far. */
59 static const struct output_driver_class csv_driver_class;
61 static struct csv_driver *
62 csv_driver_cast (struct output_driver *driver)
64 assert (driver->class == &csv_driver_class);
65 return UP_CAST (driver, struct csv_driver, driver);
68 static struct driver_option *
69 opt (struct output_driver *d, struct string_map *options, const char *key,
70 const char *default_value)
72 return driver_option_get (d, options, key, default_value);
75 static struct output_driver *
76 csv_create (struct file_handle *fh, enum settings_output_devices device_type,
79 struct output_driver *d;
80 struct csv_driver *csv;
83 csv = xzalloc (sizeof *csv);
85 output_driver_init (&csv->driver, &csv_driver_class, fh_get_file_name (fh), device_type);
87 csv->separator = parse_string (opt (d, o, "separator", ","));
88 quote = parse_string (opt (d, o, "quote", "\""));
89 csv->quote = quote[0];
91 csv->quote_set = xasprintf ("\n\r\t%s%c", csv->separator, csv->quote);
92 csv->titles = parse_boolean (opt (d, o, "titles", "true"));
93 csv->captions = parse_boolean (opt (d, o, "captions", "true"));
95 csv->file = fn_open (fh, "w");
98 if (csv->file == NULL)
100 msg_error (errno, _("error opening output file `%s'"), fh_get_file_name (fh));
101 output_driver_destroy (d);
109 csv_destroy (struct output_driver *driver)
111 struct csv_driver *csv = csv_driver_cast (driver);
113 if (csv->file != NULL)
114 fn_close (csv->handle, csv->file);
116 free (csv->separator);
117 free (csv->quote_set);
118 fh_unref (csv->handle);
123 csv_flush (struct output_driver *driver)
125 struct csv_driver *csv = csv_driver_cast (driver);
126 if (csv->file != NULL)
131 csv_output_field (struct csv_driver *csv, const char *field)
133 while (*field == ' ')
136 if (csv->quote && field[strcspn (field, csv->quote_set)])
140 putc (csv->quote, csv->file);
141 for (p = field; *p != '\0'; p++)
143 if (*p == csv->quote)
144 putc (csv->quote, csv->file);
145 putc (*p, csv->file);
147 putc (csv->quote, csv->file);
150 fputs (field, csv->file);
154 csv_format_footnotes (const struct footnote **f, size_t n, struct string *s)
156 for (size_t i = 0; i < n; i++)
157 ds_put_format (s, "[%s]", f[i]->marker);
161 csv_output_table_item_text (struct csv_driver *csv,
162 const struct table_item_text *text,
168 struct string s = DS_EMPTY_INITIALIZER;
169 ds_put_format (&s, "%s: %s", leader, text->content);
170 csv_format_footnotes (text->footnotes, text->n_footnotes, &s);
171 csv_output_field (csv, ds_cstr (&s));
173 putc ('\n', csv->file);
177 csv_put_separator (struct csv_driver *csv)
179 if (csv->n_items++ > 0)
180 putc ('\n', csv->file);
184 csv_submit (struct output_driver *driver,
185 const struct output_item *output_item)
187 struct csv_driver *csv = csv_driver_cast (driver);
189 if (is_table_item (output_item))
191 struct table_item *table_item = to_table_item (output_item);
192 const struct table *t = table_item_get_table (table_item);
195 csv_put_separator (csv);
198 csv_output_table_item_text (csv, table_item_get_title (table_item),
201 for (y = 0; y < table_nr (t); y++)
203 for (x = 0; x < table_nc (t); x++)
205 struct table_cell cell;
207 table_get_cell (t, x, y, &cell);
210 fputs (csv->separator, csv->file);
212 if (x != cell.d[TABLE_HORZ][0] || y != cell.d[TABLE_VERT][0])
213 csv_output_field (csv, "");
214 else if (cell.n_contents == 1
215 && cell.contents[0].text != NULL
216 && cell.contents[0].n_footnotes == 0)
217 csv_output_field (csv, cell.contents[0].text);
224 for (i = 0; i < cell.n_contents; i++)
226 const struct cell_contents *c = &cell.contents[i];
229 ds_put_cstr (&s, "\n\n");
231 ds_put_cstr (&s, c->text);
232 csv_format_footnotes (c->footnotes, c->n_footnotes, &s);
234 csv_output_field (csv, ds_cstr (&s));
238 table_cell_free (&cell);
240 putc ('\n', csv->file);
244 csv_output_table_item_text (csv, table_item_get_caption (table_item),
247 const struct footnote **f;
248 size_t n_footnotes = table_collect_footnotes (table_item, &f);
251 fputs ("\nFootnotes:\n", csv->file);
253 for (size_t i = 0; i < n_footnotes; i++)
256 csv_output_field (csv, f[i]->marker);
257 fputs (csv->separator, csv->file);
258 csv_output_field (csv, f[i]->content);
259 putc ('\n', csv->file);
265 else if (is_text_item (output_item))
267 const struct text_item *text_item = to_text_item (output_item);
268 enum text_item_type type = text_item_get_type (text_item);
269 const char *text = text_item_get_text (text_item);
271 if (type == TEXT_ITEM_SYNTAX || type == TEXT_ITEM_PAGE_TITLE)
274 csv_put_separator (csv);
275 csv_output_field (csv, text);
276 putc ('\n', csv->file);
278 else if (is_message_item (output_item))
280 const struct message_item *message_item = to_message_item (output_item);
281 char *s = msg_to_string (message_item_get_msg (message_item));
282 csv_put_separator (csv);
283 csv_output_field (csv, s);
285 putc ('\n', csv->file);
289 struct output_driver_factory csv_driver_factory = { "csv", "-", csv_create };
291 static const struct output_driver_class csv_driver_class =