1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
#include "rc.h"
#include "exec.h"
#include "io.h"
#include "fns.h"
void psubst(io*, unsigned char*);
void pstrs(io*, word*);
static char*
readhere1(tree *tag, io *in)
{
io *out;
char c, *m;
pprompt();
out = openiostr();
m = tag->str;
while((c = rchr(in)) != EOF){
if(c=='\0'){
yyerror("NUL bytes in here doc");
closeio(out);
return 0;
}
if(c=='\n'){
lex->line++;
if(m && *m=='\0'){
out->bufp -= m - tag->str;
*out->bufp='\0';
break;
}
pprompt();
m = tag->str;
} else if(m){
if(*m == c){
m++;
} else {
m = 0;
}
}
pchr(out, c);
}
doprompt = 1;
return closeiostr(out);
}
static tree *head, *tail;
void
heredoc(tree *redir)
{
if(redir->child[0]->type!=WORD){
yyerror("Bad here tag");
return;
}
redir->child[2]=0;
if(head)
tail->child[2]=redir;
else
head=redir;
tail=redir;
}
void
readhere(io *in)
{
while(head){
tail=head->child[2];
head->child[2]=0;
head->str=readhere1(head->child[0], in);
head=tail;
}
}
void
psubst(io *f, unsigned char *s)
{
unsigned char *t, *u;
word *star;
int savec, n;
while(*s){
if(*s!='$'){
if(0xa0 <= *s && *s <= 0xf5){
pchr(f, *s++);
if(*s=='\0')
break;
}
else if(0xf6 <= *s && *s <= 0xf7){
pchr(f, *s++);
if(*s=='\0')
break;
pchr(f, *s++);
if(*s=='\0')
break;
}
pchr(f, *s++);
}
else{
t=++s;
if(*t=='$')
pchr(f, *t++);
else{
while(*t && idchr(*t)) t++;
savec=*t;
*t='\0';
n = 0;
for(u = s;*u && '0'<=*u && *u<='9';u++) n = n*10+*u-'0';
if(n && *u=='\0'){
star = vlook("*")->val;
if(star && 1<=n && n<=count(star)){
while(--n) star = star->next;
pstr(f, star->word);
}
}
else
pstrs(f, vlook((char *)s)->val);
*t = savec;
if(savec=='^')
t++;
}
s = t;
}
}
}
void
pstrs(io *f, word *a)
{
if(a){
while(a->next && a->next->word){
pstr(f, a->word);
pchr(f, ' ');
a = a->next;
}
pstr(f, a->word);
}
}
|