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=0c4caebfe53643917321ea05cde91a017c8c8c6c;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp-builds.git diff --git a/src/language/data-io/data-list.c b/src/language/data-io/data-list.c index 0c4caebf..9594ead0 100644 --- a/src/language/data-io/data-list.c +++ b/src/language/data-io/data-list.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -807,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; @@ -827,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 =