ODS cellranges work again (sort of)
[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)  || r->state != STATE_ROW || r->row < r->start_row )
641     {
642       if (1 != (ret = xmlTextReaderRead (r->xtr)))
643            break;
644
645       process_node (r);
646     }
647
648
649   if (ret < 1)
650     {
651       msg (MW, _("Selected sheet or range of spreadsheet `%s' is empty."),
652            spreadsheet->file_name);
653       goto error;
654     }
655
656   if ( opts->read_names)
657     {
658       while (1 == (ret = xmlTextReaderRead (r->xtr)))
659         {
660           int idx;
661
662           process_node (r);
663
664           /* If the row is finished then stop for now */
665           if (r->state == STATE_TABLE && r->row > r->start_row)
666             break;
667
668           idx = r->col - r->start_col -1 ;
669
670           if ( idx < 0)
671             continue;
672
673           if (r->stop_col != -1 && idx > r->stop_col - r->start_col)
674             continue;
675
676           //      printf ("%s:%d IDX %d COL %d\n", __FILE__, __LINE__, idx, r->col);
677
678           if (r->state == STATE_CELL_CONTENT 
679               &&
680               XML_READER_TYPE_TEXT  == r->node_type)
681             {
682               xmlChar *value = xmlTextReaderValue (r->xtr);
683
684               if ( idx >= n_var_specs)
685                 {
686                   var_spec = xrealloc (var_spec, sizeof (*var_spec) * (idx + 1));
687
688                   /* xrealloc (unlike realloc) doesn't initialise its memory to 0 */
689                   memset (var_spec + n_var_specs,
690                           0, 
691                           (n_var_specs - idx + 1) * sizeof (*var_spec));
692                   n_var_specs = idx + 1;
693                 }
694               var_spec[idx].firstval.text = 0;
695               var_spec[idx].firstval.value = 0;
696               var_spec[idx].firstval.type = 0;
697
698               var_spec [idx].name = strdup (CHAR_CAST (const char *, value));
699               xmlFree (value);
700             }
701         }
702     }
703
704   /* Read in the first row of data */
705   while (1 == xmlTextReaderRead (r->xtr))
706     {
707       int idx;
708       process_node (r);
709
710       /* If the row is finished then stop for now */
711       if (r->state == STATE_TABLE &&
712           r->row > r->start_row + (opts->read_names ? 1 : 0))
713         break;
714
715       idx = r->col - r->start_col - 1;
716       if (idx < 0)
717         continue;
718
719       if (r->stop_col != -1 && idx > r->stop_col - r->start_col)
720         continue;
721
722       if ( r->state == STATE_CELL &&
723            XML_READER_TYPE_ELEMENT  == r->node_type)
724         {
725           type = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value-type"));
726           val_string = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value"));
727         }
728
729       if ( r->state == STATE_CELL_CONTENT &&
730            XML_READER_TYPE_TEXT  == r->node_type)
731         {
732 #if 0
733           printf ("%s:%d Idx %d n_var_specs %d\n", __FILE__, __LINE__,
734                   idx, n_var_specs);
735
736           printf ("%s:%d Idx %d r_col %d\n", __FILE__, __LINE__,
737                   idx, r->col);
738 #endif
739
740           if (idx >= n_var_specs)
741             {
742               var_spec = xrealloc (var_spec, sizeof (*var_spec) * (idx + 1));
743               var_spec [idx].name = NULL;
744               n_var_specs = idx + 1;
745             }
746 #if 0
747           printf ("%s:%d Idx %d n_var_specs %d\n", __FILE__, __LINE__,
748                   idx, n_var_specs);
749 #endif
750             
751           var_spec [idx].firstval.type = type;
752           var_spec [idx].firstval.text = xmlTextReaderValue (r->xtr);
753           var_spec [idx].firstval.value = val_string;
754
755           val_string = NULL;
756           type = NULL;
757         }
758     }
759
760
761   /* Create the dictionary and populate it */
762   r->spreadsheet.dict = r->dict = dict_create (
763     CHAR_CAST (const char *, xmlTextReaderConstEncoding (r->xtr)));
764
765   for (i = 0; i < n_var_specs ; ++i )
766     {
767       struct fmt_spec fmt;
768       struct variable *var = NULL;
769       char *name = dict_make_unique_var_name (r->dict, var_spec[i].name, &vstart);
770       int width  = xmv_to_width (&var_spec[i].firstval, opts->asw);
771       dict_create_var (r->dict, name, width);
772       free (name);
773
774       var = dict_get_var (r->dict, i);
775
776       if ( 0 == xmlStrcmp (var_spec[i].firstval.type, _xml("date")))
777         {
778           fmt.type = FMT_DATE;
779           fmt.d = 0;
780           fmt.w = 20;
781         }
782       else
783         fmt = fmt_default_for_width (width);
784
785       var_set_both_formats (var, &fmt);
786     }
787
788   /* Create the first case, and cache it */
789   r->used_first_case = false;
790
791   if ( n_var_specs ==  0 )
792     {
793       msg (MW, _("Selected sheet or range of spreadsheet `%s' is empty."),
794            spreadsheet->file_name);
795       goto error;
796     }
797
798   r->proto = caseproto_ref (dict_get_proto (r->dict));
799   r->first_case = case_create (r->proto);
800   case_set_missing (r->first_case);
801
802   for (i = 0 ; i < n_var_specs; ++i)
803     {
804       const struct variable *var = dict_get_var (r->dict, i);
805
806       convert_xml_to_value (r->first_case, var,  &var_spec[i].firstval);
807     }
808
809   /* Read in the first row of data */
810   while (1 == xmlTextReaderRead (r->xtr))
811     {
812       process_node (r);
813
814       if (r->state == STATE_ROW)
815         break;
816     }
817
818   //  zip_reader_destroy (zreader);
819
820 #if 0
821   for ( i = 0 ; i < n_var_specs ; ++i )
822     {
823       free (var_spec[i].firstval.type);
824       free (var_spec[i].firstval.value);
825       free (var_spec[i].firstval.text);
826       free (var_spec[i].name);
827     }
828
829   free (var_spec);
830 #endif
831
832   return casereader_create_sequential
833     (NULL,
834      r->proto,
835      n_cases,
836      &ods_file_casereader_class, r);
837
838  error:
839   
840   // zip_reader_destroy (zreader);
841
842   for ( i = 0 ; i < n_var_specs ; ++i )
843     {
844       free (var_spec[i].firstval.type);
845       free (var_spec[i].firstval.value);
846       free (var_spec[i].firstval.text);
847       free (var_spec[i].name);
848     }
849
850   free (var_spec);
851
852   dict_destroy (r->spreadsheet.dict);
853   r->spreadsheet.dict = NULL;
854   ods_file_casereader_destroy (NULL, r);
855
856
857   return NULL;
858 }
859
860
861 /* Reads and returns one case from READER's file.  Returns a null
862    pointer on failure. */
863 static struct ccase *
864 ods_file_casereader_read (struct casereader *reader UNUSED, void *r_)
865 {
866   struct ccase *c = NULL;
867   xmlChar *val_string = NULL;
868   xmlChar *type = NULL;
869   struct ods_reader *r = r_;
870
871   if (!r->used_first_case)
872     {
873       r->used_first_case = true;
874       return r->first_case;
875     }
876
877
878   /* Advance to the start of a row. (If there is one) */
879   while (r->state != STATE_ROW 
880          && 1 == xmlTextReaderRead (r->xtr)
881          )
882     {
883       process_node (r);
884     }
885
886
887   if ( ! reading_target_sheet (r)  
888        ||  r->state < STATE_TABLE
889        ||  (r->stop_row != -1 && r->row > r->stop_row + 1)
890        )
891     {
892       return NULL;
893     }
894
895   c = case_create (r->proto);
896   case_set_missing (c);
897   
898   while (1 == xmlTextReaderRead (r->xtr))
899     {
900       process_node (r);
901
902       if ( r->stop_row != -1 && r->row > r->stop_row + 1)
903         break;
904
905       if (r->state == STATE_CELL &&
906            r->node_type == XML_READER_TYPE_ELEMENT)
907         {
908           type = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value-type"));
909           val_string = xmlTextReaderGetAttribute (r->xtr, _xml ("office:value"));
910         }
911
912       if (r->state == STATE_CELL_CONTENT && 
913            r->node_type == XML_READER_TYPE_TEXT)
914         {
915           int col;
916           struct xml_value *xmv = xzalloc (sizeof *xmv);
917           xmv->text = xmlTextReaderValue (r->xtr);
918           xmv->value = val_string;       
919           xmv->type = type;
920           val_string = NULL;
921
922           for (col = 0; col < r->col_span; ++col)
923             {
924               const int idx = r->col + col - r->start_col - 1;
925               if (idx < 0)
926                 continue;
927               if (r->stop_col != -1 && idx > r->stop_col - r->start_col )
928                 break;
929
930               const struct variable *var = dict_get_var (r->dict, idx);
931               convert_xml_to_value (c, var, xmv);
932             }
933
934           free (xmv->text);
935           free (xmv->value);
936           free (xmv);
937         }
938       if ( r->state <= STATE_TABLE)
939         break;
940     }
941
942   return c;
943 }
944 #endif