Issue error message if spreadsheet does not exist
[pspp] / src / data / ods-reader.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2011, 2012, 2013 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 "libpspp/message.h"
20 #include "libpspp/misc.h"
21 #include "libpspp/assertion.h"
22
23 #include "data/data-in.h"
24
25 #include "gl/minmax.h"
26
27 #include "gettext.h"
28 #define _(msgid) gettext (msgid)
29 #define N_(msgid) (msgid)
30
31 #include "ods-reader.h"
32 #include "spreadsheet-reader.h"
33
34 #if !ODF_READ_SUPPORT
35
36 struct casereader *
37 ods_open_reader (const struct spreadsheet_read_options *opts, 
38                  struct dictionary **dict)
39 {
40   msg (ME, _("Support for %s files was not compiled into this installation of PSPP"), "OpenDocument");
41
42   return NULL;
43 }
44
45 #else
46
47 #include "libpspp/zip-reader.h"
48
49
50 #include <assert.h>
51 #include <stdbool.h>
52 #include <errno.h>
53 #include <libxml/xmlreader.h>
54 #include <zlib.h>
55
56 #include "data/format.h"
57 #include "data/case.h"
58 #include "data/casereader-provider.h"
59 #include "data/dictionary.h"
60 #include "data/identifier.h"
61 #include "data/value.h"
62 #include "data/variable.h"
63 #include "libpspp/i18n.h"
64 #include "libpspp/str.h"
65
66 #include "gl/xalloc.h"
67
68 static void ods_file_casereader_destroy (struct casereader *, void *);
69
70 static struct ccase *ods_file_casereader_read (struct casereader *, void *);
71
72 static const struct casereader_class ods_file_casereader_class =
73   {
74     ods_file_casereader_read,
75     ods_file_casereader_destroy,
76     NULL,
77     NULL,
78   };
79
80 struct sheet_detail
81 {
82   /* The name of the sheet (utf8 encoding) */
83   char *name;
84
85   int start_col;
86   int stop_col;
87   int start_row;
88   int stop_row;
89 };
90
91
92 enum reader_state
93   {
94     STATE_INIT = 0,        /* Initial state */
95     STATE_SPREADSHEET,     /* Found the start of the spreadsheet doc */
96     STATE_TABLE,           /* Found the sheet that we actually want */
97     STATE_ROW,             /* Found the start of the cell array */
98     STATE_CELL,            /* Found a cell */
99     STATE_CELL_CONTENT     /* Found a the text within a cell */
100   };
101
102 struct ods_reader
103 {
104   struct spreadsheet spreadsheet;
105   struct zip_reader *zreader;
106   xmlTextReaderPtr xtr;
107
108   enum reader_state state;
109   int row;
110   int col;
111   int node_type;
112   int current_sheet;
113   xmlChar *current_sheet_name;
114
115   const xmlChar *target_sheet_name;
116   int target_sheet_index;
117
118
119   int wanted_row_start;
120   int wanted_col_start;
121
122 #if 0
123   int start_row;
124   int start_col;
125   int stop_row;
126   int stop_col;
127 #endif
128
129   int col_span;
130
131   struct sheet_detail *sheets;
132   int n_allocated_sheets;
133
134   struct caseproto *proto;
135   struct dictionary *dict;
136   struct ccase *first_case;
137   bool used_first_case;
138   bool read_names;
139
140   struct string ods_errs;
141 };
142
143
144 static bool
145 reading_target_sheet (const struct ods_reader *r)
146 {
147   if (r->target_sheet_name != NULL)
148     {
149       if ( 0 == xmlStrcmp (r->target_sheet_name, r->current_sheet_name))
150         return true;
151     }
152   
153   if (r->target_sheet_index == r->current_sheet + 1)
154     return true;
155
156   return false;
157 }
158
159
160 static void process_node (struct ods_reader *r);
161
162
163 const char *
164 ods_get_sheet_name (struct spreadsheet *s, int n)
165 {
166   int ret;
167   struct ods_reader *or = (struct ods_reader *) s;
168   
169   assert (n < s->n_sheets);
170
171   while ( 
172          (or->n_allocated_sheets <= n)
173          && 
174          (1 == (ret = xmlTextReaderRead (or->xtr)))
175           )
176     {
177       process_node (or);
178     }
179
180   return or->sheets[n].name;
181 }
182
183 char *
184 ods_get_sheet_range (struct spreadsheet *s, int n)
185 {
186   int ret = -1;
187   struct ods_reader *or = (struct ods_reader *) s;
188   
189   assert (n < s->n_sheets);
190
191   while ( 
192          (
193           (or->n_allocated_sheets <= n)
194           || (or->sheets[n].stop_row == -1) )
195          && 
196          (1 == (ret = xmlTextReaderRead (or->xtr)))
197           )
198     {
199       process_node (or);
200     }
201
202
203   return create_cell_ref (
204                           or->sheets[n].start_col,
205                           or->sheets[n].start_row,
206                           or->sheets[n].stop_col,
207                           or->sheets[n].stop_row);
208 }
209
210
211 static void
212 ods_file_casereader_destroy (struct casereader *reader UNUSED, void *r_)
213 {
214   struct ods_reader *r = r_;
215   if ( r == NULL)
216     return ;
217
218   if (r->xtr)
219     xmlFreeTextReader (r->xtr);
220   r->xtr = NULL;
221
222   if ( ! ds_is_empty (&r->ods_errs))
223     msg (ME, "%s", ds_cstr (&r->ods_errs));
224
225   ds_destroy (&r->ods_errs);
226
227   if ( ! r->used_first_case )
228     case_unref (r->first_case);
229
230   caseproto_unref (r->proto);
231
232   //  free (r);
233 }
234
235 static void
236 process_node (struct ods_reader *r)
237 {
238   xmlChar *name = xmlTextReaderName (r->xtr);
239   if (name == NULL)
240     name = xmlStrdup (_xml ("--"));
241
242
243   r->node_type = xmlTextReaderNodeType (r->xtr);
244
245   switch (r->state)
246     {
247     case STATE_INIT:
248       if (0 == xmlStrcasecmp (name, _xml("office:spreadsheet")) &&
249           XML_READER_TYPE_ELEMENT  == r->node_type)
250         {
251           r->state = STATE_SPREADSHEET;
252           r->current_sheet = -1;
253           r->current_sheet_name = NULL;
254         }
255       break;
256     case STATE_SPREADSHEET:
257       if (0 == xmlStrcasecmp (name, _xml("table:table"))
258           && 
259           (XML_READER_TYPE_ELEMENT == r->node_type))
260         {
261           xmlFree (r->current_sheet_name);
262           r->current_sheet_name = xmlTextReaderGetAttribute (r->xtr, _xml ("table:name"));
263
264           ++r->current_sheet;
265
266           if (r->current_sheet >= r->n_allocated_sheets)
267             {
268               r->sheets = xrealloc (r->sheets, sizeof (*r->sheets) * ++r->n_allocated_sheets);
269               r->sheets[r->n_allocated_sheets - 1].start_col = -1;
270               r->sheets[r->n_allocated_sheets - 1].stop_col = -1;
271               r->sheets[r->n_allocated_sheets - 1].start_row = -1;
272               r->sheets[r->n_allocated_sheets - 1].stop_row = -1;
273               r->sheets[r->n_allocated_sheets - 1].name = xmlStrdup (r->current_sheet_name);
274             }
275
276           r->col = 0;
277           r->row = 0;
278
279           r->state = STATE_TABLE;
280         }
281       else if (0 == xmlStrcasecmp (name, _xml("office:spreadsheet")) &&
282                XML_READER_TYPE_ELEMENT  == r->node_type)
283         {
284           r->state = STATE_INIT;
285         }
286       break;
287     case STATE_TABLE:
288       if (0 == xmlStrcasecmp (name, _xml("table:table-row")) && 
289           (XML_READER_TYPE_ELEMENT  == r->node_type))
290         {
291           xmlChar *value =
292             xmlTextReaderGetAttribute (r->xtr,
293                                        _xml ("table:number-rows-repeated"));
294           
295           int row_span = value ? _xmlchar_to_int (value) : 1;
296
297           r->row += row_span;
298           r->col = 0;
299           
300           if (! xmlTextReaderIsEmptyElement (r->xtr))
301             r->state = STATE_ROW;
302         }
303       else if (0 == xmlStrcasecmp (name, _xml("table:table")) && 
304                (XML_READER_TYPE_END_ELEMENT  == r->node_type))
305         {
306           r->state = STATE_SPREADSHEET;
307         }
308       break;
309     case STATE_ROW:
310       //      printf ("%s:%d Name is %s\n", __FILE__, __LINE__, name);
311       if ( (0 == xmlStrcasecmp (name, _xml ("table:table-cell")))
312            && 
313            (XML_READER_TYPE_ELEMENT  == r->node_type))
314         {
315           xmlChar *value =
316             xmlTextReaderGetAttribute (r->xtr,
317                                        _xml ("table:number-columns-repeated"));
318           
319           r->col_span = value ? _xmlchar_to_int (value) : 1;
320           r->col += r->col_span;
321
322           //      printf ("%s:%d %s\n", __FILE__, __LINE__, value);
323
324           if (! xmlTextReaderIsEmptyElement (r->xtr))
325             r->state = STATE_CELL;
326         }
327       else if ( (0 == xmlStrcasecmp (name, _xml ("table:table-row")))
328                 &&
329                 (XML_READER_TYPE_END_ELEMENT  == r->node_type))
330         {
331           r->state = STATE_TABLE;
332         }
333       break;
334     case STATE_CELL:
335       if ( (0 == xmlStrcasecmp (name, _xml("text:p")))
336             &&
337            ( XML_READER_TYPE_ELEMENT  == r->node_type))
338         {
339           if (! xmlTextReaderIsEmptyElement (r->xtr))
340             r->state = STATE_CELL_CONTENT;
341         }
342       else if
343         ( (0 == xmlStrcasecmp (name, _xml("table:table-cell")))
344           &&
345           (XML_READER_TYPE_END_ELEMENT  == r->node_type)
346           )
347         {
348           r->state = STATE_ROW;
349         }
350       break;
351     case STATE_CELL_CONTENT:
352       assert (r->current_sheet >= 0);
353       assert (r->current_sheet < r->n_allocated_sheets);
354
355       if (r->sheets[r->current_sheet].start_row == -1)
356         r->sheets[r->current_sheet].start_row = r->row - 1;
357
358       if ( 
359           (r->sheets[r->current_sheet].start_col == -1)
360           ||
361           (r->sheets[r->current_sheet].start_col >= r->col - 1)
362            )
363         r->sheets[r->current_sheet].start_col = r->col - 1;
364
365       r->sheets[r->current_sheet].stop_row = r->row - 1;
366
367       if ( r->sheets[r->current_sheet].stop_col <  r->col - 1)
368         r->sheets[r->current_sheet].stop_col = r->col - 1;
369
370       if (XML_READER_TYPE_END_ELEMENT  == r->node_type)
371         r->state = STATE_CELL;
372       break;
373     default:
374       NOT_REACHED ();
375       break;
376     };
377
378   xmlFree (name);
379 }
380
381 /* 
382    A struct containing the parameters of a cell's value 
383    parsed from the xml
384 */
385 struct xml_value
386 {
387   xmlChar *type;
388   xmlChar *value;
389   xmlChar *text;
390 };
391
392 struct var_spec
393 {
394   char *name;
395   struct xml_value firstval;
396 };
397
398
399 /* Determine the width that a xmv should probably have */
400 static int
401 xmv_to_width (const struct xml_value *xmv, int fallback)
402 {
403   int width = SPREADSHEET_DEFAULT_WIDTH;
404
405   /* Non-strings always have zero width */
406   if (xmv->type != NULL && 0 != xmlStrcmp (xmv->type, _xml("string")))
407     return 0;
408
409   if ( fallback != -1)
410     return fallback;
411
412   if ( xmv->value )
413     width = ROUND_UP (xmlStrlen (xmv->value),
414                       SPREADSHEET_DEFAULT_WIDTH);
415   else if ( xmv->text)
416     width = ROUND_UP (xmlStrlen (xmv->text),
417                       SPREADSHEET_DEFAULT_WIDTH);
418
419   return width;
420 }
421
422 /*
423    Sets the VAR of case C, to the value corresponding to the xml data
424  */
425 static void
426 convert_xml_to_value (struct ccase *c, const struct variable *var,
427                       const struct xml_value *xmv)
428 {
429   union value *v = case_data_rw (c, var);
430
431   if (xmv->value == NULL && xmv->text == NULL)
432     value_set_missing (v, var_get_width (var));
433   else if ( var_is_alpha (var))
434     /* Use the text field, because it seems that there is no
435        value field for strings */
436     value_copy_str_rpad (v, var_get_width (var), xmv->text, ' ');
437   else
438     {
439       const char *text ;
440       const struct fmt_spec *fmt = var_get_write_format (var);
441       enum fmt_category fc  = fmt_get_category (fmt->type);
442
443       assert ( fc != FMT_CAT_STRING);
444
445       text =
446         xmv->value ? CHAR_CAST (const char *, xmv->value) : CHAR_CAST (const char *, xmv->text);
447
448       free (data_in (ss_cstr (text), "UTF-8",
449                      fmt->type,
450                      v,
451                      var_get_width (var),
452                      "UTF-8"));
453     }
454 }
455
456
457 /* Try to find out how many sheets there are in the "workbook" */
458 static int
459 get_sheet_count (struct zip_reader *zreader)
460 {
461   xmlTextReaderPtr mxtr;
462   struct zip_member *meta = NULL;
463   meta = zip_member_open (zreader, "meta.xml");
464
465   if ( meta == NULL)
466     return -1;
467
468   mxtr = xmlReaderForIO ((xmlInputReadCallback) zip_member_read,
469                          (xmlInputCloseCallback) zip_member_finish,
470                          meta,   NULL, NULL, 0);
471
472   while (1 == xmlTextReaderRead (mxtr))
473     {
474       xmlChar *name = xmlTextReaderName (mxtr);
475       if ( 0 == xmlStrcmp (name, _xml("meta:document-statistic")))
476         {
477           xmlChar *attr = xmlTextReaderGetAttribute (mxtr, _xml ("meta:table-count"));
478             
479           if ( attr != NULL)
480             {
481               int s = _xmlchar_to_int (attr);
482               return s;
483             }
484         }
485     }
486   return -1;
487 }
488
489 static void
490 ods_error_handler (void *ctx, const char *mesg,
491                         UNUSED xmlParserSeverities sev, xmlTextReaderLocatorPtr loc)
492 {
493   struct ods_reader *r = ctx;
494        
495   msg (MW, _("There was a problem whilst reading the %s file `%s' (near line %d): `%s'"),
496        "ODF",
497        r->spreadsheet.file_name,
498        xmlTextReaderLocatorLineNumber (loc),
499        mesg);
500 }
501
502
503 static bool
504 init_reader (struct ods_reader *r, bool report_errors)
505 {
506   struct zip_member *content = zip_member_open (r->zreader, "content.xml");
507   xmlTextReaderPtr xtr;
508
509   if ( content == NULL)
510     return false;
511
512   zip_member_ref (content);
513
514
515   xtr = xmlReaderForIO ((xmlInputReadCallback) zip_member_read,
516                         (xmlInputCloseCallback) zip_member_finish,
517                         content,   NULL, NULL,
518                         report_errors ? 0 : (XML_PARSE_NOERROR | XML_PARSE_NOWARNING) );
519
520   if ( xtr == NULL)
521     return false;
522
523   r->xtr = xtr;
524   r->spreadsheet.type = SPREADSHEET_ODS;
525
526   if (report_errors) 
527     xmlTextReaderSetErrorHandler (xtr, ods_error_handler, r);
528
529   return true;
530 }
531
532
533 struct spreadsheet *
534 ods_probe (const char *filename, bool report_errors)
535 {
536   struct ods_reader *r;
537   struct string errs = DS_EMPTY_INITIALIZER;
538   int sheet_count;
539   struct zip_reader *zr = zip_reader_create (filename, &errs);
540
541   if (zr == NULL)
542     {
543       if (report_errors)
544         {
545           msg (ME, _("Cannot open %s as a OpenDocument file: %s"),
546                filename, ds_cstr (&errs));
547         }
548       return NULL;
549     }
550
551   sheet_count = get_sheet_count (zr);
552
553   r = xzalloc (sizeof *r);
554   r->zreader = zr;
555
556   if (! init_reader (r, report_errors))
557     {
558       goto error;
559     }
560
561   r->spreadsheet.n_sheets = sheet_count;
562   r->n_allocated_sheets = 0;
563   r->sheets = NULL;
564
565   ds_destroy (&errs);
566
567   r->spreadsheet.file_name = filename;
568   return &r->spreadsheet;
569
570  error:
571   zip_reader_destroy (r->zreader);
572   ds_destroy (&errs);
573   free (r);
574   return NULL;
575 }
576
577 struct casereader *
578 ods_make_reader (struct spreadsheet *spreadsheet, 
579                  const struct spreadsheet_read_options *opts)
580 {
581   intf ret = 0;
582   xmlChar *type = NULL;
583   unsigned long int vstart = 0;
584   casenumber n_cases = CASENUMBER_MAX;
585   int i;
586   struct var_spec *var_spec = NULL;
587   int n_var_specs = 0;
588
589   struct ods_reader *r = (struct ods_reader *) spreadsheet;
590   xmlChar *val_string = NULL;
591
592   assert (r);
593   r->read_names = opts->read_names;
594   ds_init_empty (&r->ods_errs);
595
596
597   if ( !init_reader (r, true))
598     goto error;
599
600 #if 0
601   if ( opts->cell_range )
602     {
603       if ( ! convert_cell_ref (opts->cell_range,
604                                &r->start_col, &r->start_row,
605                                &r->stop_col, &r->stop_row))
606         {
607           msg (SE, _("Invalid cell range `%s'"),
608                opts->cell_range);
609           goto error;
610         }
611     }
612   else
613     {
614       r->start_col = 0;
615       r->start_row = 0;
616       r->stop_col = -1;
617       r->stop_row = -1;
618     }
619 #endif
620
621   r->state = STATE_INIT;
622   r->target_sheet_name = BAD_CAST opts->sheet_name;
623   r->target_sheet_index = opts->sheet_index;
624   r->row = r->col = 0;
625
626 #if 0
627   /* If CELLRANGE was given, then we know how many variables should be read */
628   if ( r->stop_col != -1 )
629     {
630       assert (var_spec == NULL);
631       n_var_specs =  r->stop_col - r->start_col + 1;
632       var_spec = xrealloc (var_spec, sizeof (*var_spec) * n_var_specs);
633       memset (var_spec, '\0', sizeof (*var_spec) * n_var_specs);
634     }
635 #endif
636
637   /* Advance to the start of the cells for the target sheet */
638   while ( ! reading_target_sheet (r)  || r->state != STATE_ROW  )
639     {
640       if (1 != (ret = xmlTextReaderRead (r->xtr)))
641            break;
642
643       process_node (r);
644     }
645
646
647   if (ret < 1)
648     {
649       msg (MW, _("Selected sheet or range of spreadsheet `%s' is empty."),
650            spreadsheet->file_name);
651       goto error;
652     }
653
654   if ( opts->read_names)
655     {
656       while (1 == (ret = xmlTextReaderRead (r->xtr)))
657         {
658           int idx;
659
660           process_node (r);
661
662           /* If the row is finished then stop for now */
663           if (r->state == STATE_TABLE && r->row > r->wanted_row_start)
664             break;
665
666           idx = r->col - r->wanted_col_start - 1;
667
668           if (r->state == STATE_CELL_CONTENT 
669               &&
670               XML_READER_TYPE_TEXT  == r->node_type)
671             {
672               xmlChar *value = xmlTextReaderValue (r->xtr);
673
674               if ( idx >= n_var_specs)
675                 {
676                   var_spec = xrealloc (var_spec, sizeof (*var_spec) * (idx + 1));
677
678                   /* xrealloc (unlike realloc) doesn't initialise its memory to 0 */
679                   memset (var_spec + n_var_specs,
680                           0, 
681                           (n_var_specs - idx + 1) * sizeof (*var_spec));
682                   n_var_specs = idx + 1;
683                 }
684               var_spec[idx].firstval.text = 0;
685               var_spec[idx].firstval.value = 0;
686               var_spec[idx].firstval.type = 0;
687
688               var_spec [idx].name = strdup (CHAR_CAST (const char *, value));
689               xmlFree (value);
690             }
691         }
692     }
693
694   /* Read in the first row of data */
695   while (1 == xmlTextReaderRead (r->xtr))
696     {
697       int idx;
698       process_node (r);
699
700       /* If the row is finished then stop for now */
701       if (r->state == STATE_TABLE && r->row > r->wanted_row_start + (opts->read_names ? 1 : 0))
702         break;
703
704       idx = r->col - r->wanted_col_start - 1;
705
706       if ( r->state == STATE_CELL &&
707            XML_READER_TYPE_ELEMENT  == r->node_type)
708         {
709           type = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value-type"));
710           val_string = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value"));
711         }
712
713       if ( r->state == STATE_CELL_CONTENT &&
714            XML_READER_TYPE_TEXT  == r->node_type)
715         {
716           if ( idx >= n_var_specs) 
717             {
718               var_spec = xrealloc (var_spec, sizeof (*var_spec) * (idx + 1));
719               var_spec [idx].name = NULL;
720               n_var_specs = idx + 1;
721             }
722             
723           var_spec [idx].firstval.type = type;
724           var_spec [idx].firstval.text = xmlTextReaderValue (r->xtr);
725           var_spec [idx].firstval.value = val_string;
726
727           val_string = NULL;
728           type = NULL;
729         }
730     }
731
732
733   /* Create the dictionary and populate it */
734   r->spreadsheet.dict = r->dict = dict_create (
735     CHAR_CAST (const char *, xmlTextReaderConstEncoding (r->xtr)));
736
737   for (i = 0; i < n_var_specs ; ++i )
738     {
739       struct fmt_spec fmt;
740       struct variable *var = NULL;
741       char *name = dict_make_unique_var_name (r->dict, var_spec[i].name, &vstart);
742       int width  = xmv_to_width (&var_spec[i].firstval, opts->asw);
743       dict_create_var (r->dict, name, width);
744       free (name);
745
746       var = dict_get_var (r->dict, i);
747
748       if ( 0 == xmlStrcmp (var_spec[i].firstval.type, _xml("date")))
749         {
750           fmt.type = FMT_DATE;
751           fmt.d = 0;
752           fmt.w = 20;
753         }
754       else
755         fmt = fmt_default_for_width (width);
756
757       var_set_both_formats (var, &fmt);
758     }
759
760   /* Create the first case, and cache it */
761   r->used_first_case = false;
762
763   if ( n_var_specs ==  0 )
764     {
765       msg (MW, _("Selected sheet or range of spreadsheet `%s' is empty."),
766            spreadsheet->file_name);
767       goto error;
768     }
769
770   r->proto = caseproto_ref (dict_get_proto (r->dict));
771   r->first_case = case_create (r->proto);
772   case_set_missing (r->first_case);
773
774   for (i = 0 ; i < n_var_specs; ++i)
775     {
776       const struct variable *var = dict_get_var (r->dict, i);
777
778       convert_xml_to_value (r->first_case, var,  &var_spec[i].firstval);
779     }
780
781   /* Read in the first row of data */
782   while (1 == xmlTextReaderRead (r->xtr))
783     {
784       process_node (r);
785
786       if (r->state == STATE_ROW)
787         break;
788     }
789
790   //  zip_reader_destroy (zreader);
791
792 #if 0
793   for ( i = 0 ; i < n_var_specs ; ++i )
794     {
795       free (var_spec[i].firstval.type);
796       free (var_spec[i].firstval.value);
797       free (var_spec[i].firstval.text);
798       free (var_spec[i].name);
799     }
800
801   free (var_spec);
802 #endif
803
804   return casereader_create_sequential
805     (NULL,
806      r->proto,
807      n_cases,
808      &ods_file_casereader_class, r);
809
810  error:
811   
812   // zip_reader_destroy (zreader);
813
814   for ( i = 0 ; i < n_var_specs ; ++i )
815     {
816       free (var_spec[i].firstval.type);
817       free (var_spec[i].firstval.value);
818       free (var_spec[i].firstval.text);
819       free (var_spec[i].name);
820     }
821
822   free (var_spec);
823
824   dict_destroy (r->spreadsheet.dict);
825   r->spreadsheet.dict = NULL;
826   ods_file_casereader_destroy (NULL, r);
827
828
829   return NULL;
830 }
831
832
833 /* Reads and returns one case from READER's file.  Returns a null
834    pointer on failure. */
835 static struct ccase *
836 ods_file_casereader_read (struct casereader *reader UNUSED, void *r_)
837 {
838   struct ccase *c = NULL;
839   xmlChar *val_string = NULL;
840   struct ods_reader *r = r_;
841   int current_row = r->row;
842
843   if (!r->used_first_case)
844     {
845       r->used_first_case = true;
846       return r->first_case;
847     }
848
849
850   /* Advance to the start of a row. (If there is one) */
851   while (r->state != STATE_ROW && 1 == xmlTextReaderRead (r->xtr))
852     {
853       process_node (r);
854     }
855
856
857   if ( ! reading_target_sheet (r)  ||  r->state < STATE_TABLE)
858     {
859       return NULL;
860     }
861
862   c = case_create (r->proto);
863   case_set_missing (c);
864   
865   while (1 == xmlTextReaderRead (r->xtr))
866     {
867       process_node (r);
868 #if 0
869       if (r->row > current_row && r->state == STATE_ROW)
870         break;
871 #endif
872       //      printf ("%s:%d\n", __FILE__, __LINE__);
873       if (r->state == STATE_CELL &&
874            r->node_type == XML_READER_TYPE_ELEMENT)
875         {
876           val_string = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value"));
877         }
878
879       if (r->state == STATE_CELL_CONTENT && 
880            r->node_type == XML_READER_TYPE_TEXT)
881         {
882           int col;
883           struct xml_value *xmv = xzalloc (sizeof *xmv);
884           xmv->text = xmlTextReaderValue (r->xtr);
885           xmv->value = val_string;
886           val_string = NULL;
887
888           for (col = 0; col < r->col_span; ++col)
889             {
890               const int idx = r->col + col - r->wanted_col_start - 1;
891               const struct variable *var = dict_get_var (r->dict, idx);
892               convert_xml_to_value (c, var, xmv);
893             }
894
895           free (xmv->text);
896           free (xmv->value);
897           free (xmv);
898         }
899       if ( r->state <= STATE_TABLE)
900         break;
901     }
902
903   return c;
904 }
905 #endif