2006-08-02 23:52:00 +02:00
|
|
|
#include "builtin.h"
|
2005-07-03 23:27:34 +02:00
|
|
|
#include "cache.h"
|
2007-10-19 06:08:37 +02:00
|
|
|
#include "progress.h"
|
2009-07-08 07:15:41 +02:00
|
|
|
#include "parse-options.h"
|
2005-07-03 23:27:34 +02:00
|
|
|
|
2009-07-08 07:15:41 +02:00
|
|
|
static const char * const prune_packed_usage[] = {
|
2012-08-20 14:32:31 +02:00
|
|
|
N_("git prune-packed [-n|--dry-run] [-q|--quiet]"),
|
2009-07-08 07:15:41 +02:00
|
|
|
NULL
|
|
|
|
};
|
2005-08-20 06:38:36 +02:00
|
|
|
|
2007-10-30 19:57:32 +01:00
|
|
|
static struct progress *progress;
|
2007-10-19 06:08:37 +02:00
|
|
|
|
2007-01-13 00:00:13 +01:00
|
|
|
static void prune_dir(int i, DIR *dir, char *pathname, int len, int opts)
|
2005-07-03 23:27:34 +02:00
|
|
|
{
|
|
|
|
struct dirent *de;
|
|
|
|
char hex[40];
|
|
|
|
|
|
|
|
sprintf(hex, "%02x", i);
|
|
|
|
while ((de = readdir(dir)) != NULL) {
|
|
|
|
unsigned char sha1[20];
|
|
|
|
if (strlen(de->d_name) != 38)
|
|
|
|
continue;
|
|
|
|
memcpy(hex+2, de->d_name, 38);
|
|
|
|
if (get_sha1_hex(hex, sha1))
|
|
|
|
continue;
|
2009-02-28 08:15:53 +01:00
|
|
|
if (!has_sha1_pack(sha1))
|
2005-07-03 23:27:34 +02:00
|
|
|
continue;
|
|
|
|
memcpy(pathname + len, de->d_name, 38);
|
2013-05-27 13:18:47 +02:00
|
|
|
if (opts & PRUNE_PACKED_DRY_RUN)
|
2005-08-20 06:38:36 +02:00
|
|
|
printf("rm -f %s\n", pathname);
|
2009-04-29 23:22:56 +02:00
|
|
|
else
|
|
|
|
unlink_or_warn(pathname);
|
2007-11-01 21:59:55 +01:00
|
|
|
display_progress(progress, i + 1);
|
2005-07-03 23:27:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-13 00:00:13 +01:00
|
|
|
void prune_packed_objects(int opts)
|
2005-07-03 23:27:34 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
static char pathname[PATH_MAX];
|
|
|
|
const char *dir = get_object_directory();
|
|
|
|
int len = strlen(dir);
|
|
|
|
|
2013-05-27 13:18:47 +02:00
|
|
|
if (opts & PRUNE_PACKED_VERBOSE)
|
2007-10-30 19:57:32 +01:00
|
|
|
progress = start_progress_delay("Removing duplicate objects",
|
2007-10-19 06:08:37 +02:00
|
|
|
256, 95, 2);
|
|
|
|
|
2005-07-03 23:27:34 +02:00
|
|
|
if (len > PATH_MAX - 42)
|
|
|
|
die("impossible object directory");
|
|
|
|
memcpy(pathname, dir, len);
|
|
|
|
if (len && pathname[len-1] != '/')
|
|
|
|
pathname[len++] = '/';
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
DIR *d;
|
|
|
|
|
2009-04-27 09:44:58 +02:00
|
|
|
display_progress(progress, i + 1);
|
2005-07-03 23:27:34 +02:00
|
|
|
sprintf(pathname + len, "%02x/", i);
|
|
|
|
d = opendir(pathname);
|
|
|
|
if (!d)
|
Create object subdirectories on demand
This makes it possible to have a "sparse" git object subdirectory
structure, something that has become much more attractive now that people
use pack-files all the time.
As a result of pack-files, a git object directory doesn't necessarily have
any individual objects lying around, and in that case it's just wasting
space to keep the empty first-level object directories around: on many
filesystems the 256 empty directories will be aboue 1MB of diskspace.
Even more importantly, after you re-pack a project that _used_ to be
unpacked, you could be left with huge directories that no longer contain
anything, but that waste space and take time to look through.
With this change, "git prune-packed" can just do an rmdir() on the
directories, and they'll get removed if empty, and re-created on demand.
This patch also tries to fix up "write_sha1_from_fd()" to use the new
common infrastructure for creating the object files, closing a hole where
we might otherwise leave half-written objects in the object database.
[jc: I unoptimized the part that really removes the fan-out directories
to ease transition. init-db still wastes 1MB of diskspace to hold 256
empty fan-outs, and prune-packed rmdir()'s the grown but empty directories,
but runs mkdir() immediately after that -- reducing the saving from 150KB
to 146KB. These parts will be re-introduced when everybody has the
on-demand capability.]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-10-09 00:54:01 +02:00
|
|
|
continue;
|
2007-01-13 00:00:13 +01:00
|
|
|
prune_dir(i, d, pathname, len + 3, opts);
|
2005-07-03 23:27:34 +02:00
|
|
|
closedir(d);
|
2012-03-06 10:18:41 +01:00
|
|
|
pathname[len + 2] = '\0';
|
|
|
|
rmdir(pathname);
|
2005-07-03 23:27:34 +02:00
|
|
|
}
|
2007-10-30 19:57:33 +01:00
|
|
|
stop_progress(&progress);
|
2005-07-03 23:27:34 +02:00
|
|
|
}
|
|
|
|
|
2006-08-02 23:52:00 +02:00
|
|
|
int cmd_prune_packed(int argc, const char **argv, const char *prefix)
|
2005-07-03 23:27:34 +02:00
|
|
|
{
|
2013-05-27 13:18:47 +02:00
|
|
|
int opts = isatty(2) ? PRUNE_PACKED_VERBOSE : 0;
|
2009-07-08 07:15:41 +02:00
|
|
|
const struct option prune_packed_options[] = {
|
2013-05-27 13:18:47 +02:00
|
|
|
OPT_BIT('n', "dry-run", &opts, N_("dry run"),
|
|
|
|
PRUNE_PACKED_DRY_RUN),
|
|
|
|
OPT_NEGBIT('q', "quiet", &opts, N_("be quiet"),
|
|
|
|
PRUNE_PACKED_VERBOSE),
|
2009-07-08 07:15:41 +02:00
|
|
|
OPT_END()
|
|
|
|
};
|
2005-07-03 23:27:34 +02:00
|
|
|
|
2009-07-08 07:15:41 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, prune_packed_options,
|
|
|
|
prune_packed_usage, 0);
|
2005-07-03 23:27:34 +02:00
|
|
|
|
2007-01-13 00:00:13 +01:00
|
|
|
prune_packed_objects(opts);
|
2005-07-03 23:27:34 +02:00
|
|
|
return 0;
|
|
|
|
}
|