]>
git.cameronkatri.com Git - bsd-progress.git/blob - progress.c
5e4f8ee8185962ad44d3b82f8892ea096cfe7895
1 /* $NetBSD: progress.c,v 1.19 2011/09/16 15:39:28 joerg 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.19 2011/09/16 15:39:28 joerg 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 __dead
static void usage(void);
70 broken_pipe(int unused
)
72 signal(SIGPIPE
, SIG_DFL
);
74 kill(getpid(), SIGPIPE
);
81 "usage: %s [-ez] [-b buffersize] [-f file] [-l length]\n"
82 " %*.s [-p prefix] cmd [args...]\n",
83 getprogname(), (int) strlen(getprogname()), "");
89 main(int argc
, char *argv
[])
93 pid_t pid
= 0, gzippid
= 0, deadpid
;
94 int ch
, fd
, outpipe
[2];
95 int ws
, gzipstat
, cmdstat
;
96 int eflag
= 0, lflag
= 0, zflag
= 0;
102 setprogname(argv
[0]);
104 /* defaults: Read from stdin, 0 filesize (no completion estimate) */
107 buffersize
= 64 * 1024;
110 while ((ch
= getopt(argc
, argv
, "b:ef:l:p:z")) != -1)
113 buffersize
= (size_t) strsuftoll("buffer size", optarg
,
124 filesize
= strsuftoll("input size", optarg
, 0,
144 if (infile
&& (fd
= open(infile
, O_RDONLY
, 0)) < 0)
145 err(1, "%s", infile
);
147 /* stat() to get the filesize unless overridden, or -z */
148 if (!zflag
&& !lflag
&& (fstat(fd
, &statb
) == 0)) {
149 if (S_ISFIFO(statb
.st_mode
)) {
150 /* stat(2) on pipe may return only the
151 * first few bytes with more coming.
155 filesize
= statb
.st_size
;
159 /* gzip -l the file if we have the name and -z is given */
160 if (zflag
&& !lflag
&& infile
!= NULL
) {
162 char buf
[256], *cp
, *cmd
;
165 * Read second word of last line of gzip -l output. Looks like:
166 * % gzip -l ../etc.tgz
167 * compressed uncompressed ratio uncompressed_name
168 * 119737 696320 82.8% ../etc.tar
171 asprintf(&cmd
, "gzip -l %s", infile
);
172 if ((gzipsizepipe
= popen(cmd
, "r")) == NULL
)
173 err(1, "reading compressed file length");
174 for (; fgets(buf
, 256, gzipsizepipe
) != NULL
;)
176 strtoimax(buf
, &cp
, 10);
177 filesize
= strtoimax(cp
, NULL
, 10);
178 if (pclose(gzipsizepipe
) < 0)
179 err(1, "closing compressed file length pipe");
182 /* Pipe input through gzip -dc if -z is given */
186 if (pipe(gzippipe
) < 0)
190 err(1, "fork for gzip");
194 dup2(gzippipe
[0], fd
);
198 dup2(gzippipe
[1], STDOUT_FILENO
);
199 dup2(fd
, STDIN_FILENO
);
202 if (execlp("gzip", "gzip", "-dc", NULL
))
203 err(1, "exec()ing gzip");
207 /* Initialize progressbar.c's global state */
210 ttyout
= eflag
? stderr
: stdout
;
212 if (ioctl(fileno(ttyout
), TIOCGSIZE
, &ts
) == -1)
215 ttywidth
= ts
.ts_cols
;
217 fb_buf
= malloc(buffersize
);
219 err(1, "malloc for buffersize");
221 if (pipe(outpipe
) < 0)
222 err(1, "output pipe");
225 err(1, "fork for output pipe");
229 dup2(outpipe
[0], STDIN_FILENO
);
232 execvp(argv
[0], argv
);
233 err(1, "could not exec %s", argv
[0]);
237 signal(SIGPIPE
, broken_pipe
);
240 while ((nr
= read(fd
, fb_buf
, buffersize
)) > 0)
241 for (off
= 0; nr
; nr
-= nw
, off
+= nw
, bytes
+= nw
)
242 if ((nw
= write(outpipe
[1], fb_buf
+ off
,
245 err(1, "writing %u bytes to output pipe",
252 while (pid
|| gzippid
) {
255 * We need to exit with an error if the command (or gzip)
257 * Unfortunately we can't generate a true 'exited by signal'
258 * error without sending the signal to ourselves :-(
260 ws
= WIFSIGNALED(ws
) ? WTERMSIG(ws
) : WEXITSTATUS(ws
);
262 if (deadpid
!= -1 && errno
== EINTR
)
264 if (deadpid
== pid
) {
269 if (deadpid
== gzippid
) {
278 signal(SIGPIPE
, SIG_DFL
);
282 exit(cmdstat
? cmdstat
: gzipstat
);