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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
/* pump - copy through circular buffer */
#include <u.h>
#include <libc.h>
uchar* buf;
Lock arithlock; /* protect 64-bit accesses: unlikely to be atomic */
uvlong nin;
uvlong nout;
ulong kilo;
ulong max;
long ssize;
vlong tsize;
int dsize;
int done;
int ibsize;
int obsize;
int verb;
void doinput(int);
void dooutput(int);
static void
usage(void)
{
fprint(2, "usage: pump [-f ofile] [-k KB-buffer] [-i ireadsize]\n"
"\t[-o owritesize] [-b iando] [-s start-KB] [-d sleeptime] "
"[files]\n");
exits("usage");
}
void
main(int argc, char *argv[])
{
int i, f, fo;
char *file;
kilo = 5000;
obsize = ibsize = 8*1024;
dsize = 0;
fo = 1;
ARGBEGIN {
default:
usage();
case 'b':
obsize = ibsize = atoi(EARGF(usage()));
break;
case 'd':
dsize = atoi(EARGF(usage()));
break;
case 'f':
file = EARGF(usage());
fo = create(file, 1, 0666);
if(fo < 0)
sysfatal("can't create %s: %r", file);
break;
case 'i':
ibsize = atoi(EARGF(usage()));
break;
case 'k':
kilo = atoi(EARGF(usage()));
break;
case 'o':
obsize = atoi(EARGF(usage()));
break;
case 's':
ssize = atoi(EARGF(usage()));
if(ssize <= 0)
ssize = 800;
ssize <<= 10;
break;
case 't':
tsize = atoll(EARGF(usage()));
tsize *= 10584000; /* minutes */
break;
} ARGEND
kilo <<= 10;
buf = malloc(kilo);
if(buf == nil)
sysfatal("no memory: %r");
nin = 0;
nout = 0;
done = 0;
max = 0;
switch(rfork(RFPROC|RFNOWAIT|RFNAMEG|RFMEM)) {
default:
dooutput(fo);
break;
case 0:
for(i=0; i<argc; i++) {
f = open(argv[i], OREAD);
if(f < 0) {
fprint(2, "%s: can't open %s: %r\n",
argv0, argv[i]);
break;
}
doinput(f);
close(f);
}
if(argc == 0)
doinput(0);
break;
case -1:
fprint(2, "%s: fork failed: %r\n", argv0);
break;
}
done = 1;
exits(0);
}
/* call with arithlock held */
static int
sleepunlocked(long ms)
{
int r;
unlock(&arithlock);
r = sleep(ms);
lock(&arithlock);
return r;
}
void
dooutput(int f)
{
long n, l, c;
lock(&arithlock);
for (;;) {
n = nin - nout;
if(n == 0) {
if(done)
break;
sleepunlocked(dsize);
continue;
}
if(verb && n > max) {
fprint(2, "n = %ld\n", n);
max = n;
}
l = nout % kilo;
unlock(&arithlock);
if(kilo-l < n)
n = kilo-l;
if(n > obsize)
n = obsize;
c = write(f, buf+l, n);
lock(&arithlock);
if(c != n) {
fprint(2, "%s: write error: %r\n", argv0);
break;
}
nout += c;
if(tsize && nout > tsize) {
fprint(2, "%s: time limit exceeded\n", argv0);
break;
}
}
unlock(&arithlock);
}
void
doinput(int f)
{
long n, l, c, xnin;
lock(&arithlock);
if(ssize > 0) {
for (xnin = 0; xnin < ssize && !done; xnin += c) {
n = kilo - (xnin - nout);
if(n == 0)
break;
unlock(&arithlock);
l = xnin % kilo;
if(kilo-l < n)
n = kilo-l;
if(n > ibsize)
n = ibsize;
c = read(f, buf+l, n);
lock(&arithlock);
if(c <= 0) {
if(c < 0)
fprint(2, "%s: read error: %r\n", argv0);
break;
}
}
nin = xnin;
}
while(!done) {
n = kilo - (nin - nout);
if(n == 0) {
sleepunlocked(0);
continue;
}
l = nin % kilo;
unlock(&arithlock);
if(kilo-l < n)
n = kilo-l;
if(n > ibsize)
n = ibsize;
c = read(f, buf+l, n);
lock(&arithlock);
if(c <= 0) {
if(c < 0)
fprint(2, "%s: read error: %r\n", argv0);
break;
}
nin += c;
}
unlock(&arithlock);
}
|