1 /* $NetBSD: progress.c,v 1.16 2008/04/29 06:53:03 martin Exp $ */
4 * Copyright (c) 2003 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include <sys/cdefs.h>
34 __RCSID("$NetBSD: progress.c,v 1.16 2008/04/29 06:53:03 martin Exp $");
37 #include <sys/types.h>
38 #include <sys/param.h>
39 #include <sys/socket.h>
40 #include <sys/ioctl.h>
43 #include <netinet/in.h>
62 #define GLOBAL /* force GLOBAL decls in progressbar.h to be
64 #include "progressbar.h"
66 static void broken_pipe(int unused
);
67 static void usage(void);
68 int main(int, char *[]);
71 broken_pipe(int unused
)
73 signal(SIGPIPE
, SIG_DFL
);
75 kill(getpid(), SIGPIPE
);
82 "usage: %s [-ez] [-b buffersize] [-f file] [-l length]\n"
83 " %*.s [-p prefix] cmd [args...]\n",
84 getprogname(), (int) strlen(getprogname()), "");
90 main(int argc
, char *argv
[])
94 pid_t pid
= 0, gzippid
= 0, deadpid
;
95 int ch
, fd
, outpipe
[2];
96 int ws
, gzipstat
, cmdstat
;
97 int eflag
= 0, lflag
= 0, zflag
= 0;
103 setprogname(argv
[0]);
105 /* defaults: Read from stdin, 0 filesize (no completion estimate) */
108 buffersize
= 64 * 1024;
111 while ((ch
= getopt(argc
, argv
, "b:ef:l:p:z")) != -1)
114 buffersize
= (size_t) strsuftoll("buffer size", optarg
,
125 filesize
= strsuftoll("input size", optarg
, 0,
145 if (infile
&& (fd
= open(infile
, O_RDONLY
, 0)) < 0)
146 err(1, "%s", infile
);
148 /* stat() to get the filesize unless overridden, or -z */
149 if (!zflag
&& !lflag
&& (fstat(fd
, &statb
) == 0)) {
150 if (S_ISFIFO(statb
.st_mode
)) {
151 /* stat(2) on pipe may return only the
152 * first few bytes with more coming.
156 filesize
= statb
.st_size
;
160 /* gzip -l the file if we have the name and -z is given */
161 if (zflag
&& !lflag
&& infile
!= NULL
) {
163 char buf
[256], *cp
, *cmd
;
166 * Read second word of last line of gzip -l output. Looks like:
167 * % gzip -l ../etc.tgz
168 * compressed uncompressed ratio uncompressed_name
169 * 119737 696320 82.8% ../etc.tar
172 asprintf(&cmd
, "gzip -l %s", infile
);
173 if ((gzipsizepipe
= popen(cmd
, "r")) == NULL
)
174 err(1, "reading compressed file length");
175 for (; fgets(buf
, 256, gzipsizepipe
) != NULL
;)
177 strtoimax(buf
, &cp
, 10);
178 filesize
= strtoimax(cp
, NULL
, 10);
179 if (pclose(gzipsizepipe
) < 0)
180 err(1, "closing compressed file length pipe");
183 /* Pipe input through gzip -dc if -z is given */
187 if (pipe(gzippipe
) < 0)
191 err(1, "fork for gzip");
195 dup2(gzippipe
[0], fd
);
199 dup2(gzippipe
[1], STDOUT_FILENO
);
200 dup2(fd
, STDIN_FILENO
);
203 if (execlp("gzip", "gzip", "-dc", NULL
))
204 err(1, "exec()ing gzip");
208 /* Initialize progressbar.c's global state */
211 ttyout
= eflag
? stderr
: stdout
;
213 if (ioctl(fileno(ttyout
), TIOCGSIZE
, &ts
) == -1)
216 ttywidth
= ts
.ts_cols
;
218 fb_buf
= malloc(buffersize
);
220 err(1, "malloc for buffersize");
222 if (pipe(outpipe
) < 0)
223 err(1, "output pipe");
226 err(1, "fork for output pipe");
230 dup2(outpipe
[0], STDIN_FILENO
);
233 execvp(argv
[0], argv
);
234 err(1, "could not exec %s", argv
[0]);
238 signal(SIGPIPE
, broken_pipe
);
241 while ((nr
= read(fd
, fb_buf
, buffersize
)) > 0)
242 for (off
= 0; nr
; nr
-= nw
, off
+= nw
, bytes
+= nw
)
243 if ((nw
= write(outpipe
[1], fb_buf
+ off
,
246 err(1, "writing %u bytes to output pipe",
253 while (pid
|| gzippid
) {
256 * We need to exit with an error if the command (or gzip)
258 * Unfortunately we can't generate a true 'exited by signal'
259 * error without sending the signal to ourselves :-(
261 ws
= WIFSIGNALED(ws
) ? WTERMSIG(ws
) : WEXITSTATUS(ws
);
263 if (deadpid
!= -1 && errno
== EINTR
)
265 if (deadpid
== pid
) {
270 if (deadpid
== gzippid
) {
279 signal(SIGPIPE
, SIG_DFL
);
283 exit(cmdstat
? cmdstat
: gzipstat
);