blob: 1e57dc241b35693ef6cc82cf2f94fc2c32e6fcb5 [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 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +00009#include "libbb.h"
Glenn L McGrathe9080c92003-11-14 10:04:33 +000010
Glenn L McGrathe9080c92003-11-14 10:04:33 +000011#define PIPE_PROGRESS_SIZE 4096
12
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000013/* Read a block of data from stdin, write it to stdout.
14 * Activity is indicated by a '.' to stderr
Glenn L McGrathe9080c92003-11-14 10:04:33 +000015 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000016int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000017int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Glenn L McGrathe9080c92003-11-14 10:04:33 +000018{
Denys Vlasenko5f330372010-06-06 18:19:25 +020019 char buf[PIPE_PROGRESS_SIZE];
Glenn L McGrathe9080c92003-11-14 10:04:33 +000020 time_t t = time(NULL);
Denys Vlasenko5f330372010-06-06 18:19:25 +020021 int len;
Glenn L McGrathe9080c92003-11-14 10:04:33 +000022
Denys Vlasenko5f330372010-06-06 18:19:25 +020023 while ((len = safe_read(STDIN_FILENO, buf, PIPE_PROGRESS_SIZE)) > 0) {
Glenn L McGrathe9080c92003-11-14 10:04:33 +000024 time_t new_time = time(NULL);
25 if (new_time != t) {
26 t = new_time;
Denys Vlasenko19ced5c2010-06-06 21:53:09 +020027 bb_putchar_stderr('.');
Glenn L McGrathe9080c92003-11-14 10:04:33 +000028 }
Denys Vlasenko5f330372010-06-06 18:19:25 +020029 full_write(STDOUT_FILENO, buf, len);
Glenn L McGrathe9080c92003-11-14 10:04:33 +000030 }
31
Denys Vlasenko19ced5c2010-06-06 21:53:09 +020032 bb_putchar_stderr('\n');
Glenn L McGrathe9080c92003-11-14 10:04:33 +000033
Glenn L McGrathe9080c92003-11-14 10:04:33 +000034 return 0;
35}