10 const char *write_ref = NULL;
11 const char *write_ref_log_details = NULL;
13 const unsigned char *current_ref = NULL;
18 int get_verbosely = 0;
20 static unsigned char current_commit_sha1[20];
22 void pull_say(const char *fmt, const char *hex)
25 fprintf(stderr, fmt, hex);
28 static void report_missing(const char *what, const unsigned char *missing)
32 strcpy(missing_hex, sha1_to_hex(missing));;
34 "Cannot obtain needed %s %s\nwhile processing commit %s.\n",
35 what, missing_hex, sha1_to_hex(current_commit_sha1));
38 static int process(struct object *obj);
40 static int process_tree(struct tree *tree)
42 struct tree_entry_list *entry;
47 entry = tree->entries;
50 struct tree_entry_list *next = entry->next;
51 if (process(entry->item.any))
60 #define COMPLETE (1U << 0)
61 #define SEEN (1U << 1)
62 #define TO_SCAN (1U << 2)
64 static struct commit_list *complete = NULL;
66 static int process_commit(struct commit *commit)
68 if (parse_commit(commit))
71 while (complete && complete->item->date >= commit->date) {
72 pop_most_recent_commit(&complete, COMPLETE);
75 if (commit->object.flags & COMPLETE)
78 memcpy(current_commit_sha1, commit->object.sha1, 20);
80 pull_say("walk %s\n", sha1_to_hex(commit->object.sha1));
83 if (process(&commit->tree->object))
89 struct commit_list *parents = commit->parents;
90 for (; parents; parents = parents->next) {
91 if (process(&parents->item->object))
98 static int process_tag(struct tag *tag)
102 return process(tag->tagged);
105 static struct object_list *process_queue = NULL;
106 static struct object_list **process_queue_end = &process_queue;
108 static int process_object(struct object *obj)
110 if (obj->type == commit_type) {
111 if (process_commit((struct commit *)obj))
115 if (obj->type == tree_type) {
116 if (process_tree((struct tree *)obj))
120 if (obj->type == blob_type) {
123 if (obj->type == tag_type) {
124 if (process_tag((struct tag *)obj))
128 return error("Unable to determine requirements "
130 obj->type, sha1_to_hex(obj->sha1));
133 static int process(struct object *obj)
135 if (obj->flags & SEEN)
139 if (has_sha1_file(obj->sha1)) {
140 /* We already have it, so we should scan it now. */
141 obj->flags |= TO_SCAN;
143 if (obj->flags & COMPLETE)
148 object_list_insert(obj, process_queue_end);
149 process_queue_end = &(*process_queue_end)->next;
153 static int loop(void)
155 struct object_list *elem;
157 while (process_queue) {
158 struct object *obj = process_queue->item;
159 elem = process_queue;
160 process_queue = elem->next;
163 process_queue_end = &process_queue;
165 /* If we are not scanning this object, we placed it in
166 * the queue because we needed to fetch it first.
168 if (! (obj->flags & TO_SCAN)) {
169 if (fetch(obj->sha1)) {
170 report_missing(obj->type
172 : "object", obj->sha1);
177 parse_object(obj->sha1);
178 if (process_object(obj))
184 static int interpret_target(char *target, unsigned char *sha1)
186 if (!get_sha1_hex(target, sha1))
188 if (!check_ref_format(target)) {
189 if (!fetch_ref(target, sha1)) {
196 static int mark_complete(const char *path, const unsigned char *sha1)
198 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
200 commit->object.flags |= COMPLETE;
201 insert_by_date(commit, &complete);
206 int pull(char *target)
208 struct ref_lock *lock;
209 unsigned char sha1[20];
213 save_commit_buffer = 0;
214 track_object_refs = 0;
216 lock = lock_ref_sha1(write_ref, current_ref, 1);
218 error("Can't lock ref %s", write_ref);
224 for_each_ref(mark_complete);
227 if (interpret_target(target, sha1)) {
228 error("Could not interpret %s as something to pull", target);
232 if (process(lookup_unknown_object(sha1))) {
242 if (write_ref_log_details) {
243 msg = xmalloc(strlen(write_ref_log_details) + 12);
244 sprintf(msg, "fetch from %s", write_ref_log_details);
247 ret = write_ref_sha1(lock, sha1, msg ? msg : "fetch (unknown)");