2005-05-01 01:53:56 +02:00
|
|
|
#include "cache.h"
|
2007-09-11 05:02:45 +02:00
|
|
|
#include "walker.h"
|
2005-05-01 01:53:56 +02:00
|
|
|
#include "commit.h"
|
|
|
|
#include "tree.h"
|
2006-05-29 21:20:48 +02:00
|
|
|
#include "tree-walk.h"
|
2005-06-22 02:35:53 +02:00
|
|
|
#include "tag.h"
|
|
|
|
#include "blob.h"
|
2005-06-06 22:38:26 +02:00
|
|
|
#include "refs.h"
|
|
|
|
|
2005-05-04 10:26:24 +02:00
|
|
|
static unsigned char current_commit_sha1[20];
|
2005-05-01 01:53:56 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
void walker_say(struct walker *walker, const char *fmt, const char *hex)
|
2005-08-03 01:46:10 +02:00
|
|
|
{
|
2007-09-11 05:02:45 +02:00
|
|
|
if (walker->get_verbosely)
|
2005-05-06 10:37:21 +02:00
|
|
|
fprintf(stderr, fmt, hex);
|
|
|
|
}
|
|
|
|
|
2006-12-12 18:34:02 +01:00
|
|
|
static void report_missing(const struct object *obj)
|
2005-05-04 10:26:24 +02:00
|
|
|
{
|
2006-12-12 18:34:02 +01:00
|
|
|
fprintf(stderr, "Cannot obtain needed %s %s\n",
|
2015-09-24 23:08:05 +02:00
|
|
|
obj->type ? typename(obj->type): "object",
|
|
|
|
sha1_to_hex(obj->sha1));
|
2006-12-12 18:34:02 +01:00
|
|
|
if (!is_null_sha1(current_commit_sha1))
|
|
|
|
fprintf(stderr, "while processing commit %s.\n",
|
|
|
|
sha1_to_hex(current_commit_sha1));
|
2005-05-04 10:26:24 +02:00
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process(struct walker *walker, struct object *obj);
|
2005-06-22 02:35:53 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process_tree(struct walker *walker, struct tree *tree)
|
2005-05-01 01:53:56 +02:00
|
|
|
{
|
2006-05-29 21:20:48 +02:00
|
|
|
struct tree_desc desc;
|
tree_entry(): new tree-walking helper function
This adds a "tree_entry()" function that combines the common operation of
doing a "tree_entry_extract()" + "update_tree_entry()".
It also has a simplified calling convention, designed for simple loops
that traverse over a whole tree: the arguments are pointers to the tree
descriptor and a name_entry structure to fill in, and it returns a boolean
"true" if there was an entry left to be gotten in the tree.
This allows tree traversal with
struct tree_desc desc;
struct name_entry entry;
desc.buf = tree->buffer;
desc.size = tree->size;
while (tree_entry(&desc, &entry) {
... use "entry.{path, sha1, mode, pathlen}" ...
}
which is not only shorter than writing it out in full, it's hopefully less
error prone too.
[ It's actually a tad faster too - we don't need to recalculate the entry
pathlength in both extract and update, but need to do it only once.
Also, some callers can avoid doing a "strlen()" on the result, since
it's returned as part of the name_entry structure.
However, by now we're talking just 1% speedup on "git-rev-list --objects
--all", and we're definitely at the point where tree walking is no
longer the issue any more. ]
NOTE! Not everybody wants to use this new helper function, since some of
the tree walkers very much on purpose do the descriptor update separately
from the entry extraction. So the "extract + update" sequence still
remains as the core sequence, this is just a simplified interface.
We should probably add a silly two-line inline helper function for
initializing the descriptor from the "struct tree" too, just to cut down
on the noise from that common "desc" initializer.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-30 18:45:45 +02:00
|
|
|
struct name_entry entry;
|
2005-05-01 01:53:56 +02:00
|
|
|
|
|
|
|
if (parse_tree(tree))
|
|
|
|
return -1;
|
|
|
|
|
2007-03-21 18:08:25 +01:00
|
|
|
init_tree_desc(&desc, tree->buffer, tree->size);
|
tree_entry(): new tree-walking helper function
This adds a "tree_entry()" function that combines the common operation of
doing a "tree_entry_extract()" + "update_tree_entry()".
It also has a simplified calling convention, designed for simple loops
that traverse over a whole tree: the arguments are pointers to the tree
descriptor and a name_entry structure to fill in, and it returns a boolean
"true" if there was an entry left to be gotten in the tree.
This allows tree traversal with
struct tree_desc desc;
struct name_entry entry;
desc.buf = tree->buffer;
desc.size = tree->size;
while (tree_entry(&desc, &entry) {
... use "entry.{path, sha1, mode, pathlen}" ...
}
which is not only shorter than writing it out in full, it's hopefully less
error prone too.
[ It's actually a tad faster too - we don't need to recalculate the entry
pathlength in both extract and update, but need to do it only once.
Also, some callers can avoid doing a "strlen()" on the result, since
it's returned as part of the name_entry structure.
However, by now we're talking just 1% speedup on "git-rev-list --objects
--all", and we're definitely at the point where tree walking is no
longer the issue any more. ]
NOTE! Not everybody wants to use this new helper function, since some of
the tree walkers very much on purpose do the descriptor update separately
from the entry extraction. So the "extract + update" sequence still
remains as the core sequence, this is just a simplified interface.
We should probably add a silly two-line inline helper function for
initializing the descriptor from the "struct tree" too, just to cut down
on the noise from that common "desc" initializer.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-30 18:45:45 +02:00
|
|
|
while (tree_entry(&desc, &entry)) {
|
2006-06-03 00:23:47 +02:00
|
|
|
struct object *obj = NULL;
|
|
|
|
|
2007-06-26 23:19:41 +02:00
|
|
|
/* submodule commits are not stored in the superproject */
|
2007-06-27 03:33:24 +02:00
|
|
|
if (S_ISGITLINK(entry.mode))
|
2007-06-26 23:19:41 +02:00
|
|
|
continue;
|
tree_entry(): new tree-walking helper function
This adds a "tree_entry()" function that combines the common operation of
doing a "tree_entry_extract()" + "update_tree_entry()".
It also has a simplified calling convention, designed for simple loops
that traverse over a whole tree: the arguments are pointers to the tree
descriptor and a name_entry structure to fill in, and it returns a boolean
"true" if there was an entry left to be gotten in the tree.
This allows tree traversal with
struct tree_desc desc;
struct name_entry entry;
desc.buf = tree->buffer;
desc.size = tree->size;
while (tree_entry(&desc, &entry) {
... use "entry.{path, sha1, mode, pathlen}" ...
}
which is not only shorter than writing it out in full, it's hopefully less
error prone too.
[ It's actually a tad faster too - we don't need to recalculate the entry
pathlength in both extract and update, but need to do it only once.
Also, some callers can avoid doing a "strlen()" on the result, since
it's returned as part of the name_entry structure.
However, by now we're talking just 1% speedup on "git-rev-list --objects
--all", and we're definitely at the point where tree walking is no
longer the issue any more. ]
NOTE! Not everybody wants to use this new helper function, since some of
the tree walkers very much on purpose do the descriptor update separately
from the entry extraction. So the "extract + update" sequence still
remains as the core sequence, this is just a simplified interface.
We should probably add a silly two-line inline helper function for
initializing the descriptor from the "struct tree" too, just to cut down
on the noise from that common "desc" initializer.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-30 18:45:45 +02:00
|
|
|
if (S_ISDIR(entry.mode)) {
|
|
|
|
struct tree *tree = lookup_tree(entry.sha1);
|
2006-06-03 00:23:47 +02:00
|
|
|
if (tree)
|
|
|
|
obj = &tree->object;
|
|
|
|
}
|
|
|
|
else {
|
tree_entry(): new tree-walking helper function
This adds a "tree_entry()" function that combines the common operation of
doing a "tree_entry_extract()" + "update_tree_entry()".
It also has a simplified calling convention, designed for simple loops
that traverse over a whole tree: the arguments are pointers to the tree
descriptor and a name_entry structure to fill in, and it returns a boolean
"true" if there was an entry left to be gotten in the tree.
This allows tree traversal with
struct tree_desc desc;
struct name_entry entry;
desc.buf = tree->buffer;
desc.size = tree->size;
while (tree_entry(&desc, &entry) {
... use "entry.{path, sha1, mode, pathlen}" ...
}
which is not only shorter than writing it out in full, it's hopefully less
error prone too.
[ It's actually a tad faster too - we don't need to recalculate the entry
pathlength in both extract and update, but need to do it only once.
Also, some callers can avoid doing a "strlen()" on the result, since
it's returned as part of the name_entry structure.
However, by now we're talking just 1% speedup on "git-rev-list --objects
--all", and we're definitely at the point where tree walking is no
longer the issue any more. ]
NOTE! Not everybody wants to use this new helper function, since some of
the tree walkers very much on purpose do the descriptor update separately
from the entry extraction. So the "extract + update" sequence still
remains as the core sequence, this is just a simplified interface.
We should probably add a silly two-line inline helper function for
initializing the descriptor from the "struct tree" too, just to cut down
on the noise from that common "desc" initializer.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-30 18:45:45 +02:00
|
|
|
struct blob *blob = lookup_blob(entry.sha1);
|
2006-06-03 00:23:47 +02:00
|
|
|
if (blob)
|
|
|
|
obj = &blob->object;
|
2006-05-29 21:18:33 +02:00
|
|
|
}
|
2007-09-11 05:02:45 +02:00
|
|
|
if (!obj || process(walker, obj))
|
2005-05-01 01:53:56 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-06-06 00:37:39 +02:00
|
|
|
free_tree_buffer(tree);
|
2005-05-01 01:53:56 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-25 14:23:26 +01:00
|
|
|
/* Remember to update object flag allocation in object.h */
|
2005-09-21 18:34:24 +02:00
|
|
|
#define COMPLETE (1U << 0)
|
|
|
|
#define SEEN (1U << 1)
|
|
|
|
#define TO_SCAN (1U << 2)
|
2005-09-18 10:01:07 +02:00
|
|
|
|
2005-09-16 23:30:29 +02:00
|
|
|
static struct commit_list *complete = NULL;
|
2005-09-15 03:31:42 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process_commit(struct walker *walker, struct commit *commit)
|
2005-05-01 01:53:56 +02:00
|
|
|
{
|
2005-08-03 01:46:10 +02:00
|
|
|
if (parse_commit(commit))
|
2005-05-01 01:53:56 +02:00
|
|
|
return -1;
|
|
|
|
|
2005-09-15 03:31:42 +02:00
|
|
|
while (complete && complete->item->date >= commit->date) {
|
2005-09-16 23:30:29 +02:00
|
|
|
pop_most_recent_commit(&complete, COMPLETE);
|
2005-09-15 03:31:42 +02:00
|
|
|
}
|
|
|
|
|
2005-09-16 23:30:29 +02:00
|
|
|
if (commit->object.flags & COMPLETE)
|
2005-09-15 03:31:42 +02:00
|
|
|
return 0;
|
|
|
|
|
2006-08-23 08:49:00 +02:00
|
|
|
hashcpy(current_commit_sha1, commit->object.sha1);
|
2005-05-01 01:53:56 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
walker_say(walker, "walk %s\n", sha1_to_hex(commit->object.sha1));
|
2005-09-18 10:01:07 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
if (walker->get_tree) {
|
|
|
|
if (process(walker, &commit->tree->object))
|
2005-05-01 01:53:56 +02:00
|
|
|
return -1;
|
2007-09-11 05:02:45 +02:00
|
|
|
if (!walker->get_all)
|
|
|
|
walker->get_tree = 0;
|
2005-05-01 01:53:56 +02:00
|
|
|
}
|
2007-09-11 05:02:45 +02:00
|
|
|
if (walker->get_history) {
|
2005-08-03 01:46:10 +02:00
|
|
|
struct commit_list *parents = commit->parents;
|
2005-05-01 01:53:56 +02:00
|
|
|
for (; parents; parents = parents->next) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process(walker, &parents->item->object))
|
2005-05-01 01:53:56 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process_tag(struct walker *walker, struct tag *tag)
|
2005-06-22 02:35:53 +02:00
|
|
|
{
|
2005-08-03 01:46:10 +02:00
|
|
|
if (parse_tag(tag))
|
2005-06-22 02:35:53 +02:00
|
|
|
return -1;
|
2007-09-11 05:02:45 +02:00
|
|
|
return process(walker, tag->tagged);
|
2005-06-22 02:35:53 +02:00
|
|
|
}
|
|
|
|
|
2005-08-03 01:46:10 +02:00
|
|
|
static struct object_list *process_queue = NULL;
|
|
|
|
static struct object_list **process_queue_end = &process_queue;
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process_object(struct walker *walker, struct object *obj)
|
2005-06-22 02:35:53 +02:00
|
|
|
{
|
2006-07-12 05:45:31 +02:00
|
|
|
if (obj->type == OBJ_COMMIT) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process_commit(walker, (struct commit *)obj))
|
2005-08-12 01:38:09 +02:00
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-12 05:45:31 +02:00
|
|
|
if (obj->type == OBJ_TREE) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process_tree(walker, (struct tree *)obj))
|
2005-08-12 01:38:09 +02:00
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-12 05:45:31 +02:00
|
|
|
if (obj->type == OBJ_BLOB) {
|
2005-08-12 01:38:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2006-07-12 05:45:31 +02:00
|
|
|
if (obj->type == OBJ_TAG) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process_tag(walker, (struct tag *)obj))
|
2005-08-12 01:38:09 +02:00
|
|
|
return -1;
|
2005-06-22 02:35:53 +02:00
|
|
|
return 0;
|
2005-08-12 01:38:09 +02:00
|
|
|
}
|
|
|
|
return error("Unable to determine requirements "
|
|
|
|
"of type %s for %s",
|
Shrink "struct object" a bit
This shrinks "struct object" by a small amount, by getting rid of the
"struct type *" pointer and replacing it with a 3-bit bitfield instead.
In addition, we merge the bitfields and the "flags" field, which
incidentally should also remove a useless 4-byte padding from the object
when in 64-bit mode.
Now, our "struct object" is still too damn large, but it's now less
obviously bloated, and of the remaining fields, only the "util" (which is
not used by most things) is clearly something that should be eventually
discarded.
This shrinks the "git-rev-list --all" memory use by about 2.5% on the
kernel archive (and, perhaps more importantly, on the larger mozilla
archive). That may not sound like much, but I suspect it's more on a
64-bit platform.
There are other remaining inefficiencies (the parent lists, for example,
probably have horrible malloc overhead), but this was pretty obvious.
Most of the patch is just changing the comparison of the "type" pointer
from one of the constant string pointers to the appropriate new TYPE_xxx
small integer constant.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-15 01:45:13 +02:00
|
|
|
typename(obj->type), sha1_to_hex(obj->sha1));
|
2005-08-12 01:38:09 +02:00
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int process(struct walker *walker, struct object *obj)
|
2005-08-12 01:38:09 +02:00
|
|
|
{
|
2005-09-21 18:33:59 +02:00
|
|
|
if (obj->flags & SEEN)
|
|
|
|
return 0;
|
|
|
|
obj->flags |= SEEN;
|
|
|
|
|
2005-09-21 18:33:54 +02:00
|
|
|
if (has_sha1_file(obj->sha1)) {
|
2005-08-12 01:38:09 +02:00
|
|
|
/* We already have it, so we should scan it now. */
|
2005-09-18 10:01:07 +02:00
|
|
|
obj->flags |= TO_SCAN;
|
2006-06-06 23:04:17 +02:00
|
|
|
}
|
|
|
|
else {
|
2005-09-21 18:34:14 +02:00
|
|
|
if (obj->flags & COMPLETE)
|
|
|
|
return 0;
|
2007-09-11 05:02:45 +02:00
|
|
|
walker->prefetch(walker, obj->sha1);
|
2005-08-12 01:38:09 +02:00
|
|
|
}
|
2007-06-07 09:04:01 +02:00
|
|
|
|
2005-08-03 01:46:10 +02:00
|
|
|
object_list_insert(obj, process_queue_end);
|
|
|
|
process_queue_end = &(*process_queue_end)->next;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int loop(struct walker *walker)
|
2005-08-03 01:46:10 +02:00
|
|
|
{
|
2005-09-18 10:01:07 +02:00
|
|
|
struct object_list *elem;
|
|
|
|
|
2005-08-03 01:46:10 +02:00
|
|
|
while (process_queue) {
|
|
|
|
struct object *obj = process_queue->item;
|
2005-09-18 10:01:07 +02:00
|
|
|
elem = process_queue;
|
|
|
|
process_queue = elem->next;
|
|
|
|
free(elem);
|
2005-08-03 01:46:10 +02:00
|
|
|
if (!process_queue)
|
|
|
|
process_queue_end = &process_queue;
|
|
|
|
|
2005-09-18 10:01:07 +02:00
|
|
|
/* If we are not scanning this object, we placed it in
|
|
|
|
* the queue because we needed to fetch it first.
|
|
|
|
*/
|
|
|
|
if (! (obj->flags & TO_SCAN)) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (walker->fetch(walker, obj->sha1)) {
|
2006-12-12 18:34:02 +01:00
|
|
|
report_missing(obj);
|
2005-09-18 10:01:07 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2005-08-03 01:46:10 +02:00
|
|
|
if (!obj->type)
|
|
|
|
parse_object(obj->sha1);
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process_object(walker, obj))
|
2005-08-12 01:38:09 +02:00
|
|
|
return -1;
|
2005-08-03 01:46:10 +02:00
|
|
|
}
|
|
|
|
return 0;
|
2005-06-22 02:35:53 +02:00
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
static int interpret_target(struct walker *walker, char *target, unsigned char *sha1)
|
2005-06-06 22:38:26 +02:00
|
|
|
{
|
|
|
|
if (!get_sha1_hex(target, sha1))
|
|
|
|
return 0;
|
2011-09-15 23:10:25 +02:00
|
|
|
if (!check_refname_format(target, 0)) {
|
2008-10-18 10:44:18 +02:00
|
|
|
struct ref *ref = alloc_ref(target);
|
Make walker.fetch_ref() take a struct ref.
This simplifies a few things, makes a few things slightly more
complicated, but, more importantly, allows that, when struct ref can
represent a symref, http_fetch_ref() can return one.
Incidentally makes the string that http_fetch_ref() gets include "refs/"
(if appropriate), because that's how the name field of struct ref works.
As far as I can tell, the usage in walker:interpret_target() wouldn't have
worked previously, if it ever would have been used, which it wouldn't
(since the fetch process uses the hash instead of the name of the ref
there).
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-04-26 21:53:09 +02:00
|
|
|
if (!walker->fetch_ref(walker, ref)) {
|
|
|
|
hashcpy(sha1, ref->old_sha1);
|
|
|
|
free(ref);
|
2005-06-06 22:38:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
Make walker.fetch_ref() take a struct ref.
This simplifies a few things, makes a few things slightly more
complicated, but, more importantly, allows that, when struct ref can
represent a symref, http_fetch_ref() can return one.
Incidentally makes the string that http_fetch_ref() gets include "refs/"
(if appropriate), because that's how the name field of struct ref works.
As far as I can tell, the usage in walker:interpret_target() wouldn't have
worked previously, if it ever would have been used, which it wouldn't
(since the fetch process uses the hash instead of the name of the ref
there).
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-04-26 21:53:09 +02:00
|
|
|
free(ref);
|
2005-06-06 22:38:26 +02:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-05-25 20:39:14 +02:00
|
|
|
static int mark_complete(const char *path, const struct object_id *oid,
|
|
|
|
int flag, void *cb_data)
|
2005-09-15 03:31:42 +02:00
|
|
|
{
|
2015-05-25 20:39:14 +02:00
|
|
|
struct commit *commit = lookup_commit_reference_gently(oid->hash, 1);
|
|
|
|
|
2005-09-16 23:30:29 +02:00
|
|
|
if (commit) {
|
|
|
|
commit->object.flags |= COMPLETE;
|
2014-08-21 20:30:24 +02:00
|
|
|
commit_list_insert(commit, &complete);
|
2005-09-15 03:31:42 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-06-06 22:38:26 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
int walker_targets_stdin(char ***target, const char ***write_ref)
|
2006-07-27 23:56:19 +02:00
|
|
|
{
|
|
|
|
int targets = 0, targets_alloc = 0;
|
2008-10-09 21:12:12 +02:00
|
|
|
struct strbuf buf = STRBUF_INIT;
|
2006-07-27 23:56:19 +02:00
|
|
|
*target = NULL; *write_ref = NULL;
|
|
|
|
while (1) {
|
|
|
|
char *rf_one = NULL;
|
|
|
|
char *tg_one;
|
|
|
|
|
2007-09-17 11:19:04 +02:00
|
|
|
if (strbuf_getline(&buf, stdin, '\n') == EOF)
|
2006-07-27 23:56:19 +02:00
|
|
|
break;
|
|
|
|
tg_one = buf.buf;
|
|
|
|
rf_one = strchr(tg_one, '\t');
|
|
|
|
if (rf_one)
|
|
|
|
*rf_one++ = 0;
|
|
|
|
|
|
|
|
if (targets >= targets_alloc) {
|
|
|
|
targets_alloc = targets_alloc ? targets_alloc * 2 : 64;
|
2014-09-16 20:56:57 +02:00
|
|
|
REALLOC_ARRAY(*target, targets_alloc);
|
|
|
|
REALLOC_ARRAY(*write_ref, targets_alloc);
|
2006-07-27 23:56:19 +02:00
|
|
|
}
|
2006-09-02 06:16:31 +02:00
|
|
|
(*target)[targets] = xstrdup(tg_one);
|
2015-01-13 02:59:09 +01:00
|
|
|
(*write_ref)[targets] = xstrdup_or_null(rf_one);
|
2006-07-27 23:56:19 +02:00
|
|
|
targets++;
|
|
|
|
}
|
2007-09-17 11:19:04 +02:00
|
|
|
strbuf_release(&buf);
|
2006-07-27 23:56:19 +02:00
|
|
|
return targets;
|
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
void walker_targets_free(int targets, char **target, const char **write_ref)
|
2006-07-27 23:56:19 +02:00
|
|
|
{
|
|
|
|
while (targets--) {
|
|
|
|
free(target[targets]);
|
2009-07-22 23:51:55 +02:00
|
|
|
if (write_ref)
|
2006-07-27 23:56:19 +02:00
|
|
|
free((char *) write_ref[targets]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
int walker_fetch(struct walker *walker, int targets, char **target,
|
|
|
|
const char **write_ref, const char *write_ref_log_details)
|
2005-05-01 01:53:56 +02:00
|
|
|
{
|
2014-04-17 20:31:06 +02:00
|
|
|
struct strbuf refname = STRBUF_INIT;
|
|
|
|
struct strbuf err = STRBUF_INIT;
|
|
|
|
struct ref_transaction *transaction = NULL;
|
2006-07-27 23:56:17 +02:00
|
|
|
unsigned char *sha1 = xmalloc(targets * 20);
|
2014-04-17 20:31:06 +02:00
|
|
|
char *msg = NULL;
|
|
|
|
int i, ret = -1;
|
2005-06-06 22:38:26 +02:00
|
|
|
|
2005-09-16 00:06:39 +02:00
|
|
|
save_commit_buffer = 0;
|
2006-07-27 23:56:17 +02:00
|
|
|
|
2014-04-17 20:31:06 +02:00
|
|
|
if (write_ref) {
|
|
|
|
transaction = ref_transaction_begin(&err);
|
|
|
|
if (!transaction) {
|
|
|
|
error("%s", err.buf);
|
|
|
|
goto done;
|
2006-05-19 09:29:26 +02:00
|
|
|
}
|
2005-06-06 22:38:26 +02:00
|
|
|
}
|
|
|
|
|
2014-08-21 20:30:24 +02:00
|
|
|
if (!walker->get_recover) {
|
2015-05-25 20:39:14 +02:00
|
|
|
for_each_ref(mark_complete, NULL);
|
2014-08-21 20:30:24 +02:00
|
|
|
commit_list_sort_by_date(&complete);
|
|
|
|
}
|
2005-09-15 03:31:42 +02:00
|
|
|
|
2006-07-27 23:56:17 +02:00
|
|
|
for (i = 0; i < targets; i++) {
|
2007-09-11 05:02:45 +02:00
|
|
|
if (interpret_target(walker, target[i], &sha1[20 * i])) {
|
2007-12-17 13:00:43 +01:00
|
|
|
error("Could not interpret response from server '%s' as something to pull", target[i]);
|
2014-04-17 20:31:06 +02:00
|
|
|
goto done;
|
2006-07-27 23:56:17 +02:00
|
|
|
}
|
2007-09-11 05:02:45 +02:00
|
|
|
if (process(walker, lookup_unknown_object(&sha1[20 * i])))
|
2014-04-17 20:31:06 +02:00
|
|
|
goto done;
|
2006-05-17 11:55:02 +02:00
|
|
|
}
|
2006-07-27 23:56:17 +02:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
if (loop(walker))
|
2014-04-17 20:31:06 +02:00
|
|
|
goto done;
|
|
|
|
if (!write_ref) {
|
|
|
|
ret = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
2006-07-27 23:56:17 +02:00
|
|
|
if (write_ref_log_details) {
|
2014-09-11 19:33:30 +02:00
|
|
|
msg = xstrfmt("fetch from %s", write_ref_log_details);
|
2006-07-27 23:56:17 +02:00
|
|
|
} else {
|
|
|
|
msg = NULL;
|
2006-05-17 11:55:02 +02:00
|
|
|
}
|
2006-07-27 23:56:17 +02:00
|
|
|
for (i = 0; i < targets; i++) {
|
2014-04-17 20:31:06 +02:00
|
|
|
if (!write_ref[i])
|
2006-07-27 23:56:17 +02:00
|
|
|
continue;
|
2014-04-17 20:31:06 +02:00
|
|
|
strbuf_reset(&refname);
|
|
|
|
strbuf_addf(&refname, "refs/%s", write_ref[i]);
|
|
|
|
if (ref_transaction_update(transaction, refname.buf,
|
2015-02-17 18:00:15 +01:00
|
|
|
&sha1[20 * i], NULL, 0,
|
2014-04-30 21:22:42 +02:00
|
|
|
msg ? msg : "fetch (unknown)",
|
2014-04-17 20:31:06 +02:00
|
|
|
&err)) {
|
|
|
|
error("%s", err.buf);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
2014-04-30 21:22:42 +02:00
|
|
|
if (ref_transaction_commit(transaction, &err)) {
|
2014-04-17 20:31:06 +02:00
|
|
|
error("%s", err.buf);
|
|
|
|
goto done;
|
2006-05-17 11:55:02 +02:00
|
|
|
}
|
2006-07-27 23:56:17 +02:00
|
|
|
|
2014-04-17 20:31:06 +02:00
|
|
|
ret = 0;
|
2007-09-11 05:02:45 +02:00
|
|
|
|
2014-04-17 20:31:06 +02:00
|
|
|
done:
|
|
|
|
ref_transaction_free(transaction);
|
|
|
|
free(msg);
|
|
|
|
free(sha1);
|
|
|
|
strbuf_release(&err);
|
|
|
|
strbuf_release(&refname);
|
|
|
|
return ret;
|
2005-05-01 01:53:56 +02:00
|
|
|
}
|
2007-09-11 05:02:45 +02:00
|
|
|
|
|
|
|
void walker_free(struct walker *walker)
|
|
|
|
{
|
|
|
|
walker->cleanup(walker);
|
|
|
|
free(walker);
|
|
|
|
}
|