kernel - Validate that previous pte was cleaned.
[dragonfly.git] / usr.bin / sort / file.c
blobc0b18d582eb500699fa51b2f8059b774e852828b
1 /*-
2 * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org>
3 * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com>
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
27 * $FreeBSD: head/usr.bin/sort/file.c 281182 2015-04-07 01:17:49Z pfg $
31 #include <sys/mman.h>
32 #include <sys/stat.h>
33 #include <sys/types.h>
34 #include <sys/queue.h>
36 #include <err.h>
37 #include <fcntl.h>
38 #if defined(SORT_THREADS)
39 #include <pthread.h>
40 #endif
41 #include <semaphore.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46 #include <wchar.h>
47 #include <wctype.h>
49 #include "coll.h"
50 #include "file.h"
51 #include "radixsort.h"
53 unsigned long long free_memory = 1000000;
54 unsigned long long available_free_memory = 1000000;
56 bool use_mmap;
58 const char *tmpdir = "/var/tmp";
59 const char *compress_program;
61 size_t max_open_files = 16;
64 * How much space we read from file at once
66 #define READ_CHUNK (4096)
69 * File reader structure
71 struct file_reader
73 struct reader_buffer rb;
74 FILE *file;
75 char *fname;
76 unsigned char *buffer;
77 unsigned char *mmapaddr;
78 unsigned char *mmapptr;
79 size_t bsz;
80 size_t cbsz;
81 size_t mmapsize;
82 size_t strbeg;
83 int fd;
84 char elsymb;
88 * Structure to be used in file merge process.
90 struct file_header
92 struct file_reader *fr;
93 struct sort_list_item *si; /* current top line */
94 size_t file_pos;
98 * List elements of "cleanable" files list.
100 struct CLEANABLE_FILE
102 char *fn;
103 LIST_ENTRY(CLEANABLE_FILE) files;
107 * List header of "cleanable" files list.
109 static LIST_HEAD(CLEANABLE_FILES,CLEANABLE_FILE) tmp_files;
112 * Semaphore to protect the tmp file list.
113 * We use semaphore here because it is signal-safe, according to POSIX.
114 * And semaphore does not require pthread library.
116 static sem_t tmp_files_sem;
118 static void mt_sort(struct sort_list *list,
119 int (*sort_func)(void *, size_t, size_t,
120 int (*)(const void *, const void *)), const char* fn);
123 * Init tmp files list
125 void
126 init_tmp_files(void)
129 LIST_INIT(&tmp_files);
130 sem_init(&tmp_files_sem, 0, 1);
134 * Save name of a tmp file for signal cleanup
136 void
137 tmp_file_atexit(const char *tmp_file)
140 if (tmp_file) {
141 sem_wait(&tmp_files_sem);
142 struct CLEANABLE_FILE *item =
143 sort_malloc(sizeof(struct CLEANABLE_FILE));
144 item->fn = sort_strdup(tmp_file);
145 LIST_INSERT_HEAD(&tmp_files, item, files);
146 sem_post(&tmp_files_sem);
151 * Clear tmp files
153 void
154 clear_tmp_files(void)
156 struct CLEANABLE_FILE *item;
158 sem_wait(&tmp_files_sem);
159 LIST_FOREACH(item,&tmp_files,files) {
160 if ((item) && (item->fn))
161 unlink(item->fn);
163 sem_post(&tmp_files_sem);
167 * Check whether a file is a temporary file
169 static bool
170 file_is_tmp(const char* fn)
172 struct CLEANABLE_FILE *item;
173 bool ret = false;
175 if (fn) {
176 sem_wait(&tmp_files_sem);
177 LIST_FOREACH(item,&tmp_files,files) {
178 if ((item) && (item->fn))
179 if (strcmp(item->fn, fn) == 0) {
180 ret = true;
181 break;
184 sem_post(&tmp_files_sem);
187 return (ret);
191 * Generate new temporary file name
193 char *
194 new_tmp_file_name(void)
196 static size_t tfcounter = 0;
197 static const char *fn = ".bsdsort.";
198 char *ret;
199 size_t sz;
201 sz = strlen(tmpdir) + 1 + strlen(fn) + 32 + 1;
202 ret = sort_malloc(sz);
204 sprintf(ret, "%s/%s%d.%lu", tmpdir, fn, (int) getpid(), (unsigned long)(tfcounter++));
205 tmp_file_atexit(ret);
206 return (ret);
210 * Initialize file list
212 void
213 file_list_init(struct file_list *fl, bool tmp)
216 if (fl) {
217 fl->count = 0;
218 fl->sz = 0;
219 fl->fns = NULL;
220 fl->tmp = tmp;
225 * Add a file name to the list
227 void
228 file_list_add(struct file_list *fl, char *fn, bool allocate)
231 if (fl && fn) {
232 if (fl->count >= fl->sz || (fl->fns == NULL)) {
233 fl->sz = (fl->sz) * 2 + 1;
234 fl->fns = sort_realloc(fl->fns, fl->sz *
235 sizeof(char *));
237 fl->fns[fl->count] = allocate ? sort_strdup(fn) : fn;
238 fl->count += 1;
243 * Populate file list from array of file names
245 void
246 file_list_populate(struct file_list *fl, int argc, char **argv, bool allocate)
249 if (fl && argv) {
250 int i;
252 for (i = 0; i < argc; i++)
253 file_list_add(fl, argv[i], allocate);
258 * Clean file list data and delete the files,
259 * if this is a list of temporary files
261 void
262 file_list_clean(struct file_list *fl)
265 if (fl) {
266 if (fl->fns) {
267 size_t i;
269 for (i = 0; i < fl->count; i++) {
270 if (fl->fns[i]) {
271 if (fl->tmp)
272 unlink(fl->fns[i]);
273 sort_free(fl->fns[i]);
274 fl->fns[i] = 0;
277 sort_free(fl->fns);
278 fl->fns = NULL;
280 fl->sz = 0;
281 fl->count = 0;
282 fl->tmp = false;
287 * Init sort list
289 void
290 sort_list_init(struct sort_list *l)
293 if (l) {
294 l->count = 0;
295 l->size = 0;
296 l->memsize = sizeof(struct sort_list);
297 l->list = NULL;
302 * Add string to sort list
304 void
305 sort_list_add(struct sort_list *l, struct bwstring *str)
308 if (l && str) {
309 size_t indx = l->count;
311 if ((l->list == NULL) || (indx >= l->size)) {
312 size_t newsize = (l->size + 1) + 1024;
314 l->list = sort_realloc(l->list,
315 sizeof(struct sort_list_item*) * newsize);
316 l->memsize += (newsize - l->size) *
317 sizeof(struct sort_list_item*);
318 l->size = newsize;
320 l->list[indx] = sort_list_item_alloc();
321 sort_list_item_set(l->list[indx], str);
322 l->memsize += sort_list_item_size(l->list[indx]);
323 l->count += 1;
328 * Clean sort list data
330 void
331 sort_list_clean(struct sort_list *l)
334 if (l) {
335 if (l->list) {
336 size_t i;
338 for (i = 0; i < l->count; i++) {
339 struct sort_list_item *item;
341 item = l->list[i];
343 if (item) {
344 sort_list_item_clean(item);
345 sort_free(item);
346 l->list[i] = NULL;
349 sort_free(l->list);
350 l->list = NULL;
352 l->count = 0;
353 l->size = 0;
354 l->memsize = sizeof(struct sort_list);
359 * Write sort list to file
361 void
362 sort_list_dump(struct sort_list *l, const char *fn)
365 if (l && fn) {
366 FILE *f;
368 f = openfile(fn, "w");
369 if (f == NULL)
370 err(2, NULL);
372 if (l->list) {
373 size_t i;
374 if (!(sort_opts_vals.uflag)) {
375 for (i = 0; i < l->count; ++i)
376 bwsfwrite(l->list[i]->str, f,
377 sort_opts_vals.zflag);
378 } else {
379 struct sort_list_item *last_printed_item = NULL;
380 struct sort_list_item *item;
381 for (i = 0; i < l->count; ++i) {
382 item = l->list[i];
383 if ((last_printed_item == NULL) ||
384 list_coll(&last_printed_item, &item)) {
385 bwsfwrite(item->str, f, sort_opts_vals.zflag);
386 last_printed_item = item;
392 closefile(f, fn);
397 * Checks if the given file is sorted. Stops at the first disorder,
398 * prints the disordered line and returns 1.
401 check(const char *fn)
403 struct bwstring *s1, *s2, *s1disorder, *s2disorder;
404 struct file_reader *fr;
405 struct keys_array *ka1, *ka2;
406 int res;
407 size_t pos, posdisorder;
409 s1 = s2 = s1disorder = s2disorder = NULL;
410 ka1 = ka2 = NULL;
412 fr = file_reader_init(fn);
414 res = 0;
415 pos = 1;
416 posdisorder = 1;
418 if (fr == NULL) {
419 err(2, NULL);
420 goto end;
423 s1 = file_reader_readline(fr);
424 if (s1 == NULL)
425 goto end;
427 ka1 = keys_array_alloc();
428 preproc(s1, ka1);
430 s2 = file_reader_readline(fr);
431 if (s2 == NULL)
432 goto end;
434 ka2 = keys_array_alloc();
435 preproc(s2, ka2);
437 for (;;) {
439 if (debug_sort) {
440 bwsprintf(stdout, s2, "s1=<", ">");
441 bwsprintf(stdout, s1, "s2=<", ">");
443 int cmp = key_coll(ka2, ka1, 0);
444 if (debug_sort)
445 printf("; cmp1=%d", cmp);
447 if (!cmp && sort_opts_vals.complex_sort &&
448 !(sort_opts_vals.uflag) && !(sort_opts_vals.sflag)) {
449 cmp = top_level_str_coll(s2, s1);
450 if (debug_sort)
451 printf("; cmp2=%d", cmp);
453 if (debug_sort)
454 printf("\n");
456 if ((sort_opts_vals.uflag && (cmp <= 0)) || (cmp < 0)) {
457 if (!(sort_opts_vals.csilentflag)) {
458 s2disorder = bwsdup(s2);
459 posdisorder = pos;
460 if (debug_sort)
461 s1disorder = bwsdup(s1);
463 res = 1;
464 goto end;
467 pos++;
469 clean_keys_array(s1, ka1);
470 sort_free(ka1);
471 ka1 = ka2;
472 ka2 = NULL;
474 bwsfree(s1);
475 s1 = s2;
477 s2 = file_reader_readline(fr);
478 if (s2 == NULL)
479 goto end;
481 ka2 = keys_array_alloc();
482 preproc(s2, ka2);
485 end:
486 if (ka1) {
487 clean_keys_array(s1, ka1);
488 sort_free(ka1);
491 if (s1)
492 bwsfree(s1);
494 if (ka2) {
495 clean_keys_array(s2, ka2);
496 sort_free(ka2);
499 if (s2)
500 bwsfree(s2);
502 if ((fn == NULL) || (*fn == 0) || (strcmp(fn, "-") == 0)) {
503 for (;;) {
504 s2 = file_reader_readline(fr);
505 if (s2 == NULL)
506 break;
507 bwsfree(s2);
511 file_reader_free(fr);
513 if (s2disorder) {
514 bws_disorder_warnx(s2disorder, fn, posdisorder);
515 if (s1disorder) {
516 bws_disorder_warnx(s1disorder, fn, posdisorder);
517 if (s1disorder != s2disorder)
518 bwsfree(s1disorder);
520 bwsfree(s2disorder);
521 s1disorder = NULL;
522 s2disorder = NULL;
525 if (res)
526 exit(res);
528 return (0);
532 * Opens a file. If the given filename is "-", stdout will be
533 * opened.
535 FILE *
536 openfile(const char *fn, const char *mode)
538 FILE *file;
540 if (strcmp(fn, "-") == 0) {
541 return ((mode && mode[0] == 'r') ? stdin : stdout);
542 } else {
543 mode_t orig_file_mask = 0;
544 int is_tmp = file_is_tmp(fn);
546 if (is_tmp && (mode[0] == 'w'))
547 orig_file_mask = umask(S_IWGRP | S_IWOTH |
548 S_IRGRP | S_IROTH);
550 if (is_tmp && (compress_program != NULL)) {
551 char *cmd;
552 size_t cmdsz;
554 cmdsz = strlen(fn) + 128;
555 cmd = sort_malloc(cmdsz);
557 fflush(stdout);
559 if (mode[0] == 'r')
560 snprintf(cmd, cmdsz - 1, "cat %s | %s -d",
561 fn, compress_program);
562 else if (mode[0] == 'w')
563 snprintf(cmd, cmdsz - 1, "%s > %s",
564 compress_program, fn);
565 else
566 err(2, "%s", getstr(7));
568 if ((file = popen(cmd, mode)) == NULL)
569 err(2, NULL);
571 sort_free(cmd);
573 } else
574 if ((file = fopen(fn, mode)) == NULL)
575 err(2, NULL);
577 if (is_tmp && (mode[0] == 'w'))
578 umask(orig_file_mask);
581 return (file);
585 * Close file
587 void
588 closefile(FILE *f, const char *fn)
590 if (f == NULL) {
592 } else if (f == stdin) {
594 } else if (f == stdout) {
595 fflush(f);
596 } else {
597 if (file_is_tmp(fn) && compress_program != NULL) {
598 if(pclose(f)<0)
599 err(2,NULL);
600 } else
601 fclose(f);
606 * Reads a file into the internal buffer.
608 struct file_reader *
609 file_reader_init(const char *fsrc)
611 struct file_reader *ret;
613 if (fsrc == NULL)
614 fsrc = "-";
616 ret = sort_malloc(sizeof(struct file_reader));
617 memset(ret, 0, sizeof(struct file_reader));
619 ret->elsymb = '\n';
620 if (sort_opts_vals.zflag)
621 ret->elsymb = 0;
623 ret->fname = sort_strdup(fsrc);
625 if (strcmp(fsrc, "-") && (compress_program == NULL) && use_mmap) {
627 do {
628 struct stat stat_buf;
629 void *addr;
630 size_t sz = 0;
631 int fd, flags;
633 flags = MAP_NOCORE | MAP_NOSYNC;
634 addr = MAP_FAILED;
636 fd = open(fsrc, O_RDONLY);
637 if (fd < 0)
638 err(2, NULL);
640 if (fstat(fd, &stat_buf) < 0) {
641 close(fd);
642 break;
645 sz = stat_buf.st_size;
647 #if defined(MAP_PREFAULT_READ)
648 flags |= MAP_PREFAULT_READ;
649 #endif
651 addr = mmap(NULL, sz, PROT_READ, flags, fd, 0);
652 if (addr == MAP_FAILED) {
653 close(fd);
654 break;
657 ret->fd = fd;
658 ret->mmapaddr = addr;
659 ret->mmapsize = sz;
660 ret->mmapptr = ret->mmapaddr;
662 } while (0);
665 if (ret->mmapaddr == NULL) {
666 ret->file = openfile(fsrc, "r");
667 if (ret->file == NULL)
668 err(2, NULL);
670 if (strcmp(fsrc, "-")) {
671 ret->cbsz = READ_CHUNK;
672 ret->buffer = sort_malloc(ret->cbsz);
673 ret->bsz = 0;
674 ret->strbeg = 0;
676 ret->bsz = fread(ret->buffer, 1, ret->cbsz, ret->file);
677 if (ret->bsz == 0) {
678 if (ferror(ret->file))
679 err(2, NULL);
684 return (ret);
687 struct bwstring *
688 file_reader_readline(struct file_reader *fr)
690 struct bwstring *ret = NULL;
692 if (fr->mmapaddr) {
693 unsigned char *mmapend;
695 mmapend = fr->mmapaddr + fr->mmapsize;
696 if (fr->mmapptr >= mmapend)
697 return (NULL);
698 else {
699 unsigned char *strend;
700 size_t sz;
702 sz = mmapend - fr->mmapptr;
703 strend = memchr(fr->mmapptr, fr->elsymb, sz);
705 if (strend == NULL) {
706 ret = bwscsbdup(fr->mmapptr, sz);
707 fr->mmapptr = mmapend;
708 } else {
709 ret = bwscsbdup(fr->mmapptr, strend -
710 fr->mmapptr);
711 fr->mmapptr = strend + 1;
715 } else if (fr->file != stdin) {
716 unsigned char *strend;
717 size_t bsz1, remsz, search_start;
719 search_start = 0;
720 remsz = 0;
721 strend = NULL;
723 if (fr->bsz > fr->strbeg)
724 remsz = fr->bsz - fr->strbeg;
726 /* line read cycle */
727 for (;;) {
728 if (remsz > search_start)
729 strend = memchr(fr->buffer + fr->strbeg +
730 search_start, fr->elsymb, remsz -
731 search_start);
732 else
733 strend = NULL;
735 if (strend)
736 break;
737 if (feof(fr->file))
738 break;
740 if (fr->bsz != fr->cbsz)
741 /* NOTREACHED */
742 err(2, "File read software error 1");
744 if (remsz > (READ_CHUNK >> 1)) {
745 search_start = fr->cbsz - fr->strbeg;
746 fr->cbsz += READ_CHUNK;
747 fr->buffer = sort_realloc(fr->buffer,
748 fr->cbsz);
749 bsz1 = fread(fr->buffer + fr->bsz, 1,
750 READ_CHUNK, fr->file);
751 if (bsz1 == 0) {
752 if (ferror(fr->file))
753 err(2, NULL);
754 break;
756 fr->bsz += bsz1;
757 remsz += bsz1;
758 } else {
759 if (remsz > 0 && fr->strbeg>0)
760 bcopy(fr->buffer + fr->strbeg,
761 fr->buffer, remsz);
763 fr->strbeg = 0;
764 search_start = remsz;
765 bsz1 = fread(fr->buffer + remsz, 1,
766 fr->cbsz - remsz, fr->file);
767 if (bsz1 == 0) {
768 if (ferror(fr->file))
769 err(2, NULL);
770 break;
772 fr->bsz = remsz + bsz1;
773 remsz = fr->bsz;
777 if (strend == NULL)
778 strend = fr->buffer + fr->bsz;
780 if ((fr->buffer + fr->strbeg <= strend) &&
781 (fr->strbeg < fr->bsz) && (remsz>0))
782 ret = bwscsbdup(fr->buffer + fr->strbeg, strend -
783 fr->buffer - fr->strbeg);
785 fr->strbeg = (strend - fr->buffer) + 1;
787 } else {
788 size_t len = 0;
790 ret = bwsfgetln(fr->file, &len, sort_opts_vals.zflag,
791 &(fr->rb));
794 return (ret);
797 static void
798 file_reader_clean(struct file_reader *fr)
801 if (fr) {
802 if (fr->mmapaddr)
803 munmap(fr->mmapaddr, fr->mmapsize);
805 if (fr->fd)
806 close(fr->fd);
808 if (fr->buffer)
809 sort_free(fr->buffer);
811 if (fr->file)
812 if (fr->file != stdin)
813 closefile(fr->file, fr->fname);
815 if(fr->fname)
816 sort_free(fr->fname);
818 memset(fr, 0, sizeof(struct file_reader));
822 void
823 file_reader_free(struct file_reader *fr)
826 if (fr) {
827 file_reader_clean(fr);
828 sort_free(fr);
833 procfile(const char *fsrc, struct sort_list *list, struct file_list *fl)
835 struct file_reader *fr;
837 fr = file_reader_init(fsrc);
838 if (fr == NULL)
839 err(2, NULL);
841 /* file browse cycle */
842 for (;;) {
843 struct bwstring *bws;
845 bws = file_reader_readline(fr);
847 if (bws == NULL)
848 break;
850 sort_list_add(list, bws);
852 if (list->memsize >= available_free_memory) {
853 char *fn;
855 fn = new_tmp_file_name();
856 sort_list_to_file(list, fn);
857 file_list_add(fl, fn, false);
858 sort_list_clean(list);
862 file_reader_free(fr);
864 return (0);
868 * Compare file headers. Files with EOF always go to the end of the list.
870 static int
871 file_header_cmp(struct file_header *f1, struct file_header *f2)
874 if (f1 == f2)
875 return (0);
876 else {
877 if (f1->fr == NULL) {
878 return ((f2->fr == NULL) ? 0 : +1);
879 } else if (f2->fr == NULL)
880 return (-1);
881 else {
882 int ret;
884 ret = list_coll(&(f1->si), &(f2->si));
885 if (!ret)
886 return ((f1->file_pos < f2->file_pos) ? -1 : +1);
887 return (ret);
893 * Allocate and init file header structure
895 static void
896 file_header_init(struct file_header **fh, const char *fn, size_t file_pos)
899 if (fh && fn) {
900 struct bwstring *line;
902 *fh = sort_malloc(sizeof(struct file_header));
903 (*fh)->file_pos = file_pos;
904 (*fh)->fr = file_reader_init(fn);
905 if ((*fh)->fr == NULL) {
906 perror(fn);
907 err(2, "%s", getstr(8));
909 line = file_reader_readline((*fh)->fr);
910 if (line == NULL) {
911 file_reader_free((*fh)->fr);
912 (*fh)->fr = NULL;
913 (*fh)->si = NULL;
914 } else {
915 (*fh)->si = sort_list_item_alloc();
916 sort_list_item_set((*fh)->si, line);
922 * Close file
924 static void
925 file_header_close(struct file_header **fh)
928 if (fh && *fh) {
929 if ((*fh)->fr) {
930 file_reader_free((*fh)->fr);
931 (*fh)->fr = NULL;
933 if ((*fh)->si) {
934 sort_list_item_clean((*fh)->si);
935 sort_free((*fh)->si);
936 (*fh)->si = NULL;
938 sort_free(*fh);
939 *fh = NULL;
944 * Swap two array elements
946 static void
947 file_header_swap(struct file_header **fh, size_t i1, size_t i2)
949 struct file_header *tmp;
951 tmp = fh[i1];
952 fh[i1] = fh[i2];
953 fh[i2] = tmp;
956 /* heap algorithm ==>> */
959 * See heap sort algorithm
960 * "Raises" last element to its right place
962 static void
963 file_header_heap_swim(struct file_header **fh, size_t indx)
966 if (indx > 0) {
967 size_t parent_index;
969 parent_index = (indx - 1) >> 1;
971 if (file_header_cmp(fh[indx], fh[parent_index]) < 0) {
972 /* swap child and parent and continue */
973 file_header_swap(fh, indx, parent_index);
974 file_header_heap_swim(fh, parent_index);
980 * Sink the top element to its correct position
982 static void
983 file_header_heap_sink(struct file_header **fh, size_t indx, size_t size)
985 size_t left_child_index;
986 size_t right_child_index;
988 left_child_index = indx + indx + 1;
989 right_child_index = left_child_index + 1;
991 if (left_child_index < size) {
992 size_t min_child_index;
994 min_child_index = left_child_index;
996 if ((right_child_index < size) &&
997 (file_header_cmp(fh[left_child_index],
998 fh[right_child_index]) > 0))
999 min_child_index = right_child_index;
1000 if (file_header_cmp(fh[indx], fh[min_child_index]) > 0) {
1001 file_header_swap(fh, indx, min_child_index);
1002 file_header_heap_sink(fh, min_child_index, size);
1007 /* <<== heap algorithm */
1010 * Adds element to the "left" end
1012 static void
1013 file_header_list_rearrange_from_header(struct file_header **fh, size_t size)
1016 file_header_heap_sink(fh, 0, size);
1020 * Adds element to the "right" end
1022 static void
1023 file_header_list_push(struct file_header *f, struct file_header **fh, size_t size)
1026 fh[size++] = f;
1027 file_header_heap_swim(fh, size - 1);
1030 struct last_printed
1032 struct bwstring *str;
1036 * Prints the current line of the file
1038 static void
1039 file_header_print(struct file_header *fh, FILE *f_out, struct last_printed *lp)
1042 if (fh && fh->fr && f_out && fh->si && fh->si->str) {
1043 if (sort_opts_vals.uflag) {
1044 if ((lp->str == NULL) || (str_list_coll(lp->str, &(fh->si)))) {
1045 bwsfwrite(fh->si->str, f_out, sort_opts_vals.zflag);
1046 if (lp->str)
1047 bwsfree(lp->str);
1048 lp->str = bwsdup(fh->si->str);
1050 } else
1051 bwsfwrite(fh->si->str, f_out, sort_opts_vals.zflag);
1056 * Read next line
1058 static void
1059 file_header_read_next(struct file_header *fh)
1062 if (fh && fh->fr) {
1063 struct bwstring *tmp;
1065 tmp = file_reader_readline(fh->fr);
1066 if (tmp == NULL) {
1067 file_reader_free(fh->fr);
1068 fh->fr = NULL;
1069 if (fh->si) {
1070 sort_list_item_clean(fh->si);
1071 sort_free(fh->si);
1072 fh->si = NULL;
1074 } else {
1075 if (fh->si == NULL)
1076 fh->si = sort_list_item_alloc();
1077 sort_list_item_set(fh->si, tmp);
1083 * Merge array of "files headers"
1085 static void
1086 file_headers_merge(size_t fnum, struct file_header **fh, FILE *f_out)
1088 struct last_printed lp;
1089 size_t i;
1091 memset(&lp, 0, sizeof(lp));
1094 * construct the initial sort structure
1096 for (i = 0; i < fnum; i++)
1097 file_header_list_push(fh[i], fh, i);
1099 while (fh[0]->fr) { /* unfinished files are always in front */
1100 /* output the smallest line: */
1101 file_header_print(fh[0], f_out, &lp);
1102 /* read a new line, if possible: */
1103 file_header_read_next(fh[0]);
1104 /* re-arrange the list: */
1105 file_header_list_rearrange_from_header(fh, fnum);
1108 if (lp.str)
1109 bwsfree(lp.str);
1113 * Merges the given files into the output file, which can be
1114 * stdout.
1116 static void
1117 merge_files_array(size_t argc, char **argv, const char *fn_out)
1120 if (argv && fn_out) {
1121 struct file_header **fh;
1122 FILE *f_out;
1123 size_t i;
1125 f_out = openfile(fn_out, "w");
1127 if (f_out == NULL)
1128 err(2, NULL);
1130 fh = sort_malloc((argc + 1) * sizeof(struct file_header *));
1132 for (i = 0; i < argc; i++)
1133 file_header_init(fh + i, argv[i], (size_t) i);
1135 file_headers_merge(argc, fh, f_out);
1137 for (i = 0; i < argc; i++)
1138 file_header_close(fh + i);
1140 sort_free(fh);
1142 closefile(f_out, fn_out);
1147 * Shrinks the file list until its size smaller than max number of opened files
1149 static int
1150 shrink_file_list(struct file_list *fl)
1153 if ((fl == NULL) || (size_t) (fl->count) < max_open_files)
1154 return (0);
1155 else {
1156 struct file_list new_fl;
1157 size_t indx = 0;
1159 file_list_init(&new_fl, true);
1160 while (indx < fl->count) {
1161 char *fnew;
1162 size_t num;
1164 num = fl->count - indx;
1165 fnew = new_tmp_file_name();
1167 if ((size_t) num >= max_open_files)
1168 num = max_open_files - 1;
1169 merge_files_array(num, fl->fns + indx, fnew);
1170 if (fl->tmp) {
1171 size_t i;
1173 for (i = 0; i < num; i++)
1174 unlink(fl->fns[indx + i]);
1176 file_list_add(&new_fl, fnew, false);
1177 indx += num;
1179 fl->tmp = false; /* already taken care of */
1180 file_list_clean(fl);
1182 fl->count = new_fl.count;
1183 fl->fns = new_fl.fns;
1184 fl->sz = new_fl.sz;
1185 fl->tmp = new_fl.tmp;
1187 return (1);
1192 * Merge list of files
1194 void
1195 merge_files(struct file_list *fl, const char *fn_out)
1198 if (fl && fn_out) {
1199 while (shrink_file_list(fl));
1201 merge_files_array(fl->count, fl->fns, fn_out);
1205 static const char *
1206 get_sort_method_name(int sm)
1209 if (sm == SORT_MERGESORT)
1210 return "mergesort";
1211 else if (sort_opts_vals.sort_method == SORT_RADIXSORT)
1212 return "radixsort";
1213 else if (sort_opts_vals.sort_method == SORT_HEAPSORT)
1214 return "heapsort";
1215 else
1216 return "quicksort";
1220 * Wrapper for qsort
1222 static int sort_qsort(void *list, size_t count, size_t elem_size,
1223 int (*cmp_func)(const void *, const void *))
1226 qsort(list, count, elem_size, cmp_func);
1227 return (0);
1231 * Sort list of lines and writes it to the file
1233 void
1234 sort_list_to_file(struct sort_list *list, const char *outfile)
1236 struct sort_mods *sm = &(keys[0].sm);
1238 if (!(sm->Mflag) && !(sm->Rflag) && !(sm->Vflag) && !(sm->Vflag) &&
1239 !(sm->gflag) && !(sm->hflag) && !(sm->nflag)) {
1240 if ((sort_opts_vals.sort_method == SORT_DEFAULT) && byte_sort)
1241 sort_opts_vals.sort_method = SORT_RADIXSORT;
1243 } else if (sort_opts_vals.sort_method == SORT_RADIXSORT)
1244 err(2, "%s", getstr(9));
1247 * to handle stable sort and the unique cases in the
1248 * right order, we need stable basic algorithm
1250 if (sort_opts_vals.sflag) {
1251 switch (sort_opts_vals.sort_method){
1252 case SORT_MERGESORT:
1253 break;
1254 case SORT_RADIXSORT:
1255 break;
1256 case SORT_DEFAULT:
1257 sort_opts_vals.sort_method = SORT_MERGESORT;
1258 break;
1259 default:
1260 errx(2, "%s", getstr(10));
1264 if (sort_opts_vals.sort_method == SORT_DEFAULT)
1265 sort_opts_vals.sort_method = DEFAULT_SORT_ALGORITHM;
1267 if (debug_sort)
1268 printf("sort_method=%s\n",
1269 get_sort_method_name(sort_opts_vals.sort_method));
1271 switch (sort_opts_vals.sort_method){
1272 case SORT_RADIXSORT:
1273 rxsort(list->list, list->count);
1274 sort_list_dump(list, outfile);
1275 break;
1276 case SORT_MERGESORT:
1277 mt_sort(list, mergesort, outfile);
1278 break;
1279 case SORT_HEAPSORT:
1280 mt_sort(list, heapsort, outfile);
1281 break;
1282 case SORT_QSORT:
1283 mt_sort(list, sort_qsort, outfile);
1284 break;
1285 default:
1286 mt_sort(list, DEFAULT_SORT_FUNC, outfile);
1287 break;
1291 /******************* MT SORT ************************/
1293 #if defined(SORT_THREADS)
1294 /* semaphore to count threads */
1295 static sem_t mtsem;
1297 /* current system sort function */
1298 static int (*g_sort_func)(void *, size_t, size_t,
1299 int(*)(const void *, const void *));
1302 * Sort cycle thread (in multi-threaded mode)
1304 static void*
1305 mt_sort_thread(void* arg)
1307 struct sort_list *list = arg;
1309 g_sort_func(list->list, list->count, sizeof(struct sort_list_item *),
1310 (int(*)(const void *, const void *)) list_coll);
1312 sem_post(&mtsem);
1314 return (arg);
1318 * Compare sub-lists. Empty sub-lists always go to the end of the list.
1320 static int
1321 sub_list_cmp(struct sort_list *l1, struct sort_list *l2)
1324 if (l1 == l2)
1325 return (0);
1326 else {
1327 if (l1->count == 0) {
1328 return ((l2->count == 0) ? 0 : +1);
1329 } else if (l2->count == 0) {
1330 return (-1);
1331 } else {
1332 int ret;
1334 ret = list_coll(&(l1->list[0]), &(l2->list[0]));
1335 if (!ret)
1336 return ((l1->sub_list_pos < l2->sub_list_pos) ?
1337 -1 : +1);
1338 return (ret);
1344 * Swap two array elements
1346 static void
1347 sub_list_swap(struct sort_list **sl, size_t i1, size_t i2)
1349 struct sort_list *tmp;
1351 tmp = sl[i1];
1352 sl[i1] = sl[i2];
1353 sl[i2] = tmp;
1356 /* heap algorithm ==>> */
1359 * See heap sort algorithm
1360 * "Raises" last element to its right place
1362 static void
1363 sub_list_swim(struct sort_list **sl, size_t indx)
1366 if (indx > 0) {
1367 size_t parent_index;
1369 parent_index = (indx - 1) >> 1;
1371 if (sub_list_cmp(sl[indx], sl[parent_index]) < 0) {
1372 /* swap child and parent and continue */
1373 sub_list_swap(sl, indx, parent_index);
1374 sub_list_swim(sl, parent_index);
1380 * Sink the top element to its correct position
1382 static void
1383 sub_list_sink(struct sort_list **sl, size_t indx, size_t size)
1385 size_t left_child_index;
1386 size_t right_child_index;
1388 left_child_index = indx + indx + 1;
1389 right_child_index = left_child_index + 1;
1391 if (left_child_index < size) {
1392 size_t min_child_index;
1394 min_child_index = left_child_index;
1396 if ((right_child_index < size) &&
1397 (sub_list_cmp(sl[left_child_index],
1398 sl[right_child_index]) > 0))
1399 min_child_index = right_child_index;
1400 if (sub_list_cmp(sl[indx], sl[min_child_index]) > 0) {
1401 sub_list_swap(sl, indx, min_child_index);
1402 sub_list_sink(sl, min_child_index, size);
1407 /* <<== heap algorithm */
1410 * Adds element to the "right" end
1412 static void
1413 sub_list_push(struct sort_list *s, struct sort_list **sl, size_t size)
1416 sl[size++] = s;
1417 sub_list_swim(sl, size - 1);
1420 struct last_printed_item
1422 struct sort_list_item *item;
1426 * Prints the current line of the file
1428 static void
1429 sub_list_header_print(struct sort_list *sl, FILE *f_out,
1430 struct last_printed_item *lp)
1433 if (sl && sl->count && f_out && sl->list[0]->str) {
1434 if (sort_opts_vals.uflag) {
1435 if ((lp->item == NULL) || (list_coll(&(lp->item),
1436 &(sl->list[0])))) {
1437 bwsfwrite(sl->list[0]->str, f_out,
1438 sort_opts_vals.zflag);
1439 lp->item = sl->list[0];
1441 } else
1442 bwsfwrite(sl->list[0]->str, f_out,
1443 sort_opts_vals.zflag);
1448 * Read next line
1450 static void
1451 sub_list_next(struct sort_list *sl)
1454 if (sl && sl->count) {
1455 sl->list += 1;
1456 sl->count -= 1;
1461 * Merge sub-lists to a file
1463 static void
1464 merge_sub_lists(struct sort_list **sl, size_t n, FILE* f_out)
1466 struct last_printed_item lp;
1467 size_t i;
1469 memset(&lp,0,sizeof(lp));
1471 /* construct the initial list: */
1472 for (i = 0; i < n; i++)
1473 sub_list_push(sl[i], sl, i);
1475 while (sl[0]->count) { /* unfinished lists are always in front */
1476 /* output the smallest line: */
1477 sub_list_header_print(sl[0], f_out, &lp);
1478 /* move to a new line, if possible: */
1479 sub_list_next(sl[0]);
1480 /* re-arrange the list: */
1481 sub_list_sink(sl, 0, n);
1486 * Merge sub-lists to a file
1488 static void
1489 merge_list_parts(struct sort_list **parts, size_t n, const char *fn)
1491 FILE* f_out;
1493 f_out = openfile(fn,"w");
1495 merge_sub_lists(parts, n, f_out);
1497 closefile(f_out, fn);
1500 #endif /* defined(SORT_THREADS) */
1502 * Multi-threaded sort algorithm "driver"
1504 static void
1505 mt_sort(struct sort_list *list,
1506 int(*sort_func)(void *, size_t, size_t, int(*)(const void *, const void *)),
1507 const char* fn)
1509 #if defined(SORT_THREADS)
1510 if (nthreads < 2 || list->count < MT_SORT_THRESHOLD) {
1511 size_t nthreads_save = nthreads;
1512 nthreads = 1;
1513 #endif
1514 /* if single thread or small data, do simple sort */
1515 sort_func(list->list, list->count,
1516 sizeof(struct sort_list_item *),
1517 (int(*)(const void *, const void *)) list_coll);
1518 sort_list_dump(list, fn);
1519 #if defined(SORT_THREADS)
1520 nthreads = nthreads_save;
1521 } else {
1522 /* multi-threaded sort */
1523 struct sort_list **parts;
1524 size_t avgsize, cstart, i;
1526 /* array of sub-lists */
1527 parts = sort_malloc(sizeof(struct sort_list*) * nthreads);
1528 cstart = 0;
1529 avgsize = list->count / nthreads;
1531 /* set global system sort function */
1532 g_sort_func = sort_func;
1534 /* set sublists */
1535 for (i = 0; i < nthreads; ++i) {
1536 size_t sz = 0;
1538 parts[i] = sort_malloc(sizeof(struct sort_list));
1539 parts[i]->list = list->list + cstart;
1540 parts[i]->memsize = 0;
1541 parts[i]->sub_list_pos = i;
1543 sz = (i == nthreads - 1) ? list->count - cstart :
1544 avgsize;
1546 parts[i]->count = sz;
1548 parts[i]->size = parts[i]->count;
1550 cstart += sz;
1553 /* init threads counting semaphore */
1554 sem_init(&mtsem, 0, 0);
1556 /* start threads */
1557 for (i = 0; i < nthreads; ++i) {
1558 pthread_t pth;
1559 pthread_attr_t attr;
1561 pthread_attr_init(&attr);
1562 pthread_attr_setdetachstate(&attr, PTHREAD_DETACHED);
1564 for (;;) {
1565 int res = pthread_create(&pth, &attr,
1566 mt_sort_thread, parts[i]);
1568 if (res >= 0)
1569 break;
1570 if (errno == EAGAIN) {
1571 pthread_yield();
1572 continue;
1574 err(2, NULL);
1577 pthread_attr_destroy(&attr);
1580 /* wait for threads completion */
1581 for (i = 0; i < nthreads; ++i) {
1582 sem_wait(&mtsem);
1584 /* destroy the semaphore - we do not need it anymore */
1585 sem_destroy(&mtsem);
1587 /* merge sorted sub-lists to the file */
1588 merge_list_parts(parts, nthreads, fn);
1590 /* free sub-lists data */
1591 for (i = 0; i < nthreads; ++i) {
1592 sort_free(parts[i]);
1594 sort_free(parts);
1596 #endif /* defined(SORT_THREADS) */