2007-07-15 01:14:45 +02:00
|
|
|
#include "builtin.h"
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
2006-11-19 22:22:44 +01:00
|
|
|
#include "object.h"
|
|
|
|
#include "tag.h"
|
2007-10-15 23:06:02 +02:00
|
|
|
#include "parse-options.h"
|
2006-09-21 09:06:06 +02:00
|
|
|
|
|
|
|
struct ref_to_prune {
|
|
|
|
struct ref_to_prune *next;
|
|
|
|
unsigned char sha1[20];
|
|
|
|
char name[FLEX_ARRAY];
|
|
|
|
};
|
|
|
|
|
2007-05-26 18:25:31 +02:00
|
|
|
#define PACK_REFS_PRUNE 0x0001
|
|
|
|
#define PACK_REFS_ALL 0x0002
|
|
|
|
|
2006-09-21 09:06:06 +02:00
|
|
|
struct pack_refs_cb_data {
|
2007-05-26 18:25:31 +02:00
|
|
|
unsigned int flags;
|
2006-09-21 09:06:06 +02:00
|
|
|
struct ref_to_prune *ref_to_prune;
|
|
|
|
FILE *refs_file;
|
|
|
|
};
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
|
2006-09-21 09:06:06 +02:00
|
|
|
static int do_not_prune(int flags)
|
|
|
|
{
|
|
|
|
/* If it is already packed or if it is a symref,
|
|
|
|
* do not prune it.
|
|
|
|
*/
|
|
|
|
return (flags & (REF_ISSYMREF|REF_ISPACKED));
|
|
|
|
}
|
|
|
|
|
2006-09-21 07:02:01 +02:00
|
|
|
static int handle_one_ref(const char *path, const unsigned char *sha1,
|
|
|
|
int flags, void *cb_data)
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
{
|
2006-09-21 09:06:06 +02:00
|
|
|
struct pack_refs_cb_data *cb = cb_data;
|
2006-11-19 22:22:44 +01:00
|
|
|
int is_tag_ref;
|
2006-09-21 06:47:42 +02:00
|
|
|
|
2006-09-21 09:06:05 +02:00
|
|
|
/* Do not pack the symbolic refs */
|
2006-11-19 22:22:44 +01:00
|
|
|
if ((flags & REF_ISSYMREF))
|
|
|
|
return 0;
|
Mechanical conversion to use prefixcmp()
This mechanically converts strncmp() to use prefixcmp(), but only when
the parameters match specific patterns, so that they can be verified
easily. Leftover from this will be fixed in a separate step, including
idiotic conversions like
if (!strncmp("foo", arg, 3))
=>
if (!(-prefixcmp(arg, "foo")))
This was done by using this script in px.perl
#!/usr/bin/perl -i.bak -p
if (/strncmp\(([^,]+), "([^\\"]*)", (\d+)\)/ && (length($2) == $3)) {
s|strncmp\(([^,]+), "([^\\"]*)", (\d+)\)|prefixcmp($1, "$2")|;
}
if (/strncmp\("([^\\"]*)", ([^,]+), (\d+)\)/ && (length($1) == $3)) {
s|strncmp\("([^\\"]*)", ([^,]+), (\d+)\)|(-prefixcmp($2, "$1"))|;
}
and running:
$ git grep -l strncmp -- '*.c' | xargs perl px.perl
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-20 10:53:29 +01:00
|
|
|
is_tag_ref = !prefixcmp(path, "refs/tags/");
|
2007-01-26 01:51:21 +01:00
|
|
|
|
|
|
|
/* ALWAYS pack refs that were already packed or are tags */
|
2007-05-26 18:25:31 +02:00
|
|
|
if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref && !(flags & REF_ISPACKED))
|
2006-11-19 22:22:44 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fprintf(cb->refs_file, "%s %s\n", sha1_to_hex(sha1), path);
|
|
|
|
if (is_tag_ref) {
|
|
|
|
struct object *o = parse_object(sha1);
|
|
|
|
if (o->type == OBJ_TAG) {
|
|
|
|
o = deref_tag(o, path, 0);
|
|
|
|
if (o)
|
2006-11-22 08:36:35 +01:00
|
|
|
fprintf(cb->refs_file, "^%s\n",
|
|
|
|
sha1_to_hex(o->sha1));
|
2006-11-19 22:22:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-26 18:25:31 +02:00
|
|
|
if ((cb->flags & PACK_REFS_PRUNE) && !do_not_prune(flags)) {
|
2006-09-21 09:06:06 +02:00
|
|
|
int namelen = strlen(path) + 1;
|
|
|
|
struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
|
|
|
|
hashcpy(n->sha1, sha1);
|
|
|
|
strcpy(n->name, path);
|
|
|
|
n->next = cb->ref_to_prune;
|
|
|
|
cb->ref_to_prune = n;
|
|
|
|
}
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-21 09:06:06 +02:00
|
|
|
/* make sure nobody touched the ref, and unlink */
|
|
|
|
static void prune_ref(struct ref_to_prune *r)
|
|
|
|
{
|
2006-09-27 10:09:18 +02:00
|
|
|
struct ref_lock *lock = lock_ref_sha1(r->name + 5, r->sha1);
|
2006-09-21 09:06:06 +02:00
|
|
|
|
|
|
|
if (lock) {
|
2006-09-23 06:31:40 +02:00
|
|
|
unlink(git_path("%s", r->name));
|
2006-09-21 09:06:06 +02:00
|
|
|
unlock_ref(lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prune_refs(struct ref_to_prune *r)
|
|
|
|
{
|
|
|
|
while (r) {
|
|
|
|
prune_ref(r);
|
|
|
|
r = r->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-03 11:15:18 +02:00
|
|
|
static struct lock_file packed;
|
|
|
|
|
2007-05-26 18:25:31 +02:00
|
|
|
static int pack_refs(unsigned int flags)
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
{
|
2007-05-26 18:25:31 +02:00
|
|
|
int fd;
|
2006-09-21 09:06:06 +02:00
|
|
|
struct pack_refs_cb_data cbdata;
|
|
|
|
|
|
|
|
memset(&cbdata, 0, sizeof(cbdata));
|
2007-05-26 18:25:31 +02:00
|
|
|
cbdata.flags = flags;
|
|
|
|
|
|
|
|
fd = hold_lock_file_for_update(&packed, git_path("packed-refs"), 1);
|
|
|
|
cbdata.refs_file = fdopen(fd, "w");
|
|
|
|
if (!cbdata.refs_file)
|
|
|
|
die("unable to create ref-pack file structure (%s)",
|
|
|
|
strerror(errno));
|
|
|
|
|
|
|
|
/* perhaps other traits later as well */
|
|
|
|
fprintf(cbdata.refs_file, "# pack-refs with: peeled \n");
|
|
|
|
|
|
|
|
for_each_ref(handle_one_ref, &cbdata);
|
2007-06-24 21:13:11 +02:00
|
|
|
if (ferror(cbdata.refs_file))
|
|
|
|
die("failed to write ref-pack file");
|
2007-05-26 18:25:31 +02:00
|
|
|
if (fflush(cbdata.refs_file) || fsync(fd) || fclose(cbdata.refs_file))
|
|
|
|
die("failed to write ref-pack file (%s)", strerror(errno));
|
2008-01-16 20:12:46 +01:00
|
|
|
/*
|
|
|
|
* Since the lock file was fdopen()'ed and then fclose()'ed above,
|
|
|
|
* assign -1 to the lock file descriptor so that commit_lock_file()
|
|
|
|
* won't try to close() it.
|
|
|
|
*/
|
|
|
|
packed.fd = -1;
|
2007-05-26 18:25:31 +02:00
|
|
|
if (commit_lock_file(&packed) < 0)
|
|
|
|
die("unable to overwrite old ref-pack file (%s)", strerror(errno));
|
|
|
|
if (cbdata.flags & PACK_REFS_PRUNE)
|
|
|
|
prune_refs(cbdata.ref_to_prune);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-21 09:06:06 +02:00
|
|
|
|
2007-10-15 23:06:02 +02:00
|
|
|
static char const * const pack_refs_usage[] = {
|
|
|
|
"git-pack-refs [options]",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2007-05-26 18:25:31 +02:00
|
|
|
int cmd_pack_refs(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2007-11-07 11:20:30 +01:00
|
|
|
unsigned int flags = PACK_REFS_PRUNE;
|
2007-10-15 23:06:02 +02:00
|
|
|
struct option opts[] = {
|
2007-11-07 11:20:30 +01:00
|
|
|
OPT_BIT(0, "all", &flags, "pack everything", PACK_REFS_ALL),
|
|
|
|
OPT_BIT(0, "prune", &flags, "prune loose refs (default)", PACK_REFS_PRUNE),
|
2007-10-15 23:06:02 +02:00
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
if (parse_options(argc, argv, opts, pack_refs_usage, 0))
|
|
|
|
usage_with_options(pack_refs_usage, opts);
|
2007-05-26 18:25:31 +02:00
|
|
|
return pack_refs(flags);
|
Start handling references internally as a sorted in-memory list
This also adds some very rudimentary support for the notion of packed
refs. HOWEVER! At this point it isn't used to actually look up a ref
yet, only for listing them (ie "for_each_ref()" and friends see the
packed refs, but none of the other single-ref lookup routines).
Note how we keep two separate lists: one for the loose refs, and one for
the packed refs we read. That's so that we can easily keep the two apart,
and read only one set or the other (and still always make sure that the
loose refs take precedence).
[ From this, it's not actually obvious why we'd keep the two separate
lists, but it's important to have the packed refs on their own list
later on, when I add support for looking up a single loose one.
For that case, we will want to read _just_ the packed refs in case the
single-ref lookup fails, yet we may end up needing the other list at
some point in the future, so keeping them separated is important ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-12 01:37:32 +02:00
|
|
|
}
|