2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-21 20:00:35 +00:00
|
|
|
/*
|
1999-12-22 23:02:12 +00:00
|
|
|
* Mini sort implementation for busybox
|
1999-12-21 20:00:35 +00:00
|
|
|
*
|
|
|
|
*
|
2000-04-13 01:18:56 +00:00
|
|
|
* Copyright (C) 1999,2000 by Lineo, inc.
|
1999-12-21 20:00:35 +00:00
|
|
|
* Written by John Beppu <beppu@lineo.com>
|
|
|
|
*
|
|
|
|
* 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
1999-12-21 20:00:35 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
#ifdef BB_FEATURE_SORT_REVERSE
|
|
|
|
#define APPLY_REVERSE(x) (reverse ? -(x) : (x))
|
|
|
|
static int reverse = 0;
|
|
|
|
#else
|
|
|
|
#define APPLY_REVERSE(x) (x)
|
|
|
|
#endif
|
1999-12-21 20:00:35 +00:00
|
|
|
|
1999-12-22 22:24:52 +00:00
|
|
|
/* typedefs _______________________________________________________________ */
|
1999-12-21 20:00:35 +00:00
|
|
|
|
|
|
|
/* line node */
|
1999-12-22 22:24:52 +00:00
|
|
|
typedef struct Line {
|
2000-02-08 19:58:47 +00:00
|
|
|
char *data; /* line data */
|
|
|
|
struct Line *next; /* pointer to next line node */
|
1999-12-21 20:00:35 +00:00
|
|
|
} Line;
|
|
|
|
|
|
|
|
/* singly-linked list of lines */
|
|
|
|
typedef struct {
|
2000-02-08 19:58:47 +00:00
|
|
|
int len; /* number of Lines */
|
|
|
|
Line **sorted; /* array fed to qsort */
|
|
|
|
Line *head; /* head of List */
|
|
|
|
Line *current; /* current Line */
|
1999-12-21 20:00:35 +00:00
|
|
|
} List;
|
|
|
|
|
1999-12-22 22:24:52 +00:00
|
|
|
/* comparison function */
|
2000-02-08 19:58:47 +00:00
|
|
|
typedef int (Compare) (const void *, const void *);
|
1999-12-22 22:24:52 +00:00
|
|
|
|
1999-12-21 20:00:35 +00:00
|
|
|
|
1999-12-22 00:30:29 +00:00
|
|
|
/* methods ________________________________________________________________ */
|
1999-12-21 20:00:35 +00:00
|
|
|
|
|
|
|
static const int max = 1024;
|
|
|
|
|
1999-12-22 00:30:29 +00:00
|
|
|
/* mallocate Line */
|
2000-02-08 19:58:47 +00:00
|
|
|
static Line *line_alloc()
|
1999-12-21 20:00:35 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
Line *self;
|
2000-09-13 02:46:14 +00:00
|
|
|
self = xmalloc(1 * sizeof(Line));
|
2000-02-08 19:58:47 +00:00
|
|
|
return self;
|
1999-12-22 00:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Construct Line from FILE* */
|
2000-02-08 19:58:47 +00:00
|
|
|
static Line *line_newFromFile(FILE * src)
|
1999-12-22 00:30:29 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
Line *self;
|
2000-04-17 04:22:09 +00:00
|
|
|
char *cstring = NULL;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-06-28 22:15:26 +00:00
|
|
|
if ((cstring = get_line_from_file(src))) {
|
2000-02-08 19:58:47 +00:00
|
|
|
self = line_alloc();
|
2000-04-17 04:22:09 +00:00
|
|
|
self->data = cstring;
|
|
|
|
self->next = NULL;
|
2000-02-08 19:58:47 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
return NULL;
|
1999-12-21 20:00:35 +00:00
|
|
|
}
|
|
|
|
|
1999-12-22 17:57:31 +00:00
|
|
|
/* Line destructor */
|
2000-02-08 19:58:47 +00:00
|
|
|
static Line *line_release(Line * self)
|
1999-12-22 17:57:31 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (self->data) {
|
|
|
|
free(self->data);
|
|
|
|
free(self);
|
|
|
|
}
|
|
|
|
return self;
|
1999-12-22 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
1999-12-21 20:00:35 +00:00
|
|
|
|
|
|
|
/* Comparison */
|
|
|
|
|
1999-12-22 23:02:12 +00:00
|
|
|
/* ascii order */
|
2000-02-08 19:58:47 +00:00
|
|
|
static int compare_ascii(const void *a, const void *b)
|
1999-12-22 22:24:52 +00:00
|
|
|
{
|
2000-09-28 17:49:59 +00:00
|
|
|
Line **val;
|
2000-02-08 19:58:47 +00:00
|
|
|
Line *x, *y;
|
1999-12-22 23:02:12 +00:00
|
|
|
|
2000-09-28 17:49:59 +00:00
|
|
|
val = (Line **) a;
|
|
|
|
x = *val;
|
|
|
|
val = (Line **) b;
|
|
|
|
y = *val;
|
1999-12-22 23:02:12 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
// fprintf(stdout, "> %p: %s< %p: %s", x, x->data, y, y->data);
|
2000-03-04 21:19:32 +00:00
|
|
|
return APPLY_REVERSE(strcmp(x->data, y->data));
|
1999-12-22 22:24:52 +00:00
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
|
1999-12-22 23:02:12 +00:00
|
|
|
/* numeric order */
|
2000-02-08 19:58:47 +00:00
|
|
|
static int compare_numeric(const void *a, const void *b)
|
1999-12-22 22:24:52 +00:00
|
|
|
{
|
2000-09-28 17:49:59 +00:00
|
|
|
Line **val;
|
2000-02-08 19:58:47 +00:00
|
|
|
Line *x, *y;
|
|
|
|
int xint, yint;
|
1999-12-23 00:02:49 +00:00
|
|
|
|
2000-09-28 17:49:59 +00:00
|
|
|
val = (Line **) a;
|
|
|
|
x = *val;
|
|
|
|
val = (Line **) b;
|
|
|
|
y = *val;
|
1999-12-23 00:02:49 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
xint = strtoul(x->data, NULL, 10);
|
|
|
|
yint = strtoul(y->data, NULL, 10);
|
1999-12-23 00:02:49 +00:00
|
|
|
|
2000-03-04 21:19:32 +00:00
|
|
|
return APPLY_REVERSE(xint - yint);
|
1999-12-22 22:24:52 +00:00
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* List */
|
|
|
|
|
1999-12-22 00:30:29 +00:00
|
|
|
/* */
|
2000-02-08 19:58:47 +00:00
|
|
|
static List *list_init(List * self)
|
1999-12-22 00:30:29 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
self->len = 0;
|
|
|
|
self->sorted = NULL;
|
|
|
|
self->head = NULL;
|
|
|
|
self->current = NULL;
|
|
|
|
return self;
|
1999-12-22 00:30:29 +00:00
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
|
1999-12-22 00:30:29 +00:00
|
|
|
/* for simplicity, the List gains ownership of the line */
|
2000-02-08 19:58:47 +00:00
|
|
|
static List *list_insert(List * self, Line * line)
|
1999-12-22 00:30:29 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (line == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* first insertion */
|
|
|
|
if (self->head == NULL) {
|
|
|
|
self->head = line;
|
|
|
|
self->current = line;
|
|
|
|
|
2000-04-17 04:22:09 +00:00
|
|
|
/* all subsequent insertions */
|
2000-02-08 19:58:47 +00:00
|
|
|
} else {
|
|
|
|
self->current->next = line;
|
|
|
|
self->current = line;
|
|
|
|
}
|
|
|
|
self->len++;
|
|
|
|
return self;
|
1999-12-22 00:30:29 +00:00
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
|
1999-12-22 22:24:52 +00:00
|
|
|
/* order the list according to compare() */
|
2000-02-08 19:58:47 +00:00
|
|
|
static List *list_sort(List * self, Compare * compare)
|
1999-12-22 22:24:52 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int i;
|
|
|
|
Line *line;
|
|
|
|
|
|
|
|
/* mallocate array of Line*s */
|
2000-09-13 02:46:14 +00:00
|
|
|
self->sorted = (Line **) xmalloc(self->len * sizeof(Line *));
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
/* fill array w/ List's contents */
|
|
|
|
i = 0;
|
|
|
|
line = self->head;
|
|
|
|
while (line) {
|
|
|
|
self->sorted[i++] = line;
|
|
|
|
line = line->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* apply qsort */
|
|
|
|
qsort(self->sorted, self->len, sizeof(Line *), compare);
|
|
|
|
return self;
|
1999-12-22 22:24:52 +00:00
|
|
|
}
|
1999-12-22 00:30:29 +00:00
|
|
|
|
|
|
|
/* precondition: list must be sorted */
|
2000-02-08 19:58:47 +00:00
|
|
|
static List *list_writeToFile(List * self, FILE * dst)
|
1999-12-22 00:30:29 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int i;
|
|
|
|
Line **line = self->sorted;
|
|
|
|
|
|
|
|
if (self->sorted == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < self->len; i++) {
|
|
|
|
fprintf(dst, "%s", line[i]->data);
|
|
|
|
}
|
|
|
|
return self;
|
1999-12-22 00:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* deallocate */
|
2000-02-08 19:58:47 +00:00
|
|
|
static void list_release(List * self)
|
1999-12-22 00:30:29 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
Line *i;
|
|
|
|
Line *die;
|
|
|
|
|
|
|
|
i = self->head;
|
|
|
|
while (i) {
|
|
|
|
die = i;
|
|
|
|
i = die->next;
|
|
|
|
line_release(die);
|
|
|
|
}
|
1999-12-22 00:30:29 +00:00
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
int sort_main(int argc, char **argv)
|
1999-12-21 20:00:35 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int i;
|
|
|
|
char opt;
|
|
|
|
List list;
|
|
|
|
Line *l;
|
|
|
|
Compare *compare;
|
|
|
|
|
|
|
|
/* init */
|
|
|
|
compare = compare_ascii;
|
|
|
|
list_init(&list);
|
|
|
|
|
|
|
|
/* parse argv[] */
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (argv[i][0] == '-') {
|
|
|
|
opt = argv[i][1];
|
|
|
|
switch (opt) {
|
|
|
|
case 'h':
|
|
|
|
usage(sort_usage);
|
|
|
|
break;
|
|
|
|
case 'n':
|
2000-03-04 21:19:32 +00:00
|
|
|
/* numeric comparison */
|
2000-02-08 19:58:47 +00:00
|
|
|
compare = compare_numeric;
|
|
|
|
break;
|
2000-03-04 21:19:32 +00:00
|
|
|
#ifdef BB_FEATURE_SORT_REVERSE
|
2000-02-08 19:58:47 +00:00
|
|
|
case 'r':
|
|
|
|
/* reverse */
|
2000-03-04 21:19:32 +00:00
|
|
|
reverse = 1;
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
2000-03-04 21:19:32 +00:00
|
|
|
#endif
|
2000-02-08 19:58:47 +00:00
|
|
|
default:
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("invalid option -- %c\n", opt);
|
2000-02-08 19:58:47 +00:00
|
|
|
usage(sort_usage);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
1999-12-21 20:00:35 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if (i >= argc) {
|
2000-09-28 17:49:59 +00:00
|
|
|
|
|
|
|
/* work w/ stdin */
|
2000-02-08 19:58:47 +00:00
|
|
|
while ((l = line_newFromFile(stdin))) {
|
|
|
|
list_insert(&list, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2000-09-28 17:49:59 +00:00
|
|
|
|
|
|
|
/* work w/ what's left in argv[] */
|
2000-02-08 19:58:47 +00:00
|
|
|
FILE *src;
|
|
|
|
|
|
|
|
for (; i < argc; i++) {
|
|
|
|
src = fopen(argv[i], "r");
|
|
|
|
if (src == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while ((l = line_newFromFile(src))) {
|
|
|
|
list_insert(&list, l);
|
|
|
|
}
|
|
|
|
fclose(src);
|
|
|
|
}
|
2000-09-28 17:49:59 +00:00
|
|
|
|
1999-12-21 20:00:35 +00:00
|
|
|
}
|
2000-09-28 17:49:59 +00:00
|
|
|
list_sort(&list, compare);
|
|
|
|
list_writeToFile(&list, stdout);
|
|
|
|
list_release(&list);
|
1999-12-21 20:00:35 +00:00
|
|
|
|
2000-06-19 17:25:40 +00:00
|
|
|
return(0);
|
1999-12-21 20:00:35 +00:00
|
|
|
}
|
|
|
|
|
2000-09-28 17:49:59 +00:00
|
|
|
/* $Id: sort.c,v 1.23 2000/09/28 17:49:59 beppu Exp $ */
|