X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ftransformations.h;h=dd8c29d0c873c2b048d9953c47b3e2d3d86a9212;hb=49aaf665f7ad1fed25d23b6ccb0da1c5461c4846;hp=59001f1139da18a544775337b9921baa435b7e6c;hpb=8953baa61127d6d3b91f763663ea647bf3e4e793;p=pspp diff --git a/src/data/transformations.h b/src/data/transformations.h index 59001f1139..dd8c29d0c8 100644 --- a/src/data/transformations.h +++ b/src/data/transformations.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2009, 2011 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 @@ -19,38 +19,55 @@ #include #include -#include +#include "data/case.h" + +/* One transformation. */ -/* trns_proc_func return values. */ enum trns_result { - TRNS_CONTINUE = -1, /* Continue to next transformation. */ - TRNS_DROP_CASE = -2, /* Drop this case. */ - TRNS_ERROR = -3, /* A serious error, so stop the procedure. */ - TRNS_END_CASE = -4, /* Skip to next case. INPUT PROGRAM only. */ - TRNS_END_FILE = -5 /* End of input. INPUT PROGRAM only. */ + TRNS_CONTINUE, /* Continue to next transformation. */ + TRNS_BREAK, /* Break out of LOOP. */ + TRNS_DROP_CASE, /* Drop this case. */ + TRNS_ERROR, /* A serious error, so stop the procedure. */ + TRNS_END_CASE, /* Skip to next case. INPUT PROGRAM only. */ + TRNS_END_FILE /* End of input. INPUT PROGRAM only. */ }; struct ccase; -typedef void trns_finalize_func (void *); -typedef int trns_proc_func (void *, struct ccase **, casenumber); -typedef bool trns_free_func (void *); + +struct trns_class + { + const char *name; /* For debugging. */ + enum trns_result (*execute) (void *aux, struct ccase **, casenumber); + bool (*destroy) (void *aux); + }; + +struct transformation + { + const struct trns_class *class; + void *aux; + }; -/* Transformation chains. */ +/* A chain of transformations. */ -struct trns_chain *trns_chain_create (void); -void trns_chain_finalize (struct trns_chain *); -bool trns_chain_destroy (struct trns_chain *); +struct trns_chain + { + struct transformation *xforms; + size_t n; + size_t allocated; + }; -bool trns_chain_is_empty (const struct trns_chain *); +#define TRNS_CHAIN_INIT { .n = 0 } -void trns_chain_append (struct trns_chain *, trns_finalize_func *, - trns_proc_func *, trns_free_func *, void *); -size_t trns_chain_next (struct trns_chain *); -enum trns_result trns_chain_execute (const struct trns_chain *, - enum trns_result, struct ccase **, - casenumber case_nr); +void trns_chain_init (struct trns_chain *); +bool trns_chain_uninit (struct trns_chain *); +bool trns_chain_clear (struct trns_chain *); + +void trns_chain_append (struct trns_chain *, const struct transformation *); void trns_chain_splice (struct trns_chain *, struct trns_chain *); +enum trns_result trns_chain_execute (const struct trns_chain *, + casenumber case_num, struct ccase **); + #endif /* transformations.h */