1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include <data/case.h>
24 #include <data/casereader.h>
25 #include <data/casewriter.h>
26 #include <data/casewriter-provider.h>
27 #include <data/settings.h>
28 #include <data/subcase.h>
29 #include <libpspp/array.h>
30 #include <libpspp/assertion.h>
31 #include <math/merge.h>
36 #define _(msgid) gettext (msgid)
38 /* These should only be changed for testing purposes. */
40 int max_buffers = INT_MAX;
45 struct subcase ordering;
47 struct pqueue *pqueue;
49 struct casewriter *run;
51 struct ccase *run_end;
54 static struct casewriter_class sort_casewriter_class;
56 static struct pqueue *pqueue_create (const struct subcase *, size_t);
57 static void pqueue_destroy (struct pqueue *);
58 static bool pqueue_is_full (const struct pqueue *);
59 static bool pqueue_is_empty (const struct pqueue *);
60 static void pqueue_push (struct pqueue *, struct ccase *, casenumber);
61 static struct ccase *pqueue_pop (struct pqueue *, casenumber *);
63 static void output_record (struct sort_writer *);
66 sort_create_writer (const struct subcase *ordering, size_t value_cnt)
68 struct sort_writer *sort;
70 sort = xmalloc (sizeof *sort);
71 sort->value_cnt = value_cnt;
72 subcase_clone (&sort->ordering, ordering);
73 sort->merge = merge_create (ordering, value_cnt);
74 sort->pqueue = pqueue_create (ordering, value_cnt);
79 return casewriter_create (value_cnt, &sort_casewriter_class, sort);
83 sort_casewriter_write (struct casewriter *writer UNUSED, void *sort_,
86 struct sort_writer *sort = sort_;
89 if (pqueue_is_full (sort->pqueue))
92 next_run = (sort->run_end == NULL
93 || subcase_compare_3way (&sort->ordering, c,
94 &sort->ordering, sort->run_end) < 0);
95 pqueue_push (sort->pqueue, c, sort->run_id + (next_run ? 1 : 0));
99 sort_casewriter_destroy (struct casewriter *writer UNUSED, void *sort_)
101 struct sort_writer *sort = sort_;
103 subcase_destroy (&sort->ordering);
104 merge_destroy (sort->merge);
105 pqueue_destroy (sort->pqueue);
106 casewriter_destroy (sort->run);
107 case_unref (sort->run_end);
111 static struct casereader *
112 sort_casewriter_convert_to_reader (struct casewriter *writer, void *sort_)
114 struct sort_writer *sort = sort_;
115 struct casereader *output;
117 if (sort->run == NULL && sort->run_id == 0)
120 sort->run = mem_writer_create (casewriter_get_value_cnt (writer));
123 while (!pqueue_is_empty (sort->pqueue))
124 output_record (sort);
126 merge_append (sort->merge, casewriter_make_reader (sort->run));
129 output = merge_make_reader (sort->merge);
130 sort_casewriter_destroy (writer, sort);
135 output_record (struct sort_writer *sort)
137 struct ccase *min_case;
138 casenumber min_run_id;
140 min_case = pqueue_pop (sort->pqueue, &min_run_id);
142 printf ("\toutput: %f to run %d\n", case_num_idx (min_case, 0), min_run_id);
145 if (sort->run_id != min_run_id && sort->run != NULL)
147 merge_append (sort->merge, casewriter_make_reader (sort->run));
150 if (sort->run == NULL)
152 sort->run = tmpfile_writer_create (sort->value_cnt);
153 sort->run_id = min_run_id;
156 case_unref (sort->run_end);
157 sort->run_end = case_ref (min_case);
158 casewriter_write (sort->run, min_case);
161 static struct casewriter_class sort_casewriter_class =
163 sort_casewriter_write,
164 sort_casewriter_destroy,
165 sort_casewriter_convert_to_reader,
168 /* Reads all the cases from INPUT. Sorts the cases according to
169 ORDERING. Returns the sorted cases in a new casereader. */
171 sort_execute (struct casereader *input, const struct subcase *ordering)
173 struct casewriter *output =
174 sort_create_writer (ordering, casereader_get_value_cnt (input));
175 casereader_transfer (input, output);
176 return casewriter_make_reader (output);
179 /* Reads all the cases from INPUT. Sorts the cases in ascending
180 order according to VARIABLE. Returns the sorted cases in a
183 sort_execute_1var (struct casereader *input, const struct variable *var)
186 struct casereader *reader;
188 subcase_init_var (&sc, var, SC_ASCEND);
189 reader = sort_execute (input, &sc);
190 subcase_destroy (&sc);
196 struct subcase ordering;
197 struct pqueue_record *records;
210 static int compare_pqueue_records_minheap (const void *a, const void *b,
213 static struct pqueue *
214 pqueue_create (const struct subcase *ordering, size_t value_cnt)
218 pq = xmalloc (sizeof *pq);
219 subcase_clone (&pq->ordering, ordering);
221 = settings_get_workspace_cases (value_cnt);
222 if (pq->record_cap > max_buffers)
223 pq->record_cap = max_buffers;
224 else if (pq->record_cap < min_buffers)
225 pq->record_cap = min_buffers;
227 pq->records = xnmalloc (pq->record_cap, sizeof *pq->records);
234 pqueue_destroy (struct pqueue *pq)
238 while (!pqueue_is_empty (pq))
241 struct ccase *c = pqueue_pop (pq, &id);
244 subcase_destroy (&pq->ordering);
251 pqueue_is_full (const struct pqueue *pq)
253 return pq->record_cnt >= pq->record_cap;
257 pqueue_is_empty (const struct pqueue *pq)
259 return pq->record_cnt == 0;
263 pqueue_push (struct pqueue *pq, struct ccase *c, casenumber id)
265 struct pqueue_record *r;
267 assert (!pqueue_is_full (pq));
269 r = &pq->records[pq->record_cnt++];
274 push_heap (pq->records, pq->record_cnt, sizeof *pq->records,
275 compare_pqueue_records_minheap, pq);
278 static struct ccase *
279 pqueue_pop (struct pqueue *pq, casenumber *id)
281 struct pqueue_record *r;
283 assert (!pqueue_is_empty (pq));
285 pop_heap (pq->records, pq->record_cnt--, sizeof *pq->records,
286 compare_pqueue_records_minheap, pq);
288 r = &pq->records[pq->record_cnt];
293 /* Compares record-run tuples A and B on id, then on case data,
294 then on insertion order, in descending order. */
296 compare_pqueue_records_minheap (const void *a_, const void *b_,
299 const struct pqueue_record *a = a_;
300 const struct pqueue_record *b = b_;
301 const struct pqueue *pq = pq_;
302 int result = a->id < b->id ? -1 : a->id > b->id;
304 result = subcase_compare_3way (&pq->ordering, a->c, &pq->ordering, b->c);
306 result = a->idx < b->idx ? -1 : a->idx > b->idx;