Merge branch 'master' of git://repo.or.cz/alt-git
[git/mingw.git] / walker.c
blobcdeb63f319abc088fe54e4291ed765900d16f1fd
1 #include "cache.h"
2 #include "walker.h"
3 #include "commit.h"
4 #include "tree.h"
5 #include "tree-walk.h"
6 #include "tag.h"
7 #include "blob.h"
8 #include "refs.h"
10 static unsigned char current_commit_sha1[20];
12 void walker_say(struct walker *walker, const char *fmt, const char *hex)
14 if (walker->get_verbosely)
15 fprintf(stderr, fmt, hex);
18 static void report_missing(const struct object *obj)
20 fprintf(stderr, "Cannot obtain needed %s %s\n",
21 obj->type ? typename(obj->type): "object",
22 sha1_to_hex(obj->sha1));
23 if (!is_null_sha1(current_commit_sha1))
24 fprintf(stderr, "while processing commit %s.\n",
25 sha1_to_hex(current_commit_sha1));
28 static int process(struct walker *walker, struct object *obj);
30 static int process_tree(struct walker *walker, struct tree *tree)
32 struct tree_desc desc;
33 struct name_entry entry;
35 if (parse_tree(tree))
36 return -1;
38 init_tree_desc(&desc, tree->buffer, tree->size);
39 while (tree_entry(&desc, &entry)) {
40 struct object *obj = NULL;
42 /* submodule commits are not stored in the superproject */
43 if (S_ISGITLINK(entry.mode))
44 continue;
45 if (S_ISDIR(entry.mode)) {
46 struct tree *tree = lookup_tree(entry.sha1);
47 if (tree)
48 obj = &tree->object;
50 else {
51 struct blob *blob = lookup_blob(entry.sha1);
52 if (blob)
53 obj = &blob->object;
55 if (!obj || process(walker, obj))
56 return -1;
58 free_tree_buffer(tree);
59 return 0;
62 /* Remember to update object flag allocation in object.h */
63 #define COMPLETE (1U << 0)
64 #define SEEN (1U << 1)
65 #define TO_SCAN (1U << 2)
67 static struct commit_list *complete = NULL;
69 static int process_commit(struct walker *walker, struct commit *commit)
71 if (parse_commit(commit))
72 return -1;
74 while (complete && complete->item->date >= commit->date) {
75 pop_most_recent_commit(&complete, COMPLETE);
78 if (commit->object.flags & COMPLETE)
79 return 0;
81 hashcpy(current_commit_sha1, commit->object.sha1);
83 walker_say(walker, "walk %s\n", sha1_to_hex(commit->object.sha1));
85 if (walker->get_tree) {
86 if (process(walker, &commit->tree->object))
87 return -1;
88 if (!walker->get_all)
89 walker->get_tree = 0;
91 if (walker->get_history) {
92 struct commit_list *parents = commit->parents;
93 for (; parents; parents = parents->next) {
94 if (process(walker, &parents->item->object))
95 return -1;
98 return 0;
101 static int process_tag(struct walker *walker, struct tag *tag)
103 if (parse_tag(tag))
104 return -1;
105 return process(walker, tag->tagged);
108 static struct object_list *process_queue = NULL;
109 static struct object_list **process_queue_end = &process_queue;
111 static int process_object(struct walker *walker, struct object *obj)
113 if (obj->type == OBJ_COMMIT) {
114 if (process_commit(walker, (struct commit *)obj))
115 return -1;
116 return 0;
118 if (obj->type == OBJ_TREE) {
119 if (process_tree(walker, (struct tree *)obj))
120 return -1;
121 return 0;
123 if (obj->type == OBJ_BLOB) {
124 return 0;
126 if (obj->type == OBJ_TAG) {
127 if (process_tag(walker, (struct tag *)obj))
128 return -1;
129 return 0;
131 return error("Unable to determine requirements "
132 "of type %s for %s",
133 typename(obj->type), sha1_to_hex(obj->sha1));
136 static int process(struct walker *walker, struct object *obj)
138 if (obj->flags & SEEN)
139 return 0;
140 obj->flags |= SEEN;
142 if (has_sha1_file(obj->sha1)) {
143 /* We already have it, so we should scan it now. */
144 obj->flags |= TO_SCAN;
146 else {
147 if (obj->flags & COMPLETE)
148 return 0;
149 walker->prefetch(walker, obj->sha1);
152 object_list_insert(obj, process_queue_end);
153 process_queue_end = &(*process_queue_end)->next;
154 return 0;
157 static int loop(struct walker *walker)
159 struct object_list *elem;
161 while (process_queue) {
162 struct object *obj = process_queue->item;
163 elem = process_queue;
164 process_queue = elem->next;
165 free(elem);
166 if (!process_queue)
167 process_queue_end = &process_queue;
169 /* If we are not scanning this object, we placed it in
170 * the queue because we needed to fetch it first.
172 if (! (obj->flags & TO_SCAN)) {
173 if (walker->fetch(walker, obj->sha1)) {
174 report_missing(obj);
175 return -1;
178 if (!obj->type)
179 parse_object(obj->sha1);
180 if (process_object(walker, obj))
181 return -1;
183 return 0;
186 static int interpret_target(struct walker *walker, char *target, unsigned char *sha1)
188 if (!get_sha1_hex(target, sha1))
189 return 0;
190 if (!check_refname_format(target, 0)) {
191 struct ref *ref = alloc_ref(target);
192 if (!walker->fetch_ref(walker, ref)) {
193 hashcpy(sha1, ref->old_sha1);
194 free(ref);
195 return 0;
197 free(ref);
199 return -1;
202 static int mark_complete(const char *path, const struct object_id *oid,
203 int flag, void *cb_data)
205 struct commit *commit = lookup_commit_reference_gently(oid->hash, 1);
207 if (commit) {
208 commit->object.flags |= COMPLETE;
209 commit_list_insert(commit, &complete);
211 return 0;
214 int walker_targets_stdin(char ***target, const char ***write_ref)
216 int targets = 0, targets_alloc = 0;
217 struct strbuf buf = STRBUF_INIT;
218 *target = NULL; *write_ref = NULL;
219 while (1) {
220 char *rf_one = NULL;
221 char *tg_one;
223 if (strbuf_getline(&buf, stdin, '\n') == EOF)
224 break;
225 tg_one = buf.buf;
226 rf_one = strchr(tg_one, '\t');
227 if (rf_one)
228 *rf_one++ = 0;
230 if (targets >= targets_alloc) {
231 targets_alloc = targets_alloc ? targets_alloc * 2 : 64;
232 REALLOC_ARRAY(*target, targets_alloc);
233 REALLOC_ARRAY(*write_ref, targets_alloc);
235 (*target)[targets] = xstrdup(tg_one);
236 (*write_ref)[targets] = xstrdup_or_null(rf_one);
237 targets++;
239 strbuf_release(&buf);
240 return targets;
243 void walker_targets_free(int targets, char **target, const char **write_ref)
245 while (targets--) {
246 free(target[targets]);
247 if (write_ref)
248 free((char *) write_ref[targets]);
252 int walker_fetch(struct walker *walker, int targets, char **target,
253 const char **write_ref, const char *write_ref_log_details)
255 struct strbuf refname = STRBUF_INIT;
256 struct strbuf err = STRBUF_INIT;
257 struct ref_transaction *transaction = NULL;
258 unsigned char *sha1 = xmalloc(targets * 20);
259 char *msg = NULL;
260 int i, ret = -1;
262 save_commit_buffer = 0;
264 if (write_ref) {
265 transaction = ref_transaction_begin(&err);
266 if (!transaction) {
267 error("%s", err.buf);
268 goto done;
272 if (!walker->get_recover) {
273 for_each_ref(mark_complete, NULL);
274 commit_list_sort_by_date(&complete);
277 for (i = 0; i < targets; i++) {
278 if (interpret_target(walker, target[i], &sha1[20 * i])) {
279 error("Could not interpret response from server '%s' as something to pull", target[i]);
280 goto done;
282 if (process(walker, lookup_unknown_object(&sha1[20 * i])))
283 goto done;
286 if (loop(walker))
287 goto done;
288 if (!write_ref) {
289 ret = 0;
290 goto done;
292 if (write_ref_log_details) {
293 msg = xstrfmt("fetch from %s", write_ref_log_details);
294 } else {
295 msg = NULL;
297 for (i = 0; i < targets; i++) {
298 if (!write_ref[i])
299 continue;
300 strbuf_reset(&refname);
301 strbuf_addf(&refname, "refs/%s", write_ref[i]);
302 if (ref_transaction_update(transaction, refname.buf,
303 &sha1[20 * i], NULL, 0,
304 msg ? msg : "fetch (unknown)",
305 &err)) {
306 error("%s", err.buf);
307 goto done;
310 if (ref_transaction_commit(transaction, &err)) {
311 error("%s", err.buf);
312 goto done;
315 ret = 0;
317 done:
318 ref_transaction_free(transaction);
319 free(msg);
320 free(sha1);
321 strbuf_release(&err);
322 strbuf_release(&refname);
323 return ret;
326 void walker_free(struct walker *walker)
328 walker->cleanup(walker);
329 free(walker);