1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2009, 2010, 2012 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 "libpspp/assertion.h"
24 #include "libpspp/compiler.h"
25 #include "libpspp/message.h"
26 #include "libpspp/string-map.h"
27 #include "output/text-item.h"
28 #include "output/driver-provider.h"
29 #include "output/options.h"
30 #include "output/message-item.h"
31 #include "output/table-item.h"
32 #include "output/table-provider.h"
35 #include "gl/xalloc.h"
36 #include "gl/xvasprintf.h"
39 #define _(msgid) gettext (msgid)
41 /* Comma-separated value output driver. */
44 struct output_driver driver;
46 char *separator; /* Field separator (usually comma or tab). */
47 int quote; /* Quote character (usually ' or ") or 0. */
48 char *quote_set; /* Characters that force quoting. */
49 bool captions; /* Print table captions? */
51 char *file_name; /* Output file name. */
52 char *command_name; /* Current command. */
53 FILE *file; /* Output file. */
54 int n_items; /* Number of items output so far. */
57 static const struct output_driver_class csv_driver_class;
59 static struct csv_driver *
60 csv_driver_cast (struct output_driver *driver)
62 assert (driver->class == &csv_driver_class);
63 return UP_CAST (driver, struct csv_driver, driver);
66 static struct driver_option *
67 opt (struct output_driver *d, struct string_map *options, const char *key,
68 const char *default_value)
70 return driver_option_get (d, options, key, default_value);
73 static struct output_driver *
74 csv_create (const char *file_name, enum settings_output_devices device_type,
77 struct output_driver *d;
78 struct csv_driver *csv;
81 csv = xzalloc (sizeof *csv);
83 output_driver_init (&csv->driver, &csv_driver_class, file_name, device_type);
85 csv->separator = parse_string (opt (d, o, "separator", ","));
86 quote = parse_string (opt (d, o, "quote", "\""));
87 csv->quote = quote[0];
89 csv->quote_set = xasprintf ("\n\r\t%s%c", csv->separator, csv->quote);
90 csv->captions = parse_boolean (opt (d, o, "captions", "true"));
91 csv->file_name = xstrdup (file_name);
92 csv->file = fn_open (csv->file_name, "w");
95 if (csv->file == NULL)
97 error (0, errno, _("error opening output file `%s'"), csv->file_name);
98 output_driver_destroy (d);
106 csv_destroy (struct output_driver *driver)
108 struct csv_driver *csv = csv_driver_cast (driver);
110 if (csv->file != NULL)
111 fn_close (csv->file_name, csv->file);
113 free (csv->separator);
114 free (csv->quote_set);
115 free (csv->file_name);
120 csv_flush (struct output_driver *driver)
122 struct csv_driver *csv = csv_driver_cast (driver);
123 if (csv->file != NULL)
128 csv_output_field (struct csv_driver *csv, const char *field)
130 while (*field == ' ')
133 if (csv->quote && field[strcspn (field, csv->quote_set)])
137 putc (csv->quote, csv->file);
138 for (p = field; *p != '\0'; p++)
140 if (*p == csv->quote)
141 putc (csv->quote, csv->file);
142 putc (*p, csv->file);
144 putc (csv->quote, csv->file);
147 fputs (field, csv->file);
151 csv_output_field_format (struct csv_driver *csv, const char *format, ...)
152 PRINTF_FORMAT (2, 3);
155 csv_output_field_format (struct csv_driver *csv, const char *format, ...)
160 va_start (args, format);
161 s = xvasprintf (format, args);
164 csv_output_field (csv, s);
169 csv_put_separator (struct csv_driver *csv)
171 if (csv->n_items++ > 0)
172 putc ('\n', csv->file);
176 csv_submit (struct output_driver *driver,
177 const struct output_item *output_item)
179 struct csv_driver *csv = csv_driver_cast (driver);
181 output_driver_track_current_command (output_item, &csv->command_name);
183 if (is_table_item (output_item))
185 struct table_item *table_item = to_table_item (output_item);
186 const char *caption = table_item_get_caption (table_item);
187 const struct table *t = table_item_get_table (table_item);
190 csv_put_separator (csv);
192 if (csv->captions && caption != NULL)
194 csv_output_field_format (csv, "Table: %s", caption);
195 putc ('\n', csv->file);
198 for (y = 0; y < table_nr (t); y++)
200 for (x = 0; x < table_nc (t); x++)
202 struct table_cell cell;
204 table_get_cell (t, x, y, &cell);
207 fputs (csv->separator, csv->file);
209 if (x != cell.d[TABLE_HORZ][0] || y != cell.d[TABLE_VERT][0])
210 csv_output_field (csv, "");
212 csv_output_field (csv, cell.contents);
214 table_cell_free (&cell);
216 putc ('\n', csv->file);
219 else if (is_text_item (output_item))
221 const struct text_item *text_item = to_text_item (output_item);
222 enum text_item_type type = text_item_get_type (text_item);
223 const char *text = text_item_get_text (text_item);
225 if (type == TEXT_ITEM_COMMAND_OPEN || type == TEXT_ITEM_COMMAND_CLOSE
226 || type == TEXT_ITEM_SYNTAX)
229 csv_put_separator (csv);
232 case TEXT_ITEM_TITLE:
233 csv_output_field_format (csv, "Title: %s", text);
236 case TEXT_ITEM_SUBTITLE:
237 csv_output_field_format (csv, "Subtitle: %s", text);
241 csv_output_field (csv, text);
244 putc ('\n', csv->file);
246 else if (is_message_item (output_item))
248 const struct message_item *message_item = to_message_item (output_item);
249 const struct msg *msg = message_item_get_msg (message_item);
250 char *s = msg_to_string (msg, csv->command_name);
251 csv_put_separator (csv);
252 csv_output_field (csv, s);
254 putc ('\n', csv->file);
258 struct output_driver_factory csv_driver_factory = { "csv", "-", csv_create };
260 static const struct output_driver_class csv_driver_class =