X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fdu.c;h=56a7a9a0cf3cc868927c9940bad06adfdcfeccff;hb=f5d5e77321ad32b3952dcdf21d14fd0ef3d4c1a9;hp=b8e296ddd20f3bea2a1f761c2ebc8a38baf1ea76;hpb=b610615be9aedfac07d1e01f12575707fa3a227c;p=oweals%2Fbusybox.git diff --git a/coreutils/du.c b/coreutils/du.c index b8e296ddd..56a7a9a0c 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -22,7 +22,7 @@ * */ -#include "internal.h" +#include "busybox.h" #define BB_DECLARE_EXTERN #define bb_need_name_too_long #include "messages.c" @@ -33,18 +33,11 @@ #include #include -typedef void (Display) (long, char *); - -static const char du_usage[] = - "du [OPTION]... [FILE]...\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nSummarizes disk space used for each FILE and/or directory.\n" - "Disk space is printed in units of 1024 bytes.\n\n" - "Options:\n" - "\t-l\tcount sizes many times if hard linked\n" - "\t-s\tdisplay only a total for each argument\n" +#ifdef BB_FEATURE_HUMAN_READABLE +unsigned long du_disp_hr = KILOBYTE; #endif - ; + +typedef void (Display) (long, char *); static int du_depth = 0; static int count_hardlinks = 0; @@ -53,12 +46,17 @@ static Display *print; static void print_normal(long size, char *filename) { - fprintf(stdout, "%ld\t%s\n", size, filename); +#ifdef BB_FEATURE_HUMAN_READABLE + printf("%s\t%s\n", format((size * KILOBYTE), du_disp_hr), filename); +#else + printf("%ld\t%s\n", size, filename); +#endif } static void print_summary(long size, char *filename) { if (du_depth == 1) { +printf("summary\n"); print_normal(size, filename); } } @@ -71,8 +69,7 @@ static long du(char *filename) int len; if ((lstat(filename, &statbuf)) != 0) { - printf("du: %s: %s\n", filename, strerror(errno)); - return 0; + perror_msg_and_die("%s", filename); } du_depth++; @@ -108,7 +105,7 @@ static long du(char *filename) } if (len + strlen(name) + 1 > BUFSIZ) { - fprintf(stderr, name_too_long, "du"); + error_msg(name_too_long); du_depth--; return 0; } @@ -136,55 +133,59 @@ static long du(char *filename) int du_main(int argc, char **argv) { + int status = EXIT_SUCCESS; int i; - char opt; + int c; /* default behaviour */ print = print_normal; /* parse argv[] */ - for (i = 1; i < argc; i++) { - if (argv[i][0] == '-') { - opt = argv[i][1]; - switch (opt) { + while ((c = getopt(argc, argv, "sl" +#ifdef BB_FEATURE_HUMAN_READABLE +"hm" +#endif +"k")) != EOF) { + switch (c) { case 's': - print = print_summary; - break; + print = print_summary; + break; case 'l': - count_hardlinks = 1; - break; - case 'h': - case '-': - usage(du_usage); - break; + count_hardlinks = 1; + break; +#ifdef BB_FEATURE_HUMAN_READABLE + case 'h': du_disp_hr = 0; break; + case 'm': du_disp_hr = MEGABYTE; break; + case 'k': du_disp_hr = KILOBYTE; break; +#else + case 'k': break; +#endif default: - fprintf(stderr, "du: invalid option -- %c\n", opt); - usage(du_usage); + usage(du_usage); } - } else { - break; - } } /* go through remaining args (if any) */ - if (i >= argc) { - du("."); + if (optind >= argc) { + if (du(".") == 0) + status = EXIT_FAILURE; } else { long sum; - for (; i < argc; i++) { - sum = du(argv[i]); - if (sum && isDirectory(argv[i], FALSE, NULL)) { + for (i=optind; i < argc; i++) { + if ((sum = du(argv[i])) == 0) + status = EXIT_FAILURE; + if(is_directory(argv[i], FALSE, NULL)==FALSE) { print_normal(sum, argv[i]); } reset_ino_dev_hashtable(); } } - return(0); + return status; } -/* $Id: du.c,v 1.20 2000/06/19 17:25:39 andersen Exp $ */ +/* $Id: du.c,v 1.34 2001/01/22 22:35:38 rjune Exp $ */ /* Local Variables: c-file-style: "linux"