Merge part of 'js/fmt-patch' for RFC2822 dates into 'sp/reflog'
[git/gitweb.git] / fetch.c
blobfd57684d8fad43c92df8005aa8fe7b2cd9263bbb
1 #include "fetch.h"
3 #include "cache.h"
4 #include "commit.h"
5 #include "tree.h"
6 #include "tag.h"
7 #include "blob.h"
8 #include "refs.h"
10 const char *write_ref = NULL;
11 const char *write_ref_log_details = NULL;
13 const unsigned char *current_ref = NULL;
15 int get_tree = 0;
16 int get_history = 0;
17 int get_all = 0;
18 int get_verbosely = 0;
19 int get_recover = 0;
20 static unsigned char current_commit_sha1[20];
22 void pull_say(const char *fmt, const char *hex)
24 if (get_verbosely)
25 fprintf(stderr, fmt, hex);
28 static void report_missing(const char *what, const unsigned char *missing)
30 char missing_hex[41];
32 strcpy(missing_hex, sha1_to_hex(missing));;
33 fprintf(stderr,
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;
44 if (parse_tree(tree))
45 return -1;
47 entry = tree->entries;
48 tree->entries = NULL;
49 while (entry) {
50 struct tree_entry_list *next = entry->next;
51 if (process(entry->item.any))
52 return -1;
53 free(entry->name);
54 free(entry);
55 entry = next;
57 return 0;
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))
69 return -1;
71 while (complete && complete->item->date >= commit->date) {
72 pop_most_recent_commit(&complete, COMPLETE);
75 if (commit->object.flags & COMPLETE)
76 return 0;
78 memcpy(current_commit_sha1, commit->object.sha1, 20);
80 pull_say("walk %s\n", sha1_to_hex(commit->object.sha1));
82 if (get_tree) {
83 if (process(&commit->tree->object))
84 return -1;
85 if (!get_all)
86 get_tree = 0;
88 if (get_history) {
89 struct commit_list *parents = commit->parents;
90 for (; parents; parents = parents->next) {
91 if (process(&parents->item->object))
92 return -1;
95 return 0;
98 static int process_tag(struct tag *tag)
100 if (parse_tag(tag))
101 return -1;
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))
112 return -1;
113 return 0;
115 if (obj->type == tree_type) {
116 if (process_tree((struct tree *)obj))
117 return -1;
118 return 0;
120 if (obj->type == blob_type) {
121 return 0;
123 if (obj->type == tag_type) {
124 if (process_tag((struct tag *)obj))
125 return -1;
126 return 0;
128 return error("Unable to determine requirements "
129 "of type %s for %s",
130 obj->type, sha1_to_hex(obj->sha1));
133 static int process(struct object *obj)
135 if (obj->flags & SEEN)
136 return 0;
137 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;
142 } else {
143 if (obj->flags & COMPLETE)
144 return 0;
145 prefetch(obj->sha1);
148 object_list_insert(obj, process_queue_end);
149 process_queue_end = &(*process_queue_end)->next;
150 return 0;
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;
161 free(elem);
162 if (!process_queue)
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
171 ? obj->type
172 : "object", obj->sha1);
173 return -1;
176 if (!obj->type)
177 parse_object(obj->sha1);
178 if (process_object(obj))
179 return -1;
181 return 0;
184 static int interpret_target(char *target, unsigned char *sha1)
186 if (!get_sha1_hex(target, sha1))
187 return 0;
188 if (!check_ref_format(target)) {
189 if (!fetch_ref(target, sha1)) {
190 return 0;
193 return -1;
196 static int mark_complete(const char *path, const unsigned char *sha1)
198 struct commit *commit = lookup_commit_reference_gently(sha1, 1);
199 if (commit) {
200 commit->object.flags |= COMPLETE;
201 insert_by_date(commit, &complete);
203 return 0;
206 int pull(char *target)
208 struct ref_lock *lock;
209 unsigned char sha1[20];
210 char *msg;
211 int ret;
213 save_commit_buffer = 0;
214 track_object_refs = 0;
215 if (write_ref) {
216 lock = lock_ref_sha1(write_ref, current_ref, 1);
217 if (!lock) {
218 error("Can't lock ref %s", write_ref);
219 return -1;
223 if (!get_recover) {
224 for_each_ref(mark_complete);
227 if (interpret_target(target, sha1)) {
228 error("Could not interpret %s as something to pull", target);
229 unlock_ref(lock);
230 return -1;
232 if (process(lookup_unknown_object(sha1))) {
233 unlock_ref(lock);
234 return -1;
236 if (loop()) {
237 unlock_ref(lock);
238 return -1;
241 if (write_ref) {
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);
245 } else
246 msg = NULL;
247 ret = write_ref_sha1(lock, sha1, msg ? msg : "fetch (unknown)");
248 if (msg)
249 free(msg);
250 return ret;
252 return 0;