10 const char *write_ref = NULL;
15 int get_verbosely = 0;
17 static unsigned char current_commit_sha1[20];
19 void pull_say(const char *fmt, const char *hex)
22 fprintf(stderr, fmt, hex);
25 static void report_missing(const char *what, const unsigned char *missing)
29 strcpy(missing_hex, sha1_to_hex(missing));;
31 "Cannot obtain needed %s %s\nwhile processing commit %s.\n",
32 what, missing_hex, sha1_to_hex(current_commit_sha1));
35 static int process(struct object *obj);
37 static int process_tree(struct tree *tree)
39 struct tree_entry_list *entry;
44 entry = tree->entries;
47 struct tree_entry_list *next = entry->next;
48 if (process(entry->item.any))
57 #define COMPLETE (1U << 0)
58 #define SEEN (1U << 1)
59 #define TO_SCAN (1U << 2)
61 static struct commit_list *complete = NULL;
63 static int process_commit(struct commit *commit)
65 if (parse_commit(commit))
68 while (complete && complete->item->date >= commit->date) {
69 pop_most_recent_commit(&complete, COMPLETE);
72 if (commit->object.flags & COMPLETE)
75 memcpy(current_commit_sha1, commit->object.sha1, 20);
77 pull_say("walk %s\n", sha1_to_hex(commit->object.sha1));
80 if (process(&commit->tree->object))
86 struct commit_list *parents = commit->parents;
87 for (; parents; parents = parents->next) {
88 if (process(&parents->item->object))
95 static int process_tag(struct tag *tag)
99 return process(tag->tagged);
102 static struct object_list *process_queue = NULL;
103 static struct object_list **process_queue_end = &process_queue;
105 static int process_object(struct object *obj)
107 if (obj->type == commit_type) {
108 if (process_commit((struct commit *)obj))
112 if (obj->type == tree_type) {
113 if (process_tree((struct tree *)obj))
117 if (obj->type == blob_type) {
120 if (obj->type == tag_type) {
121 if (process_tag((struct tag *)obj))
125 return error("Unable to determine requirements "
127 obj->type, sha1_to_hex(obj->sha1));
130 static int process(struct object *obj)
132 if (obj->flags & SEEN)
136 if (has_sha1_file(obj->sha1)) {
137 /* We already have it, so we should scan it now. */
138 obj->flags |= TO_SCAN;
140 if (obj->flags & COMPLETE)
145 object_list_insert(obj, process_queue_end);
146 process_queue_end = &(*process_queue_end)->next;
150 static int loop(void)
152 struct object_list *elem;
154 while (process_queue) {
155 struct object *obj = process_queue->item;
156 elem = process_queue;
157 process_queue = elem->next;
160 process_queue_end = &process_queue;
162 /* If we are not scanning this object, we placed it in
163 * the queue because we needed to fetch it first.
165 if (! (obj->flags & TO_SCAN)) {
166 if (fetch(obj->sha1)) {
167 report_missing(obj->type
169 : "object", obj->sha1);
174 parse_object(obj->sha1);
175 if (process_object(obj))
181 static int interpret_target(char *target, unsigned char *sha1)
183 if (!get_sha1_hex(target, sha1))
185 if (!check_ref_format(target)) {
186 if (!fetch_ref(target, sha1)) {
193 static int mark_complete(const char *path, const unsigned char *sha1)
195 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
197 commit->object.flags |= COMPLETE;
198 insert_by_date(commit, &complete);
203 int pull(char *target)
205 unsigned char sha1[20];
207 save_commit_buffer = 0;
208 track_object_refs = 0;
211 for_each_ref(mark_complete);
213 if (interpret_target(target, sha1))
214 return error("Could not interpret %s as something to pull",
216 if (process(lookup_unknown_object(sha1)))
222 write_ref_sha1_unlocked(write_ref, sha1);