]> git.ipfire.org Git - thirdparty/git.git/blame - reachable.c
add UNLEAK annotation for reducing leak false positives
[thirdparty/git.git] / reachable.c
CommitLineData
94421474
JH
1#include "cache.h"
2#include "refs.h"
3#include "tag.h"
4#include "commit.h"
5#include "blob.h"
6#include "diff.h"
7#include "revision.h"
8#include "reachable.h"
9#include "cache-tree.h"
dc347195 10#include "progress.h"
5f78a431 11#include "list-objects.h"
7709f468 12#include "packfile.h"
94421474 13
0b26abc0
JK
14struct connectivity_progress {
15 struct progress *progress;
16 unsigned long count;
17};
18
19static void update_progress(struct connectivity_progress *cp)
20{
21 cp->count++;
22 if ((cp->count & 1023) == 0)
23 display_progress(cp->progress, cp->count);
24}
25
635170f2
MH
26static int add_one_ref(const char *path, const struct object_id *oid,
27 int flag, void *cb_data)
94421474 28{
94421474 29 struct rev_info *revs = (struct rev_info *)cb_data;
14886b40 30 struct object *object;
94421474 31
14886b40
JS
32 if ((flag & REF_ISSYMREF) && (flag & REF_ISBROKEN)) {
33 warning("symbolic ref is dangling: %s", path);
34 return 0;
35 }
36
c251c83d 37 object = parse_object_or_die(oid, path);
94421474
JH
38 add_pending_object(revs, object, "");
39
40 return 0;
41}
42
5f78a431
JK
43/*
44 * The traversal will have already marked us as SEEN, so we
45 * only need to handle any progress reporting here.
46 */
de1e67d0 47static void mark_object(struct object *obj, const char *name, void *data)
5f78a431
JK
48{
49 update_progress(data);
50}
51
52static void mark_commit(struct commit *c, void *data)
53{
de1e67d0 54 mark_object(&c->object, NULL, data);
5f78a431
JK
55}
56
d3038d22
JK
57struct recent_data {
58 struct rev_info *revs;
dddbad72 59 timestamp_t timestamp;
d3038d22
JK
60};
61
76c1d9a0 62static void add_recent_object(const struct object_id *oid,
dddbad72 63 timestamp_t mtime,
d3038d22
JK
64 struct recent_data *data)
65{
66 struct object *obj;
67 enum object_type type;
68
69 if (mtime <= data->timestamp)
70 return;
71
72 /*
73 * We do not want to call parse_object here, because
74 * inflating blobs and trees could be very expensive.
75 * However, we do need to know the correct type for
76 * later processing, and the revision machinery expects
77 * commits and tags to have been parsed.
78 */
76c1d9a0 79 type = sha1_object_info(oid->hash, NULL);
d3038d22 80 if (type < 0)
76c1d9a0 81 die("unable to get object info for %s", oid_to_hex(oid));
d3038d22
JK
82
83 switch (type) {
84 case OBJ_TAG:
85 case OBJ_COMMIT:
c251c83d 86 obj = parse_object_or_die(oid, NULL);
d3038d22
JK
87 break;
88 case OBJ_TREE:
740ee055 89 obj = (struct object *)lookup_tree(oid);
d3038d22
JK
90 break;
91 case OBJ_BLOB:
3aca1fc6 92 obj = (struct object *)lookup_blob(oid);
d3038d22
JK
93 break;
94 default:
95 die("unknown object type for %s: %s",
76c1d9a0 96 oid_to_hex(oid), typename(type));
d3038d22
JK
97 }
98
99 if (!obj)
76c1d9a0 100 die("unable to lookup %s", oid_to_hex(oid));
d3038d22
JK
101
102 add_pending_object(data->revs, obj, "");
103}
104
76c1d9a0 105static int add_recent_loose(const struct object_id *oid,
d3038d22
JK
106 const char *path, void *data)
107{
108 struct stat st;
76c1d9a0 109 struct object *obj = lookup_object(oid->hash);
d3038d22
JK
110
111 if (obj && obj->flags & SEEN)
112 return 0;
113
114 if (stat(path, &st) < 0) {
115 /*
116 * It's OK if an object went away during our iteration; this
117 * could be due to a simultaneous repack. But anything else
118 * we should abort, since we might then fail to mark objects
119 * which should not be pruned.
120 */
121 if (errno == ENOENT)
122 return 0;
76c1d9a0 123 return error_errno("unable to stat %s", oid_to_hex(oid));
d3038d22
JK
124 }
125
76c1d9a0 126 add_recent_object(oid, st.st_mtime, data);
d3038d22
JK
127 return 0;
128}
129
76c1d9a0 130static int add_recent_packed(const struct object_id *oid,
d3038d22
JK
131 struct packed_git *p, uint32_t pos,
132 void *data)
133{
76c1d9a0 134 struct object *obj = lookup_object(oid->hash);
d3038d22
JK
135
136 if (obj && obj->flags & SEEN)
137 return 0;
76c1d9a0 138 add_recent_object(oid, p->mtime, data);
d3038d22
JK
139 return 0;
140}
141
abcb8655 142int add_unseen_recent_objects_to_traversal(struct rev_info *revs,
dddbad72 143 timestamp_t timestamp)
d3038d22
JK
144{
145 struct recent_data data;
146 int r;
147
148 data.revs = revs;
149 data.timestamp = timestamp;
150
1385bb7b
JK
151 r = for_each_loose_object(add_recent_loose, &data,
152 FOR_EACH_OBJECT_LOCAL_ONLY);
d3038d22
JK
153 if (r)
154 return r;
1385bb7b
JK
155 return for_each_packed_object(add_recent_packed, &data,
156 FOR_EACH_OBJECT_LOCAL_ONLY);
d3038d22
JK
157}
158
dc347195 159void mark_reachable_objects(struct rev_info *revs, int mark_reflog,
dddbad72 160 timestamp_t mark_recent, struct progress *progress)
94421474 161{
0b26abc0
JK
162 struct connectivity_progress cp;
163
94421474
JH
164 /*
165 * Set up revision parsing, and mark us as being interested
166 * in all object types, not just commits.
167 */
168 revs->tag_objects = 1;
169 revs->blob_objects = 1;
170 revs->tree_objects = 1;
171
172 /* Add all refs from the index file */
1be111d8 173 add_index_objects_to_pending(revs, 0);
94421474
JH
174
175 /* Add all external refs */
635170f2 176 for_each_ref(add_one_ref, revs);
94421474 177
c40fdd01 178 /* detached HEAD is not included in the list above */
635170f2 179 head_ref(add_one_ref, revs);
c40fdd01 180
eb8381c8 181 /* Add all reflog info */
94421474 182 if (mark_reflog)
718ccc97 183 add_reflogs_to_pending(revs, 0);
94421474 184
0b26abc0
JK
185 cp.progress = progress;
186 cp.count = 0;
187
94421474
JH
188 /*
189 * Set up the revision walk - this will move all commits
190 * from the pending list to the commit walking list.
191 */
3d51e1b5
MK
192 if (prepare_revision_walk(revs))
193 die("revision walk setup failed");
5f78a431 194 traverse_commit_list(revs, mark_commit, mark_object, &cp);
d3038d22
JK
195
196 if (mark_recent) {
197 revs->ignore_missing_links = 1;
198 if (add_unseen_recent_objects_to_traversal(revs, mark_recent))
199 die("unable to mark recent objects");
200 if (prepare_revision_walk(revs))
201 die("revision walk setup failed");
202 traverse_commit_list(revs, mark_commit, mark_object, &cp);
203 }
204
0b26abc0 205 display_progress(cp.progress, cp.count);
94421474 206}