1 /* $NetBSD: sort.h,v 1.29 2009/09/26 21:16:55 dsl Exp $ */
4 * Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Ben Harris and Jaromir Dolecek.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
34 * The Regents of the University of California. All rights reserved.
36 * This code is derived from software contributed to Berkeley by
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
42 * 1. Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * 2. Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in the
46 * documentation and/or other materials provided with the distribution.
47 * 3. Neither the name of the University nor the names of its contributors
48 * may be used to endorse or promote products derived from this software
49 * without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * @(#)sort.h 8.1 (Berkeley) 6/6/93
66 #include <sys/param.h>
79 /* values for masks, weights, and other flags. */
80 /* R and F get used to index weight_tables[] */
81 #define R 1 /* Field is reversed */
82 #define F 2 /* weight lower and upper case the same */
83 #define I 4 /* mask out non-printable characters */
84 #define D 8 /* sort alphanumeric characters only */
85 #define N 16 /* Field is a number */
86 #define BI 32 /* ignore blanks in icol */
87 #define BT 64 /* ignore blanks in tcol */
89 /* masks for delimiters: blanks, fields, and termination. */
90 #define BLANK 1 /* ' ', '\t'; '\n' if -R is invoked */
91 #define FLD_D 2 /* ' ', '\t' default; from -t otherwise */
92 #define REC_D_F 4 /* '\n' default; from -R otherwise */
94 #define min(a, b) ((a) < (b) ? (a) : (b))
95 #define max(a, b) ((a) > (b) ? (a) : (b))
97 #define FCLOSE(file) { \
98 if (EOF == fclose(file)) \
102 #define EWRITE(ptr, size, n, f) { \
103 if (!fwrite(ptr, size, n, f)) \
107 /* Records are limited to MAXBUFSIZE (8MB) and less if you want to sort
109 * Anyone who wants to sort data records longer than 2GB definitely needs a
110 * different program! */
111 typedef unsigned int length_t
;
113 /* A record is a key/line pair starting at rec.data. It has a total length
114 * and an offset to the start of the line half of the pair.
116 typedef struct recheader
{
117 length_t length
; /* total length of key and line */
118 length_t offset
; /* to line */
119 int keylen
; /* length of key */
120 u_char data
[]; /* key then line */
123 /* This is the column as seen by struct field. It is used by enterfield.
124 * They are matched with corresponding coldescs during initialization.
132 /* a coldesc has a number and pointers to the beginning and end of the
133 * corresponding column in the current line. This is determined in enterkey.
135 typedef struct coldesc
{
141 /* A field has an initial and final column; an omitted final column
142 * implies the end of the line. Flags regulate omission of blanks and
143 * numerical sorts; mask determines which characters are ignored (from -i, -d);
144 * weights determines the sort weights of a character (from -f, -r).
146 * The first field contain the global flags etc.
147 * The list terminates when icol = 0.
158 const char * const * names
;
161 typedef int (*get_func_t
)(FILE *, RECHEADER
*, u_char
*, struct field
*);
162 typedef void (*put_func_t
)(const RECHEADER
*, FILE *);
164 extern u_char ascii
[NBINS
], Rascii
[NBINS
], Ftable
[NBINS
], RFtable
[NBINS
];
165 extern u_char
*const weight_tables
[4]; /* ascii, Rascii, Ftable, RFtable */
166 extern u_char d_mask
[NBINS
];
167 extern int SINGL_FLD
, SEP_FLAG
, UNIQUE
, REVERSE
;
168 extern int posix_sort
;
170 extern const char *tmpdir
;
171 extern struct coldesc
*clist
;
174 #define DEBUG(ch) (debug_flags & (1 << ((ch) & 31)))
175 extern unsigned int debug_flags
;
177 void append(RECHEADER
**, int, FILE *, void (*)(const RECHEADER
*, FILE *));
178 void concat(FILE *, FILE *);
179 length_t
enterkey(RECHEADER
*, const u_char
*, u_char
*, size_t, struct field
*);
180 void fixit(int *, char **);
181 void fldreset(struct field
*);
183 void fmerge(struct filelist
*, int, FILE *, struct field
*);
184 void save_for_merge(FILE *, get_func_t
, struct field
*);
185 void merge_sort(FILE *, put_func_t
, struct field
*);
186 void fsort(struct filelist
*, int, FILE *, struct field
*);
187 int geteasy(FILE *, RECHEADER
*, u_char
*, struct field
*);
188 int makekey(FILE *, RECHEADER
*, u_char
*, struct field
*);
189 int makeline(FILE *, RECHEADER
*, u_char
*, struct field
*);
190 void makeline_copydown(RECHEADER
*);
191 int optval(int, int);
192 void order(struct filelist
*, struct field
*);
193 void putline(const RECHEADER
*, FILE *);
194 void putrec(const RECHEADER
*, FILE *);
195 void putkeydump(const RECHEADER
*, FILE *);
196 void rd_append(int, int, int, FILE *, u_char
*, u_char
*);
197 void radix_sort(RECHEADER
**, RECHEADER
**, int);
198 int setfield(const char *, struct field
*, int);
199 void settables(void);