summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 13e86ef)
raw | patch | inline | side by side (parent: 13e86ef)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 6 Jan 2007 10:16:10 +0000 (02:16 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 7 Jan 2007 06:57:34 +0000 (22:57 -0800) |
I want to make the first part of 'git prune' that marks the
reachable objects callable as a library, so this starts the
first step toward the goal by making the callchain to pass
rev_info structure as an argument.
No functionality change should be in this step.
Signed-off-by: Junio C Hamano <junkio@cox.net>
reachable objects callable as a library, so this starts the
first step toward the goal by making the callchain to pass
rev_info structure as an argument.
No functionality change should be in this step.
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-prune.c | patch | blob | history |
diff --git a/builtin-prune.c b/builtin-prune.c
index b469c43bc55440d982005b81252ebfd711faa074..95228645d58cd0c83d023f62f301180b5347cac4 100644 (file)
--- a/builtin-prune.c
+++ b/builtin-prune.c
static const char prune_usage[] = "git-prune [-n]";
static int show_only;
-static struct rev_info revs;
static int prune_object(char *path, const char *filename, const unsigned char *sha1)
{
static int add_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1, char *datail, void *cb_data)
{
struct object *object;
+ struct rev_info *revs = (struct rev_info *)cb_data;
object = parse_object(osha1);
if (object)
- add_pending_object(&revs, object, "");
+ add_pending_object(revs, object, "");
object = parse_object(nsha1);
if (object)
- add_pending_object(&revs, object, "");
+ add_pending_object(revs, object, "");
return 0;
}
static int add_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
{
struct object *object = parse_object(sha1);
+ struct rev_info *revs = (struct rev_info *)cb_data;
+
if (!object)
die("bad object ref: %s:%s", path, sha1_to_hex(sha1));
- add_pending_object(&revs, object, "");
+ add_pending_object(revs, object, "");
- for_each_reflog_ent(path, add_one_reflog_ent, NULL);
+ for_each_reflog_ent(path, add_one_reflog_ent, cb_data);
return 0;
}
-static void add_one_tree(const unsigned char *sha1)
+static void add_one_tree(const unsigned char *sha1, struct rev_info *revs)
{
struct tree *tree = lookup_tree(sha1);
- add_pending_object(&revs, &tree->object, "");
+ add_pending_object(revs, &tree->object, "");
}
-static void add_cache_tree(struct cache_tree *it)
+static void add_cache_tree(struct cache_tree *it, struct rev_info *revs)
{
int i;
if (it->entry_count >= 0)
- add_one_tree(it->sha1);
+ add_one_tree(it->sha1, revs);
for (i = 0; i < it->subtree_nr; i++)
- add_cache_tree(it->down[i]->cache_tree);
+ add_cache_tree(it->down[i]->cache_tree, revs);
}
-static void add_cache_refs(void)
+static void add_cache_refs(struct rev_info *revs)
{
int i;
*/
}
if (active_cache_tree)
- add_cache_tree(active_cache_tree);
+ add_cache_tree(active_cache_tree, revs);
}
int cmd_prune(int argc, const char **argv, const char *prefix)
{
int i;
+ struct rev_info revs;
for (i = 1; i < argc; i++) {
const char *arg = argv[i];
revs.blob_objects = 1;
revs.tree_objects = 1;
- /* Add all external refs */
- for_each_ref(add_one_ref, NULL);
+ /* Add all external refs, along with its reflog info */
+ for_each_ref(add_one_ref, &revs);
/* Add all refs from the index file */
- add_cache_refs();
+ add_cache_refs(&revs);
/*
* Set up the revision walk - this will move all commits