blob: f3ca6aafb799eadc6255d61711d0aba8cb516463 [file] [log] [blame]
Junio C Hamanoc64ed702006-09-04 21:50:12 -07001#include "cache.h"
2#include "tag.h"
3#include "commit.h"
4#include "tree.h"
5#include "blob.h"
6#include "diff.h"
7#include "tree-walk.h"
8#include "revision.h"
9#include "list-objects.h"
10
11static void process_blob(struct rev_info *revs,
12 struct blob *blob,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -070013 show_object_fn show,
Jeff Kingbd645162016-02-11 17:26:44 -050014 struct strbuf *path,
Junio C Hamano49473672011-09-01 15:43:33 -070015 const char *name,
16 void *cb_data)
Junio C Hamanoc64ed702006-09-04 21:50:12 -070017{
18 struct object *obj = &blob->object;
Jeff Kingde1e67d2016-02-11 17:28:36 -050019 size_t pathlen;
Junio C Hamanoc64ed702006-09-04 21:50:12 -070020
21 if (!revs->blob_objects)
22 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +010023 if (!obj)
24 die("bad blob object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -070025 if (obj->flags & (UNINTERESTING | SEEN))
26 return;
27 obj->flags |= SEEN;
Jeff Kingde1e67d2016-02-11 17:28:36 -050028
29 pathlen = path->len;
30 strbuf_addstr(path, name);
31 show(obj, path->buf, cb_data);
32 strbuf_setlen(path, pathlen);
Junio C Hamanoc64ed702006-09-04 21:50:12 -070033}
34
Linus Torvalds6e2f4412007-04-13 09:25:01 -070035/*
36 * Processing a gitlink entry currently does nothing, since
37 * we do not recurse into the subproject.
38 *
39 * We *could* eventually add a flag that actually does that,
40 * which would involve:
41 * - is the subproject actually checked out?
42 * - if so, see if the subproject has already been added
43 * to the alternates list, and add it if not.
44 * - process the commit (or tag) the gitlink points to
45 * recursively.
46 *
47 * However, it's unclear whether there is really ever any
48 * reason to see superprojects and subprojects as such a
49 * "unified" object pool (potentially resulting in a totally
50 * humongous pack - avoiding which was the whole point of
51 * having gitlinks in the first place!).
52 *
53 * So for now, there is just a note that we *could* follow
54 * the link, and how to do it. Whether it necessarily makes
55 * any sense what-so-ever to ever do that is another issue.
56 */
57static void process_gitlink(struct rev_info *revs,
58 const unsigned char *sha1,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -070059 show_object_fn show,
Jeff Kingbd645162016-02-11 17:26:44 -050060 struct strbuf *path,
Junio C Hamano49473672011-09-01 15:43:33 -070061 const char *name,
62 void *cb_data)
Linus Torvalds6e2f4412007-04-13 09:25:01 -070063{
64 /* Nothing to do */
65}
66
Junio C Hamanoc64ed702006-09-04 21:50:12 -070067static void process_tree(struct rev_info *revs,
68 struct tree *tree,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -070069 show_object_fn show,
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070070 struct strbuf *base,
Junio C Hamano49473672011-09-01 15:43:33 -070071 const char *name,
72 void *cb_data)
Junio C Hamanoc64ed702006-09-04 21:50:12 -070073{
74 struct object *obj = &tree->object;
75 struct tree_desc desc;
76 struct name_entry entry;
Nguyễn Thái Ngọc Duyd688cf02011-10-24 17:36:10 +110077 enum interesting match = revs->diffopt.pathspec.nr == 0 ?
78 all_entries_interesting: entry_not_interesting;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070079 int baselen = base->len;
Junio C Hamanoc64ed702006-09-04 21:50:12 -070080
81 if (!revs->tree_objects)
82 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +010083 if (!obj)
84 die("bad tree object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -070085 if (obj->flags & (UNINTERESTING | SEEN))
86 return;
Jeff Kingdaf7d862015-06-01 05:56:37 -040087 if (parse_tree_gently(tree, revs->ignore_missing_links) < 0) {
Vicent Marti2db1a432014-03-28 06:00:43 -040088 if (revs->ignore_missing_links)
89 return;
brian m. carlsonf2fd0762015-11-10 02:22:28 +000090 die("bad tree object %s", oid_to_hex(&obj->oid));
Vicent Marti2db1a432014-03-28 06:00:43 -040091 }
Junio C Hamanoc64ed702006-09-04 21:50:12 -070092
Jeff King13528ab2016-02-11 17:26:18 -050093 obj->flags |= SEEN;
Jeff King13528ab2016-02-11 17:26:18 -050094 strbuf_addstr(base, name);
Jeff Kingde1e67d2016-02-11 17:28:36 -050095 show(obj, base->buf, cb_data);
Jeff King13528ab2016-02-11 17:26:18 -050096 if (base->len)
97 strbuf_addch(base, '/');
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070098
Linus Torvalds6fda5e52007-03-21 10:08:25 -070099 init_tree_desc(&desc, tree->buffer, tree->size);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700100
101 while (tree_entry(&desc, &entry)) {
Nguyễn Thái Ngọc Duyd688cf02011-10-24 17:36:10 +1100102 if (match != all_entries_interesting) {
Nguyễn Thái Ngọc Duy97d0b742011-03-25 16:34:20 +0700103 match = tree_entry_interesting(&entry, base, 0,
104 &revs->diffopt.pathspec);
Nguyễn Thái Ngọc Duyd688cf02011-10-24 17:36:10 +1100105 if (match == all_entries_not_interesting)
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700106 break;
Nguyễn Thái Ngọc Duyd688cf02011-10-24 17:36:10 +1100107 if (match == entry_not_interesting)
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700108 continue;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700109 }
110
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700111 if (S_ISDIR(entry.mode))
112 process_tree(revs,
brian m. carlson7d924c92016-04-17 23:10:39 +0000113 lookup_tree(entry.oid->hash),
Jeff King13528ab2016-02-11 17:26:18 -0500114 show, base, entry.path,
Junio C Hamano49473672011-09-01 15:43:33 -0700115 cb_data);
Martin Waitz302b9282007-05-21 22:08:28 +0200116 else if (S_ISGITLINK(entry.mode))
brian m. carlson7d924c92016-04-17 23:10:39 +0000117 process_gitlink(revs, entry.oid->hash,
Jeff Kingbd645162016-02-11 17:26:44 -0500118 show, base, entry.path,
Junio C Hamano49473672011-09-01 15:43:33 -0700119 cb_data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700120 else
121 process_blob(revs,
brian m. carlson7d924c92016-04-17 23:10:39 +0000122 lookup_blob(entry.oid->hash),
Jeff Kingbd645162016-02-11 17:26:44 -0500123 show, base, entry.path,
Junio C Hamano49473672011-09-01 15:43:33 -0700124 cb_data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700125 }
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700126 strbuf_setlen(base, baselen);
Jeff King6e454b92013-06-05 18:37:39 -0400127 free_tree_buffer(tree);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700128}
129
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700130static void mark_edge_parents_uninteresting(struct commit *commit,
131 struct rev_info *revs,
132 show_edge_fn show_edge)
133{
134 struct commit_list *parents;
135
136 for (parents = commit->parents; parents; parents = parents->next) {
137 struct commit *parent = parents->item;
138 if (!(parent->object.flags & UNINTERESTING))
139 continue;
140 mark_tree_uninteresting(parent->tree);
141 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
142 parent->object.flags |= SHOWN;
143 show_edge(parent);
144 }
145 }
146}
147
Nguyễn Thái Ngọc Duye76a5fb2013-08-16 16:52:06 +0700148void mark_edges_uninteresting(struct rev_info *revs, show_edge_fn show_edge)
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700149{
Nguyễn Thái Ngọc Duye76a5fb2013-08-16 16:52:06 +0700150 struct commit_list *list;
Nguyễn Thái Ngọc Duyfbd4a702013-08-16 16:52:07 +0700151 int i;
152
Nguyễn Thái Ngọc Duye76a5fb2013-08-16 16:52:06 +0700153 for (list = revs->commits; list; list = list->next) {
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700154 struct commit *commit = list->item;
155
156 if (commit->object.flags & UNINTERESTING) {
157 mark_tree_uninteresting(commit->tree);
brian m. carlson1684c1b2014-12-24 23:05:39 +0000158 if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
Nguyễn Thái Ngọc Duyfbd4a702013-08-16 16:52:07 +0700159 commit->object.flags |= SHOWN;
160 show_edge(commit);
161 }
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700162 continue;
163 }
164 mark_edge_parents_uninteresting(commit, revs, show_edge);
165 }
brian m. carlson1684c1b2014-12-24 23:05:39 +0000166 if (revs->edge_hint_aggressive) {
Jeff King200abe72014-01-20 21:25:40 -0500167 for (i = 0; i < revs->cmdline.nr; i++) {
168 struct object *obj = revs->cmdline.rev[i].item;
169 struct commit *commit = (struct commit *)obj;
170 if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
171 continue;
172 mark_tree_uninteresting(commit->tree);
173 if (!(obj->flags & SHOWN)) {
174 obj->flags |= SHOWN;
175 show_edge(commit);
176 }
Nguyễn Thái Ngọc Duyfbd4a702013-08-16 16:52:07 +0700177 }
178 }
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700179}
180
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700181static void add_pending_tree(struct rev_info *revs, struct tree *tree)
182{
183 add_pending_object(revs, &tree->object, "");
184}
185
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700186void traverse_commit_list(struct rev_info *revs,
Christian Couder11c211f2009-04-06 21:28:36 +0200187 show_commit_fn show_commit,
188 show_object_fn show_object,
189 void *data)
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700190{
191 int i;
192 struct commit *commit;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700193 struct strbuf base;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700194
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700195 strbuf_init(&base, PATH_MAX);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700196 while ((commit = get_revision(revs)) != NULL) {
Junio C Hamano6e7d0ef2011-03-14 12:29:50 -0700197 /*
198 * an uninteresting boundary commit may not have its tree
199 * parsed yet, but we are not going to show them anyway
200 */
201 if (commit->tree)
202 add_pending_tree(revs, commit->tree);
Christian Couder11c211f2009-04-06 21:28:36 +0200203 show_commit(commit, data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700204 }
205 for (i = 0; i < revs->pending.nr; i++) {
206 struct object_array_entry *pending = revs->pending.objects + i;
207 struct object *obj = pending->item;
208 const char *name = pending->name;
Jeff King20739492014-10-15 18:43:19 -0400209 const char *path = pending->path;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700210 if (obj->flags & (UNINTERESTING | SEEN))
211 continue;
212 if (obj->type == OBJ_TAG) {
213 obj->flags |= SEEN;
Jeff Kingde1e67d2016-02-11 17:28:36 -0500214 show_object(obj, name, data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700215 continue;
216 }
Jeff King20739492014-10-15 18:43:19 -0400217 if (!path)
218 path = "";
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700219 if (obj->type == OBJ_TREE) {
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700220 process_tree(revs, (struct tree *)obj, show_object,
Jeff King13528ab2016-02-11 17:26:18 -0500221 &base, path, data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700222 continue;
223 }
224 if (obj->type == OBJ_BLOB) {
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700225 process_blob(revs, (struct blob *)obj, show_object,
Jeff Kingde1e67d2016-02-11 17:28:36 -0500226 &base, path, data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700227 continue;
228 }
229 die("unknown pending object %s (%s)",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000230 oid_to_hex(&obj->oid), name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700231 }
Jeff King46be8232014-10-15 18:34:34 -0400232 object_array_clear(&revs->pending);
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700233 strbuf_release(&base);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700234}