Shallow clone: do not ignore shallowness when following tags
[alt-git.git] / shallow.c
blob2db1dc428f80bb4e28ca5a059720433d12131d4a
1 #include "cache.h"
2 #include "commit.h"
3 #include "tag.h"
5 static int is_shallow = -1;
7 int register_shallow(const unsigned char *sha1)
9 struct commit_graft *graft =
10 xmalloc(sizeof(struct commit_graft));
11 struct commit *commit = lookup_commit(sha1);
13 hashcpy(graft->sha1, sha1);
14 graft->nr_parent = -1;
15 if (commit && commit->object.parsed)
16 commit->parents = NULL;
17 return register_commit_graft(graft, 0);
20 int is_repository_shallow()
22 FILE *fp;
23 char buf[1024];
25 if (is_shallow >= 0)
26 return is_shallow;
28 fp = fopen(git_path("shallow"), "r");
29 if (!fp) {
30 is_shallow = 0;
31 return is_shallow;
33 is_shallow = 1;
35 while (fgets(buf, sizeof(buf), fp)) {
36 unsigned char sha1[20];
37 if (get_sha1_hex(buf, sha1))
38 die("bad shallow line: %s", buf);
39 register_shallow(sha1);
41 fclose(fp);
42 return is_shallow;
45 struct commit_list *get_shallow_commits(struct object_array *heads, int depth,
46 int shallow_flag, int not_shallow_flag)
48 int i = 0, cur_depth = 0;
49 struct commit_list *result = NULL;
50 struct object_array stack = {0, 0, NULL};
51 struct commit *commit = NULL;
53 while (commit || i < heads->nr || stack.nr) {
54 struct commit_list *p;
55 if (!commit) {
56 if (i < heads->nr) {
57 commit = (struct commit *)
58 deref_tag(heads->objects[i++].item, NULL, 0);
59 if (commit->object.type != OBJ_COMMIT) {
60 commit = NULL;
61 continue;
63 commit->util = xcalloc(1, sizeof(int));
64 cur_depth = 0;
65 } else {
66 commit = (struct commit *)
67 stack.objects[--stack.nr].item;
68 cur_depth = *(int *)commit->util;
71 parse_commit(commit);
72 commit->object.flags |= not_shallow_flag;
73 cur_depth++;
74 for (p = commit->parents, commit = NULL; p; p = p->next) {
75 if (!p->item->util) {
76 int *pointer = xmalloc(sizeof(int));
77 p->item->util = pointer;
78 *pointer = cur_depth;
79 } else {
80 int *pointer = p->item->util;
81 if (cur_depth >= *pointer)
82 continue;
83 *pointer = cur_depth;
85 if (cur_depth < depth) {
86 if (p->next)
87 add_object_array(&p->item->object,
88 NULL, &stack);
89 else {
90 commit = p->item;
91 cur_depth = *(int *)commit->util;
93 } else {
94 commit_list_insert(p->item, &result);
95 p->item->object.flags |= shallow_flag;
100 return result;