61256ccdbc6d1f8dd19e284232778263a585ed41
[pspp] / src / math / sort.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2009-12, 2014 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include "math/sort.h"
20
21 #include <stdio.h>
22
23 #include "data/case.h"
24 #include "data/casereader.h"
25 #include "data/casewriter-provider.h"
26 #include "data/casewriter.h"
27 #include "data/settings.h"
28 #include "data/subcase.h"
29 #include "libpspp/array.h"
30 #include "libpspp/assertion.h"
31 #include "libpspp/bt.h"
32 #include "math/merge.h"
33
34 #include "gl/xalloc.h"
35
36 #include "gettext.h"
37 #define _(msgid) gettext (msgid)
38
39 /* These should only be changed for testing purposes. */
40 int min_buffers = 64;
41 int max_buffers = INT_MAX;
42
43 struct sort_writer
44   {
45     struct caseproto *proto;
46     struct subcase ordering;
47     struct merge *merge;
48     struct pqueue *pqueue;
49
50     sort_distinct_combine_func *combine;
51     sort_distinct_destroy_func *destroy;
52     void *aux;
53
54     struct casewriter *run;
55     casenumber run_id;
56     struct ccase *run_end;
57   };
58
59 static struct casewriter_class sort_casewriter_class;
60
61 static struct pqueue *pqueue_create (const struct subcase *,
62                                      const struct caseproto *,
63                                      sort_distinct_combine_func *, void *aux);
64 static void pqueue_destroy (struct pqueue *);
65 static bool pqueue_is_full (const struct pqueue *);
66 static bool pqueue_is_empty (const struct pqueue *);
67 static void pqueue_push (struct pqueue *, struct ccase *, casenumber);
68 static struct ccase *pqueue_pop (struct pqueue *, casenumber *);
69
70 static void output_record (struct sort_writer *);
71
72 struct casewriter *
73 sort_create_writer (const struct subcase *ordering,
74                     const struct caseproto *proto)
75 {
76   return sort_distinct_create_writer (ordering, proto, NULL, NULL, NULL);
77 }
78
79 struct casewriter *
80 sort_distinct_create_writer (const struct subcase *ordering,
81                              const struct caseproto *proto,
82                              sort_distinct_combine_func *combine,
83                              sort_distinct_destroy_func *destroy,
84                              void *aux)
85 {
86   struct sort_writer *sort;
87
88   sort = xmalloc (sizeof *sort);
89   sort->proto = caseproto_ref (proto);
90   subcase_clone (&sort->ordering, ordering);
91   sort->merge = merge_create (ordering, proto, combine, aux);
92   sort->pqueue = pqueue_create (ordering, proto, combine, aux);
93
94   sort->combine = combine;
95   sort->destroy = destroy;
96   sort->aux = aux;
97
98   sort->run = NULL;
99   sort->run_id = 0;
100   sort->run_end = NULL;
101
102   return casewriter_create (proto, &sort_casewriter_class, sort);
103 }
104
105 static void
106 sort_casewriter_write (struct casewriter *writer UNUSED, void *sort_,
107                        struct ccase *c)
108 {
109   struct sort_writer *sort = sort_;
110   bool next_run;
111
112   if (pqueue_is_full (sort->pqueue))
113     output_record (sort);
114
115   next_run = (sort->run_end == NULL
116               || subcase_compare_3way (&sort->ordering, c,
117                                        &sort->ordering, sort->run_end) < 0);
118   pqueue_push (sort->pqueue, c, sort->run_id + (next_run ? 1 : 0));
119 }
120
121 static void
122 sort_casewriter_destroy (struct casewriter *writer UNUSED, void *sort_)
123 {
124   struct sort_writer *sort = sort_;
125
126   if (sort->destroy != NULL)
127     sort->destroy (sort->aux);
128
129   subcase_destroy (&sort->ordering);
130   merge_destroy (sort->merge);
131   pqueue_destroy (sort->pqueue);
132   casewriter_destroy (sort->run);
133   case_unref (sort->run_end);
134   caseproto_unref (sort->proto);
135   free (sort);
136 }
137
138 static struct casereader *
139 sort_casewriter_convert_to_reader (struct casewriter *writer, void *sort_)
140 {
141   struct sort_writer *sort = sort_;
142   struct casereader *output;
143
144   if (sort->run == NULL && sort->run_id == 0)
145     {
146       /* In-core sort. */
147       sort->run = mem_writer_create (sort->proto);
148       sort->run_id = 1;
149     }
150   while (!pqueue_is_empty (sort->pqueue))
151     output_record (sort);
152
153   merge_append (sort->merge, casewriter_make_reader (sort->run));
154   sort->run = NULL;
155
156   output = merge_make_reader (sort->merge);
157   sort_casewriter_destroy (writer, sort);
158   return output;
159 }
160
161 static void
162 output_record (struct sort_writer *sort)
163 {
164   struct ccase *min_case;
165   casenumber min_run_id;
166
167   min_case = pqueue_pop (sort->pqueue, &min_run_id);
168 #if 0
169   printf ("\toutput: %f to run %d\n", case_num_idx (min_case, 0), min_run_id);
170 #endif
171
172   if (sort->run_id != min_run_id && sort->run != NULL)
173     {
174       merge_append (sort->merge, casewriter_make_reader (sort->run));
175       sort->run = NULL;
176     }
177   if (sort->run == NULL)
178     {
179       sort->run = tmpfile_writer_create (sort->proto);
180       sort->run_id = min_run_id;
181     }
182
183   case_unref (sort->run_end);
184   sort->run_end = case_ref (min_case);
185   casewriter_write (sort->run, min_case);
186 }
187
188 static struct casewriter_class sort_casewriter_class =
189   {
190     sort_casewriter_write,
191     sort_casewriter_destroy,
192     sort_casewriter_convert_to_reader,
193   };
194 \f
195 /* Reads all the cases from INPUT.  Sorts the cases according to
196    ORDERING.  Returns the sorted cases in a new casereader.
197    INPUT is destroyed by this function.
198  */
199 struct casereader *
200 sort_execute (struct casereader *input, const struct subcase *ordering)
201 {
202   struct casewriter *output =
203     sort_create_writer (ordering, casereader_get_proto (input));
204   casereader_transfer (input, output);
205   return casewriter_make_reader (output);
206 }
207
208 /* Reads all the cases from INPUT.  Sorts the cases in ascending
209    order according to VARIABLE.  Returns the sorted cases in a
210    new casereader.  INPUT is destroyed by this function. */
211 struct casereader *
212 sort_execute_1var (struct casereader *input, const struct variable *var)
213 {
214   struct subcase sc;
215   struct casereader *reader;
216
217   subcase_init_var (&sc, var, SC_ASCEND);
218   reader = sort_execute (input, &sc);
219   subcase_destroy (&sc);
220   return reader;
221 }
222 \f
223 struct pqueue
224   {
225     struct subcase ordering;
226     struct bt bt;
227     size_t record_max;
228     casenumber idx;
229
230     sort_distinct_combine_func *combine;
231     void *aux;
232   };
233
234 struct pqueue_record
235   {
236     struct bt_node bt_node;
237     casenumber id;
238     struct ccase *c;
239     casenumber idx;
240   };
241
242 static int compare_pqueue_records (const struct bt_node *a,
243                                    const struct bt_node *b,
244                                    const void *ordering);
245
246 static struct pqueue *
247 pqueue_create (const struct subcase *ordering, const struct caseproto *proto,
248                sort_distinct_combine_func *combine, void *aux)
249 {
250   struct pqueue *pq;
251
252   pq = xmalloc (sizeof *pq);
253   subcase_clone (&pq->ordering, ordering);
254   pq->record_max = settings_get_workspace_cases (proto);
255   if (pq->record_max > max_buffers)
256     pq->record_max = max_buffers;
257   else if (pq->record_max < min_buffers)
258     pq->record_max = min_buffers;
259   bt_init (&pq->bt, compare_pqueue_records, &pq->ordering);
260   pq->idx = 0;
261
262   pq->combine = combine;
263   pq->aux = aux;
264
265   return pq;
266 }
267
268 static void
269 pqueue_destroy (struct pqueue *pq)
270 {
271   if (pq != NULL)
272     {
273       while (!pqueue_is_empty (pq))
274         {
275           casenumber id;
276           struct ccase *c = pqueue_pop (pq, &id);
277           case_unref (c);
278         }
279       subcase_destroy (&pq->ordering);
280       free (pq);
281     }
282 }
283
284 static bool
285 pqueue_is_full (const struct pqueue *pq)
286 {
287   return bt_count (&pq->bt) >= pq->record_max;
288 }
289
290 static bool
291 pqueue_is_empty (const struct pqueue *pq)
292 {
293   return bt_is_empty (&pq->bt);
294 }
295
296 static void
297 pqueue_push (struct pqueue *pq, struct ccase *c, casenumber id)
298 {
299   struct pqueue_record *r;
300
301   assert (!pqueue_is_full (pq));
302
303   r = xmalloc (sizeof *r);
304   r->id = id;
305   r->c = c;
306   r->idx = pq->idx++;
307   bt_insert (&pq->bt, &r->bt_node);
308
309   if (pq->combine != NULL)
310     {
311       struct bt_node *q_ = bt_prev (&pq->bt, &r->bt_node);
312       if (q_ != NULL)
313         {
314           struct pqueue_record *q = bt_data (q_, struct pqueue_record,
315                                              bt_node);
316           if (q->id == r->id && subcase_equal (&pq->ordering, q->c,
317                                                &pq->ordering, r->c))
318             {
319               bt_delete (&pq->bt, &r->bt_node);
320               q->c = pq->combine (q->c, r->c, pq->aux);
321               free (r);
322             }
323         }
324     }
325 }
326
327 static struct ccase *
328 pqueue_pop (struct pqueue *pq, casenumber *id)
329 {
330   struct pqueue_record *r;
331   struct ccase *c;
332
333   assert (!pqueue_is_empty (pq));
334
335   r = bt_data (bt_first (&pq->bt), struct pqueue_record, bt_node);
336   bt_delete (&pq->bt, &r->bt_node);
337   *id = r->id;
338   c = r->c;
339   free (r);
340   return c;
341 }
342
343 /* Compares record-run tuples A and B on id, then on case data,
344    then on insertion order. */
345 static int
346 compare_pqueue_records (const struct bt_node *a_, const struct bt_node *b_,
347                         const void *ordering_)
348 {
349   const struct pqueue_record *a = bt_data (a_, struct pqueue_record, bt_node);
350   const struct pqueue_record *b = bt_data (b_, struct pqueue_record, bt_node);
351   const struct subcase *ordering = ordering_;
352   int result = a->id < b->id ? -1 : a->id > b->id;
353   if (result == 0)
354     result = subcase_compare_3way (ordering, a->c, ordering, b->c);
355   if (result == 0)
356     result = a->idx < b->idx ? -1 : a->idx > b->idx;
357   return result;
358 }