init.c revision 1.21 1 1.21 dsl /* $NetBSD: init.c,v 1.21 2009/08/22 21:50:32 dsl 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.1 bjh21 #ifndef lint
67 1.21 dsl __RCSID("$NetBSD: init.c,v 1.21 2009/08/22 21:50:32 dsl Exp $");
68 1.2 bjh21 __SCCSID("@(#)init.c 8.1 (Berkeley) 6/6/93");
69 1.1 bjh21 #endif /* not lint */
70 1.1 bjh21
71 1.1 bjh21 #include <ctype.h>
72 1.1 bjh21 #include <string.h>
73 1.1 bjh21
74 1.19 dsl static void insertcol(struct field *);
75 1.19 dsl static const char *setcolumn(const char *, struct field *, int);
76 1.2 bjh21
77 1.1 bjh21 /*
78 1.20 dsl * masks of ignored characters.
79 1.4 jdolecek */
80 1.20 dsl static u_char dtable[NBINS], itable[NBINS];
81 1.4 jdolecek
82 1.4 jdolecek /*
83 1.12 jdolecek * parsed key options
84 1.12 jdolecek */
85 1.13 itojun struct coldesc *clist = NULL;
86 1.12 jdolecek int ncols = 0;
87 1.12 jdolecek
88 1.12 jdolecek /*
89 1.1 bjh21 * clist (list of columns which correspond to one or more icol or tcol)
90 1.1 bjh21 * is in increasing order of columns.
91 1.1 bjh21 * Fields are kept in increasing order of fields.
92 1.1 bjh21 */
93 1.1 bjh21
94 1.1 bjh21 /*
95 1.1 bjh21 * keep clist in order--inserts a column in a sorted array
96 1.1 bjh21 */
97 1.1 bjh21 static void
98 1.19 dsl insertcol(struct field *field)
99 1.1 bjh21 {
100 1.1 bjh21 int i;
101 1.13 itojun struct coldesc *p;
102 1.12 jdolecek
103 1.12 jdolecek /* Make space for new item */
104 1.15 jdolecek p = realloc(clist, (ncols + 2) * sizeof(*clist));
105 1.13 itojun if (!p)
106 1.13 itojun err(1, "realloc");
107 1.13 itojun clist = p;
108 1.13 itojun memset(&clist[ncols], 0, sizeof(clist[ncols]));
109 1.12 jdolecek
110 1.1 bjh21 for (i = 0; i < ncols; i++)
111 1.1 bjh21 if (field->icol.num <= clist[i].num)
112 1.1 bjh21 break;
113 1.1 bjh21 if (field->icol.num != clist[i].num) {
114 1.1 bjh21 memmove(clist+i+1, clist+i, sizeof(COLDESC)*(ncols-i));
115 1.1 bjh21 clist[i].num = field->icol.num;
116 1.1 bjh21 ncols++;
117 1.1 bjh21 }
118 1.1 bjh21 if (field->tcol.num && field->tcol.num != field->icol.num) {
119 1.1 bjh21 for (i = 0; i < ncols; i++)
120 1.1 bjh21 if (field->tcol.num <= clist[i].num)
121 1.1 bjh21 break;
122 1.1 bjh21 if (field->tcol.num != clist[i].num) {
123 1.1 bjh21 memmove(clist+i+1, clist+i,sizeof(COLDESC)*(ncols-i));
124 1.1 bjh21 clist[i].num = field->tcol.num;
125 1.1 bjh21 ncols++;
126 1.1 bjh21 }
127 1.1 bjh21 }
128 1.1 bjh21 }
129 1.1 bjh21
130 1.1 bjh21 /*
131 1.1 bjh21 * matches fields with the appropriate columns--n^2 but who cares?
132 1.1 bjh21 */
133 1.1 bjh21 void
134 1.19 dsl fldreset(struct field *fldtab)
135 1.1 bjh21 {
136 1.1 bjh21 int i;
137 1.13 itojun
138 1.13 itojun fldtab[0].tcol.p = clist + ncols - 1;
139 1.1 bjh21 for (++fldtab; fldtab->icol.num; ++fldtab) {
140 1.5 jdolecek for (i = 0; fldtab->icol.num != clist[i].num; i++)
141 1.5 jdolecek ;
142 1.1 bjh21 fldtab->icol.p = clist + i;
143 1.1 bjh21 if (!fldtab->tcol.num)
144 1.1 bjh21 continue;
145 1.5 jdolecek for (i = 0; fldtab->tcol.num != clist[i].num; i++)
146 1.5 jdolecek ;
147 1.1 bjh21 fldtab->tcol.p = clist + i;
148 1.1 bjh21 }
149 1.1 bjh21 }
150 1.1 bjh21
151 1.1 bjh21 /*
152 1.1 bjh21 * interprets a column in a -k field
153 1.1 bjh21 */
154 1.3 jdolecek static const char *
155 1.19 dsl setcolumn(const char *pos, struct field *cur_fld, int gflag)
156 1.1 bjh21 {
157 1.1 bjh21 struct column *col;
158 1.10 jdolecek char *npos;
159 1.1 bjh21 int tmp;
160 1.10 jdolecek col = cur_fld->icol.num ? (&cur_fld->tcol) : (&cur_fld->icol);
161 1.10 jdolecek col->num = (int) strtol(pos, &npos, 10);
162 1.10 jdolecek pos = npos;
163 1.1 bjh21 if (col->num <= 0 && !(col->num == 0 && col == &(cur_fld->tcol)))
164 1.1 bjh21 errx(2, "field numbers must be positive");
165 1.1 bjh21 if (*pos == '.') {
166 1.1 bjh21 if (!col->num)
167 1.1 bjh21 errx(2, "cannot indent end of line");
168 1.6 thorpej ++pos;
169 1.10 jdolecek col->indent = (int) strtol(pos, &npos, 10);
170 1.10 jdolecek pos = npos;
171 1.1 bjh21 if (&cur_fld->icol == col)
172 1.1 bjh21 col->indent--;
173 1.1 bjh21 if (col->indent < 0)
174 1.1 bjh21 errx(2, "illegal offset");
175 1.1 bjh21 }
176 1.10 jdolecek for(; (tmp = optval(*pos, cur_fld->tcol.num)); pos++)
177 1.10 jdolecek cur_fld->flags |= tmp;
178 1.1 bjh21 if (cur_fld->icol.num == 0)
179 1.1 bjh21 cur_fld->icol.num = 1;
180 1.1 bjh21 return (pos);
181 1.1 bjh21 }
182 1.1 bjh21
183 1.1 bjh21 int
184 1.19 dsl setfield(const char *pos, struct field *cur_fld, int gflag)
185 1.1 bjh21 {
186 1.1 bjh21 int tmp;
187 1.4 jdolecek
188 1.20 dsl cur_fld->mask = NULL;
189 1.4 jdolecek
190 1.1 bjh21 pos = setcolumn(pos, cur_fld, gflag);
191 1.1 bjh21 if (*pos == '\0') /* key extends to EOL. */
192 1.1 bjh21 cur_fld->tcol.num = 0;
193 1.1 bjh21 else {
194 1.1 bjh21 if (*pos != ',')
195 1.1 bjh21 errx(2, "illegal field descriptor");
196 1.1 bjh21 setcolumn((++pos), cur_fld, gflag);
197 1.1 bjh21 }
198 1.1 bjh21 if (!cur_fld->flags)
199 1.1 bjh21 cur_fld->flags = gflag;
200 1.1 bjh21 tmp = cur_fld->flags;
201 1.1 bjh21
202 1.20 dsl /* Assign appropriate mask table and weight table. */
203 1.20 dsl cur_fld->weights = weight_tables[tmp & (R | F)];
204 1.1 bjh21 if (tmp & I)
205 1.1 bjh21 cur_fld->mask = itable;
206 1.1 bjh21 else if (tmp & D)
207 1.1 bjh21 cur_fld->mask = dtable;
208 1.4 jdolecek
209 1.1 bjh21 cur_fld->flags |= (gflag & (BI | BT));
210 1.1 bjh21 if (!cur_fld->tcol.indent) /* BT has no meaning at end of field */
211 1.4 jdolecek cur_fld->flags &= ~BT;
212 1.4 jdolecek
213 1.1 bjh21 if (cur_fld->tcol.num && !(!(cur_fld->flags & BI)
214 1.1 bjh21 && cur_fld->flags & BT) && (cur_fld->tcol.num <= cur_fld->icol.num
215 1.17 jdolecek && cur_fld->tcol.indent != 0 /* == 0 -> end of field, i.e. okay */
216 1.1 bjh21 && cur_fld->tcol.indent < cur_fld->icol.indent))
217 1.1 bjh21 errx(2, "fields out of order");
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.11 jdolecek if (argv[i][0] != '+' && !fplus)
253 1.11 jdolecek continue;
254 1.11 jdolecek
255 1.16 dsl if (fplus && (argv[i][0] != '-' || !isdigit((unsigned char)argv[i][1]))) {
256 1.11 jdolecek fplus = 0;
257 1.14 jdolecek if (argv[i][0] != '+') {
258 1.14 jdolecek /* not a -POS argument, skip */
259 1.14 jdolecek continue;
260 1.14 jdolecek }
261 1.11 jdolecek }
262 1.11 jdolecek
263 1.11 jdolecek /* parse spec */
264 1.11 jdolecek tpos = argv[i]+1;
265 1.11 jdolecek col = (int)strtol(tpos, &tpos, 10);
266 1.11 jdolecek if (*tpos == '.') {
267 1.11 jdolecek ++tpos;
268 1.11 jdolecek indent = (int) strtol(tpos, &tpos, 10);
269 1.11 jdolecek } else
270 1.11 jdolecek indent = 0;
271 1.11 jdolecek /* tpos points to optional flags now */
272 1.11 jdolecek
273 1.11 jdolecek /*
274 1.11 jdolecek * For x.y, the obsolescent variant assumed 0 == beginning
275 1.11 jdolecek * of line, while the new form uses 0 == end of line.
276 1.11 jdolecek * Convert accordingly.
277 1.11 jdolecek */
278 1.11 jdolecek if (!fplus) {
279 1.11 jdolecek /* +POS */
280 1.11 jdolecek col += 1;
281 1.11 jdolecek indent += 1;
282 1.11 jdolecek } else {
283 1.11 jdolecek /* -POS */
284 1.11 jdolecek if (indent > 0)
285 1.11 jdolecek col += 1;
286 1.11 jdolecek }
287 1.11 jdolecek
288 1.11 jdolecek /* new style spec */
289 1.11 jdolecek sz = snprintf(spec, sizeof(spec), "%d.%d%s", col, indent,
290 1.11 jdolecek tpos);
291 1.11 jdolecek
292 1.11 jdolecek if (!fplus) {
293 1.11 jdolecek /* Replace the +POS argument with new-style -kSPEC */
294 1.11 jdolecek asprintf(&vpos, "-k%s", spec);
295 1.1 bjh21 argv[i] = vpos;
296 1.11 jdolecek fplus = 1;
297 1.11 jdolecek } else {
298 1.11 jdolecek /*
299 1.11 jdolecek * Append the spec to one previously generated from
300 1.11 jdolecek * +POS argument, and remove the argv element.
301 1.11 jdolecek */
302 1.11 jdolecek asprintf(&vpos, "%s,%s", argv[i-1], spec);
303 1.11 jdolecek free(argv[i-1]);
304 1.11 jdolecek argv[i-1] = vpos;
305 1.11 jdolecek for (j=i; j < *argc; j++)
306 1.11 jdolecek argv[j] = argv[j+1];
307 1.11 jdolecek *argc -= 1;
308 1.14 jdolecek i--;
309 1.1 bjh21 }
310 1.1 bjh21 }
311 1.1 bjh21 }
312 1.1 bjh21
313 1.1 bjh21 /*
314 1.1 bjh21 * ascii, Rascii, Ftable, and RFtable map
315 1.20 dsl *
316 1.20 dsl * Sorting 'weight' tables.
317 1.20 dsl * Convert 'ascii' characters into their sort order.
318 1.20 dsl * The 'F' variants fold lower case to upper equivalent
319 1.20 dsl * The 'R' variants are for reverse sorting.
320 1.20 dsl * The record separator (REC_D) always maps to 0.
321 1.20 dsl * One is reserved for field separators (added when key is generated)
322 1.20 dsl * The field separator (from -t<ch>) map to 1 or 255 (unless SINGL_FLD)
323 1.20 dsl * All other bytes map to the appropriate value for the sort order.
324 1.20 dsl * Numeric sorts don't need any tables, they are reversed by negation.
325 1.20 dsl *
326 1.1 bjh21 * Note: this is only good for ASCII sorting. For different LC 's,
327 1.20 dsl * all bets are off.
328 1.20 dsl *
329 1.20 dsl * If SINGL_FLD then the weights have to be applied during the actual sort.
330 1.20 dsl * Otherwise they are applied when the key bytes are built.
331 1.20 dsl *
332 1.20 dsl * itable[] and dtable[] are the masks for -i (ignore non-printables)
333 1.20 dsl * and -d (only sort blank and alphanumerics).
334 1.1 bjh21 */
335 1.1 bjh21 void
336 1.19 dsl settables(int gflags)
337 1.1 bjh21 {
338 1.20 dsl int i;
339 1.20 dsl int next_weight = SINGL_FLD ? 1 : 2;
340 1.20 dsl int rev_weight = SINGL_FLD ? 255 : 254;
341 1.21 dsl int had_field_sep = SINGL_FLD;
342 1.20 dsl
343 1.20 dsl for (i = 0; i < 256; i++) {
344 1.20 dsl unweighted[i] = i;
345 1.20 dsl if (d_mask[i] & REC_D_F)
346 1.20 dsl continue;
347 1.21 dsl if (!had_field_sep && d_mask[i] & FLD_D) {
348 1.21 dsl /* First/only separator sorts before any data */
349 1.20 dsl ascii[i] = 1;
350 1.20 dsl Rascii[i] = 255;
351 1.20 dsl had_field_sep = 1;
352 1.20 dsl continue;
353 1.20 dsl }
354 1.20 dsl ascii[i] = next_weight;
355 1.20 dsl Rascii[i] = rev_weight;
356 1.20 dsl if (Ftable[i] == 0) {
357 1.20 dsl Ftable[i] = next_weight;
358 1.20 dsl RFtable[i] = rev_weight;
359 1.20 dsl Ftable[tolower(i)] = next_weight;
360 1.20 dsl RFtable[tolower(i)] = rev_weight;
361 1.1 bjh21 }
362 1.20 dsl next_weight++;
363 1.20 dsl rev_weight--;
364 1.4 jdolecek
365 1.1 bjh21 if (i == '\n' || isprint(i))
366 1.1 bjh21 itable[i] = 1;
367 1.4 jdolecek
368 1.1 bjh21 if (i == '\n' || i == '\t' || i == ' ' || isalnum(i))
369 1.1 bjh21 dtable[i] = 1;
370 1.1 bjh21 }
371 1.1 bjh21 }
372