Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Monitor a pipe with a simple progress display. |
| 4 | * |
| 5 | * Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess |
| 6 | * |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 10 | #include "libbb.h" |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 11 | |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 12 | #define PIPE_PROGRESS_SIZE 4096 |
| 13 | |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 14 | /* Read a block of data from stdin, write it to stdout. |
| 15 | * Activity is indicated by a '.' to stderr |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 16 | */ |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 17 | int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 18 | int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 19 | { |
| 20 | RESERVE_CONFIG_BUFFER(buf, PIPE_PROGRESS_SIZE); |
| 21 | time_t t = time(NULL); |
| 22 | size_t len; |
| 23 | |
| 24 | while ((len = fread(buf, 1, PIPE_PROGRESS_SIZE, stdin)) > 0) { |
| 25 | time_t new_time = time(NULL); |
| 26 | if (new_time != t) { |
| 27 | t = new_time; |
| 28 | fputc('.', stderr); |
| 29 | } |
| 30 | fwrite(buf, len, 1, stdout); |
| 31 | } |
| 32 | |
| 33 | fputc('\n', stderr); |
| 34 | |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 35 | if (ENABLE_FEATURE_CLEAN_UP) |
| 36 | RELEASE_CONFIG_BUFFER(buf); |
| 37 | |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 38 | return 0; |
| 39 | } |