init.c revision 1.25 1 1.25 dholland /* $NetBSD: init.c,v 1.25 2010/05/27 05:52:29 dholland Exp $ */
2 1.9 jdolecek
3 1.9 jdolecek /*-
4 1.9 jdolecek * Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
5 1.9 jdolecek * All rights reserved.
6 1.9 jdolecek *
7 1.9 jdolecek * This code is derived from software contributed to The NetBSD Foundation
8 1.9 jdolecek * by Ben Harris and Jaromir Dolecek.
9 1.9 jdolecek *
10 1.9 jdolecek * Redistribution and use in source and binary forms, with or without
11 1.9 jdolecek * modification, are permitted provided that the following conditions
12 1.9 jdolecek * are met:
13 1.9 jdolecek * 1. Redistributions of source code must retain the above copyright
14 1.9 jdolecek * notice, this list of conditions and the following disclaimer.
15 1.9 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
16 1.9 jdolecek * notice, this list of conditions and the following disclaimer in the
17 1.9 jdolecek * documentation and/or other materials provided with the distribution.
18 1.9 jdolecek *
19 1.9 jdolecek * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.9 jdolecek * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.9 jdolecek * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.9 jdolecek * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.9 jdolecek * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.9 jdolecek * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.9 jdolecek * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.9 jdolecek * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.9 jdolecek * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.9 jdolecek * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.9 jdolecek * POSSIBILITY OF SUCH DAMAGE.
30 1.9 jdolecek */
31 1.2 bjh21
32 1.1 bjh21 /*-
33 1.1 bjh21 * Copyright (c) 1993
34 1.1 bjh21 * The Regents of the University of California. All rights reserved.
35 1.1 bjh21 *
36 1.1 bjh21 * This code is derived from software contributed to Berkeley by
37 1.1 bjh21 * Peter McIlroy.
38 1.1 bjh21 *
39 1.1 bjh21 * Redistribution and use in source and binary forms, with or without
40 1.1 bjh21 * modification, are permitted provided that the following conditions
41 1.1 bjh21 * are met:
42 1.1 bjh21 * 1. Redistributions of source code must retain the above copyright
43 1.1 bjh21 * notice, this list of conditions and the following disclaimer.
44 1.1 bjh21 * 2. Redistributions in binary form must reproduce the above copyright
45 1.1 bjh21 * notice, this list of conditions and the following disclaimer in the
46 1.1 bjh21 * documentation and/or other materials provided with the distribution.
47 1.8 agc * 3. Neither the name of the University nor the names of its contributors
48 1.1 bjh21 * may be used to endorse or promote products derived from this software
49 1.1 bjh21 * without specific prior written permission.
50 1.1 bjh21 *
51 1.1 bjh21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 1.1 bjh21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 1.1 bjh21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 1.1 bjh21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 1.1 bjh21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 1.1 bjh21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 1.1 bjh21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 1.1 bjh21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 1.1 bjh21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 1.1 bjh21 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 1.1 bjh21 * SUCH DAMAGE.
62 1.1 bjh21 */
63 1.1 bjh21
64 1.2 bjh21 #include "sort.h"
65 1.2 bjh21
66 1.25 dholland __RCSID("$NetBSD: init.c,v 1.25 2010/05/27 05:52:29 dholland Exp $");
67 1.1 bjh21
68 1.1 bjh21 #include <ctype.h>
69 1.1 bjh21 #include <string.h>
70 1.1 bjh21
71 1.19 dsl static void insertcol(struct field *);
72 1.23 dsl static const char *setcolumn(const char *, struct field *);
73 1.2 bjh21
74 1.1 bjh21 /*
75 1.20 dsl * masks of ignored characters.
76 1.4 jdolecek */
77 1.20 dsl static u_char dtable[NBINS], itable[NBINS];
78 1.4 jdolecek
79 1.4 jdolecek /*
80 1.12 jdolecek * parsed key options
81 1.12 jdolecek */
82 1.13 itojun struct coldesc *clist = NULL;
83 1.12 jdolecek int ncols = 0;
84 1.12 jdolecek
85 1.12 jdolecek /*
86 1.1 bjh21 * clist (list of columns which correspond to one or more icol or tcol)
87 1.1 bjh21 * is in increasing order of columns.
88 1.1 bjh21 * Fields are kept in increasing order of fields.
89 1.1 bjh21 */
90 1.1 bjh21
91 1.1 bjh21 /*
92 1.1 bjh21 * keep clist in order--inserts a column in a sorted array
93 1.1 bjh21 */
94 1.1 bjh21 static void
95 1.19 dsl insertcol(struct field *field)
96 1.1 bjh21 {
97 1.1 bjh21 int i;
98 1.13 itojun struct coldesc *p;
99 1.12 jdolecek
100 1.12 jdolecek /* Make space for new item */
101 1.15 jdolecek p = realloc(clist, (ncols + 2) * sizeof(*clist));
102 1.13 itojun if (!p)
103 1.13 itojun err(1, "realloc");
104 1.13 itojun clist = p;
105 1.13 itojun memset(&clist[ncols], 0, sizeof(clist[ncols]));
106 1.12 jdolecek
107 1.1 bjh21 for (i = 0; i < ncols; i++)
108 1.1 bjh21 if (field->icol.num <= clist[i].num)
109 1.1 bjh21 break;
110 1.1 bjh21 if (field->icol.num != clist[i].num) {
111 1.1 bjh21 memmove(clist+i+1, clist+i, sizeof(COLDESC)*(ncols-i));
112 1.1 bjh21 clist[i].num = field->icol.num;
113 1.1 bjh21 ncols++;
114 1.1 bjh21 }
115 1.1 bjh21 if (field->tcol.num && field->tcol.num != field->icol.num) {
116 1.1 bjh21 for (i = 0; i < ncols; i++)
117 1.1 bjh21 if (field->tcol.num <= clist[i].num)
118 1.1 bjh21 break;
119 1.1 bjh21 if (field->tcol.num != clist[i].num) {
120 1.1 bjh21 memmove(clist+i+1, clist+i,sizeof(COLDESC)*(ncols-i));
121 1.1 bjh21 clist[i].num = field->tcol.num;
122 1.1 bjh21 ncols++;
123 1.1 bjh21 }
124 1.1 bjh21 }
125 1.1 bjh21 }
126 1.1 bjh21
127 1.1 bjh21 /*
128 1.1 bjh21 * matches fields with the appropriate columns--n^2 but who cares?
129 1.1 bjh21 */
130 1.1 bjh21 void
131 1.19 dsl fldreset(struct field *fldtab)
132 1.1 bjh21 {
133 1.1 bjh21 int i;
134 1.13 itojun
135 1.13 itojun fldtab[0].tcol.p = clist + ncols - 1;
136 1.1 bjh21 for (++fldtab; fldtab->icol.num; ++fldtab) {
137 1.5 jdolecek for (i = 0; fldtab->icol.num != clist[i].num; i++)
138 1.5 jdolecek ;
139 1.1 bjh21 fldtab->icol.p = clist + i;
140 1.1 bjh21 if (!fldtab->tcol.num)
141 1.1 bjh21 continue;
142 1.5 jdolecek for (i = 0; fldtab->tcol.num != clist[i].num; i++)
143 1.5 jdolecek ;
144 1.1 bjh21 fldtab->tcol.p = clist + i;
145 1.1 bjh21 }
146 1.1 bjh21 }
147 1.1 bjh21
148 1.1 bjh21 /*
149 1.1 bjh21 * interprets a column in a -k field
150 1.1 bjh21 */
151 1.3 jdolecek static const char *
152 1.23 dsl setcolumn(const char *pos, struct field *cur_fld)
153 1.1 bjh21 {
154 1.1 bjh21 struct column *col;
155 1.10 jdolecek char *npos;
156 1.1 bjh21 int tmp;
157 1.10 jdolecek col = cur_fld->icol.num ? (&cur_fld->tcol) : (&cur_fld->icol);
158 1.10 jdolecek col->num = (int) strtol(pos, &npos, 10);
159 1.10 jdolecek pos = npos;
160 1.1 bjh21 if (col->num <= 0 && !(col->num == 0 && col == &(cur_fld->tcol)))
161 1.1 bjh21 errx(2, "field numbers must be positive");
162 1.1 bjh21 if (*pos == '.') {
163 1.1 bjh21 if (!col->num)
164 1.1 bjh21 errx(2, "cannot indent end of line");
165 1.6 thorpej ++pos;
166 1.10 jdolecek col->indent = (int) strtol(pos, &npos, 10);
167 1.10 jdolecek pos = npos;
168 1.1 bjh21 if (&cur_fld->icol == col)
169 1.1 bjh21 col->indent--;
170 1.1 bjh21 if (col->indent < 0)
171 1.1 bjh21 errx(2, "illegal offset");
172 1.1 bjh21 }
173 1.10 jdolecek for(; (tmp = optval(*pos, cur_fld->tcol.num)); pos++)
174 1.10 jdolecek cur_fld->flags |= tmp;
175 1.1 bjh21 if (cur_fld->icol.num == 0)
176 1.1 bjh21 cur_fld->icol.num = 1;
177 1.1 bjh21 return (pos);
178 1.1 bjh21 }
179 1.1 bjh21
180 1.1 bjh21 int
181 1.19 dsl setfield(const char *pos, struct field *cur_fld, int gflag)
182 1.1 bjh21 {
183 1.20 dsl cur_fld->mask = NULL;
184 1.4 jdolecek
185 1.23 dsl pos = setcolumn(pos, cur_fld);
186 1.1 bjh21 if (*pos == '\0') /* key extends to EOL. */
187 1.1 bjh21 cur_fld->tcol.num = 0;
188 1.1 bjh21 else {
189 1.1 bjh21 if (*pos != ',')
190 1.1 bjh21 errx(2, "illegal field descriptor");
191 1.23 dsl setcolumn((++pos), cur_fld);
192 1.1 bjh21 }
193 1.1 bjh21 if (!cur_fld->flags)
194 1.1 bjh21 cur_fld->flags = gflag;
195 1.23 dsl if (REVERSE)
196 1.23 dsl /* A local 'r' doesn't invert the global one */
197 1.23 dsl cur_fld->flags &= ~R;
198 1.1 bjh21
199 1.20 dsl /* Assign appropriate mask table and weight table. */
200 1.23 dsl cur_fld->weights = weight_tables[cur_fld->flags & (R | F)];
201 1.23 dsl if (cur_fld->flags & I)
202 1.1 bjh21 cur_fld->mask = itable;
203 1.23 dsl else if (cur_fld->flags & D)
204 1.1 bjh21 cur_fld->mask = dtable;
205 1.4 jdolecek
206 1.1 bjh21 cur_fld->flags |= (gflag & (BI | BT));
207 1.1 bjh21 if (!cur_fld->tcol.indent) /* BT has no meaning at end of field */
208 1.4 jdolecek cur_fld->flags &= ~BT;
209 1.4 jdolecek
210 1.22 dsl if (cur_fld->tcol.num
211 1.22 dsl && !(!(cur_fld->flags & BI) && cur_fld->flags & BT)
212 1.22 dsl && (cur_fld->tcol.num <= cur_fld->icol.num
213 1.22 dsl /* indent if 0 -> end of field, i.e. okay */
214 1.22 dsl && cur_fld->tcol.indent != 0
215 1.22 dsl && cur_fld->tcol.indent < cur_fld->icol.indent))
216 1.1 bjh21 errx(2, "fields out of order");
217 1.23 dsl
218 1.1 bjh21 insertcol(cur_fld);
219 1.1 bjh21 return (cur_fld->tcol.num);
220 1.1 bjh21 }
221 1.1 bjh21
222 1.1 bjh21 int
223 1.19 dsl optval(int desc, int tcolflag)
224 1.1 bjh21 {
225 1.1 bjh21 switch(desc) {
226 1.1 bjh21 case 'b':
227 1.1 bjh21 if (!tcolflag)
228 1.5 jdolecek return (BI);
229 1.1 bjh21 else
230 1.5 jdolecek return (BT);
231 1.5 jdolecek case 'd': return (D);
232 1.5 jdolecek case 'f': return (F);
233 1.5 jdolecek case 'i': return (I);
234 1.5 jdolecek case 'n': return (N);
235 1.5 jdolecek case 'r': return (R);
236 1.5 jdolecek default: return (0);
237 1.1 bjh21 }
238 1.1 bjh21 }
239 1.1 bjh21
240 1.11 jdolecek /*
241 1.11 jdolecek * Replace historic +SPEC arguments with appropriate -kSPEC.
242 1.11 jdolecek */
243 1.1 bjh21 void
244 1.19 dsl fixit(int *argc, char **argv)
245 1.1 bjh21 {
246 1.11 jdolecek int i, j, fplus=0;
247 1.11 jdolecek char *vpos, *tpos, spec[20];
248 1.11 jdolecek int col, indent;
249 1.11 jdolecek size_t sz;
250 1.1 bjh21
251 1.1 bjh21 for (i = 1; i < *argc; i++) {
252 1.25 dholland /*
253 1.25 dholland * Stop where getopt will stop, to avoid turning e.g.
254 1.25 dholland * "sort x +3" into "sort x -k4.1" which will croak if
255 1.25 dholland * +3 was in fact really a file name.
256 1.25 dholland */
257 1.25 dholland if (argv[i][0] == '-' && argv[i][1] == '-')
258 1.25 dholland break;
259 1.25 dholland if (argv[i][0] != '-' && argv[i][0] != '+')
260 1.25 dholland break;
261 1.25 dholland
262 1.11 jdolecek if (argv[i][0] != '+' && !fplus)
263 1.11 jdolecek continue;
264 1.11 jdolecek
265 1.16 dsl if (fplus && (argv[i][0] != '-' || !isdigit((unsigned char)argv[i][1]))) {
266 1.11 jdolecek fplus = 0;
267 1.14 jdolecek if (argv[i][0] != '+') {
268 1.14 jdolecek /* not a -POS argument, skip */
269 1.14 jdolecek continue;
270 1.14 jdolecek }
271 1.11 jdolecek }
272 1.11 jdolecek
273 1.11 jdolecek /* parse spec */
274 1.11 jdolecek tpos = argv[i]+1;
275 1.11 jdolecek col = (int)strtol(tpos, &tpos, 10);
276 1.11 jdolecek if (*tpos == '.') {
277 1.11 jdolecek ++tpos;
278 1.11 jdolecek indent = (int) strtol(tpos, &tpos, 10);
279 1.11 jdolecek } else
280 1.11 jdolecek indent = 0;
281 1.11 jdolecek /* tpos points to optional flags now */
282 1.11 jdolecek
283 1.11 jdolecek /*
284 1.11 jdolecek * For x.y, the obsolescent variant assumed 0 == beginning
285 1.11 jdolecek * of line, while the new form uses 0 == end of line.
286 1.11 jdolecek * Convert accordingly.
287 1.11 jdolecek */
288 1.11 jdolecek if (!fplus) {
289 1.11 jdolecek /* +POS */
290 1.11 jdolecek col += 1;
291 1.11 jdolecek indent += 1;
292 1.11 jdolecek } else {
293 1.11 jdolecek /* -POS */
294 1.11 jdolecek if (indent > 0)
295 1.11 jdolecek col += 1;
296 1.11 jdolecek }
297 1.11 jdolecek
298 1.11 jdolecek /* new style spec */
299 1.11 jdolecek sz = snprintf(spec, sizeof(spec), "%d.%d%s", col, indent,
300 1.11 jdolecek tpos);
301 1.11 jdolecek
302 1.11 jdolecek if (!fplus) {
303 1.11 jdolecek /* Replace the +POS argument with new-style -kSPEC */
304 1.11 jdolecek asprintf(&vpos, "-k%s", spec);
305 1.1 bjh21 argv[i] = vpos;
306 1.11 jdolecek fplus = 1;
307 1.11 jdolecek } else {
308 1.11 jdolecek /*
309 1.11 jdolecek * Append the spec to one previously generated from
310 1.11 jdolecek * +POS argument, and remove the argv element.
311 1.11 jdolecek */
312 1.11 jdolecek asprintf(&vpos, "%s,%s", argv[i-1], spec);
313 1.11 jdolecek free(argv[i-1]);
314 1.11 jdolecek argv[i-1] = vpos;
315 1.11 jdolecek for (j=i; j < *argc; j++)
316 1.11 jdolecek argv[j] = argv[j+1];
317 1.11 jdolecek *argc -= 1;
318 1.14 jdolecek i--;
319 1.1 bjh21 }
320 1.1 bjh21 }
321 1.1 bjh21 }
322 1.1 bjh21
323 1.1 bjh21 /*
324 1.1 bjh21 * ascii, Rascii, Ftable, and RFtable map
325 1.20 dsl *
326 1.20 dsl * Sorting 'weight' tables.
327 1.20 dsl * Convert 'ascii' characters into their sort order.
328 1.20 dsl * The 'F' variants fold lower case to upper equivalent
329 1.20 dsl * The 'R' variants are for reverse sorting.
330 1.23 dsl *
331 1.23 dsl * The record separator (REC_D) never needs a weight, this frees one
332 1.23 dsl * byte value as an 'end of key' marker. This must be 0 for normal
333 1.23 dsl * weight tables, and 0xff for reverse weight tables - and is used
334 1.23 dsl * to terminate keys so that short keys sort before (after if reverse)
335 1.23 dsl * longer keys.
336 1.23 dsl *
337 1.23 dsl * The field separator has a normal weight - although it cannot occur
338 1.23 dsl * within a key unless it is the default (space+tab).
339 1.23 dsl *
340 1.20 dsl * All other bytes map to the appropriate value for the sort order.
341 1.20 dsl * Numeric sorts don't need any tables, they are reversed by negation.
342 1.20 dsl *
343 1.23 dsl * Global reverse sorts are done by writing the sorted keys in reverse
344 1.23 dsl * order - the sort itself is stil forwards.
345 1.23 dsl * This means that weights are only ever used when generating keys, any
346 1.23 dsl * sort of the original data bytes is always forwards and unweighted.
347 1.23 dsl *
348 1.1 bjh21 * Note: this is only good for ASCII sorting. For different LC 's,
349 1.20 dsl * all bets are off.
350 1.20 dsl *
351 1.20 dsl * itable[] and dtable[] are the masks for -i (ignore non-printables)
352 1.20 dsl * and -d (only sort blank and alphanumerics).
353 1.1 bjh21 */
354 1.1 bjh21 void
355 1.22 dsl settables(void)
356 1.1 bjh21 {
357 1.20 dsl int i;
358 1.23 dsl int next_weight = 1;
359 1.23 dsl int rev_weight = 254;
360 1.23 dsl
361 1.23 dsl ascii[REC_D] = 0;
362 1.23 dsl Rascii[REC_D] = 255;
363 1.23 dsl Ftable[REC_D] = 0;
364 1.23 dsl RFtable[REC_D] = 255;
365 1.20 dsl
366 1.20 dsl for (i = 0; i < 256; i++) {
367 1.23 dsl if (i == REC_D)
368 1.20 dsl continue;
369 1.20 dsl ascii[i] = next_weight;
370 1.20 dsl Rascii[i] = rev_weight;
371 1.20 dsl if (Ftable[i] == 0) {
372 1.20 dsl Ftable[i] = next_weight;
373 1.20 dsl RFtable[i] = rev_weight;
374 1.20 dsl Ftable[tolower(i)] = next_weight;
375 1.20 dsl RFtable[tolower(i)] = rev_weight;
376 1.1 bjh21 }
377 1.20 dsl next_weight++;
378 1.20 dsl rev_weight--;
379 1.4 jdolecek
380 1.1 bjh21 if (i == '\n' || isprint(i))
381 1.1 bjh21 itable[i] = 1;
382 1.4 jdolecek
383 1.1 bjh21 if (i == '\n' || i == '\t' || i == ' ' || isalnum(i))
384 1.1 bjh21 dtable[i] = 1;
385 1.1 bjh21 }
386 1.1 bjh21 }
387