11 const char *write_ref
= NULL
;
12 const char *write_ref_log_details
= NULL
;
17 int get_verbosely
= 0;
19 static unsigned char current_commit_sha1
[20];
21 void pull_say(const char *fmt
, const char *hex
)
24 fprintf(stderr
, fmt
, hex
);
27 static void report_missing(const char *what
, const unsigned char *missing
)
31 strcpy(missing_hex
, sha1_to_hex(missing
));;
33 "Cannot obtain needed %s %s\nwhile processing commit %s.\n",
34 what
, missing_hex
, sha1_to_hex(current_commit_sha1
));
37 static int process(struct object
*obj
);
39 static int process_tree(struct tree
*tree
)
41 struct tree_desc desc
;
42 struct name_entry entry
;
47 desc
.buf
= tree
->buffer
;
48 desc
.size
= tree
->size
;
49 while (tree_entry(&desc
, &entry
)) {
50 struct object
*obj
= NULL
;
52 if (S_ISDIR(entry
.mode
)) {
53 struct tree
*tree
= lookup_tree(entry
.sha1
);
58 struct blob
*blob
= lookup_blob(entry
.sha1
);
62 if (!obj
|| process(obj
))
71 #define COMPLETE (1U << 0)
72 #define SEEN (1U << 1)
73 #define TO_SCAN (1U << 2)
75 static struct commit_list
*complete
= NULL
;
77 static int process_commit(struct commit
*commit
)
79 if (parse_commit(commit
))
82 while (complete
&& complete
->item
->date
>= commit
->date
) {
83 pop_most_recent_commit(&complete
, COMPLETE
);
86 if (commit
->object
.flags
& COMPLETE
)
89 memcpy(current_commit_sha1
, commit
->object
.sha1
, 20);
91 pull_say("walk %s\n", sha1_to_hex(commit
->object
.sha1
));
94 if (process(&commit
->tree
->object
))
100 struct commit_list
*parents
= commit
->parents
;
101 for (; parents
; parents
= parents
->next
) {
102 if (process(&parents
->item
->object
))
109 static int process_tag(struct tag
*tag
)
113 return process(tag
->tagged
);
116 static struct object_list
*process_queue
= NULL
;
117 static struct object_list
**process_queue_end
= &process_queue
;
119 static int process_object(struct object
*obj
)
121 if (obj
->type
== TYPE_COMMIT
) {
122 if (process_commit((struct commit
*)obj
))
126 if (obj
->type
== TYPE_TREE
) {
127 if (process_tree((struct tree
*)obj
))
131 if (obj
->type
== TYPE_BLOB
) {
134 if (obj
->type
== TYPE_TAG
) {
135 if (process_tag((struct tag
*)obj
))
139 return error("Unable to determine requirements "
141 typename(obj
->type
), sha1_to_hex(obj
->sha1
));
144 static int process(struct object
*obj
)
146 if (obj
->flags
& SEEN
)
150 if (has_sha1_file(obj
->sha1
)) {
151 /* We already have it, so we should scan it now. */
152 obj
->flags
|= TO_SCAN
;
155 if (obj
->flags
& COMPLETE
)
160 object_list_insert(obj
, process_queue_end
);
161 process_queue_end
= &(*process_queue_end
)->next
;
165 static int loop(void)
167 struct object_list
*elem
;
169 while (process_queue
) {
170 struct object
*obj
= process_queue
->item
;
171 elem
= process_queue
;
172 process_queue
= elem
->next
;
175 process_queue_end
= &process_queue
;
177 /* If we are not scanning this object, we placed it in
178 * the queue because we needed to fetch it first.
180 if (! (obj
->flags
& TO_SCAN
)) {
181 if (fetch(obj
->sha1
)) {
182 report_missing(typename(obj
->type
), obj
->sha1
);
187 parse_object(obj
->sha1
);
188 if (process_object(obj
))
194 static int interpret_target(char *target
, unsigned char *sha1
)
196 if (!get_sha1_hex(target
, sha1
))
198 if (!check_ref_format(target
)) {
199 if (!fetch_ref(target
, sha1
)) {
206 static int mark_complete(const char *path
, const unsigned char *sha1
)
208 struct commit
*commit
= lookup_commit_reference_gently(sha1
, 1);
210 commit
->object
.flags
|= COMPLETE
;
211 insert_by_date(commit
, &complete
);
216 int pull(char *target
)
218 struct ref_lock
*lock
= NULL
;
219 unsigned char sha1
[20];
223 save_commit_buffer
= 0;
224 track_object_refs
= 0;
226 lock
= lock_ref_sha1(write_ref
, NULL
, 0);
228 error("Can't lock ref %s", write_ref
);
234 for_each_ref(mark_complete
);
236 if (interpret_target(target
, sha1
)) {
237 error("Could not interpret %s as something to pull", target
);
242 if (process(lookup_unknown_object(sha1
))) {
254 if (write_ref_log_details
) {
255 msg
= xmalloc(strlen(write_ref_log_details
) + 12);
256 sprintf(msg
, "fetch from %s", write_ref_log_details
);
260 ret
= write_ref_sha1(lock
, sha1
, msg
? msg
: "fetch (unknown)");