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