blob: 2c7444f3118b0ece3e853d2c6053cbab99db2c1a [file] [log] [blame]
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathe9080c92003-11-14 10:04:33 +00002/*
3 * Monitor a pipe with a simple progress display.
4 *
5 * Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrathe9080c92003-11-14 10:04:33 +00008 */
Pere Orga6a3e01d2011-04-01 22:56:30 +02009
10//usage:#define pipe_progress_trivial_usage NOUSAGE_STR
11//usage:#define pipe_progress_full_usage ""
12
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000013#include "libbb.h"
Glenn L McGrathe9080c92003-11-14 10:04:33 +000014
Glenn L McGrathe9080c92003-11-14 10:04:33 +000015#define PIPE_PROGRESS_SIZE 4096
16
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000017/* Read a block of data from stdin, write it to stdout.
18 * Activity is indicated by a '.' to stderr
Glenn L McGrathe9080c92003-11-14 10:04:33 +000019 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000020int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000021int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Glenn L McGrathe9080c92003-11-14 10:04:33 +000022{
Denys Vlasenko5f330372010-06-06 18:19:25 +020023 char buf[PIPE_PROGRESS_SIZE];
Glenn L McGrathe9080c92003-11-14 10:04:33 +000024 time_t t = time(NULL);
Denys Vlasenko5f330372010-06-06 18:19:25 +020025 int len;
Glenn L McGrathe9080c92003-11-14 10:04:33 +000026
Denys Vlasenko5f330372010-06-06 18:19:25 +020027 while ((len = safe_read(STDIN_FILENO, buf, PIPE_PROGRESS_SIZE)) > 0) {
Glenn L McGrathe9080c92003-11-14 10:04:33 +000028 time_t new_time = time(NULL);
29 if (new_time != t) {
30 t = new_time;
Denys Vlasenko19ced5c2010-06-06 21:53:09 +020031 bb_putchar_stderr('.');
Glenn L McGrathe9080c92003-11-14 10:04:33 +000032 }
Denys Vlasenko5f330372010-06-06 18:19:25 +020033 full_write(STDOUT_FILENO, buf, len);
Glenn L McGrathe9080c92003-11-14 10:04:33 +000034 }
35
Denys Vlasenko19ced5c2010-06-06 21:53:09 +020036 bb_putchar_stderr('\n');
Glenn L McGrathe9080c92003-11-14 10:04:33 +000037
Glenn L McGrathe9080c92003-11-14 10:04:33 +000038 return 0;
39}