X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fdata-list.c;h=9594ead0759b888427a184e5c75322e55cac1eb7;hb=f4810d3c8656b3b3ab26303d2dae70fc361db7fb;hp=00cbb0c92c9413f64e557cfe303800c1a2e4b334;hpb=480a0746507ce73d26f528b56dc3ed80195096e0;p=pspp-builds.git diff --git a/src/language/data-io/data-list.c b/src/language/data-io/data-list.c index 00cbb0c9..9594ead0 100644 --- a/src/language/data-io/data-list.c +++ b/src/language/data-io/data-list.c @@ -806,13 +806,11 @@ data_list_trns_proc (void *dls_, struct ccase *c, casenumber case_num UNUSED) return retval; } -/* Reads all the records from the data file and passes them to - write_case(). - Returns true if successful, false if an I/O error occurred. */ +/* Reads one case into OUTPUT_CASE. + Returns true if successful, false at end of file or if an + I/O error occurred. */ static bool -data_list_source_read (struct case_source *source, - struct ccase *c, - write_case_func *write_case, write_case_data wc_data) +data_list_source_read (struct case_source *source, struct ccase *c) { struct data_list_pgm *dls = source->aux; @@ -826,26 +824,19 @@ data_list_source_read (struct case_source *source, dls->skip_records--; } - for (;;) - { - bool ok; - - if (!read_from_data_list (dls, c)) - return !dfm_reader_error (dls->reader); - - dfm_push (dls->reader); - ok = write_case (wc_data); - dfm_pop (dls->reader); - if (!ok) - return false; - } + return read_from_data_list (dls, c); } -/* Destroys the source's internal data. */ -static void +/* Destroys the source. + Returns true if successful read, false if an I/O occurred + during destruction or previously. */ +static bool data_list_source_destroy (struct case_source *source) { - data_list_trns_free (source->aux); + struct data_list_pgm *dls = source->aux; + bool ok = !dfm_reader_error (dls->reader); + data_list_trns_free (dls); + return ok; } static const struct case_source_class data_list_source_class =