X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcasewriter-translator.c;h=526bba34900b8b0d239a52e279923cdb4a52076a;hb=51b0b4e017ccaa3a72000265080122a8db616992;hp=0f47f76ba83f3c6b494916768299be8cacdb436c;hpb=ed88deded6a59254dd55883308c4c20966efc77e;p=pspp diff --git a/src/data/casewriter-translator.c b/src/data/casewriter-translator.c index 0f47f76ba8..526bba3490 100644 --- a/src/data/casewriter-translator.c +++ b/src/data/casewriter-translator.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2007 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 @@ -41,11 +39,12 @@ static struct casewriter_class casewriter_translator_class; struct casewriter * casewriter_create_translator (struct casewriter *subwriter, + size_t translated_value_cnt, void (*translate) (const struct ccase *input, struct ccase *output, void *aux), bool (*destroy) (void *aux), - void *aux) + void *aux) { struct casewriter_translator *ct = xmalloc (sizeof *ct); struct casewriter *writer; @@ -53,7 +52,8 @@ casewriter_create_translator (struct casewriter *subwriter, ct->translate = translate; ct->destroy = destroy; ct->aux = aux; - writer = casewriter_create (&casewriter_translator_class, ct); + writer = casewriter_create (translated_value_cnt, + &casewriter_translator_class, ct); taint_propagate (casewriter_get_taint (ct->subwriter), casewriter_get_taint (writer)); return writer; @@ -61,7 +61,7 @@ casewriter_create_translator (struct casewriter *subwriter, static void casewriter_translator_write (struct casewriter *writer UNUSED, - void *ct_, struct ccase *c) + void *ct_, struct ccase *c) { struct casewriter_translator *ct = ct_; struct ccase tmp; @@ -71,7 +71,7 @@ casewriter_translator_write (struct casewriter *writer UNUSED, } static void -casewriter_translator_destroy (struct casewriter *writer UNUSED, void *ct_) +casewriter_translator_destroy (struct casewriter *writer UNUSED, void *ct_) { struct casewriter_translator *ct = ct_; casewriter_destroy (ct->subwriter); @@ -90,7 +90,7 @@ casewriter_translator_convert_to_reader (struct casewriter *writer UNUSED, return reader; } -static struct casewriter_class casewriter_translator_class = +static struct casewriter_class casewriter_translator_class = { casewriter_translator_write, casewriter_translator_destroy,