3 * dus is a simple utility to display the files and directories
4 * according to their total disk occupancy.
6 * Copyright (c) 2010 Francois Fleuret
7 * Written by Francois Fleuret <francois@fleuret.org>
9 * This file is part of dus.
11 * dus is free software: you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 3 as
13 * published by the Free Software Foundation.
15 * dus is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
18 * License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with dus. If not, see <http://www.gnu.org/licenses/>.
25 #define VERSION_NUMBER "1.2"
29 #include <sys/types.h>
31 #include <sys/param.h>
38 #include <sys/ioctl.h>
42 #define BUFFER_SIZE 4096
44 typedef int64_t size_sum_t;
46 /* Yeah, global variables! */
48 int ignore_dotfiles = 0; /* 1 means ignore files and directories
49 starting with a dot */
51 int forced_width = 0; /* -1 means no width limit, strictly positive
52 means limit, 0 means not active */
54 int forced_height = 0; /* -1 means no height limit, strictly positive
55 means limit, 0 means not active */
57 int fancy_size_display = 0; /* 1 means to use floating values with K, M and G
60 int reverse_sorting = 0; /* 1 means to show the large ones first */
62 int show_top = 0; /* 1 means to show the top of the sorted list
63 instead of the bottom */
65 size_sum_t size_min = -1; /* -1 means no minimum size, otherwise lower
66 bound on the size to display a
69 int ignore_protected_files = 0; /* Should we simply ignore files or
70 directories which are protected
73 /********************************************************************/
75 /* malloc with error checking. */
77 void *safe_malloc(size_t n) {
81 "dus: Can not allocate memory: %s\n",
88 /********************************************************************/
90 int ignore_entry(const char *name) {
92 strcmp(name, ".") == 0 ||
93 strcmp(name, "..") == 0 ||
94 (ignore_dotfiles && name[0] == '.' && name[1] != '/');
97 size_sum_t entry_size(const char *name) {
102 char subname[PATH_MAX];
106 if(lstat(name, &dummy) != 0) {
107 if(!(errno == EACCES && ignore_protected_files)) {
109 "dus: Can not stat %s: %s\n",
110 name, strerror(errno));
117 if(S_ISLNK(dummy.st_mode)) {
121 if(S_ISDIR(dummy.st_mode)) {
124 while((dir_e = readdir(dir))) {
125 if(!ignore_entry(dir_e->d_name)) {
126 snprintf(subname, PATH_MAX, "%s/%s", name, dir_e->d_name);
127 result += entry_size(subname);
132 if(!(errno == EACCES && ignore_protected_files)) {
134 "dus: Can not open directory %s: %s\n",
135 name, strerror(errno));
139 } else if(S_ISREG(dummy.st_mode)) {
140 result += dummy.st_size;
146 size_sum_t atoss(const char *string) {
147 size_sum_t total, partial_total;
152 for(c = string; *c; c++) {
153 if(*c >= '0' && *c <= '9') {
154 partial_total = 10 * partial_total + ((int) (*c - '0'));
155 } else if(*c == 'B' || *c == 'b') {
156 total += partial_total;
158 } else if(*c == 'K' || *c == 'k') {
159 total += partial_total * 1024;
161 } else if(*c == 'M' || *c == 'm') {
162 total += partial_total * 1024 * 1024;
164 } else if(*c == 'G' || *c == 'g') {
165 total += partial_total * 1024 * 1024 * 1024;
169 "dus: Syntax error in size specification `%s'\n",
175 total += partial_total;
180 /**********************************************************************/
183 struct entry_node *next;
188 struct entry_node *push_entry(char *name, struct entry_node *head) {
189 struct entry_node *result;
190 result = safe_malloc(sizeof(struct entry_node));
191 result->name = strdup(name);
192 result->size = entry_size(name);
197 struct entry_node *push_dir_content(char *name, struct entry_node *head) {
198 char subname[PATH_MAX];
200 struct dirent *dir_e;
203 while((dir_e = readdir(dir))) {
204 if(!ignore_entry(dir_e->d_name)) {
205 snprintf(subname, PATH_MAX, "%s/%s", name, dir_e->d_name);
206 head = push_entry(subname, head);
212 "dus: Can not open directory %s: %s\n",
213 name, strerror(errno));
219 void destroy_entry_list(struct entry_node *node) {
220 struct entry_node *next;
229 /**********************************************************************/
231 int compare_files(const void *x1, const void *x2) {
232 const struct entry_node **f1, **f2;
234 f1 = (const struct entry_node **) x1;
235 f2 = (const struct entry_node **) x2;
237 if(reverse_sorting) {
238 if((*f1)->size < (*f2)->size) {
240 } else if((*f1)->size > (*f2)->size) {
246 if((*f1)->size < (*f2)->size) {
248 } else if((*f1)->size > (*f2)->size) {
256 void raw_print(char *buffer, size_t buffer_size,
257 char *filename, size_sum_t size) {
262 if(b >= buffer + buffer_size) {
264 "dus: Buffer overflow in raw_print (hu?!).\n");
267 *(b++) = size%10 + '0';
281 snprintf(b, buffer_size - (b - buffer), "%s\n", filename);
284 void fancy_print(char *buffer, size_t buffer_size,
285 char *filename, size_sum_t size) {
292 } else if(size < 1024 * 1024) {
296 ((double) (size))/(1024.0),
298 } else if(size < 1024 * 1024 * 1024) {
302 ((double) (size))/(1024.0 * 1024),
308 ((double) (size))/(1024.0 * 1024.0 * 1024.0),
313 void print_sorted(struct entry_node *root, int width, int height) {
314 char line[BUFFER_SIZE];
315 struct entry_node *node;
316 struct entry_node **nodes;
317 int nb_nodes, n, first, last;
320 for(node = root; node; node = node->next) {
321 if(size_min < 0 || node->size >= size_min) {
326 nodes = safe_malloc(nb_nodes * sizeof(struct entry_node *));
329 for(node = root; node; node = node->next) {
330 if(size_min < 0 || node->size >= size_min) {
335 qsort(nodes, nb_nodes, sizeof(struct entry_node *), compare_files);
341 height = forced_height;
345 width = forced_width;
348 if(height >= 0 && nb_nodes > height && !show_top && !forced_height) {
352 if(height > 0 && height < nb_nodes) {
353 first = nb_nodes - height;
358 last = nb_nodes - first;
359 first = nb_nodes - n;
362 /* I do not like valgrind to complain about uninitialized data */
363 if(width < BUFFER_SIZE) {
367 for(n = first; n < last; n++) {
368 if(fancy_size_display) {
369 fancy_print(line, BUFFER_SIZE, nodes[n]->name, nodes[n]->size);
371 raw_print(line, BUFFER_SIZE, nodes[n]->name, nodes[n]->size);
373 if(width >= 1 && width + 1 < BUFFER_SIZE && line[width]) {
375 line[width + 1] = '\0';
380 if(height >= 0 && nb_nodes > height && show_top && !forced_height) {
387 /**********************************************************************/
389 void usage(FILE *out) {
390 fprintf(out, "Usage: dus [OPTION]... [FILE]...\n");
391 fprintf(out, "Version %s (%s)\n", VERSION_NUMBER, UNAME);
392 fprintf(out, "Lists files and directories according to their size. The sizes are computed by summing recursively exact file sizes through directories. If a given directory has its name appended with '/', it is not listed, but the elements it contains are. If no files or directories are provided as arguments, the current directory is used as default.\n");
394 /* 01234567890123456789012345678901234567890123456789012345678901234567890123456789*/
395 fprintf(out, " -h, --help show this help.\n");
396 fprintf(out, " -v, --version prints the version number and exit\n");
397 fprintf(out, " -d, --ignore-dots ignore files and directories starting with a '.'\n");
398 fprintf(out, " -i, --ignore-protected ignore files and directories for which we do not\n");
399 fprintf(out, " have permission\n");
400 fprintf(out, " -f, --fancy display size with float values and K, M and G\n");
401 fprintf(out, " units.\n");
402 fprintf(out, " -r, --reverse-order reverse the sorting order.\n");
403 fprintf(out, " -t, --show-top show the top of the list.\n");
404 fprintf(out, " -c <cols>, --nb-columns <cols>\n");
405 fprintf(out, " specificy the number of columns to display. The\n");
406 fprintf(out, " value -1 corresponds to no constraint. By default\n");
407 fprintf(out, " the command uses the tty width, or no constraint\n");
408 fprintf(out, " if the stdout is not a tty.\n");
409 fprintf(out, " -l <lines>, --nb-lines <lines>\n");
410 fprintf(out, " same as -c for number of lines.\n");
411 fprintf(out, " -m <size>, --size-min <size>\n");
412 fprintf(out, " set the listed entries minimum size. The size\n");
413 fprintf(out, " can be specified using the G, M, K, and B units.\n");
415 fprintf(out, "Report bugs and comments to <francois@fleuret.org>.\n");
418 /**********************************************************************/
420 static struct option long_options[] = {
421 { "version", no_argument, 0, 'v' },
422 { "ignore-dots", no_argument, 0, 'd' },
423 { "ignore-protected", no_argument, 0, 'i' },
424 { "reverse-order", no_argument, 0, 'r' },
425 { "show-top", no_argument, 0, 't' },
426 { "help", no_argument, 0, 'h' },
427 { "fancy", no_argument, 0, 'f' },
428 { "nb-columns", 1, 0, 'c' },
429 { "nb-lines", 1, 0, 'l' },
430 { "size-min", 1, 0, 'm' },
434 int main(int argc, char **argv) {
436 struct entry_node *root;
441 setlocale (LC_ALL, "");
443 while ((c = getopt_long(argc, argv, "ivdfrtl:c:m:hd",
444 long_options, NULL)) != -1) {
448 printf("dus version %s (%s)\n", VERSION_NUMBER, UNAME);
457 ignore_protected_files = 1;
461 fancy_size_display = 1;
473 forced_height = atoi(optarg);
477 forced_width = atoi(optarg);
481 size_min = atoss(optarg);
497 while (optind < argc) {
498 l = strlen(argv[optind]);
499 if(l > 0 && argv[optind][l - 1] == '/') {
500 argv[optind][l - 1] = '\0';
501 root = push_dir_content(argv[optind++], root);
503 root = push_entry(argv[optind++], root);
507 root = push_dir_content(".", root);
510 if(isatty(STDOUT_FILENO) &&
511 !ioctl (STDOUT_FILENO, TIOCGWINSZ, (char *) &win)) {
512 print_sorted(root, win.ws_col, win.ws_row - 2);
514 print_sorted(root, -1, -1);
517 destroy_entry_list(root);