git-verify-pack: get rid of while loop
[git.git] / builtin-prune-packed.c
blobd3dd94d9ef7a50e156488ea5e9236d6d55f6e190
1 #include "builtin.h"
2 #include "cache.h"
4 static const char prune_packed_usage[] =
5 "git-prune-packed [-n]";
7 static int dryrun;
9 static void prune_dir(int i, DIR *dir, char *pathname, int len)
11 struct dirent *de;
12 char hex[40];
14 sprintf(hex, "%02x", i);
15 while ((de = readdir(dir)) != NULL) {
16 unsigned char sha1[20];
17 if (strlen(de->d_name) != 38)
18 continue;
19 memcpy(hex+2, de->d_name, 38);
20 if (get_sha1_hex(hex, sha1))
21 continue;
22 if (!has_sha1_pack(sha1))
23 continue;
24 memcpy(pathname + len, de->d_name, 38);
25 if (dryrun)
26 printf("rm -f %s\n", pathname);
27 else if (unlink(pathname) < 0)
28 error("unable to unlink %s", pathname);
30 pathname[len] = 0;
31 rmdir(pathname);
34 static void prune_packed_objects(void)
36 int i;
37 static char pathname[PATH_MAX];
38 const char *dir = get_object_directory();
39 int len = strlen(dir);
41 if (len > PATH_MAX - 42)
42 die("impossible object directory");
43 memcpy(pathname, dir, len);
44 if (len && pathname[len-1] != '/')
45 pathname[len++] = '/';
46 for (i = 0; i < 256; i++) {
47 DIR *d;
49 sprintf(pathname + len, "%02x/", i);
50 d = opendir(pathname);
51 if (!d)
52 continue;
53 prune_dir(i, d, pathname, len + 3);
54 closedir(d);
58 int cmd_prune_packed(int argc, const char **argv, const char *prefix)
60 int i;
62 for (i = 1; i < argc; i++) {
63 const char *arg = argv[i];
65 if (*arg == '-') {
66 if (!strcmp(arg, "-n"))
67 dryrun = 1;
68 else
69 usage(prune_packed_usage);
70 continue;
72 /* Handle arguments here .. */
73 usage(prune_packed_usage);
75 sync();
76 prune_packed_objects();
77 return 0;