xref: /aosp_15_r20/external/mtools/mdu.c (revision d5c9a868b113e0ec0db2f27bc2ce8a253e77c4b0)
1*d5c9a868SElliott Hughes /*  Copyright 1997,2000-2002,2009 Alain Knaff.
2*d5c9a868SElliott Hughes  *  This file is part of mtools.
3*d5c9a868SElliott Hughes  *
4*d5c9a868SElliott Hughes  *  Mtools is free software: you can redistribute it and/or modify
5*d5c9a868SElliott Hughes  *  it under the terms of the GNU General Public License as published by
6*d5c9a868SElliott Hughes  *  the Free Software Foundation, either version 3 of the License, or
7*d5c9a868SElliott Hughes  *  (at your option) any later version.
8*d5c9a868SElliott Hughes  *
9*d5c9a868SElliott Hughes  *  Mtools is distributed in the hope that it will be useful,
10*d5c9a868SElliott Hughes  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11*d5c9a868SElliott Hughes  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*d5c9a868SElliott Hughes  *  GNU General Public License for more details.
13*d5c9a868SElliott Hughes  *
14*d5c9a868SElliott Hughes  *  You should have received a copy of the GNU General Public License
15*d5c9a868SElliott Hughes  *  along with Mtools.  If not, see <http://www.gnu.org/licenses/>.
16*d5c9a868SElliott Hughes  *
17*d5c9a868SElliott Hughes  * mdu.c:
18*d5c9a868SElliott Hughes  * Display the space occupied by an MSDOS directory
19*d5c9a868SElliott Hughes  */
20*d5c9a868SElliott Hughes 
21*d5c9a868SElliott Hughes #include "sysincludes.h"
22*d5c9a868SElliott Hughes #include "msdos.h"
23*d5c9a868SElliott Hughes #include "vfat.h"
24*d5c9a868SElliott Hughes #include "mtools.h"
25*d5c9a868SElliott Hughes #include "file.h"
26*d5c9a868SElliott Hughes #include "mainloop.h"
27*d5c9a868SElliott Hughes #include "fs.h"
28*d5c9a868SElliott Hughes #include "codepage.h"
29*d5c9a868SElliott Hughes 
30*d5c9a868SElliott Hughes 
31*d5c9a868SElliott Hughes typedef struct Arg_t {
32*d5c9a868SElliott Hughes 	int all;
33*d5c9a868SElliott Hughes 	int inDir;
34*d5c9a868SElliott Hughes 	int summary;
35*d5c9a868SElliott Hughes 	struct Arg_t *parent;
36*d5c9a868SElliott Hughes 	char *target;
37*d5c9a868SElliott Hughes 	char *path;
38*d5c9a868SElliott Hughes 	unsigned int blocks;
39*d5c9a868SElliott Hughes 	MainParam_t mp;
40*d5c9a868SElliott Hughes } Arg_t;
41*d5c9a868SElliott Hughes 
42*d5c9a868SElliott Hughes static void usage(int ret) NORETURN;
usage(int ret)43*d5c9a868SElliott Hughes static void usage(int ret)
44*d5c9a868SElliott Hughes {
45*d5c9a868SElliott Hughes 		fprintf(stderr, "Mtools version %s, dated %s\n",
46*d5c9a868SElliott Hughes 			mversion, mdate);
47*d5c9a868SElliott Hughes 		fprintf(stderr, "Usage: %s: msdosdirectory\n",
48*d5c9a868SElliott Hughes 			progname);
49*d5c9a868SElliott Hughes 		exit(ret);
50*d5c9a868SElliott Hughes }
51*d5c9a868SElliott Hughes 
file_mdu(direntry_t * entry,MainParam_t * mp)52*d5c9a868SElliott Hughes static int file_mdu(direntry_t *entry, MainParam_t *mp)
53*d5c9a868SElliott Hughes {
54*d5c9a868SElliott Hughes 	unsigned int blocks;
55*d5c9a868SElliott Hughes 	Arg_t * arg = (Arg_t *) (mp->arg);
56*d5c9a868SElliott Hughes 
57*d5c9a868SElliott Hughes 	blocks = countBlocks(entry->Dir,getStart(entry->Dir, &entry->dir));
58*d5c9a868SElliott Hughes 	if(arg->all || !arg->inDir) {
59*d5c9a868SElliott Hughes 		fprintPwd(stdout, entry,0);
60*d5c9a868SElliott Hughes 		printf(" %d\n", blocks);
61*d5c9a868SElliott Hughes 	}
62*d5c9a868SElliott Hughes 	arg->blocks += blocks;
63*d5c9a868SElliott Hughes 	return GOT_ONE;
64*d5c9a868SElliott Hughes }
65*d5c9a868SElliott Hughes 
66*d5c9a868SElliott Hughes 
dir_mdu(direntry_t * entry,MainParam_t * mp)67*d5c9a868SElliott Hughes static int dir_mdu(direntry_t *entry, MainParam_t *mp)
68*d5c9a868SElliott Hughes {
69*d5c9a868SElliott Hughes 	Arg_t *parentArg = (Arg_t *) (mp->arg);
70*d5c9a868SElliott Hughes 	Arg_t arg;
71*d5c9a868SElliott Hughes 	int ret;
72*d5c9a868SElliott Hughes 
73*d5c9a868SElliott Hughes 	arg = *parentArg;
74*d5c9a868SElliott Hughes 	arg.mp.arg = (void *) &arg;
75*d5c9a868SElliott Hughes 	arg.parent = parentArg;
76*d5c9a868SElliott Hughes 	arg.inDir = 1;
77*d5c9a868SElliott Hughes 
78*d5c9a868SElliott Hughes 	/* account for the space occupied by the directory itself */
79*d5c9a868SElliott Hughes 	if(!isRootDir(entry->Dir)) {
80*d5c9a868SElliott Hughes 		arg.blocks = countBlocks(entry->Dir,
81*d5c9a868SElliott Hughes 					 getStart(entry->Dir, &entry->dir));
82*d5c9a868SElliott Hughes 	} else {
83*d5c9a868SElliott Hughes 		arg.blocks = 0;
84*d5c9a868SElliott Hughes 	}
85*d5c9a868SElliott Hughes 
86*d5c9a868SElliott Hughes 	/* recursion */
87*d5c9a868SElliott Hughes 	ret = mp->loop(mp->File, &arg.mp, "*");
88*d5c9a868SElliott Hughes 	if(!arg.summary || !parentArg->inDir) {
89*d5c9a868SElliott Hughes 		fprintPwd(stdout, entry,0);
90*d5c9a868SElliott Hughes 		printf(" %d\n", arg.blocks);
91*d5c9a868SElliott Hughes 	}
92*d5c9a868SElliott Hughes 	arg.parent->blocks += arg.blocks;
93*d5c9a868SElliott Hughes 	return ret;
94*d5c9a868SElliott Hughes }
95*d5c9a868SElliott Hughes 
96*d5c9a868SElliott Hughes void mdu(int argc, char **argv, int type UNUSEDP) NORETURN;
mdu(int argc,char ** argv,int type UNUSEDP)97*d5c9a868SElliott Hughes void mdu(int argc, char **argv, int type UNUSEDP)
98*d5c9a868SElliott Hughes {
99*d5c9a868SElliott Hughes 	Arg_t arg;
100*d5c9a868SElliott Hughes 	int c;
101*d5c9a868SElliott Hughes 
102*d5c9a868SElliott Hughes 	arg.all = 0;
103*d5c9a868SElliott Hughes 	arg.inDir = 0;
104*d5c9a868SElliott Hughes 	arg.summary = 0;
105*d5c9a868SElliott Hughes 	if(helpFlag(argc, argv))
106*d5c9a868SElliott Hughes 		usage(0);
107*d5c9a868SElliott Hughes 	while ((c = getopt(argc, argv, "i:ash")) != EOF) {
108*d5c9a868SElliott Hughes 		switch (c) {
109*d5c9a868SElliott Hughes 			case 'i':
110*d5c9a868SElliott Hughes 				set_cmd_line_image(optarg);
111*d5c9a868SElliott Hughes 				break;
112*d5c9a868SElliott Hughes 			case 'a':
113*d5c9a868SElliott Hughes 				arg.all = 1;
114*d5c9a868SElliott Hughes 				break;
115*d5c9a868SElliott Hughes 			case 's':
116*d5c9a868SElliott Hughes 				arg.summary = 1;
117*d5c9a868SElliott Hughes 				break;
118*d5c9a868SElliott Hughes 			case 'h':
119*d5c9a868SElliott Hughes 				usage(0);
120*d5c9a868SElliott Hughes 			case '?':
121*d5c9a868SElliott Hughes 				usage(1);
122*d5c9a868SElliott Hughes 		}
123*d5c9a868SElliott Hughes 	}
124*d5c9a868SElliott Hughes 
125*d5c9a868SElliott Hughes 	if (optind >= argc)
126*d5c9a868SElliott Hughes 		usage(1);
127*d5c9a868SElliott Hughes 
128*d5c9a868SElliott Hughes 	if(arg.summary && arg.all) {
129*d5c9a868SElliott Hughes 		fprintf(stderr,"-a and -s options are mutually exclusive\n");
130*d5c9a868SElliott Hughes 		usage(1);
131*d5c9a868SElliott Hughes 	}
132*d5c9a868SElliott Hughes 
133*d5c9a868SElliott Hughes 	init_mp(&arg.mp);
134*d5c9a868SElliott Hughes 	arg.mp.callback = file_mdu;
135*d5c9a868SElliott Hughes 	arg.mp.openflags = O_RDONLY;
136*d5c9a868SElliott Hughes 	arg.mp.dirCallback = dir_mdu;
137*d5c9a868SElliott Hughes 
138*d5c9a868SElliott Hughes 	arg.mp.arg = (void *) &arg;
139*d5c9a868SElliott Hughes 	arg.mp.lookupflags = ACCEPT_PLAIN | ACCEPT_DIR | DO_OPEN_DIRS | NO_DOTS;
140*d5c9a868SElliott Hughes 	exit(main_loop(&arg.mp, argv + optind, argc - optind));
141*d5c9a868SElliott Hughes }
142