4 static const char prune_packed_usage
[] =
5 "git-prune-packed [-n] [-q]";
10 static void prune_dir(int i
, DIR *dir
, char *pathname
, int len
, int opts
)
15 sprintf(hex
, "%02x", i
);
16 while ((de
= readdir(dir
)) != NULL
) {
17 unsigned char sha1
[20];
18 if (strlen(de
->d_name
) != 38)
20 memcpy(hex
+2, de
->d_name
, 38);
21 if (get_sha1_hex(hex
, sha1
))
23 if (!has_sha1_pack(sha1
, NULL
))
25 memcpy(pathname
+ len
, de
->d_name
, 38);
27 printf("rm -f %s\n", pathname
);
29 if (unlink(pathname
) < 0)
30 error("unable to unlink %s", pathname
);
37 void prune_packed_objects(int opts
)
40 static char pathname
[PATH_MAX
];
41 const char *dir
= get_object_directory();
42 int len
= strlen(dir
);
44 if (len
> PATH_MAX
- 42)
45 die("impossible object directory");
46 memcpy(pathname
, dir
, len
);
47 if (len
&& pathname
[len
-1] != '/')
48 pathname
[len
++] = '/';
49 for (i
= 0; i
< 256; i
++) {
52 sprintf(pathname
+ len
, "%02x/", i
);
53 d
= opendir(pathname
);
54 if (opts
== VERBOSE
&& (d
|| i
== 255))
55 fprintf(stderr
, "Removing unused objects %d%%...\015",
59 prune_dir(i
, d
, pathname
, len
+ 3, opts
);
63 fprintf(stderr
, "\nDone.\n");
66 int cmd_prune_packed(int argc
, const char **argv
, const char *prefix
)
71 for (i
= 1; i
< argc
; i
++) {
72 const char *arg
= argv
[i
];
75 if (!strcmp(arg
, "-n"))
77 else if (!strcmp(arg
, "-q"))
80 usage(prune_packed_usage
);
83 /* Handle arguments here .. */
84 usage(prune_packed_usage
);
87 prune_packed_objects(opts
);