source: MondoRescue/branches/3.2/mindi-busybox/debianutils/pipe_progress.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 954 bytes
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Monitor a pipe with a simple progress display.
4 *
5 * Copyright (C) 2003 by Rob Landley <rob@landley.net>, Joey Hess
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
[3232]9
10//usage:#define pipe_progress_trivial_usage NOUSAGE_STR
11//usage:#define pipe_progress_full_usage ""
12
[1765]13#include "libbb.h"
[821]14
15#define PIPE_PROGRESS_SIZE 4096
16
17/* Read a block of data from stdin, write it to stdout.
18 * Activity is indicated by a '.' to stderr
19 */
[2725]20int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
21int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
[821]22{
[2725]23 char buf[PIPE_PROGRESS_SIZE];
[821]24 time_t t = time(NULL);
[2725]25 int len;
[821]26
[2725]27 while ((len = safe_read(STDIN_FILENO, buf, PIPE_PROGRESS_SIZE)) > 0) {
[821]28 time_t new_time = time(NULL);
29 if (new_time != t) {
30 t = new_time;
[2725]31 bb_putchar_stderr('.');
[821]32 }
[2725]33 full_write(STDOUT_FILENO, buf, len);
[821]34 }
35
[2725]36 bb_putchar_stderr('\n');
[821]37
38 return 0;
39}
Note: See TracBrowser for help on using the repository browser.