]>
git.cameronkatri.com Git - bsd-progress.git/blob - progress.c
1 /* $NetBSD: progress.c,v 1.23 2021/01/07 12:02:52 lukem 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.23 2021/01/07 12:02:52 lukem Exp $");
37 #include <sys/types.h>
38 #include <sys/ioctl.h>
53 #define GLOBAL /* force GLOBAL decls in progressbar.h to be
55 #include "progressbar.h"
57 static void broken_pipe(int unused
);
58 __dead
static void usage(void);
61 broken_pipe(int unused
)
63 signal(SIGPIPE
, SIG_DFL
);
65 kill(getpid(), SIGPIPE
);
72 "usage: %s [-ez] [-b buffersize] [-f file] [-l length]\n"
73 " %*.s [-p prefix] cmd [args...]\n",
74 getprogname(), (int) strlen(getprogname()), "");
79 main(int argc
, char *argv
[])
83 pid_t pid
= 0, gzippid
= 0, deadpid
;
84 int ch
, fd
, outpipe
[2];
85 int ws
, gzipstat
, cmdstat
;
86 int eflag
= 0, lflag
= 0, zflag
= 0;
94 /* defaults: Read from stdin, 0 filesize (no completion estimate) */
97 buffersize
= 64 * 1024;
100 while ((ch
= getopt(argc
, argv
, "b:ef:l:p:z")) != -1)
103 buffersize
= (size_t) strsuftoll("buffer size", optarg
,
114 filesize
= strsuftoll("input size", optarg
, 0,
134 if (infile
&& (fd
= open(infile
, O_RDONLY
, 0)) < 0)
135 err(1, "%s", infile
);
137 /* stat() to get the filesize unless overridden, or -z */
138 if (!zflag
&& !lflag
&& (fstat(fd
, &statb
) == 0)) {
139 if (S_ISFIFO(statb
.st_mode
)) {
140 /* stat(2) on pipe may return only the
141 * first few bytes with more coming.
145 filesize
= statb
.st_size
;
149 /* gzip -l the file if we have the name and -z is given */
150 if (zflag
&& !lflag
&& infile
!= NULL
) {
152 char buf
[256], *cp
, *cmd
;
155 * Read second word of last line of gzip -l output. Looks like:
156 * % gzip -l ../etc.tgz
157 * compressed uncompressed ratio uncompressed_name
158 * 119737 696320 82.8% ../etc.tar
161 asprintf(&cmd
, "gzip -l %s", infile
);
162 if ((gzipsizepipe
= popen(cmd
, "r")) == NULL
)
163 err(1, "reading compressed file length");
164 for (; fgets(buf
, 256, gzipsizepipe
) != NULL
;)
166 strtoimax(buf
, &cp
, 10);
167 filesize
= strtoimax(cp
, NULL
, 10);
168 if (pclose(gzipsizepipe
) < 0)
169 err(1, "closing compressed file length pipe");
172 /* Pipe input through gzip -dc if -z is given */
176 if (pipe(gzippipe
) < 0)
180 err(1, "fork for gzip");
184 dup2(gzippipe
[0], fd
);
188 dup2(gzippipe
[1], STDOUT_FILENO
);
189 dup2(fd
, STDIN_FILENO
);
192 if (execlp("gzip", "gzip", "-dc", NULL
))
193 err(1, "exec()ing gzip");
197 /* Initialize progressbar.c's global state */
200 ttyout
= eflag
? stderr
: stdout
;
202 if (ioctl(fileno(ttyout
), TIOCGSIZE
, &ts
) == -1)
205 ttywidth
= ts
.ts_cols
;
207 fb_buf
= malloc(buffersize
);
209 err(1, "malloc for buffersize");
211 if (pipe(outpipe
) < 0)
212 err(1, "output pipe");
215 err(1, "fork for output pipe");
219 dup2(outpipe
[0], STDIN_FILENO
);
222 execvp(argv
[0], argv
);
223 err(1, "could not exec %s", argv
[0]);
227 signal(SIGPIPE
, broken_pipe
);
232 nr
= read(fd
, fb_buf
, buffersize
);
233 } while (nr
< 0 && errno
== EINTR
);
236 for (off
= 0; nr
; nr
-= nw
, off
+= nw
, bytes
+= nw
)
237 if ((nw
= write(outpipe
[1], fb_buf
+ off
,
239 if (errno
== EINTR
) {
244 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
);