14 int get_verbosely = 0;
16 static unsigned char current_commit_sha1[20];
18 void pull_say(const char *fmt, const char *hex)
21 fprintf(stderr, fmt, hex);
24 static void report_missing(const struct object *obj)
27 strcpy(missing_hex, sha1_to_hex(obj->sha1));;
28 fprintf(stderr, "Cannot obtain needed %s %s\n",
29 obj->type ? typename(obj->type): "object", missing_hex);
30 if (!is_null_sha1(current_commit_sha1))
31 fprintf(stderr, "while processing commit %s.\n",
32 sha1_to_hex(current_commit_sha1));
35 static int process(struct object *obj);
37 static int process_tree(struct tree *tree)
39 struct tree_desc desc;
40 struct name_entry entry;
45 init_tree_desc(&desc, tree->buffer, tree->size);
46 while (tree_entry(&desc, &entry)) {
47 struct object *obj = NULL;
49 if (S_ISDIR(entry.mode)) {
50 struct tree *tree = lookup_tree(entry.sha1);
55 struct blob *blob = lookup_blob(entry.sha1);
59 if (!obj || process(obj))
68 #define COMPLETE (1U << 0)
69 #define SEEN (1U << 1)
70 #define TO_SCAN (1U << 2)
72 static struct commit_list *complete = NULL;
74 static int process_commit(struct commit *commit)
76 if (parse_commit(commit))
79 while (complete && complete->item->date >= commit->date) {
80 pop_most_recent_commit(&complete, COMPLETE);
83 if (commit->object.flags & COMPLETE)
86 hashcpy(current_commit_sha1, commit->object.sha1);
88 pull_say("walk %s\n", sha1_to_hex(commit->object.sha1));
91 if (process(&commit->tree->object))
97 struct commit_list *parents = commit->parents;
98 for (; parents; parents = parents->next) {
99 if (process(&parents->item->object))
106 static int process_tag(struct tag *tag)
110 return process(tag->tagged);
113 static struct object_list *process_queue = NULL;
114 static struct object_list **process_queue_end = &process_queue;
116 static int process_object(struct object *obj)
118 if (obj->type == OBJ_COMMIT) {
119 if (process_commit((struct commit *)obj))
123 if (obj->type == OBJ_TREE) {
124 if (process_tree((struct tree *)obj))
128 if (obj->type == OBJ_BLOB) {
131 if (obj->type == OBJ_TAG) {
132 if (process_tag((struct tag *)obj))
136 return error("Unable to determine requirements "
138 typename(obj->type), sha1_to_hex(obj->sha1));
141 static int process(struct object *obj)
143 if (obj->flags & SEEN)
147 if (has_sha1_file(obj->sha1)) {
148 /* We already have it, so we should scan it now. */
149 obj->flags |= TO_SCAN;
152 if (obj->flags & COMPLETE)
157 object_list_insert(obj, process_queue_end);
158 process_queue_end = &(*process_queue_end)->next;
162 static int loop(void)
164 struct object_list *elem;
166 while (process_queue) {
167 struct object *obj = process_queue->item;
168 elem = process_queue;
169 process_queue = elem->next;
172 process_queue_end = &process_queue;
174 /* If we are not scanning this object, we placed it in
175 * the queue because we needed to fetch it first.
177 if (! (obj->flags & TO_SCAN)) {
178 if (fetch(obj->sha1)) {
184 parse_object(obj->sha1);
185 if (process_object(obj))
191 static int interpret_target(char *target, unsigned char *sha1)
193 if (!get_sha1_hex(target, sha1))
195 if (!check_ref_format(target)) {
196 if (!fetch_ref(target, sha1)) {
203 static int mark_complete(const char *path, const unsigned char *sha1, int flag, void *cb_data)
205 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
207 commit->object.flags |= COMPLETE;
208 insert_by_date(commit, &complete);
213 int pull_targets_stdin(char ***target, const char ***write_ref)
215 int targets = 0, targets_alloc = 0;
217 *target = NULL; *write_ref = NULL;
223 read_line(&buf, stdin, '\n');
227 rf_one = strchr(tg_one, '\t');
231 if (targets >= targets_alloc) {
232 targets_alloc = targets_alloc ? targets_alloc * 2 : 64;
233 *target = xrealloc(*target, targets_alloc * sizeof(**target));
234 *write_ref = xrealloc(*write_ref, targets_alloc * sizeof(**write_ref));
236 (*target)[targets] = xstrdup(tg_one);
237 (*write_ref)[targets] = rf_one ? xstrdup(rf_one) : NULL;
243 void pull_targets_free(int targets, char **target, const char **write_ref)
246 free(target[targets]);
247 if (write_ref && write_ref[targets])
248 free((char *) write_ref[targets]);
252 int pull(int targets, char **target, const char **write_ref,
253 const char *write_ref_log_details)
255 struct ref_lock **lock = xcalloc(targets, sizeof(struct ref_lock *));
256 unsigned char *sha1 = xmalloc(targets * 20);
261 save_commit_buffer = 0;
262 track_object_refs = 0;
264 for (i = 0; i < targets; i++) {
265 if (!write_ref || !write_ref[i])
268 lock[i] = lock_ref_sha1(write_ref[i], NULL);
270 error("Can't lock ref %s", write_ref[i]);
271 goto unlock_and_fail;
276 for_each_ref(mark_complete, NULL);
278 for (i = 0; i < targets; i++) {
279 if (interpret_target(target[i], &sha1[20 * i])) {
280 error("Could not interpret %s as something to pull", target[i]);
281 goto unlock_and_fail;
283 if (process(lookup_unknown_object(&sha1[20 * i])))
284 goto unlock_and_fail;
288 goto unlock_and_fail;
290 if (write_ref_log_details) {
291 msg = xmalloc(strlen(write_ref_log_details) + 12);
292 sprintf(msg, "fetch from %s", write_ref_log_details);
296 for (i = 0; i < targets; i++) {
297 if (!write_ref || !write_ref[i])
299 ret = write_ref_sha1(lock[i], &sha1[20 * i], msg ? msg : "fetch (unknown)");
302 goto unlock_and_fail;
310 for (i = 0; i < targets; i++)