Merge branch 'master' into import-gui
[pspp] / src / ui / gui / text-data-import-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013  Free Software Foundation
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 "ui/gui/text-data-import-dialog.h"
20
21 #include "page-intro.h"
22 #include "page-sheet-spec.h"
23 #include "page-first-line.h"
24 #include "page-separators.h"
25 #include "page-formats.h"
26
27 #include <errno.h>
28 #include <fcntl.h>
29 #include <gtk-contrib/psppire-sheet.h>
30 #include <gtk/gtk.h>
31 #include <limits.h>
32 #include <stdlib.h>
33 #include <sys/stat.h>
34
35 #include "data/data-in.h"
36 #include "data/data-out.h"
37 #include "data/format-guesser.h"
38 #include "data/value-labels.h"
39 #include "language/data-io/data-parser.h"
40 #include "language/lexer/lexer.h"
41 #include "libpspp/assertion.h"
42 #include "libpspp/i18n.h"
43 #include "libpspp/line-reader.h"
44 #include "libpspp/message.h"
45 #include "ui/gui/checkbox-treeview.h"
46 #include "ui/gui/dialog-common.h"
47 #include "ui/gui/executor.h"
48 #include "ui/gui/helper.h"
49 #include "ui/gui/builder-wrapper.h"
50 #include "ui/gui/psppire-data-window.h"
51 #include "ui/gui/psppire-dialog.h"
52 #include "ui/gui/psppire-encoding-selector.h"
53 #include "ui/gui/psppire-empty-list-store.h"
54 #include "ui/gui/psppire-var-sheet.h"
55 #include "ui/gui/psppire-var-store.h"
56 #include "ui/gui/psppire-scanf.h"
57 #include "ui/syntax-gen.h"
58
59 #include "gl/error.h"
60 #include "gl/intprops.h"
61 #include "gl/xalloc.h"
62
63 #include "gettext.h"
64 #define _(msgid) gettext (msgid)
65 #define N_(msgid) msgid
66
67 struct import_assistant;
68
69 static void apply_dict (const struct dictionary *, struct string *);
70 static char *generate_syntax (const struct import_assistant *);
71
72 static void add_line_number_column (const struct import_assistant *,
73                                     GtkTreeView *);
74
75 /* Pops up the Text Data Import assistant. */
76 void
77 text_data_import_assistant (PsppireDataWindow *dw)
78 {
79   GtkWindow *parent_window = GTK_WINDOW (dw);
80   struct import_assistant *ia = init_assistant (parent_window);
81   struct sheet_spec_page *ssp ;
82
83   if (!init_file (ia, parent_window))
84     {
85       free (ia);
86       return;
87     }
88
89   ssp = ia->sheet_spec;
90
91   if (ia->spreadsheet)
92     {
93       ia->sheet_spec = sheet_spec_page_create (ia);
94     }
95   else
96     {
97       ia->intro = intro_page_create (ia);
98       ia->separators = separators_page_create (ia);
99       ia->first_line = first_line_page_create (ia);
100       printf ("%s:%d %p\n", __FILE__, __LINE__, ia->intro);
101     }
102   ia->formats = formats_page_create (ia);
103
104   gtk_widget_show_all (GTK_WIDGET (ia->asst.assistant));
105
106   ia->asst.main_loop = g_main_loop_new (NULL, false);
107
108   {  
109   /*
110     Instead of this block,
111     A simple     g_main_loop_run (ia->asst.main_loop);  should work here.  But it seems to crash.
112     I have no idea why.
113   */
114     GMainContext *ctx = g_main_loop_get_context (ia->asst.main_loop);
115     ia->asst.loop_done = false;
116     while (! ia->asst.loop_done)
117       {
118         g_main_context_iteration (ctx, TRUE);
119       }
120   }
121   g_main_loop_unref (ia->asst.main_loop);
122
123   switch (ia->asst.response)
124     {
125     case GTK_RESPONSE_APPLY:
126       free (execute_syntax_string (dw, generate_syntax (ia)));
127       break;
128     case PSPPIRE_RESPONSE_PASTE:
129       free (paste_syntax_to_window (generate_syntax (ia)));
130       break;
131     default:
132       break;
133     }
134
135   if (ssp) 
136     {
137       destroy_formats_page (ia);
138       destroy_separators_page (ia);
139     }
140
141   destroy_assistant (ia);
142   destroy_file (ia);
143   free (ia);
144 }
145
146 /* Emits PSPP syntax to S that applies the dictionary attributes
147    (such as missing values and value labels) of the variables in
148    DICT.  */
149 static void
150 apply_dict (const struct dictionary *dict, struct string *s)
151 {
152   size_t var_cnt = dict_get_var_cnt (dict);
153   size_t i;
154
155   for (i = 0; i < var_cnt; i++)
156     {
157       struct variable *var = dict_get_var (dict, i);
158       const char *name = var_get_name (var);
159       enum val_type type = var_get_type (var);
160       int width = var_get_width (var);
161       enum measure measure = var_get_measure (var);
162       enum alignment alignment = var_get_alignment (var);
163       const struct fmt_spec *format = var_get_print_format (var);
164
165       if (var_has_missing_values (var))
166         {
167           const struct missing_values *mv = var_get_missing_values (var);
168           size_t j;
169
170           syntax_gen_pspp (s, "MISSING VALUES %ss (", name);
171           for (j = 0; j < mv_n_values (mv); j++)
172             {
173               if (j)
174                 ds_put_cstr (s, ", ");
175               syntax_gen_value (s, mv_get_value (mv, j), width, format);
176             }
177
178           if (mv_has_range (mv))
179             {
180               double low, high;
181               if (mv_has_value (mv))
182                 ds_put_cstr (s, ", ");
183               mv_get_range (mv, &low, &high);
184               syntax_gen_num_range (s, low, high, format);
185             }
186           ds_put_cstr (s, ").\n");
187         }
188       if (var_has_value_labels (var))
189         {
190           const struct val_labs *vls = var_get_value_labels (var);
191           const struct val_lab **labels = val_labs_sorted (vls);
192           size_t n_labels = val_labs_count (vls);
193           size_t i;
194
195           syntax_gen_pspp (s, "VALUE LABELS %ss", name);
196           for (i = 0; i < n_labels; i++)
197             {
198               const struct val_lab *vl = labels[i];
199               ds_put_cstr (s, "\n  ");
200               syntax_gen_value (s, &vl->value, width, format);
201               ds_put_byte (s, ' ');
202               syntax_gen_string (s, ss_cstr (val_lab_get_escaped_label (vl)));
203             }
204           free (labels);
205           ds_put_cstr (s, ".\n");
206         }
207       if (var_has_label (var))
208         syntax_gen_pspp (s, "VARIABLE LABELS %ss %sq.\n",
209                          name, var_get_label (var));
210       if (measure != var_default_measure (type))
211         syntax_gen_pspp (s, "VARIABLE LEVEL %ss (%ss).\n",
212                          name,
213                          (measure == MEASURE_NOMINAL ? "NOMINAL"
214                           : measure == MEASURE_ORDINAL ? "ORDINAL"
215                           : "SCALE"));
216       if (alignment != var_default_alignment (type))
217         syntax_gen_pspp (s, "VARIABLE ALIGNMENT %ss (%ss).\n",
218                          name,
219                          (alignment == ALIGN_LEFT ? "LEFT"
220                           : alignment == ALIGN_CENTRE ? "CENTER"
221                           : "RIGHT"));
222       if (var_get_display_width (var) != var_default_display_width (width))
223         syntax_gen_pspp (s, "VARIABLE WIDTH %ss (%d).\n",
224                          name, var_get_display_width (var));
225     }
226 }
227
228 /* Generates and returns PSPP syntax to execute the import
229    operation described by IA.  The caller must free the syntax
230    with free(). */
231 static char *
232 generate_syntax (const struct import_assistant *ia)
233 {
234   struct string s = DS_EMPTY_INITIALIZER;
235
236   if (ia->spreadsheet == NULL)
237     {
238       syntax_gen_pspp (&s,
239                        "GET DATA"
240                        "\n  /TYPE=TXT"
241                        "\n  /FILE=%sq\n",
242                        ia->file.file_name);
243       if (ia->file.encoding && strcmp (ia->file.encoding, "Auto"))
244         syntax_gen_pspp (&s, "  /ENCODING=%sq\n", ia->file.encoding);
245
246
247       intro_append_syntax (ia->intro, &s);
248
249
250       ds_put_cstr (&s,
251                    "  /ARRANGEMENT=DELIMITED\n"
252                    "  /DELCASE=LINE\n");
253
254       first_line_append_syntax (ia, &s);
255       separators_append_syntax (ia, &s);
256       formats_append_syntax (ia, &s);
257       apply_dict (ia->dict, &s);
258     }
259   else
260     {
261       return sheet_spec_gen_syntax (ia);
262     }
263
264   return ds_cstr (&s);
265 }
266
267
268
269 static void render_input_cell (GtkTreeViewColumn *tree_column,
270                                GtkCellRenderer *cell,
271                                GtkTreeModel *model, GtkTreeIter *iter,
272                                gpointer ia);
273
274 static gboolean on_query_input_tooltip (GtkWidget *widget, gint wx, gint wy,
275                                         gboolean keyboard_mode UNUSED,
276                                         GtkTooltip *tooltip,
277                                         struct import_assistant *);
278
279
280
281 /* Called to render one of the cells in the fields preview tree
282    view. */
283 static void
284 render_input_cell (GtkTreeViewColumn *tree_column, GtkCellRenderer *cell,
285                    GtkTreeModel *model, GtkTreeIter *iter,
286                    gpointer ia_)
287 {
288   struct import_assistant *ia = ia_;
289   struct substring field;
290   size_t row;
291   gint column;
292
293   column = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
294                                                "column-number"));
295   row = empty_list_store_iter_to_row (iter) + ia->skip_lines;
296   field = ia->columns[column].contents[row];
297   if (field.string != NULL)
298     {
299       GValue text = {0, };
300       g_value_init (&text, G_TYPE_STRING);
301       g_value_take_string (&text, ss_xstrdup (field));
302       g_object_set_property (G_OBJECT (cell), "text", &text);
303       g_value_unset (&text);
304       g_object_set (cell, "background-set", FALSE, (void *) NULL);
305     }
306   else
307     g_object_set (cell,
308                   "text", "",
309                   "background", "red",
310                   "background-set", TRUE,
311                   (void *) NULL);
312 }
313
314 static gboolean
315 get_tooltip_location (GtkWidget *widget, gint wx, gint wy,
316                       const struct import_assistant *ia,
317                       size_t *row, size_t *column);
318
319
320 /* Called to render a tooltip on one of the cells in the fields
321    preview tree view. */
322 static gboolean
323 on_query_input_tooltip (GtkWidget *widget, gint wx, gint wy,
324                         gboolean keyboard_mode UNUSED,
325                         GtkTooltip *tooltip, struct import_assistant *ia)
326 {
327   size_t row, column;
328
329   if (!get_tooltip_location (widget, wx, wy, ia, &row, &column))
330     return FALSE;
331
332   if (ia->columns[column].contents[row].string != NULL)
333     return FALSE;
334
335   gtk_tooltip_set_text (tooltip,
336                         _("This input line has too few separators "
337                           "to fill in this field."));
338   return TRUE;
339 }
340
341
342 /* Parses the contents of the field at (ROW,COLUMN) according to
343    its variable format.  If OUTPUTP is non-null, then *OUTPUTP
344    receives the formatted output for that field (which must be
345    freed with free).  If TOOLTIPP is non-null, then *TOOLTIPP
346    receives a message suitable for use in a tooltip, if one is
347    needed, or a null pointer otherwise.  Returns true if a
348    tooltip message is needed, otherwise false. */
349 static bool
350 parse_field (struct import_assistant *ia,
351              size_t row, size_t column,
352              char **outputp, char **tooltipp)
353 {
354   const struct fmt_spec *in;
355   struct fmt_spec out;
356   char *tooltip;
357   bool ok;
358
359   struct substring field = ia->columns[column].contents[row];
360   struct variable *var = dict_get_var (ia->dict, column);
361   union value val;
362
363   value_init (&val, var_get_width (var));
364   in = var_get_print_format (var);
365   out = fmt_for_output_from_input (in);
366   tooltip = NULL;
367   if (field.string != NULL)
368     {
369       char *error;
370
371       error = data_in (field, "UTF-8", in->type, &val, var_get_width (var),
372                        dict_get_encoding (ia->dict));
373       if (error != NULL)
374         {
375           tooltip = xasprintf (_("Cannot parse field content `%.*s' as "
376                                  "format %s: %s"),
377                                (int) field.length, field.string,
378                                fmt_name (in->type), error);
379           free (error);
380         }
381     }
382   else
383     {
384       tooltip = xstrdup (_("This input line has too few separators "
385                            "to fill in this field."));
386       value_set_missing (&val, var_get_width (var));
387     }
388   if (outputp != NULL)
389     {
390       *outputp = data_out (&val, dict_get_encoding (ia->dict),  &out);
391     }
392   value_destroy (&val, var_get_width (var));
393
394   ok = tooltip == NULL;
395   if (tooltipp != NULL)
396     *tooltipp = tooltip;
397   else
398     free (tooltip);
399   return ok;
400 }
401
402 /* Called to render one of the cells in the data preview tree
403    view. */
404 static void
405 render_output_cell (GtkTreeViewColumn *tree_column,
406                     GtkCellRenderer *cell,
407                     GtkTreeModel *model,
408                     GtkTreeIter *iter,
409                     gpointer ia_)
410 {
411   struct import_assistant *ia = ia_;
412   char *output;
413   GValue gvalue = { 0, };
414   bool ok;
415
416   ok = parse_field (ia,
417                     (empty_list_store_iter_to_row (iter)
418                      + ia->skip_lines),
419                     GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
420                                                         "column-number")),
421                     &output, NULL);
422
423   g_value_init (&gvalue, G_TYPE_STRING);
424   g_value_take_string (&gvalue, output);
425   g_object_set_property (G_OBJECT (cell), "text", &gvalue);
426   g_value_unset (&gvalue);
427
428   if (ok)
429     g_object_set (cell, "background-set", FALSE, (void *) NULL);
430   else
431     g_object_set (cell,
432                   "background", "red",
433                   "background-set", TRUE,
434                   (void *) NULL);
435 }
436
437 /* Called to render a tooltip for one of the cells in the data
438    preview tree view. */
439 static gboolean
440 on_query_output_tooltip (GtkWidget *widget, gint wx, gint wy,
441                          gboolean keyboard_mode UNUSED,
442                          GtkTooltip *tooltip, struct import_assistant *ia)
443 {
444   size_t row, column;
445   char *text;
446
447   if (!get_tooltip_location (widget, wx, wy, ia, &row, &column))
448     return FALSE;
449
450   if (parse_field (ia, row, column, NULL, &text))
451     return FALSE;
452
453   gtk_tooltip_set_text (tooltip, text);
454   free (text);
455   return TRUE;
456 }
457 \f
458 /* Utility functions used by multiple pages of the assistant. */
459
460 static gboolean
461 get_tooltip_location (GtkWidget *widget, gint wx, gint wy,
462                       const struct import_assistant *ia,
463                       size_t *row, size_t *column)
464 {
465   GtkTreeView *tree_view = GTK_TREE_VIEW (widget);
466   gint bx, by;
467   GtkTreePath *path;
468   GtkTreeIter iter;
469   GtkTreeViewColumn *tree_column;
470   GtkTreeModel *tree_model;
471   bool ok;
472
473   /* Check that WIDGET is really visible on the screen before we
474      do anything else.  This is a bug fix for a sticky situation:
475      when text_data_import_assistant() returns, it frees the data
476      necessary to compose the tool tip message, but there may be
477      a tool tip under preparation at that point (even if there is
478      no visible tool tip) that will call back into us a little
479      bit later.  Perhaps the correct solution to this problem is
480      to make the data related to the tool tips part of a GObject
481      that only gets destroyed when all references are released,
482      but this solution appears to be effective too. */
483   if (!gtk_widget_get_mapped (widget))
484     return FALSE;
485
486   gtk_tree_view_convert_widget_to_bin_window_coords (tree_view,
487                                                      wx, wy, &bx, &by);
488   if (!gtk_tree_view_get_path_at_pos (tree_view, bx, by,
489                                       &path, &tree_column, NULL, NULL))
490     return FALSE;
491
492   *column = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_column),
493                                                 "column-number"));
494
495   tree_model = gtk_tree_view_get_model (tree_view);
496   ok = gtk_tree_model_get_iter (tree_model, &iter, path);
497   gtk_tree_path_free (path);
498   if (!ok)
499     return FALSE;
500
501   *row = empty_list_store_iter_to_row (&iter) + ia->skip_lines;
502   return TRUE;
503 }
504
505 void
506 make_tree_view (const struct import_assistant *ia,
507                 size_t first_line,
508                 GtkTreeView **tree_view)
509 {
510   GtkTreeModel *model;
511
512   *tree_view = GTK_TREE_VIEW (gtk_tree_view_new ());
513   model = GTK_TREE_MODEL (psppire_empty_list_store_new (
514                                                         ia->file.line_cnt - first_line));
515   g_object_set_data (G_OBJECT (model), "lines", ia->file.lines + first_line);
516   g_object_set_data (G_OBJECT (model), "first-line",
517                      GINT_TO_POINTER (first_line));
518   gtk_tree_view_set_model (*tree_view, model);
519   g_object_unref (model);
520
521   add_line_number_column (ia, *tree_view);
522 }
523
524 static void
525 render_line_number (GtkTreeViewColumn *tree_column,
526                     GtkCellRenderer *cell,
527                     GtkTreeModel *tree_model,
528                     GtkTreeIter *iter,
529                     gpointer data)
530 {
531   gint row = empty_list_store_iter_to_row (iter);
532   char s[INT_BUFSIZE_BOUND (int)];
533   int first_line;
534
535   first_line = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (tree_model),
536                                                    "first-line"));
537   sprintf (s, "%d", first_line + row);
538   g_object_set (cell, "text", s, NULL);
539 }
540
541 static void
542 add_line_number_column (const struct import_assistant *ia,
543                         GtkTreeView *treeview)
544 {
545   GtkTreeViewColumn *column;
546
547   column = gtk_tree_view_column_new_with_attributes (
548                                                      _("Line"), ia->asst.prop_renderer, (void *) NULL);
549   gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_FIXED);
550   gtk_tree_view_column_set_fixed_width (
551                                         column, get_monospace_width (treeview, ia->asst.prop_renderer, 5));
552   gtk_tree_view_column_set_resizable (column, TRUE);
553   gtk_tree_view_column_set_cell_data_func (column, ia->asst.prop_renderer,
554                                            render_line_number, NULL, NULL);
555   gtk_tree_view_append_column (treeview, column);
556 }
557
558 gint
559 get_monospace_width (GtkTreeView *treeview, GtkCellRenderer *renderer,
560                      size_t char_cnt)
561 {
562   struct string s;
563   gint width;
564
565   ds_init_empty (&s);
566   ds_put_byte_multiple (&s, '0', char_cnt);
567   ds_put_byte (&s, ' ');
568   width = get_string_width (treeview, renderer, ds_cstr (&s));
569   ds_destroy (&s);
570
571   return width;
572 }
573
574 gint
575 get_string_width (GtkTreeView *treeview, GtkCellRenderer *renderer,
576                   const char *string)
577 {
578   gint width;
579   g_object_set (G_OBJECT (renderer), "text", string, (void *) NULL);
580   gtk_cell_renderer_get_size (renderer, GTK_WIDGET (treeview),
581                               NULL, NULL, NULL, &width, NULL);
582   return width;
583 }
584
585 GtkTreeViewColumn *
586 make_data_column (struct import_assistant *ia, GtkTreeView *tree_view,
587                   bool input, gint dict_idx)
588 {
589   struct variable *var = NULL;
590   struct column *column = NULL;
591   size_t char_cnt;
592   gint content_width, header_width;
593   GtkTreeViewColumn *tree_column;
594   char *name;
595
596   if (input)
597     column = &ia->columns[dict_idx];
598   else
599     var = dict_get_var (ia->dict, dict_idx);
600
601   name = escape_underscores (input ? column->name : var_get_name (var));
602   char_cnt = input ? column->width : var_get_print_format (var)->w;
603   content_width = get_monospace_width (tree_view, ia->asst.fixed_renderer,
604                                        char_cnt);
605   header_width = get_string_width (tree_view, ia->asst.prop_renderer,
606                                    name);
607
608   tree_column = gtk_tree_view_column_new ();
609   g_object_set_data (G_OBJECT (tree_column), "column-number",
610                      GINT_TO_POINTER (dict_idx));
611   gtk_tree_view_column_set_title (tree_column, name);
612   gtk_tree_view_column_pack_start (tree_column, ia->asst.fixed_renderer,
613                                    FALSE);
614   gtk_tree_view_column_set_cell_data_func (
615                                            tree_column, ia->asst.fixed_renderer,
616                                            input ? render_input_cell : render_output_cell, ia, NULL);
617   gtk_tree_view_column_set_sizing (tree_column, GTK_TREE_VIEW_COLUMN_FIXED);
618   gtk_tree_view_column_set_fixed_width (tree_column, MAX (content_width,
619                                                           header_width));
620
621   free (name);
622
623   return tree_column;
624 }
625
626 GtkTreeView *
627 create_data_tree_view (bool input, GtkContainer *parent,
628                        struct import_assistant *ia)
629 {
630   GtkTreeView *tree_view;
631   gint i;
632
633   make_tree_view (ia, ia->skip_lines, &tree_view);
634   gtk_tree_selection_set_mode (gtk_tree_view_get_selection (tree_view),
635                                GTK_SELECTION_NONE);
636
637   for (i = 0; i < ia->column_cnt; i++)
638     gtk_tree_view_append_column (tree_view,
639                                  make_data_column (ia, tree_view, input, i));
640
641   g_object_set (G_OBJECT (tree_view), "has-tooltip", TRUE, (void *) NULL);
642   g_signal_connect (tree_view, "query-tooltip",
643                     G_CALLBACK (input ? on_query_input_tooltip
644                                 : on_query_output_tooltip), ia);
645   gtk_tree_view_set_fixed_height_mode (tree_view, true);
646
647   gtk_container_add (parent, GTK_WIDGET (tree_view));
648   gtk_widget_show (GTK_WIDGET (tree_view));
649
650   return tree_view;
651 }
652
653 /* Increments the "watch cursor" level, setting the cursor for
654    the assistant window to a watch face to indicate to the user
655    that the ongoing operation may take some time. */
656 void
657 push_watch_cursor (struct import_assistant *ia)
658 {
659   if (++ia->asst.watch_cursor == 1)
660     {
661       GtkWidget *widget = GTK_WIDGET (ia->asst.assistant);
662       GdkDisplay *display = gtk_widget_get_display (widget);
663       GdkCursor *cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
664       gdk_window_set_cursor (widget->window, cursor);
665       gdk_cursor_unref (cursor);
666       gdk_display_flush (display);
667     }
668 }
669
670 /* Decrements the "watch cursor" level.  If the level reaches
671    zero, the cursor is reset to its default shape. */
672 void
673 pop_watch_cursor (struct import_assistant *ia)
674 {
675   if (--ia->asst.watch_cursor == 0)
676     {
677       GtkWidget *widget = GTK_WIDGET (ia->asst.assistant);
678       gdk_window_set_cursor (widget->window, NULL);
679     }
680 }