X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fprocedure.h;h=ad45a53720052ba9d784d6eb7b1aea27ec175f47;hb=9ade26c8349b4434008c46cf09bc7473ec743972;hp=1b014e81cf158e2a879bd406c46668b27a2822c0;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/data/procedure.h b/src/data/procedure.h index 1b014e81..ad45a537 100644 --- a/src/data/procedure.h +++ b/src/data/procedure.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010, 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 @@ -20,8 +20,8 @@ #include #include -#include -#include +#include "data/transformations.h" +#include "libpspp/compiler.h" struct casereader; struct dataset; @@ -51,23 +51,28 @@ struct dictionary ; typedef void replace_source_callback (struct casereader *); typedef void replace_dictionary_callback (struct dictionary *); +typedef void transformation_change_callback_func (bool non_empty, void *aux); -struct dataset * create_dataset (replace_source_callback *, - replace_dictionary_callback *); +struct dataset * create_dataset (void); void destroy_dataset (struct dataset *); +void dataset_add_transform_change_callback (struct dataset *, + transformation_change_callback_func *, void *); + void proc_discard_active_file (struct dataset *); void proc_set_active_file (struct dataset *, struct casereader *, struct dictionary *); bool proc_set_active_file_data (struct dataset *, struct casereader *); bool proc_has_active_file (const struct dataset *ds); +struct casereader *proc_extract_active_file_data (struct dataset *); void proc_discard_output (struct dataset *ds); bool proc_execute (struct dataset *ds); time_t time_of_last_procedure (struct dataset *ds); +struct casereader *proc_open_filtering (struct dataset *, bool filter); struct casereader *proc_open (struct dataset *); bool proc_is_open (const struct dataset *); bool proc_commit (struct dataset *); @@ -77,8 +82,12 @@ bool dataset_end_of_command (struct dataset *); struct dictionary *dataset_dict (const struct dataset *ds); const struct casereader *dataset_source (const struct dataset *ds); - -struct ccase *lagged_case (const struct dataset *ds, int n_before); +const struct ccase *lagged_case (const struct dataset *ds, int n_before); void dataset_need_lag (struct dataset *ds, int n_before); +void dataset_set_callback (struct dataset *ds, void (*cb) (void *), void *); + +void dataset_set_default_syntax_encoding (struct dataset *, const char *); +const char *dataset_get_default_syntax_encoding (const struct dataset *); + #endif /* procedure.h */