2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#)show.c 8.3 (Berkeley) 5/4/95
37 * $FreeBSD: src/bin/sh/show.c,v 1.11.2.3 2002/07/19 04:38:52 tjr Exp $
38 * $DragonFly: src/bin/sh/show.c,v 1.3 2004/11/07 20:54:52 eirikn Exp $
53 static void shtree(union node
*, int, char *, FILE*);
54 static void shcmd(union node
*, FILE *);
55 static void sharg(union node
*, FILE *);
56 static void indent(int, char *, FILE *);
57 static void trstring(char *);
61 showtree(union node
*n
)
63 trputs("showtree called\n");
64 shtree(n
, 1, NULL
, stdout
);
69 shtree(union node
*n
, int ind
, char *pfx
, FILE *fp
)
88 shtree(n
->nbinary
.ch1
, ind
, NULL
, fp
);
91 shtree(n
->nbinary
.ch2
, ind
, NULL
, fp
);
99 for (lp
= n
->npipe
.cmdlist
; lp
; lp
= lp
->next
) {
104 if (n
->npipe
.backgnd
)
110 fprintf(fp
, "<node type %d>", n
->type
);
120 shcmd(union node
*cmd
, FILE *fp
)
128 for (np
= cmd
->ncmd
.args
; np
; np
= np
->narg
.next
) {
134 for (np
= cmd
->ncmd
.redirect
; np
; np
= np
->nfile
.next
) {
137 switch (np
->nfile
.type
) {
138 case NTO
: s
= ">"; dftfd
= 1; break;
139 case NAPPEND
: s
= ">>"; dftfd
= 1; break;
140 case NTOFD
: s
= ">&"; dftfd
= 1; break;
141 case NCLOBBER
: s
= ">|"; dftfd
= 1; break;
142 case NFROM
: s
= "<"; dftfd
= 0; break;
143 case NFROMTO
: s
= "<>"; dftfd
= 0; break;
144 case NFROMFD
: s
= "<&"; dftfd
= 0; break;
145 default: s
= "*error*"; dftfd
= 0; break;
147 if (np
->nfile
.fd
!= dftfd
)
148 fprintf(fp
, "%d", np
->nfile
.fd
);
150 if (np
->nfile
.type
== NTOFD
|| np
->nfile
.type
== NFROMFD
) {
151 if (np
->ndup
.dupfd
>= 0)
152 fprintf(fp
, "%d", np
->ndup
.dupfd
);
156 sharg(np
->nfile
.fname
, fp
);
165 sharg(union node
*arg
, FILE *fp
)
168 struct nodelist
*bqlist
;
171 if (arg
->type
!= NARG
) {
172 printf("<node type %d>\n", arg
->type
);
176 bqlist
= arg
->narg
.backquote
;
177 for (p
= arg
->narg
.text
; *p
; p
++) {
186 if (subtype
== VSLENGTH
)
195 switch (subtype
& VSTYPE
) {
228 printf("<subtype %d>", subtype
);
235 case CTLBACKQ
|CTLQUOTE
:
238 shtree(bqlist
->n
, -1, NULL
, fp
);
250 indent(int amount
, char *pfx
, FILE *fp
)
254 for (i
= 0 ; i
< amount
; i
++) {
255 if (pfx
&& i
== amount
- 1)
279 if (tracefile
== NULL
)
288 sh_trace(const char *fmt
, ...)
292 if (tracefile
!= NULL
) {
293 vfprintf(tracefile
, fmt
, va
);
294 if (strchr(fmt
, '\n'))
304 if (tracefile
== NULL
)
318 if (tracefile
== NULL
)
320 putc('"', tracefile
);
321 for (p
= s
; *p
; p
++) {
323 case '\n': c
= 'n'; goto backslash
;
324 case '\t': c
= 't'; goto backslash
;
325 case '\r': c
= 'r'; goto backslash
;
326 case '"': c
= '"'; goto backslash
;
327 case '\\': c
= '\\'; goto backslash
;
328 case CTLESC
: c
= 'e'; goto backslash
;
329 case CTLVAR
: c
= 'v'; goto backslash
;
330 case CTLVAR
+CTLQUOTE
: c
= 'V'; goto backslash
;
331 case CTLBACKQ
: c
= 'q'; goto backslash
;
332 case CTLBACKQ
+CTLQUOTE
: c
= 'Q'; goto backslash
;
333 backslash
: putc('\\', tracefile
);
337 if (*p
>= ' ' && *p
<= '~')
340 putc('\\', tracefile
);
341 putc(*p
>> 6 & 03, tracefile
);
342 putc(*p
>> 3 & 07, tracefile
);
343 putc(*p
& 07, tracefile
);
348 putc('"', tracefile
);
355 if (tracefile
== NULL
)
360 putc(' ', tracefile
);
362 putc('\n', tracefile
);
382 if ((p
= getenv("HOME")) == NULL
) {
393 #endif /* not_this_way */
394 if ((tracefile
= fopen(s
, "a")) == NULL
) {
395 fprintf(stderr
, "Can't open %s: %s\n", s
, strerror(errno
));
399 if ((flags
= fcntl(fileno(tracefile
), F_GETFL
, 0)) >= 0)
400 fcntl(fileno(tracefile
), F_SETFL
, flags
| O_APPEND
);
402 fputs("\nTracing started.\n", tracefile
);