work on PRINT encoding
[pspp] / src / output / csv.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2010 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 <errno.h>
20 #include <stdlib.h>
21
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"
33
34 #include "gl/error.h"
35 #include "gl/xalloc.h"
36 #include "gl/xvasprintf.h"
37
38 #include "gettext.h"
39 #define _(msgid) gettext (msgid)
40
41 /* Comma-separated value output driver. */
42 struct csv_driver
43   {
44     struct output_driver driver;
45
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? */
50
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. */
55   };
56
57 static const struct output_driver_class csv_driver_class;
58
59 static struct csv_driver *
60 csv_driver_cast (struct output_driver *driver)
61 {
62   assert (driver->class == &csv_driver_class);
63   return UP_CAST (driver, struct csv_driver, driver);
64 }
65
66 static struct driver_option *
67 opt (struct output_driver *d, struct string_map *options, const char *key,
68      const char *default_value)
69 {
70   return driver_option_get (d, options, key, default_value);
71 }
72
73 static struct output_driver *
74 csv_create (const char *file_name, enum settings_output_devices device_type,
75             struct string_map *o)
76 {
77   struct output_driver *d;
78   struct csv_driver *csv;
79   char *quote;
80
81   csv = xzalloc (sizeof *csv);
82   d = &csv->driver;
83   output_driver_init (&csv->driver, &csv_driver_class, file_name, device_type);
84
85   csv->separator = parse_string (opt (d, o, "separator", ","));
86   quote = parse_string (opt (d, o, "quote", "\""));
87   csv->quote = quote[0];
88   free (quote);
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");
93   csv->n_items = 0;
94
95   if (csv->file == NULL)
96     {
97       error (0, errno, _("error opening output file `%s'"), csv->file_name);
98       output_driver_destroy (d);
99       return NULL;
100     }
101
102   return d;
103 }
104
105 static void
106 csv_destroy (struct output_driver *driver)
107 {
108   struct csv_driver *csv = csv_driver_cast (driver);
109
110   if (csv->file != NULL)
111     fn_close (csv->file_name, csv->file);
112
113   free (csv->separator);
114   free (csv->quote_set);
115   free (csv->file_name);
116   free (csv);
117 }
118
119 static void
120 csv_flush (struct output_driver *driver)
121 {
122   struct csv_driver *csv = csv_driver_cast (driver);
123   if (csv->file != NULL)
124     fflush (csv->file);
125 }
126
127 static void
128 csv_output_field (struct csv_driver *csv, const char *field)
129 {
130   while (*field == ' ')
131     field++;
132
133   if (csv->quote && field[strcspn (field, csv->quote_set)])
134     {
135       const char *p;
136
137       putc (csv->quote, csv->file);
138       for (p = field; *p != '\0'; p++)
139         {
140           if (*p == csv->quote)
141             putc (csv->quote, csv->file);
142           putc (*p, csv->file);
143         }
144       putc (csv->quote, csv->file);
145     }
146   else
147     fputs (field, csv->file);
148 }
149
150 static void
151 csv_output_field_format (struct csv_driver *csv, const char *format, ...)
152   PRINTF_FORMAT (2, 3);
153
154 static void
155 csv_output_field_format (struct csv_driver *csv, const char *format, ...)
156 {
157   va_list args;
158   char *s;
159
160   va_start (args, format);
161   s = xvasprintf (format, args);
162   va_end (args);
163
164   csv_output_field (csv, s);
165   free (s);
166 }
167
168 static void
169 csv_put_separator (struct csv_driver *csv)
170 {
171   if (csv->n_items++ > 0)
172     putc ('\n', csv->file);
173 }
174
175 static void
176 csv_submit (struct output_driver *driver,
177             const struct output_item *output_item)
178 {
179   struct csv_driver *csv = csv_driver_cast (driver);
180
181   output_driver_track_current_command (output_item, &csv->command_name);
182
183   if (is_table_item (output_item))
184     {
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);
188       int x, y;
189
190       csv_put_separator (csv);
191
192       if (csv->captions && caption != NULL)
193         {
194           csv_output_field_format (csv, "Table: %s", caption);
195           putc ('\n', csv->file);
196         }
197
198       for (y = 0; y < table_nr (t); y++)
199         {
200           for (x = 0; x < table_nc (t); x++)
201             {
202               struct table_cell cell;
203
204               table_get_cell (t, x, y, &cell);
205
206               if (x > 0)
207                 fputs (csv->separator, csv->file);
208
209               if (x != cell.d[TABLE_HORZ][0] || y != cell.d[TABLE_VERT][0])
210                 csv_output_field (csv, "");
211               else
212                 csv_output_field (csv, cell.contents);
213
214               table_cell_free (&cell);
215             }
216           putc ('\n', csv->file);
217         }
218     }
219   else if (is_text_item (output_item))
220     {
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);
224
225       if (type == TEXT_ITEM_COMMAND_OPEN || type == TEXT_ITEM_COMMAND_CLOSE
226           || type == TEXT_ITEM_SYNTAX)
227         return;
228
229       csv_put_separator (csv);
230       switch (type)
231         {
232         case TEXT_ITEM_TITLE:
233           csv_output_field_format (csv, "Title: %s", text);
234           break;
235
236         case TEXT_ITEM_SUBTITLE:
237           csv_output_field_format (csv, "Subtitle: %s", text);
238           break;
239
240         default:
241           csv_output_field (csv, text);
242           break;
243         }
244       putc ('\n', csv->file);
245     }
246   else if (is_message_item (output_item))
247     {
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);
253       free (s);
254       putc ('\n', csv->file);
255     }
256 }
257
258 struct output_driver_factory csv_driver_factory = { "csv", csv_create };
259
260 static const struct output_driver_class csv_driver_class =
261   {
262     "csv",
263     csv_destroy,
264     csv_submit,
265     csv_flush,
266   };