X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fsort-cases.c;h=4cf1f9fd977b0b0241eff961c6717e9f4ab7a644;hb=5060bf698ceb6a0eedcc963a1c5fee220b7be478;hp=13e0c6edb247024e14541f9e94ca62729cfe6299;hpb=480a0746507ce73d26f528b56dc3ed80195096e0;p=pspp diff --git a/src/language/stats/sort-cases.c b/src/language/stats/sort-cases.c index 13e0c6edb2..4cf1f9fd97 100644 --- a/src/language/stats/sort-cases.c +++ b/src/language/stats/sort-cases.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000 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 @@ -30,6 +28,7 @@ #include #include #include +#include #include #include @@ -41,24 +40,25 @@ int cmd_sort_cases (struct lexer *lexer, struct dataset *ds) { - struct sort_criteria *criteria; - bool success = false; + struct case_ordering *ordering; + struct casereader *output; + bool ok = false; lex_match (lexer, T_BY); - criteria = sort_parse_criteria (lexer, dataset_dict (ds), NULL, NULL, NULL, NULL); - if (criteria == NULL) + proc_cancel_temporary_transformations (ds); + ordering = parse_case_ordering (lexer, dataset_dict (ds), NULL); + if (ordering == NULL) return CMD_CASCADING_FAILURE; - if (get_testing_mode () && lex_match (lexer, '/')) + if (get_testing_mode () && lex_match (lexer, '/')) { if (!lex_force_match_id (lexer, "BUFFERS") || !lex_match (lexer, '=') || !lex_force_int (lexer)) goto done; min_buffers = max_buffers = lex_integer (lexer); - allow_internal_sort = false; - if (max_buffers < 2) + if (max_buffers < 2) { msg (SE, _("Buffer limit must be at least 2.")); goto done; @@ -67,14 +67,17 @@ cmd_sort_cases (struct lexer *lexer, struct dataset *ds) lex_get (lexer); } - success = sort_active_file_in_place (ds, criteria); + proc_discard_output (ds); + output = sort_execute (proc_open (ds), ordering); + ordering = NULL; + ok = proc_commit (ds); + ok = proc_set_active_file_data (ds, output) && ok; done: min_buffers = 64; max_buffers = INT_MAX; - allow_internal_sort = true; - - sort_destroy_criteria (criteria); - return success ? lex_end_of_command (lexer) : CMD_CASCADING_FAILURE; + + case_ordering_destroy (ordering); + return ok ? lex_end_of_command (lexer) : CMD_CASCADING_FAILURE; }