Commit | Line | Data |
---|---|---|
215a7ad1 | 1 | #include "fetch.h" |
4250a5e5 DB |
2 | |
3 | #include "cache.h" | |
4 | #include "commit.h" | |
5 | #include "tree.h" | |
3173bd49 DB |
6 | #include "tag.h" |
7 | #include "blob.h" | |
cd541a68 DB |
8 | #include "refs.h" |
9 | ||
10 | const char *write_ref = NULL; | |
11 | ||
12 | const unsigned char *current_ref = NULL; | |
4250a5e5 DB |
13 | |
14 | int get_tree = 0; | |
15 | int get_history = 0; | |
16 | int get_all = 0; | |
e78d9772 | 17 | int get_verbosely = 0; |
b2d62f16 | 18 | static unsigned char current_commit_sha1[20]; |
4250a5e5 | 19 | |
1e8be59d DB |
20 | void pull_say(const char *fmt, const char *hex) |
21 | { | |
e78d9772 JH |
22 | if (get_verbosely) |
23 | fprintf(stderr, fmt, hex); | |
24 | } | |
25 | ||
b2d62f16 JH |
26 | static void report_missing(const char *what, const unsigned char *missing) |
27 | { | |
28 | char missing_hex[41]; | |
29 | ||
30 | strcpy(missing_hex, sha1_to_hex(missing));; | |
31 | fprintf(stderr, | |
32 | "Cannot obtain needed %s %s\nwhile processing commit %s.\n", | |
33 | what, missing_hex, sha1_to_hex(current_commit_sha1)); | |
34 | } | |
35 | ||
80077f07 | 36 | static int process(struct object *obj); |
3173bd49 | 37 | |
1e8be59d | 38 | static int process_tree(struct tree *tree) |
4250a5e5 | 39 | { |
85d106c2 | 40 | struct tree_entry_list *entry; |
4250a5e5 DB |
41 | |
42 | if (parse_tree(tree)) | |
43 | return -1; | |
44 | ||
85d106c2 JH |
45 | entry = tree->entries; |
46 | tree->entries = NULL; | |
47 | while (entry) { | |
48 | struct tree_entry_list *next = entry->next; | |
80077f07 | 49 | if (process(entry->item.any)) |
4250a5e5 | 50 | return -1; |
85d106c2 JH |
51 | free(entry); |
52 | entry = next; | |
4250a5e5 DB |
53 | } |
54 | return 0; | |
55 | } | |
56 | ||
d0ac30f2 | 57 | #define COMPLETE 1U |
85d106c2 JH |
58 | #define TO_FETCH 2U |
59 | #define TO_SCAN 4U | |
60 | #define SCANNED 8U | |
61 | ||
d0ac30f2 | 62 | static struct commit_list *complete = NULL; |
22c6e1d0 | 63 | |
1e8be59d | 64 | static int process_commit(struct commit *commit) |
4250a5e5 | 65 | { |
1e8be59d | 66 | if (parse_commit(commit)) |
4250a5e5 DB |
67 | return -1; |
68 | ||
22c6e1d0 | 69 | while (complete && complete->item->date >= commit->date) { |
d0ac30f2 | 70 | pop_most_recent_commit(&complete, COMPLETE); |
22c6e1d0 | 71 | } |
22c6e1d0 | 72 | |
d0ac30f2 | 73 | if (commit->object.flags & COMPLETE) |
22c6e1d0 DB |
74 | return 0; |
75 | ||
1e8be59d | 76 | memcpy(current_commit_sha1, commit->object.sha1, 20); |
4250a5e5 | 77 | |
85d106c2 JH |
78 | pull_say("walk %s\n", sha1_to_hex(commit->object.sha1)); |
79 | ||
4250a5e5 | 80 | if (get_tree) { |
80077f07 | 81 | if (process(&commit->tree->object)) |
4250a5e5 DB |
82 | return -1; |
83 | if (!get_all) | |
84 | get_tree = 0; | |
85 | } | |
86 | if (get_history) { | |
1e8be59d | 87 | struct commit_list *parents = commit->parents; |
4250a5e5 | 88 | for (; parents; parents = parents->next) { |
80077f07 | 89 | if (process(&parents->item->object)) |
4250a5e5 DB |
90 | return -1; |
91 | } | |
92 | } | |
93 | return 0; | |
94 | } | |
95 | ||
1e8be59d | 96 | static int process_tag(struct tag *tag) |
3173bd49 | 97 | { |
1e8be59d | 98 | if (parse_tag(tag)) |
3173bd49 | 99 | return -1; |
80077f07 | 100 | return process(tag->tagged); |
3173bd49 DB |
101 | } |
102 | ||
1e8be59d DB |
103 | static struct object_list *process_queue = NULL; |
104 | static struct object_list **process_queue_end = &process_queue; | |
105 | ||
f88fcf8b | 106 | static int process_object(struct object *obj) |
3173bd49 | 107 | { |
85d106c2 JH |
108 | if (obj->flags & SCANNED) |
109 | return 0; | |
110 | obj->flags |= SCANNED; | |
111 | ||
f88fcf8b DB |
112 | if (obj->type == commit_type) { |
113 | if (process_commit((struct commit *)obj)) | |
114 | return -1; | |
115 | return 0; | |
116 | } | |
117 | if (obj->type == tree_type) { | |
118 | if (process_tree((struct tree *)obj)) | |
119 | return -1; | |
120 | return 0; | |
121 | } | |
122 | if (obj->type == blob_type) { | |
123 | return 0; | |
124 | } | |
125 | if (obj->type == tag_type) { | |
126 | if (process_tag((struct tag *)obj)) | |
127 | return -1; | |
3173bd49 | 128 | return 0; |
f88fcf8b DB |
129 | } |
130 | return error("Unable to determine requirements " | |
131 | "of type %s for %s", | |
132 | obj->type, sha1_to_hex(obj->sha1)); | |
133 | } | |
134 | ||
80077f07 | 135 | static int process(struct object *obj) |
f88fcf8b | 136 | { |
80077f07 SV |
137 | if (has_sha1_file(obj->sha1)) { |
138 | parse_object(obj->sha1); | |
f88fcf8b | 139 | /* We already have it, so we should scan it now. */ |
85d106c2 JH |
140 | if (obj->flags & (SCANNED | TO_SCAN)) |
141 | return 0; | |
142 | object_list_insert(obj, process_queue_end); | |
143 | process_queue_end = &(*process_queue_end)->next; | |
144 | obj->flags |= TO_SCAN; | |
145 | return 0; | |
f88fcf8b | 146 | } |
85d106c2 | 147 | if (obj->flags & (COMPLETE | TO_FETCH)) |
1e8be59d DB |
148 | return 0; |
149 | object_list_insert(obj, process_queue_end); | |
150 | process_queue_end = &(*process_queue_end)->next; | |
85d106c2 | 151 | obj->flags |= TO_FETCH; |
1e8be59d | 152 | |
80077f07 | 153 | prefetch(obj->sha1); |
1e8be59d DB |
154 | |
155 | return 0; | |
156 | } | |
157 | ||
158 | static int loop(void) | |
159 | { | |
85d106c2 JH |
160 | struct object_list *elem; |
161 | ||
1e8be59d DB |
162 | while (process_queue) { |
163 | struct object *obj = process_queue->item; | |
85d106c2 JH |
164 | elem = process_queue; |
165 | process_queue = elem->next; | |
166 | free(elem); | |
1e8be59d DB |
167 | if (!process_queue) |
168 | process_queue_end = &process_queue; | |
169 | ||
85d106c2 JH |
170 | /* If we are not scanning this object, we placed it in |
171 | * the queue because we needed to fetch it first. | |
172 | */ | |
173 | if (! (obj->flags & TO_SCAN)) { | |
029f6de3 | 174 | if (!has_sha1_file(obj->sha1) && fetch(obj->sha1)) { |
85d106c2 JH |
175 | report_missing(obj->type |
176 | ? obj->type | |
177 | : "object", obj->sha1); | |
178 | return -1; | |
179 | } | |
180 | } | |
1e8be59d DB |
181 | if (!obj->type) |
182 | parse_object(obj->sha1); | |
f88fcf8b DB |
183 | if (process_object(obj)) |
184 | return -1; | |
1e8be59d DB |
185 | } |
186 | return 0; | |
3173bd49 DB |
187 | } |
188 | ||
cd541a68 DB |
189 | static int interpret_target(char *target, unsigned char *sha1) |
190 | { | |
191 | if (!get_sha1_hex(target, sha1)) | |
192 | return 0; | |
193 | if (!check_ref_format(target)) { | |
194 | if (!fetch_ref(target, sha1)) { | |
195 | return 0; | |
196 | } | |
197 | } | |
198 | return -1; | |
199 | } | |
200 | ||
22c6e1d0 DB |
201 | static int mark_complete(const char *path, const unsigned char *sha1) |
202 | { | |
d0ac30f2 JH |
203 | struct commit *commit = lookup_commit_reference_gently(sha1, 1); |
204 | if (commit) { | |
205 | commit->object.flags |= COMPLETE; | |
206 | insert_by_date(commit, &complete); | |
22c6e1d0 DB |
207 | } |
208 | return 0; | |
209 | } | |
cd541a68 | 210 | |
4250a5e5 DB |
211 | int pull(char *target) |
212 | { | |
4250a5e5 | 213 | unsigned char sha1[20]; |
cd541a68 DB |
214 | int fd = -1; |
215 | ||
98533b90 | 216 | save_commit_buffer = 0; |
cd541a68 DB |
217 | if (write_ref && current_ref) { |
218 | fd = lock_ref_sha1(write_ref, current_ref); | |
219 | if (fd < 0) | |
220 | return -1; | |
221 | } | |
222 | ||
22c6e1d0 DB |
223 | for_each_ref(mark_complete); |
224 | ||
cd541a68 DB |
225 | if (interpret_target(target, sha1)) |
226 | return error("Could not interpret %s as something to pull", | |
227 | target); | |
80077f07 | 228 | if (process(lookup_unknown_object(sha1))) |
1e8be59d DB |
229 | return -1; |
230 | if (loop()) | |
cd541a68 DB |
231 | return -1; |
232 | ||
233 | if (write_ref) { | |
234 | if (current_ref) { | |
235 | write_ref_sha1(write_ref, fd, sha1); | |
236 | } else { | |
237 | write_ref_sha1_unlocked(write_ref, sha1); | |
238 | } | |
239 | } | |
240 | return 0; | |
4250a5e5 | 241 | } |