e2cf3f7c09408d4d96b4219aee50d48d40626693
[oweals/busybox.git] / coreutils / du.c
1 /*
2  * Mini du implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 by Lineo, inc.
6  * Written by John Beppu <beppu@lineo.com>
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"
25 #define BB_DECLARE_EXTERN
26 #define bb_need_name_too_long
27 #include "messages.c"
28
29 #include <sys/types.h>
30 #include <fcntl.h>
31 #include <dirent.h>
32 #include <stdio.h>
33 #include <errno.h>
34 #include <sys/param.h>          /* for PATH_MAX */
35
36 typedef void (Display)(long, char *);
37
38 static const char du_usage[] =
39 "du [OPTION]... [FILE]...\n\n"
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
47 static void
48 print_normal(long size, char *filename)
49 {
50     fprintf(stdout, "%-7ld %s\n", size, filename);
51 }
52
53 static void
54 print_summary(long size, char *filename)
55 {
56     if (du_depth == 1) { 
57         print_normal(size, filename); 
58     }
59 }
60
61
62 /* tiny recursive du */
63 static long
64 du(char *filename)
65 {
66     struct stat statbuf;
67     long        sum;
68
69     if ((lstat(filename, &statbuf)) != 0) { 
70         fprintf(stdout, "du: %s: %s\n", filename, strerror(errno));
71         return 0; 
72     }
73
74     du_depth++;
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))) {
84             char newfile[PATH_MAX + 1];
85             char *name = entry->d_name;
86
87             if (  (strcmp(name, "..") == 0)
88                || (strcmp(name, ".")  == 0)) 
89             { continue; }
90
91             if (strlen(filename) + strlen(name) + 1 > PATH_MAX) {
92               fprintf(stderr, name_too_long, "du");
93               return 0;
94             }
95             sprintf(newfile, "%s/%s", filename, name);
96
97             sum += du(newfile);
98         }
99         closedir(dir);
100         print(sum, filename);
101     }
102     du_depth--;
103     return sum;
104 }
105
106 int 
107 du_main(int argc, char **argv)
108 {
109     int i;
110     char opt;
111
112     /* default behaviour */
113     print = print_normal;
114
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':
121                     print = print_summary;
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 {
139         long sum;
140         for ( ; i < argc; i++) {
141             sum = du(argv[i]);
142             if ((sum) && (isDirectory(argv[i], FALSE))) { print_normal(sum, argv[i]); }
143         }
144     }
145
146     exit(0);
147 }
148
149 /* $Id: du.c,v 1.10 2000/02/07 05:29:42 erik Exp $ */