1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-2004, 2006, 2010 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include <language/data-io/data-reader.h>
28 #include <data/casereader.h>
29 #include <data/file-handle-def.h>
30 #include <data/file-name.h>
31 #include <data/procedure.h>
32 #include <language/command.h>
33 #include <language/data-io/file-handle.h>
34 #include <language/lexer/lexer.h>
35 #include <language/prompt.h>
36 #include <libpspp/assertion.h>
37 #include <libpspp/cast.h>
38 #include <libpspp/integer-format.h>
39 #include <libpspp/message.h>
40 #include <libpspp/str.h>
46 #define _(msgid) gettext (msgid)
47 #define N_(msgid) (msgid)
49 /* Flags for DFM readers. */
52 DFM_ADVANCE = 002, /* Read next line on dfm_get_record() call? */
53 DFM_SAW_BEGIN_DATA = 004, /* For inline_file only, whether we've
54 already read a BEGIN DATA line. */
55 DFM_TABS_EXPANDED = 010, /* Tabs have been expanded. */
58 /* Data file reader. */
61 struct file_handle *fh; /* File handle. */
62 struct fh_lock *lock; /* Mutual exclusion lock for file. */
63 struct msg_locator where; /* Current location in data file. */
64 struct string line; /* Current line. */
65 struct string scratch; /* Extra line buffer. */
66 enum dfm_reader_flags flags; /* Zero or more of DFM_*. */
67 FILE *file; /* Associated file. */
68 off_t file_size; /* File size, or -1 if unavailable. */
69 size_t pos; /* Offset in line of current character. */
70 unsigned eof_cnt; /* # of attempts to advance past EOF. */
71 struct lexer *lexer; /* The lexer reading the file */
73 /* For FH_MODE_360_VARIABLE and FH_MODE_360_SPANNED files only. */
74 size_t block_left; /* Bytes left in current block. */
77 /* Closes reader R opened by dfm_open_reader(). */
79 dfm_close_reader (struct dfm_reader *r)
84 if (fh_unlock (r->lock))
86 /* File is still locked by another client. */
90 /* This was the last client, so close the underlying file. */
91 if (fh_get_referent (r->fh) != FH_REF_INLINE)
92 fn_close (fh_get_file_name (r->fh), r->file);
95 /* Skip any remaining data on the inline file. */
96 if (r->flags & DFM_SAW_BEGIN_DATA)
98 dfm_reread_record (r, 0);
100 dfm_forward_record (r);
105 ds_destroy (&r->line);
106 ds_destroy (&r->scratch);
110 /* Opens the file designated by file handle FH for reading as a
111 data file. Providing fh_inline_file() for FH designates the
112 "inline file", that is, data included inline in the command
113 file between BEGIN FILE and END FILE. Returns a reader if
114 successful, or a null pointer otherwise. */
116 dfm_open_reader (struct file_handle *fh, struct lexer *lexer)
118 struct dfm_reader *r;
119 struct fh_lock *lock;
121 /* TRANSLATORS: this fragment will be interpolated into
122 messages in fh_lock() that identify types of files. */
123 lock = fh_lock (fh, FH_REF_FILE | FH_REF_INLINE, N_("data file"),
128 r = fh_lock_get_aux (lock);
132 r = xmalloc (sizeof *r);
136 ds_init_empty (&r->line);
137 ds_init_empty (&r->scratch);
138 r->flags = DFM_ADVANCE;
141 if (fh_get_referent (fh) != FH_REF_INLINE)
144 r->where.file_name = CONST_CAST (char *, fh_get_file_name (fh));
145 r->where.line_number = 0;
146 r->file = fn_open (fh_get_file_name (fh), "rb");
149 msg (ME, _("Could not open `%s' for reading as a data file: %s."),
150 fh_get_file_name (r->fh), strerror (errno));
156 r->file_size = fstat (fileno (r->file), &s) == 0 ? s.st_size : -1;
160 fh_lock_set_aux (lock, r);
165 /* Returns true if an I/O error occurred on READER, false otherwise. */
167 dfm_reader_error (const struct dfm_reader *r)
169 return fh_get_referent (r->fh) == FH_REF_FILE && ferror (r->file);
172 /* Reads a record from the inline file into R.
173 Returns true if successful, false on failure. */
175 read_inline_record (struct dfm_reader *r)
177 if ((r->flags & DFM_SAW_BEGIN_DATA) == 0)
179 r->flags |= DFM_SAW_BEGIN_DATA;
181 while (lex_token (r->lexer) == '.')
183 if (!lex_force_match_id (r->lexer, "BEGIN") || !lex_force_match_id (r->lexer, "DATA"))
185 prompt_set_style (PROMPT_DATA);
188 if (!lex_get_line_raw (r->lexer))
190 lex_discard_line (r->lexer);
191 msg (SE, _("Unexpected end-of-file while reading data in BEGIN "
192 "DATA. This probably indicates "
193 "a missing or incorrectly formatted END DATA command. "
194 "END DATA must appear by itself on a single line "
195 "with exactly one space between words."));
199 if (ds_length (lex_entire_line_ds (r->lexer) ) >= 8
200 && !strncasecmp (lex_entire_line (r->lexer), "end data", 8))
202 lex_discard_line (r->lexer);
206 ds_assign_string (&r->line, lex_entire_line_ds (r->lexer) );
211 /* Report a read error or unexpected end-of-file condition on R. */
213 read_error (struct dfm_reader *r)
215 if (ferror (r->file))
216 msg (ME, _("Error reading file %s: %s."),
217 fh_get_name (r->fh), strerror (errno));
218 else if (feof (r->file))
219 msg (ME, _("Unexpected end of file reading %s."), fh_get_name (r->fh));
224 /* Report a partial read at end of file reading R. */
226 partial_record (struct dfm_reader *r)
228 msg (ME, _("Unexpected end of file in partial record reading %s."),
229 fh_get_name (r->fh));
232 /* Tries to read SIZE bytes from R into BUFFER. Returns 1 if
233 successful, 0 if end of file was reached before any bytes
234 could be read, and -1 if some bytes were read but fewer than
235 SIZE due to end of file or an error mid-read. In the latter
236 case, reports an error. */
238 try_to_read_fully (struct dfm_reader *r, void *buffer, size_t size)
240 size_t bytes_read = fread (buffer, 1, size, r->file);
241 if (bytes_read == size)
243 else if (bytes_read == 0)
252 /* Type of a descriptor word. */
259 /* Reads a block descriptor word or record descriptor word
260 (according to TYPE) from R. Returns 1 if successful, 0 if
261 end of file was reached before any bytes could be read, -1 if
262 an error occurred. Reports an error in the latter case.
264 If successful, stores the number of remaining bytes in the
265 block or record (that is, the block or record length, minus
266 the 4 bytes in the BDW or RDW itself) into *REMAINING_SIZE.
267 If SEGMENT is nonnull, also stores the segment control
268 character (SCC) into *SEGMENT. */
270 read_descriptor_word (struct dfm_reader *r, enum descriptor_type type,
271 size_t *remaining_size, int *segment)
273 uint8_t raw_descriptor[4];
276 status = try_to_read_fully (r, raw_descriptor, sizeof raw_descriptor);
280 *remaining_size = (raw_descriptor[0] << 8) | raw_descriptor[1];
282 *segment = raw_descriptor[2];
284 if (*remaining_size < 4)
288 ? _("Corrupt block descriptor word at offset 0x%lx in %s.")
289 : _("Corrupt record descriptor word at offset 0x%lx in %s.")),
290 (long) ftello (r->file) - 4, fh_get_name (r->fh));
294 *remaining_size -= 4;
298 /* Reports that reader R has read a corrupt record size. */
300 corrupt_size (struct dfm_reader *r)
302 msg (ME, _("Corrupt record size at offset 0x%lx in %s."),
303 (long) ftello (r->file) - 4, fh_get_name (r->fh));
306 /* Reads a 32-byte little-endian signed number from R and stores
307 its value into *SIZE_OUT. Returns 1 if successful, 0 if end
308 of file was reached before any bytes could be read, -1 if an
309 error occurred. Reports an error in the latter case. Numbers
310 less than 0 are considered errors. */
312 read_size (struct dfm_reader *r, size_t *size_out)
317 status = try_to_read_fully (r, &size, sizeof size);
321 integer_convert (INTEGER_LSB_FIRST, &size, INTEGER_NATIVE, &size,
333 /* Reads a record from a disk file into R.
334 Returns true if successful, false on error or at end of file. */
336 read_file_record (struct dfm_reader *r)
338 assert (r->fh != fh_inline_file ());
341 switch (fh_get_mode (r->fh))
344 if (ds_read_line (&r->line, r->file, SIZE_MAX))
346 ds_chomp (&r->line, '\n');
351 if (ferror (r->file))
358 if (ds_read_stream (&r->line, 1, fh_get_record_width (r->fh), r->file))
362 if (ferror (r->file))
364 else if (!ds_is_empty (&r->line))
370 case FH_MODE_VARIABLE:
373 size_t trailing_size;
376 /* Read leading record size. */
377 status = read_size (r, &leading_size);
381 /* Read record data. */
382 if (!ds_read_stream (&r->line, leading_size, 1, r->file))
384 if (ferror (r->file))
391 /* Read trailing record size and check that it's the same
392 as the leading record size. */
393 status = read_size (r, &trailing_size);
400 if (leading_size != trailing_size)
409 case FH_MODE_360_VARIABLE:
410 case FH_MODE_360_SPANNED:
417 /* If we've exhausted our current block, start another
418 one by reading the new block descriptor word. */
419 if (r->block_left == 0)
421 status = read_descriptor_word (r, BLOCK, &r->block_left, NULL);
424 else if (status == 0)
425 return !ds_is_empty (&r->line);
428 /* Read record descriptor. */
429 if (r->block_left < 4)
435 status = read_descriptor_word (r, RECORD, &record_size, &segment);
442 if (record_size > r->block_left)
444 msg (ME, _("Record exceeds remaining block length."));
448 /* Read record data. */
449 if (!ds_read_stream (&r->line, record_size, 1, r->file))
451 if (ferror (r->file))
457 r->block_left -= record_size;
459 /* In variable mode, read only a single record.
460 In spanned mode, a segment value of 0 should
461 designate a whole record without spanning, 1 the
462 first segment in a record, 2 the last segment in a
463 record, and 3 an intermediate segment in a record.
464 For compatibility, though, we actually pay attention
465 only to whether the segment value is even or odd. */
466 if (fh_get_mode (r->fh) == FH_MODE_360_VARIABLE
467 || (segment & 1) == 0)
475 /* Reads a record from R, setting the current position to the
476 start of the line. If an error occurs or end-of-file is
477 encountered, the current line is set to null. */
479 read_record (struct dfm_reader *r)
481 if (fh_get_referent (r->fh) == FH_REF_FILE)
483 bool ok = read_file_record (r);
485 r->where.line_number++;
489 return read_inline_record (r);
492 /* Returns the number of attempts, thus far, to advance past
493 end-of-file in reader R. Reads forward in HANDLE's file, if
494 necessary, to find out.
496 Normally, the user stops attempting to read from the file the
497 first time EOF is reached (a return value of 1). If the user
498 tries to read past EOF again (a return value of 2 or more),
499 an error message is issued, and the caller should more
500 forcibly abort to avoid an infinite loop. */
502 dfm_eof (struct dfm_reader *r)
504 if (r->flags & DFM_ADVANCE)
506 r->flags &= ~DFM_ADVANCE;
508 if (r->eof_cnt == 0 && read_record (r) )
517 if (r->fh != fh_inline_file ())
518 msg (ME, _("Attempt to read beyond end-of-file on file %s."),
519 fh_get_name (r->fh));
521 msg (ME, _("Attempt to read beyond END DATA."));
528 /* Returns the current record in the file corresponding to
529 HANDLE. Aborts if reading from the file is necessary or at
530 end of file, so call dfm_eof() first. */
532 dfm_get_record (struct dfm_reader *r)
534 assert ((r->flags & DFM_ADVANCE) == 0);
535 assert (r->eof_cnt == 0);
537 return ds_substr (&r->line, r->pos, SIZE_MAX);
540 /* Expands tabs in the current line into the equivalent number of
541 spaces, if appropriate for this kind of file. Aborts if
542 reading from the file is necessary or at end of file, so call
545 dfm_expand_tabs (struct dfm_reader *r)
547 size_t ofs, new_pos, tab_width;
549 assert ((r->flags & DFM_ADVANCE) == 0);
550 assert (r->eof_cnt == 0);
552 if (r->flags & DFM_TABS_EXPANDED)
554 r->flags |= DFM_TABS_EXPANDED;
556 if (r->fh != fh_inline_file ()
557 && (fh_get_mode (r->fh) != FH_MODE_TEXT
558 || fh_get_tab_width (r->fh) == 0
559 || ds_find_char (&r->line, '\t') == SIZE_MAX))
562 /* Expand tabs from r->line into r->scratch, and figure out
563 new value for r->pos. */
564 tab_width = fh_get_tab_width (r->fh);
565 ds_clear (&r->scratch);
567 for (ofs = 0; ofs < ds_length (&r->line); ofs++)
572 new_pos = ds_length (&r->scratch);
574 c = ds_data (&r->line)[ofs];
576 ds_put_char (&r->scratch, c);
580 ds_put_char (&r->scratch, ' ');
581 while (ds_length (&r->scratch) % tab_width != 0);
584 if (new_pos == SIZE_MAX)
586 /* Maintain the same relationship between position and line
587 length that we had before. DATA LIST uses a
588 beyond-the-end position to deal with an empty field at
589 the end of the line. */
590 assert (r->pos >= ds_length (&r->line));
591 new_pos = (r->pos - ds_length (&r->line)) + ds_length (&r->scratch);
594 /* Swap r->line and r->scratch and set new r->pos. */
595 ds_swap (&r->line, &r->scratch);
599 /* Returns the legacy character encoding of data read from READER. */
601 dfm_reader_get_legacy_encoding (const struct dfm_reader *reader)
603 return fh_get_legacy_encoding (reader->fh);
606 /* Returns a number between 0 and 100 that approximates the
607 percentage of the data in READER that has already been read,
608 or -1 if this value cannot be estimated.
610 ftello is slow in glibc (it flushes the read buffer), so don't
611 call this function unless you need to. */
613 dfm_get_percent_read (const struct dfm_reader *reader)
615 if (reader->file_size >= 0)
617 off_t position = ftello (reader->file);
620 double p = 100.0 * position / reader->file_size;
621 return p < 0 ? 0 : p > 100 ? 100 : p;
627 /* Causes dfm_get_record() or dfm_get_whole_record() to read in
628 the next record the next time it is executed on file
631 dfm_forward_record (struct dfm_reader *r)
633 r->flags |= DFM_ADVANCE;
636 /* Cancels the effect of any previous dfm_fwd_record() executed
637 on file HANDLE. Sets the current line to begin in the 1-based
640 dfm_reread_record (struct dfm_reader *r, size_t column)
642 r->flags &= ~DFM_ADVANCE;
643 r->pos = MAX (column, 1) - 1;
646 /* Sets the current line to begin COLUMNS characters following
647 the current start. */
649 dfm_forward_columns (struct dfm_reader *r, size_t columns)
651 dfm_reread_record (r, (r->pos + 1) + columns);
654 /* Returns the 1-based column to which the line pointer in HANDLE
655 is set. Unless dfm_reread_record() or dfm_forward_columns()
656 have been called, this is 1. */
658 dfm_column_start (const struct dfm_reader *r)
663 /* Returns the number of columns we are currently beyond the end
664 of the line. At or before end-of-line, this is 0; one column
665 after end-of-line, this is 1; and so on. */
667 dfm_columns_past_end (const struct dfm_reader *r)
669 return r->pos < ds_length (&r->line) ? 0 : ds_length (&r->line) - r->pos;
672 /* Returns the 1-based column within the current line that P
675 dfm_get_column (const struct dfm_reader *r, const char *p)
677 return ds_pointer_to_position (&r->line, p) + 1;
681 dfm_get_file_name (const struct dfm_reader *r)
683 return fh_get_referent (r->fh) == FH_REF_FILE ? r->where.file_name : NULL;
687 dfm_get_line_number (const struct dfm_reader *r)
689 return fh_get_referent (r->fh) == FH_REF_FILE ? r->where.line_number : -1;
692 /* BEGIN DATA...END DATA procedure. */
694 /* Perform BEGIN DATA...END DATA as a procedure in itself. */
696 cmd_begin_data (struct lexer *lexer, struct dataset *ds)
698 struct dfm_reader *r;
701 if (!fh_is_locked (fh_inline_file (), FH_ACC_READ))
703 msg (SE, _("This command is not valid here since the current "
704 "input program does not access the inline file."));
705 return CMD_CASCADING_FAILURE;
708 /* Open inline file. */
709 r = dfm_open_reader (fh_inline_file (), lexer);
710 r->flags |= DFM_SAW_BEGIN_DATA;
712 /* Input procedure reads from inline file. */
713 prompt_set_style (PROMPT_DATA);
714 casereader_destroy (proc_open (ds));
715 ok = proc_commit (ds);
716 dfm_close_reader (r);
718 return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;