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