pipe_progress.c 901 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  8. */
  9. #include "busybox.h"
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <unistd.h>
  13. #include <time.h>
  14. #define PIPE_PROGRESS_SIZE 4096
  15. /* Read a block of data from stdin, write it to stdout.
  16. * Activity is indicated by a '.' to stderr
  17. */
  18. int pipe_progress_main(int argc, char **argv)
  19. {
  20. RESERVE_CONFIG_BUFFER(buf, PIPE_PROGRESS_SIZE);
  21. time_t t = time(NULL);
  22. size_t len;
  23. while ((len = fread(buf, 1, PIPE_PROGRESS_SIZE, stdin)) > 0) {
  24. time_t new_time = time(NULL);
  25. if (new_time != t) {
  26. t = new_time;
  27. fputc('.', stderr);
  28. }
  29. fwrite(buf, len, 1, stdout);
  30. }
  31. fputc('\n', stderr);
  32. if (ENABLE_FEATURE_CLEAN_UP)
  33. RELEASE_CONFIG_BUFFER(buf);
  34. return 0;
  35. }