X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fscratch-writer.c;h=a2ce305e727b392e944a9609d816eb9483dffe84;hb=db1aff56dc8e6d4fb962162486556907b729067a;hp=67e371a499d5e4b6a4116ad22089cbe8a31a5c56;hpb=92c09e564002d356d20fc1e2e131027ef89f6748;p=pspp diff --git a/src/data/scratch-writer.c b/src/data/scratch-writer.c index 67e371a499..a2ce305e72 100644 --- a/src/data/scratch-writer.c +++ b/src/data/scratch-writer.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -35,7 +33,7 @@ #include "xalloc.h" /* A scratch file writer. */ -struct scratch_writer +struct scratch_writer { struct scratch_handle *handle; /* Underlying scratch handle. */ struct file_handle *fh; /* Underlying file handle. */ @@ -51,7 +49,7 @@ static struct casewriter_class scratch_writer_casewriter_class; to be drawn from DICTIONARY. */ struct casewriter * scratch_writer_open (struct file_handle *fh, - const struct dictionary *dictionary) + const struct dictionary *dictionary) { struct scratch_handle *sh; struct scratch_writer *writer; @@ -64,12 +62,12 @@ scratch_writer_open (struct file_handle *fh, /* Destroy previous contents of handle. */ sh = fh_get_scratch_handle (fh); - if (sh != NULL) + if (sh != NULL) scratch_handle_destroy (sh); /* Copy the dictionary and compact if needed. */ scratch_dict = dict_clone (dictionary); - if (dict_compacting_would_shrink (scratch_dict)) + if (dict_compacting_would_shrink (scratch_dict)) { compactor = dict_make_compactor (scratch_dict); dict_compact_values (scratch_dict); @@ -100,12 +98,12 @@ scratch_writer_open (struct file_handle *fh, /* Writes case C to WRITER. */ static void scratch_writer_casewriter_write (struct casewriter *w UNUSED, void *writer_, - struct ccase *c) + struct ccase *c) { struct scratch_writer *writer = writer_; struct scratch_handle *handle = writer->handle; struct ccase tmp; - if (writer->compactor) + if (writer->compactor) { case_create (&tmp, dict_get_next_value_idx (handle->dictionary)); dict_compactor_compact (writer->compactor, &tmp, c); @@ -118,7 +116,7 @@ scratch_writer_casewriter_write (struct casewriter *w UNUSED, void *writer_, /* Closes WRITER. */ static void -scratch_writer_casewriter_destroy (struct casewriter *w UNUSED, void *writer_) +scratch_writer_casewriter_destroy (struct casewriter *w UNUSED, void *writer_) { struct scratch_writer *writer = writer_; struct casereader *reader = casewriter_make_reader (writer->subwriter); @@ -128,7 +126,7 @@ scratch_writer_casewriter_destroy (struct casewriter *w UNUSED, void *writer_) free (writer); } -static struct casewriter_class scratch_writer_casewriter_class = +static struct casewriter_class scratch_writer_casewriter_class = { scratch_writer_casewriter_write, scratch_writer_casewriter_destroy,