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