John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini du implementation for busybox |
| 3 | * |
| 4 | * |
| 5 | * Copyright (C) 1999 by Lineo, inc. |
Eric Andersen | 70e2f0b | 1999-12-10 06:45:42 +0000 | [diff] [blame] | 6 | * Written by John Beppu <beppu@lineo.com> |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include "internal.h" |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 25 | #define BB_DECLARE_EXTERN |
| 26 | #define bb_need_name_too_long |
| 27 | #include "messages.c" |
| 28 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 29 | #include <sys/types.h> |
| 30 | #include <fcntl.h> |
| 31 | #include <dirent.h> |
| 32 | #include <stdio.h> |
John Beppu | 9835541 | 1999-12-10 07:40:08 +0000 | [diff] [blame] | 33 | #include <errno.h> |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 34 | #include <sys/param.h> /* for PATH_MAX */ |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 35 | |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 36 | typedef void (Display)(long, char *); |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 37 | |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 38 | static const char du_usage[] = |
Erik Andersen | 5509af7 | 2000-01-23 18:19:02 +0000 | [diff] [blame] | 39 | "du [OPTION]... [FILE]...\n\n" |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 40 | "\t-s\tdisplay only a total for each argument\n" |
| 41 | ; |
| 42 | |
| 43 | static int du_depth = 0; |
| 44 | |
| 45 | static Display *print; |
| 46 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 47 | static void |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 48 | print_normal(long size, char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 49 | { |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 50 | fprintf(stdout, "%-7ld %s\n", size, filename); |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 51 | } |
| 52 | |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 53 | static void |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 54 | print_summary(long size, char *filename) |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 55 | { |
| 56 | if (du_depth == 1) { |
| 57 | print_normal(size, filename); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 62 | /* tiny recursive du */ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 63 | static long |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 64 | du(char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 65 | { |
| 66 | struct stat statbuf; |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 67 | long sum; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 68 | |
John Beppu | 9835541 | 1999-12-10 07:40:08 +0000 | [diff] [blame] | 69 | if ((lstat(filename, &statbuf)) != 0) { |
| 70 | fprintf(stdout, "du: %s: %s\n", filename, strerror(errno)); |
| 71 | return 0; |
| 72 | } |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 73 | |
| 74 | du_depth++; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 75 | sum = statbuf.st_blocks; |
| 76 | |
| 77 | if (S_ISDIR(statbuf.st_mode)) { |
| 78 | DIR *dir; |
| 79 | struct dirent *entry; |
| 80 | |
| 81 | dir = opendir(filename); |
| 82 | if (!dir) { return 0; } |
| 83 | while ((entry = readdir(dir))) { |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 84 | char newfile[PATH_MAX + 1]; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 85 | char *name = entry->d_name; |
| 86 | |
| 87 | if ( (strcmp(name, "..") == 0) |
| 88 | || (strcmp(name, ".") == 0)) |
| 89 | { continue; } |
| 90 | |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 91 | if (strlen(filename) + strlen(name) + 1 > PATH_MAX) { |
| 92 | fprintf(stderr, name_too_long, "du"); |
| 93 | return 0; |
| 94 | } |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 95 | sprintf(newfile, "%s/%s", filename, name); |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 96 | |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 97 | sum += du(newfile); |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 98 | } |
| 99 | closedir(dir); |
| 100 | print(sum, filename); |
| 101 | } |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 102 | du_depth--; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 103 | return sum; |
| 104 | } |
| 105 | |
| 106 | int |
| 107 | du_main(int argc, char **argv) |
| 108 | { |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 109 | int i; |
| 110 | char opt; |
| 111 | |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 112 | /* default behaviour */ |
| 113 | print = print_normal; |
| 114 | |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 115 | /* parse argv[] */ |
| 116 | for (i = 1; i < argc; i++) { |
| 117 | if (argv[i][0] == '-') { |
| 118 | opt = argv[i][1]; |
| 119 | switch (opt) { |
| 120 | case 's': |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 121 | print = print_summary; |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 122 | break; |
| 123 | case 'h': |
| 124 | usage(du_usage); |
| 125 | break; |
| 126 | default: |
| 127 | fprintf(stderr, "du: invalid option -- %c\n", opt); |
| 128 | usage(du_usage); |
| 129 | } |
| 130 | } else { |
| 131 | break; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | /* go through remaining args (if any) */ |
| 136 | if (i >= argc) { |
| 137 | du("."); |
| 138 | } else { |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 139 | long sum; |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 140 | for ( ; i < argc; i++) { |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 141 | sum = du(argv[i]); |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 142 | if ((sum) && (isDirectory(argv[i], FALSE))) { print_normal(sum, argv[i]); } |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 143 | } |
| 144 | } |
| 145 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 146 | exit(0); |
| 147 | } |
| 148 | |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame^] | 149 | /* $Id: du.c,v 1.10 2000/02/07 05:29:42 erik Exp $ */ |