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
= create_tree_entry_list(tree
);
46 struct tree_entry_list
*next
= entry
->next
;
48 if (entry
->directory
) {
49 struct tree
*tree
= lookup_tree(entry
->sha1
);
52 struct blob
*blob
= lookup_blob(entry
->sha1
);
53 process(&blob
->object
);
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 commit
*commit
)
71 if (parse_commit(commit
))
74 while (complete
&& complete
->item
->date
>= commit
->date
) {
75 pop_most_recent_commit(&complete
, COMPLETE
);
78 if (commit
->object
.flags
& COMPLETE
)
81 memcpy(current_commit_sha1
, commit
->object
.sha1
, 20);
83 pull_say("walk %s\n", sha1_to_hex(commit
->object
.sha1
));
86 if (process(&commit
->tree
->object
))
92 struct commit_list
*parents
= commit
->parents
;
93 for (; parents
; parents
= parents
->next
) {
94 if (process(&parents
->item
->object
))
101 static int process_tag(struct tag
*tag
)
105 return process(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 object
*obj
)
113 if (obj
->type
== commit_type
) {
114 if (process_commit((struct commit
*)obj
))
118 if (obj
->type
== tree_type
) {
119 if (process_tree((struct tree
*)obj
))
123 if (obj
->type
== blob_type
) {
126 if (obj
->type
== tag_type
) {
127 if (process_tag((struct tag
*)obj
))
131 return error("Unable to determine requirements "
133 obj
->type
, sha1_to_hex(obj
->sha1
));
136 static int process(struct object
*obj
)
138 if (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 if (obj
->flags
& COMPLETE
)
151 object_list_insert(obj
, process_queue_end
);
152 process_queue_end
= &(*process_queue_end
)->next
;
156 static int loop(void)
158 struct object_list
*elem
;
160 while (process_queue
) {
161 struct object
*obj
= process_queue
->item
;
162 elem
= process_queue
;
163 process_queue
= elem
->next
;
166 process_queue_end
= &process_queue
;
168 /* If we are not scanning this object, we placed it in
169 * the queue because we needed to fetch it first.
171 if (! (obj
->flags
& TO_SCAN
)) {
172 if (fetch(obj
->sha1
)) {
173 report_missing(obj
->type
175 : "object", obj
->sha1
);
180 parse_object(obj
->sha1
);
181 if (process_object(obj
))
187 static int interpret_target(char *target
, unsigned char *sha1
)
189 if (!get_sha1_hex(target
, sha1
))
191 if (!check_ref_format(target
)) {
192 if (!fetch_ref(target
, sha1
)) {
199 static int mark_complete(const char *path
, const unsigned char *sha1
)
201 struct commit
*commit
= lookup_commit_reference_gently(sha1
, 1);
203 commit
->object
.flags
|= COMPLETE
;
204 insert_by_date(commit
, &complete
);
209 int pull(char *target
)
211 unsigned char sha1
[20];
213 save_commit_buffer
= 0;
214 track_object_refs
= 0;
217 for_each_ref(mark_complete
);
219 if (interpret_target(target
, sha1
))
220 return error("Could not interpret %s as something to pull",
222 if (process(lookup_unknown_object(sha1
)))
228 write_ref_sha1_unlocked(write_ref
, sha1
);