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