source: MondoRescue/branches/2.2.9/mindi-busybox/libbb/dump.c@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 19.9 KB
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
[821]2/*
3 * Support code for the hexdump and od applets,
4 * based on code from util-linux v 2.11l
5 *
6 * Copyright (c) 1989
[2725]7 * The Regents of the University of California. All rights reserved.
[821]8 *
[2725]9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]10 *
11 * Original copyright notice is retained at the end of this file.
12 */
13
14#include "libbb.h"
15#include "dump.h"
16
[1765]17static const char index_str[] ALIGN1 = ".#-+ 0123456789";
[821]18
[1765]19static const char size_conv_str[] ALIGN1 =
[821]20"\x1\x4\x4\x4\x4\x4\x4\x8\x8\x8\x8\010cdiouxXeEfgG";
21
[1765]22static const char lcc[] ALIGN1 = "diouxX";
[821]23
[2725]24
25typedef struct priv_dumper_t {
26 dumper_t pub;
27
28 char **argv;
29 FU *endfu;
30 off_t savaddress; /* saved address/offset in stream */
31 off_t eaddress; /* end address */
32 off_t address; /* address/offset in stream */
33 int blocksize;
34 smallint exitval; /* final exit value */
35
36 /* former statics */
37 smallint next__done;
38 smallint get__ateof; // = 1;
39 unsigned char *get__curp;
40 unsigned char *get__savp;
41} priv_dumper_t;
42
43dumper_t* FAST_FUNC alloc_dumper(void)
[821]44{
[2725]45 priv_dumper_t *dumper = xzalloc(sizeof(*dumper));
46 dumper->pub.dump_length = -1;
47 dumper->pub.dump_vflag = FIRST;
48 dumper->get__ateof = 1;
49 return &dumper->pub;
50}
51
52
53static NOINLINE int bb_dump_size(FS *fs)
54{
[1765]55 FU *fu;
56 int bcnt, cur_size;
57 char *fmt;
[821]58 const char *p;
59 int prec;
60
61 /* figure out the data block bb_dump_size needed for each format unit */
62 for (cur_size = 0, fu = fs->nextfu; fu; fu = fu->nextfu) {
63 if (fu->bcnt) {
64 cur_size += fu->bcnt * fu->reps;
65 continue;
66 }
67 for (bcnt = prec = 0, fmt = fu->fmt; *fmt; ++fmt) {
68 if (*fmt != '%')
69 continue;
70 /*
[2725]71 * skip any special chars -- save precision in
[821]72 * case it's a %s format.
73 */
74 while (strchr(index_str + 1, *++fmt));
75 if (*fmt == '.' && isdigit(*++fmt)) {
76 prec = atoi(fmt);
[2725]77 while (isdigit(*++fmt))
78 continue;
[821]79 }
[2725]80 p = strchr(size_conv_str + 12, *fmt);
81 if (!p) {
[821]82 if (*fmt == 's') {
83 bcnt += prec;
84 } else if (*fmt == '_') {
85 ++fmt;
86 if ((*fmt == 'c') || (*fmt == 'p') || (*fmt == 'u')) {
87 bcnt += 1;
88 }
89 }
90 } else {
91 bcnt += size_conv_str[p - (size_conv_str + 12)];
92 }
93 }
94 cur_size += bcnt * fu->reps;
95 }
[1765]96 return cur_size;
[821]97}
98
[2725]99static NOINLINE void rewrite(priv_dumper_t *dumper, FS *fs)
[821]100{
101 enum { NOTOKAY, USEBCNT, USEPREC } sokay;
102 PR *pr, **nextpr = NULL;
103 FU *fu;
104 char *p1, *p2, *p3;
105 char savech, *fmtp;
106 const char *byte_count_str;
107 int nconv, prec = 0;
108
109 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
110 /*
111 * break each format unit into print units; each
112 * conversion character gets its own.
113 */
114 for (nconv = 0, fmtp = fu->fmt; *fmtp; nextpr = &pr->nextpr) {
115 /* NOSTRICT */
[2725]116 /* DBU:[dvae@cray.com] zalloc so that forward ptrs start out NULL*/
[821]117 pr = xzalloc(sizeof(PR));
118 if (!fu->nextpr)
119 fu->nextpr = pr;
120 /* ignore nextpr -- its unused inside the loop and is
[2725]121 * uninitialized 1st time through.
[821]122 */
123
[2725]124 /* skip preceding text and up to the next % sign */
125 for (p1 = fmtp; *p1 && *p1 != '%'; ++p1)
126 continue;
[821]127
128 /* only text in the string */
129 if (!*p1) {
130 pr->fmt = fmtp;
131 pr->flags = F_TEXT;
132 break;
133 }
134
135 /*
136 * get precision for %s -- if have a byte count, don't
137 * need it.
138 */
139 if (fu->bcnt) {
140 sokay = USEBCNT;
[2725]141 /* skip to conversion character */
142 for (++p1; strchr(index_str, *p1); ++p1)
143 continue;
[821]144 } else {
[2725]145 /* skip any special chars, field width */
146 while (strchr(index_str + 1, *++p1))
147 continue;
[821]148 if (*p1 == '.' && isdigit(*++p1)) {
149 sokay = USEPREC;
150 prec = atoi(p1);
[2725]151 while (isdigit(*++p1))
152 continue;
[821]153 } else
154 sokay = NOTOKAY;
155 }
156
[2725]157 p2 = p1 + 1; /* set end pointer */
[821]158
159 /*
160 * figure out the byte count for each conversion;
161 * rewrite the format as necessary, set up blank-
162 * pbb_dump_adding for end of data.
163 */
164 if (*p1 == 'c') {
165 pr->flags = F_CHAR;
[2725]166 DO_BYTE_COUNT_1:
[821]167 byte_count_str = "\001";
[2725]168 DO_BYTE_COUNT:
[821]169 if (fu->bcnt) {
170 do {
171 if (fu->bcnt == *byte_count_str) {
172 break;
173 }
174 } while (*++byte_count_str);
175 }
176 /* Unlike the original, output the remainder of the format string. */
177 if (!*byte_count_str) {
[1765]178 bb_error_msg_and_die("bad byte count for conversion character %s", p1);
[821]179 }
180 pr->bcnt = *byte_count_str;
181 } else if (*p1 == 'l') {
182 ++p2;
183 ++p1;
[2725]184 DO_INT_CONV:
[821]185 {
186 const char *e;
[2725]187 e = strchr(lcc, *p1);
188 if (!e) {
[821]189 goto DO_BAD_CONV_CHAR;
190 }
191 pr->flags = F_INT;
192 if (e > lcc + 1) {
193 pr->flags = F_UINT;
194 }
195 byte_count_str = "\004\002\001";
196 goto DO_BYTE_COUNT;
197 }
198 /* NOTREACHED */
199 } else if (strchr(lcc, *p1)) {
200 goto DO_INT_CONV;
201 } else if (strchr("eEfgG", *p1)) {
202 pr->flags = F_DBL;
203 byte_count_str = "\010\004";
204 goto DO_BYTE_COUNT;
205 } else if (*p1 == 's') {
206 pr->flags = F_STR;
207 if (sokay == USEBCNT) {
208 pr->bcnt = fu->bcnt;
209 } else if (sokay == USEPREC) {
210 pr->bcnt = prec;
[2725]211 } else { /* NOTOKAY */
[1765]212 bb_error_msg_and_die("%%s requires a precision or a byte count");
[821]213 }
214 } else if (*p1 == '_') {
215 ++p2;
216 switch (p1[1]) {
217 case 'A':
[2725]218 dumper->endfu = fu;
[821]219 fu->flags |= F_IGNORE;
220 /* FALLTHROUGH */
221 case 'a':
222 pr->flags = F_ADDRESS;
223 ++p2;
224 if ((p1[2] != 'd') && (p1[2] != 'o') && (p1[2] != 'x')) {
225 goto DO_BAD_CONV_CHAR;
226 }
227 *p1 = p1[2];
228 break;
229 case 'c':
230 pr->flags = F_C;
231 /* *p1 = 'c'; set in conv_c */
232 goto DO_BYTE_COUNT_1;
233 case 'p':
234 pr->flags = F_P;
235 *p1 = 'c';
236 goto DO_BYTE_COUNT_1;
237 case 'u':
238 pr->flags = F_U;
239 /* *p1 = 'c'; set in conv_u */
240 goto DO_BYTE_COUNT_1;
241 default:
242 goto DO_BAD_CONV_CHAR;
243 }
244 } else {
[2725]245 DO_BAD_CONV_CHAR:
[1765]246 bb_error_msg_and_die("bad conversion character %%%s", p1);
[821]247 }
248
249 /*
250 * copy to PR format string, set conversion character
251 * pointer, update original.
252 */
253 savech = *p2;
254 p1[1] = '\0';
[1765]255 pr->fmt = xstrdup(fmtp);
[821]256 *p2 = savech;
[2725]257 //Too early! xrealloc can move pr->fmt!
258 //pr->cchar = pr->fmt + (p1 - fmtp);
[821]259
260 /* DBU:[dave@cray.com] w/o this, trailing fmt text, space is lost.
261 * Skip subsequent text and up to the next % sign and tack the
262 * additional text onto fmt: eg. if fmt is "%x is a HEX number",
263 * we lose the " is a HEX number" part of fmt.
264 */
[2725]265 for (p3 = p2; *p3 && *p3 != '%'; p3++)
266 continue;
267 if (p3 > p2) {
[821]268 savech = *p3;
269 *p3 = '\0';
[2725]270 pr->fmt = xrealloc(pr->fmt, strlen(pr->fmt) + (p3-p2) + 1);
[821]271 strcat(pr->fmt, p2);
272 *p3 = savech;
273 p2 = p3;
274 }
275
[2725]276 pr->cchar = pr->fmt + (p1 - fmtp);
[821]277 fmtp = p2;
278
279 /* only one conversion character if byte count */
280 if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) {
[1765]281 bb_error_msg_and_die("byte count with multiple conversion characters");
[821]282 }
283 }
284 /*
285 * if format unit byte count not specified, figure it out
286 * so can adjust rep count later.
287 */
288 if (!fu->bcnt)
289 for (pr = fu->nextpr; pr; pr = pr->nextpr)
290 fu->bcnt += pr->bcnt;
291 }
292 /*
293 * if the format string interprets any data at all, and it's
[2725]294 * not the same as the blocksize, and its last format unit
[821]295 * interprets any data at all, and has no iteration count,
296 * repeat it as necessary.
297 *
298 * if, rep count is greater than 1, no trailing whitespace
299 * gets output from the last iteration of the format unit.
300 */
[2725]301 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
302 if (!fu->nextfu && fs->bcnt < dumper->blocksize
303 && !(fu->flags & F_SETREP) && fu->bcnt
304 ) {
305 fu->reps += (dumper->blocksize - fs->bcnt) / fu->bcnt;
306 }
[821]307 if (fu->reps > 1) {
308 for (pr = fu->nextpr;; pr = pr->nextpr)
309 if (!pr->nextpr)
310 break;
311 for (p1 = pr->fmt, p2 = NULL; *p1; ++p1)
312 p2 = isspace(*p1) ? p1 : NULL;
313 if (p2)
314 pr->nospace = p2;
315 }
316 if (!fu->nextfu)
317 break;
318 }
319}
320
[2725]321static void do_skip(priv_dumper_t *dumper, const char *fname, int statok)
[821]322{
323 struct stat sbuf;
324
325 if (statok) {
[2725]326 xfstat(STDIN_FILENO, &sbuf, fname);
327 if (!(S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode) || S_ISFIFO(sbuf.st_mode))
328 && dumper->pub.dump_skip >= sbuf.st_size
329 ) {
330 /* If bb_dump_size valid and pub.dump_skip >= size */
331 dumper->pub.dump_skip -= sbuf.st_size;
332 dumper->address += sbuf.st_size;
[821]333 return;
334 }
335 }
[2725]336 if (fseek(stdin, dumper->pub.dump_skip, SEEK_SET)) {
337 bb_simple_perror_msg_and_die(fname);
[821]338 }
[2725]339 dumper->address += dumper->pub.dump_skip;
340 dumper->savaddress = dumper->address;
341 dumper->pub.dump_skip = 0;
[821]342}
343
[2725]344static NOINLINE int next(priv_dumper_t *dumper)
[821]345{
346 int statok;
347
348 for (;;) {
[2725]349 if (*dumper->argv) {
350 dumper->next__done = statok = 1;
351 if (!(freopen(*dumper->argv, "r", stdin))) {
352 bb_simple_perror_msg(*dumper->argv);
353 dumper->exitval = 1;
354 ++dumper->argv;
[821]355 continue;
356 }
357 } else {
[2725]358 if (dumper->next__done)
359 return 0; /* no next file */
360 dumper->next__done = 1;
[821]361 statok = 0;
362 }
[2725]363 if (dumper->pub.dump_skip)
364 do_skip(dumper, statok ? *dumper->argv : "stdin", statok);
365 if (*dumper->argv)
366 ++dumper->argv;
367 if (!dumper->pub.dump_skip)
[1765]368 return 1;
[821]369 }
370 /* NOTREACHED */
371}
372
[2725]373static unsigned char *get(priv_dumper_t *dumper)
[821]374{
[1765]375 int n;
[821]376 int need, nread;
[2725]377 int blocksize = dumper->blocksize;
[821]378
[2725]379 if (!dumper->get__curp) {
380 dumper->address = (off_t)0; /*DBU:[dave@cray.com] initialize,initialize..*/
381 dumper->get__curp = xmalloc(blocksize);
382 dumper->get__savp = xzalloc(blocksize); /* need to be initialized */
[821]383 } else {
[2725]384 unsigned char *tmp = dumper->get__curp;
385 dumper->get__curp = dumper->get__savp;
386 dumper->get__savp = tmp;
387 dumper->savaddress += blocksize;
388 dumper->address = dumper->savaddress;
[821]389 }
[2725]390 need = blocksize;
391 nread = 0;
392 while (1) {
[821]393 /*
394 * if read the right number of bytes, or at EOF for one file,
395 * and no other files are available, zero-pad the rest of the
396 * block and set the end flag.
397 */
[2725]398 if (!dumper->pub.dump_length || (dumper->get__ateof && !next(dumper))) {
399 if (need == blocksize) {
[1765]400 return NULL;
[821]401 }
[2725]402 if (dumper->pub.dump_vflag != ALL && !memcmp(dumper->get__curp, dumper->get__savp, nread)) {
403 if (dumper->pub.dump_vflag != DUP) {
[1765]404 puts("*");
[821]405 }
[1765]406 return NULL;
[821]407 }
[2725]408 memset(dumper->get__curp + nread, 0, need);
409 dumper->eaddress = dumper->address + nread;
410 return dumper->get__curp;
[821]411 }
[2725]412 n = fread(dumper->get__curp + nread, sizeof(unsigned char),
413 dumper->pub.dump_length == -1 ? need : MIN(dumper->pub.dump_length, need), stdin);
[821]414 if (!n) {
415 if (ferror(stdin)) {
[2725]416 bb_simple_perror_msg(dumper->argv[-1]);
[821]417 }
[2725]418 dumper->get__ateof = 1;
[821]419 continue;
420 }
[2725]421 dumper->get__ateof = 0;
422 if (dumper->pub.dump_length != -1) {
423 dumper->pub.dump_length -= n;
[821]424 }
[1765]425 need -= n;
426 if (!need) {
[2725]427 if (dumper->pub.dump_vflag == ALL || dumper->pub.dump_vflag == FIRST
428 || memcmp(dumper->get__curp, dumper->get__savp, blocksize)
429 ) {
430 if (dumper->pub.dump_vflag == DUP || dumper->pub.dump_vflag == FIRST) {
431 dumper->pub.dump_vflag = WAIT;
[821]432 }
[2725]433 return dumper->get__curp;
[821]434 }
[2725]435 if (dumper->pub.dump_vflag == WAIT) {
[1765]436 puts("*");
[821]437 }
[2725]438 dumper->pub.dump_vflag = DUP;
439 dumper->savaddress += blocksize;
440 dumper->address = dumper->savaddress;
441 need = blocksize;
[821]442 nread = 0;
443 } else {
444 nread += n;
445 }
446 }
447}
448
[2725]449static void bpad(PR *pr)
[821]450{
451 char *p1, *p2;
452
453 /*
454 * remove all conversion flags; '-' is the only one valid
455 * with %s, and it's not useful here.
456 */
457 pr->flags = F_BPAD;
458 *pr->cchar = 's';
[2725]459 for (p1 = pr->fmt; *p1 != '%'; ++p1)
460 continue;
[821]461 for (p2 = ++p1; *p1 && strchr(" -0+#", *p1); ++p1)
[2725]462 if (pr->nospace)
463 pr->nospace--;
464 while ((*p2++ = *p1++) != 0)
465 continue;
[821]466}
467
[1765]468static const char conv_str[] ALIGN1 =
[821]469 "\0\\0\0"
[2725]470 "\007\\a\0" /* \a */
[821]471 "\b\\b\0"
472 "\f\\b\0"
473 "\n\\n\0"
474 "\r\\r\0"
475 "\t\\t\0"
476 "\v\\v\0"
[1765]477 ;
[821]478
479
[2725]480static void conv_c(PR *pr, unsigned char *p)
[821]481{
482 const char *str = conv_str;
483 char buf[10];
484
485 do {
486 if (*p == *str) {
487 ++str;
488 goto strpr;
489 }
490 str += 4;
491 } while (*str);
492
[2725]493 if (isprint_asciionly(*p)) {
[821]494 *pr->cchar = 'c';
[2725]495 printf(pr->fmt, *p);
[821]496 } else {
497 sprintf(buf, "%03o", (int) *p);
498 str = buf;
[2725]499 strpr:
[821]500 *pr->cchar = 's';
501 printf(pr->fmt, str);
502 }
503}
504
[2725]505static void conv_u(PR *pr, unsigned char *p)
[821]506{
[1765]507 static const char list[] ALIGN1 =
[821]508 "nul\0soh\0stx\0etx\0eot\0enq\0ack\0bel\0"
509 "bs\0_ht\0_lf\0_vt\0_ff\0_cr\0_so\0_si\0_"
510 "dle\0dcl\0dc2\0dc3\0dc4\0nak\0syn\0etb\0"
511 "can\0em\0_sub\0esc\0fs\0_gs\0_rs\0_us";
512
513 /* od used nl, not lf */
514 if (*p <= 0x1f) {
515 *pr->cchar = 's';
516 printf(pr->fmt, list + (4 * (int)*p));
517 } else if (*p == 0x7f) {
518 *pr->cchar = 's';
519 printf(pr->fmt, "del");
[2725]520 } else if (*p < 0x7f) { /* isprint() */
[821]521 *pr->cchar = 'c';
522 printf(pr->fmt, *p);
523 } else {
524 *pr->cchar = 'x';
525 printf(pr->fmt, (int) *p);
526 }
527}
528
[2725]529static void display(priv_dumper_t* dumper)
[821]530{
[1765]531 FS *fs;
532 FU *fu;
533 PR *pr;
534 int cnt;
[2725]535 unsigned char *bp, *savebp;
[821]536 off_t saveaddress;
[2725]537 unsigned char savech = '\0';
[821]538
[2725]539 while ((bp = get(dumper)) != NULL) {
540 fs = dumper->pub.fshead;
541 savebp = bp;
542 saveaddress = dumper->address;
543 for (; fs; fs = fs->nextfs, bp = savebp, dumper->address = saveaddress) {
[821]544 for (fu = fs->nextfu; fu; fu = fu->nextfu) {
545 if (fu->flags & F_IGNORE) {
546 break;
547 }
548 for (cnt = fu->reps; cnt; --cnt) {
[2725]549 for (pr = fu->nextpr; pr; dumper->address += pr->bcnt,
550 bp += pr->bcnt, pr = pr->nextpr) {
551 if (dumper->eaddress && dumper->address >= dumper->eaddress
552 && !(pr->flags & (F_TEXT | F_BPAD))
553 ) {
[821]554 bpad(pr);
555 }
556 if (cnt == 1 && pr->nospace) {
557 savech = *pr->nospace;
558 *pr->nospace = '\0';
559 }
560/* PRINT; */
561 switch (pr->flags) {
562 case F_ADDRESS:
[2725]563 printf(pr->fmt, (unsigned) dumper->address);
[821]564 break;
565 case F_BPAD:
566 printf(pr->fmt, "");
567 break;
568 case F_C:
569 conv_c(pr, bp);
570 break;
571 case F_CHAR:
572 printf(pr->fmt, *bp);
573 break;
[2725]574 case F_DBL: {
[821]575 double dval;
576 float fval;
577
578 switch (pr->bcnt) {
579 case 4:
[2725]580 memcpy(&fval, bp, sizeof(fval));
[821]581 printf(pr->fmt, fval);
582 break;
583 case 8:
[2725]584 memcpy(&dval, bp, sizeof(dval));
[821]585 printf(pr->fmt, dval);
586 break;
587 }
588 break;
589 }
[2725]590 case F_INT: {
[821]591 int ival;
592 short sval;
593
594 switch (pr->bcnt) {
595 case 1:
596 printf(pr->fmt, (int) *bp);
597 break;
598 case 2:
[2725]599 memcpy(&sval, bp, sizeof(sval));
[821]600 printf(pr->fmt, (int) sval);
601 break;
602 case 4:
[2725]603 memcpy(&ival, bp, sizeof(ival));
[821]604 printf(pr->fmt, ival);
605 break;
606 }
607 break;
608 }
609 case F_P:
[2725]610 printf(pr->fmt, isprint_asciionly(*bp) ? *bp : '.');
[821]611 break;
612 case F_STR:
613 printf(pr->fmt, (char *) bp);
614 break;
615 case F_TEXT:
616 printf(pr->fmt);
617 break;
618 case F_U:
619 conv_u(pr, bp);
620 break;
[2725]621 case F_UINT: {
622 unsigned ival;
[821]623 unsigned short sval;
624
625 switch (pr->bcnt) {
626 case 1:
[2725]627 printf(pr->fmt, (unsigned) *bp);
[821]628 break;
629 case 2:
[2725]630 memcpy(&sval, bp, sizeof(sval));
631 printf(pr->fmt, (unsigned) sval);
[821]632 break;
633 case 4:
[2725]634 memcpy(&ival, bp, sizeof(ival));
[821]635 printf(pr->fmt, ival);
636 break;
637 }
638 break;
639 }
640 }
641 if (cnt == 1 && pr->nospace) {
642 *pr->nospace = savech;
643 }
644 }
645 }
646 }
647 }
648 }
[2725]649 if (dumper->endfu) {
[821]650 /*
[2725]651 * if eaddress not set, error or file size was multiple
652 * of blocksize, and no partial block ever found.
[821]653 */
[2725]654 if (!dumper->eaddress) {
655 if (!dumper->address) {
[821]656 return;
657 }
[2725]658 dumper->eaddress = dumper->address;
[821]659 }
[2725]660 for (pr = dumper->endfu->nextpr; pr; pr = pr->nextpr) {
[821]661 switch (pr->flags) {
662 case F_ADDRESS:
[2725]663 printf(pr->fmt, (unsigned) dumper->eaddress);
[821]664 break;
665 case F_TEXT:
[2725]666 printf(pr->fmt);
[821]667 break;
668 }
669 }
670 }
671}
672
[2725]673#define dumper ((priv_dumper_t*)pub_dumper)
674int FAST_FUNC bb_dump_dump(dumper_t *pub_dumper, char **argv)
[821]675{
[1765]676 FS *tfs;
[2725]677 int blocksize;
[821]678
679 /* figure out the data block bb_dump_size */
[2725]680 blocksize = 0;
681 tfs = dumper->pub.fshead;
682 while (tfs) {
[821]683 tfs->bcnt = bb_dump_size(tfs);
[2725]684 if (blocksize < tfs->bcnt) {
685 blocksize = tfs->bcnt;
[821]686 }
[2725]687 tfs = tfs->nextfs;
[821]688 }
[2725]689 dumper->blocksize = blocksize;
690
[821]691 /* rewrite the rules, do syntax checking */
[2725]692 for (tfs = dumper->pub.fshead; tfs; tfs = tfs->nextfs) {
693 rewrite(dumper, tfs);
[821]694 }
695
[2725]696 dumper->argv = argv;
697 display(dumper);
[821]698
[2725]699 return dumper->exitval;
[821]700}
701
[2725]702void FAST_FUNC bb_dump_add(dumper_t* pub_dumper, const char *fmt)
[821]703{
704 const char *p;
705 char *p1;
706 char *p2;
707 FS *tfs;
[2725]708 FU *tfu, **nextfupp;
[821]709 const char *savep;
710
711 /* start new linked list of format units */
712 tfs = xzalloc(sizeof(FS)); /*DBU:[dave@cray.com] start out NULL */
[2725]713 if (!dumper->pub.fshead) {
714 dumper->pub.fshead = tfs;
[821]715 } else {
[2725]716 FS *fslast = dumper->pub.fshead;
717 while (fslast->nextfs)
718 fslast = fslast->nextfs;
719 fslast->nextfs = tfs;
[821]720 }
[2725]721 nextfupp = &tfs->nextfu;
[821]722
723 /* take the format string and break it up into format units */
[2725]724 p = fmt;
725 for (;;) {
[821]726 p = skip_whitespace(p);
727 if (!*p) {
728 break;
729 }
730
731 /* allocate a new format unit and link it in */
732 /* NOSTRICT */
[2725]733 /* DBU:[dave@cray.com] zalloc so that forward pointers start out NULL */
[821]734 tfu = xzalloc(sizeof(FU));
[2725]735 *nextfupp = tfu;
736 nextfupp = &tfu->nextfu;
[821]737 tfu->reps = 1;
738
739 /* if leading digit, repetition count */
740 if (isdigit(*p)) {
[2725]741 for (savep = p; isdigit(*p); ++p)
742 continue;
[821]743 if (!isspace(*p) && *p != '/') {
744 bb_error_msg_and_die("bad format {%s}", fmt);
745 }
746 /* may overwrite either white space or slash */
747 tfu->reps = atoi(savep);
748 tfu->flags = F_SETREP;
[2725]749 /* skip trailing white space */
[821]750 p = skip_whitespace(++p);
751 }
752
[2725]753 /* skip slash and trailing white space */
[821]754 if (*p == '/') {
755 p = skip_whitespace(++p);
756 }
757
758 /* byte count */
759 if (isdigit(*p)) {
[1765]760// TODO: use bb_strtou
761 savep = p;
[2725]762 while (isdigit(*++p))
763 continue;
[821]764 if (!isspace(*p)) {
765 bb_error_msg_and_die("bad format {%s}", fmt);
766 }
767 tfu->bcnt = atoi(savep);
[2725]768 /* skip trailing white space */
[821]769 p = skip_whitespace(++p);
770 }
771
772 /* format */
773 if (*p != '"') {
774 bb_error_msg_and_die("bad format {%s}", fmt);
775 }
776 for (savep = ++p; *p != '"';) {
777 if (*p++ == 0) {
778 bb_error_msg_and_die("bad format {%s}", fmt);
779 }
780 }
[2725]781 tfu->fmt = xstrndup(savep, p - savep);
[821]782/* escape(tfu->fmt); */
783
784 p1 = tfu->fmt;
785
786 /* alphabetic escape sequences have to be done in place */
787 for (p2 = p1;; ++p1, ++p2) {
788 if (!*p1) {
789 *p2 = *p1;
790 break;
791 }
792 if (*p1 == '\\') {
793 const char *cs = conv_str + 4;
794 ++p1;
795 *p2 = *p1;
796 do {
797 if (*p1 == cs[2]) {
798 *p2 = cs[0];
799 break;
800 }
801 cs += 4;
802 } while (*cs);
803 }
804 }
805
806 p++;
807 }
808}
809
810/*
811 * Copyright (c) 1989 The Regents of the University of California.
812 * All rights reserved.
813 *
814 * Redistribution and use in source and binary forms, with or without
815 * modification, are permitted provided that the following conditions
816 * are met:
817 * 1. Redistributions of source code must retain the above copyright
818 * notice, this list of conditions and the following disclaimer.
819 * 2. Redistributions in binary form must reproduce the above copyright
820 * notice, this list of conditions and the following disclaimer in the
821 * documentation and/or other materials provided with the distribution.
822 * 3. Neither the name of the University nor the names of its contributors
823 * may be used to endorse or promote products derived from this software
824 * without specific prior written permission.
825 *
826 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
827 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
828 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
829 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
830 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
831 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
832 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
833 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
834 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
835 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
836 * SUCH DAMAGE.
837 */
Note: See TracBrowser for help on using the repository browser.