blob: 838b6a732e4758265432cbc9c8e8fc81568a2b50 [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,
Junio C Hamanoc64ed702006-09-04 21:50:12 -070014 struct name_path *path,
15 const char *name)
16{
17 struct object *obj = &blob->object;
18
19 if (!revs->blob_objects)
20 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +010021 if (!obj)
22 die("bad blob object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -070023 if (obj->flags & (UNINTERESTING | SEEN))
24 return;
25 obj->flags |= SEEN;
Linus Torvaldscf2ab912009-04-10 18:15:26 -070026 show(obj, path, name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -070027}
28
Linus Torvalds6e2f4412007-04-13 09:25:01 -070029/*
30 * Processing a gitlink entry currently does nothing, since
31 * we do not recurse into the subproject.
32 *
33 * We *could* eventually add a flag that actually does that,
34 * which would involve:
35 * - is the subproject actually checked out?
36 * - if so, see if the subproject has already been added
37 * to the alternates list, and add it if not.
38 * - process the commit (or tag) the gitlink points to
39 * recursively.
40 *
41 * However, it's unclear whether there is really ever any
42 * reason to see superprojects and subprojects as such a
43 * "unified" object pool (potentially resulting in a totally
44 * humongous pack - avoiding which was the whole point of
45 * having gitlinks in the first place!).
46 *
47 * So for now, there is just a note that we *could* follow
48 * the link, and how to do it. Whether it necessarily makes
49 * any sense what-so-ever to ever do that is another issue.
50 */
51static void process_gitlink(struct rev_info *revs,
52 const unsigned char *sha1,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -070053 show_object_fn show,
Linus Torvalds6e2f4412007-04-13 09:25:01 -070054 struct name_path *path,
55 const char *name)
56{
57 /* Nothing to do */
58}
59
Junio C Hamanoc64ed702006-09-04 21:50:12 -070060static void process_tree(struct rev_info *revs,
61 struct tree *tree,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -070062 show_object_fn show,
Junio C Hamanoc64ed702006-09-04 21:50:12 -070063 struct name_path *path,
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070064 struct strbuf *base,
Junio C Hamanoc64ed702006-09-04 21:50:12 -070065 const char *name)
66{
67 struct object *obj = &tree->object;
68 struct tree_desc desc;
69 struct name_entry entry;
70 struct name_path me;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070071 int all_interesting = (revs->diffopt.pathspec.nr == 0);
72 int baselen = base->len;
Junio C Hamanoc64ed702006-09-04 21:50:12 -070073
74 if (!revs->tree_objects)
75 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +010076 if (!obj)
77 die("bad tree object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -070078 if (obj->flags & (UNINTERESTING | SEEN))
79 return;
80 if (parse_tree(tree) < 0)
81 die("bad tree object %s", sha1_to_hex(obj->sha1));
82 obj->flags |= SEEN;
Linus Torvaldscf2ab912009-04-10 18:15:26 -070083 show(obj, path, name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -070084 me.up = path;
85 me.elem = name;
86 me.elem_len = strlen(name);
87
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070088 if (!all_interesting) {
89 strbuf_addstr(base, name);
90 if (base->len)
91 strbuf_addch(base, '/');
92 }
93
Linus Torvalds6fda5e52007-03-21 10:08:25 -070094 init_tree_desc(&desc, tree->buffer, tree->size);
Junio C Hamanoc64ed702006-09-04 21:50:12 -070095
96 while (tree_entry(&desc, &entry)) {
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070097 if (!all_interesting) {
98 int showit = tree_entry_interesting(&entry,
99 base, 0,
100 &revs->diffopt.pathspec);
101
102 if (showit < 0)
103 break;
104 else if (!showit)
105 continue;
106 else if (showit == 2)
107 all_interesting = 1;
108 }
109
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700110 if (S_ISDIR(entry.mode))
111 process_tree(revs,
112 lookup_tree(entry.sha1),
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700113 show, &me, base, entry.path);
Martin Waitz302b9282007-05-21 22:08:28 +0200114 else if (S_ISGITLINK(entry.mode))
Linus Torvalds6e2f4412007-04-13 09:25:01 -0700115 process_gitlink(revs, entry.sha1,
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700116 show, &me, entry.path);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700117 else
118 process_blob(revs,
119 lookup_blob(entry.sha1),
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700120 show, &me, entry.path);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700121 }
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700122 strbuf_setlen(base, baselen);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700123 free(tree->buffer);
124 tree->buffer = NULL;
125}
126
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700127static void mark_edge_parents_uninteresting(struct commit *commit,
128 struct rev_info *revs,
129 show_edge_fn show_edge)
130{
131 struct commit_list *parents;
132
133 for (parents = commit->parents; parents; parents = parents->next) {
134 struct commit *parent = parents->item;
135 if (!(parent->object.flags & UNINTERESTING))
136 continue;
137 mark_tree_uninteresting(parent->tree);
138 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
139 parent->object.flags |= SHOWN;
140 show_edge(parent);
141 }
142 }
143}
144
145void mark_edges_uninteresting(struct commit_list *list,
146 struct rev_info *revs,
147 show_edge_fn show_edge)
148{
149 for ( ; list; list = list->next) {
150 struct commit *commit = list->item;
151
152 if (commit->object.flags & UNINTERESTING) {
153 mark_tree_uninteresting(commit->tree);
154 continue;
155 }
156 mark_edge_parents_uninteresting(commit, revs, show_edge);
157 }
158}
159
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700160static void add_pending_tree(struct rev_info *revs, struct tree *tree)
161{
162 add_pending_object(revs, &tree->object, "");
163}
164
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700165void traverse_commit_list(struct rev_info *revs,
Christian Couder11c211f2009-04-06 21:28:36 +0200166 show_commit_fn show_commit,
167 show_object_fn show_object,
168 void *data)
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700169{
170 int i;
171 struct commit *commit;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700172 struct strbuf base;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700173
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700174 strbuf_init(&base, PATH_MAX);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700175 while ((commit = get_revision(revs)) != NULL) {
Junio C Hamano6e7d0ef2011-03-14 12:29:50 -0700176 /*
177 * an uninteresting boundary commit may not have its tree
178 * parsed yet, but we are not going to show them anyway
179 */
180 if (commit->tree)
181 add_pending_tree(revs, commit->tree);
Christian Couder11c211f2009-04-06 21:28:36 +0200182 show_commit(commit, data);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700183 }
184 for (i = 0; i < revs->pending.nr; i++) {
185 struct object_array_entry *pending = revs->pending.objects + i;
186 struct object *obj = pending->item;
187 const char *name = pending->name;
188 if (obj->flags & (UNINTERESTING | SEEN))
189 continue;
190 if (obj->type == OBJ_TAG) {
191 obj->flags |= SEEN;
Linus Torvaldscf2ab912009-04-10 18:15:26 -0700192 show_object(obj, NULL, name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700193 continue;
194 }
195 if (obj->type == OBJ_TREE) {
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700196 process_tree(revs, (struct tree *)obj, show_object,
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700197 NULL, &base, name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700198 continue;
199 }
200 if (obj->type == OBJ_BLOB) {
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700201 process_blob(revs, (struct blob *)obj, show_object,
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700202 NULL, name);
203 continue;
204 }
205 die("unknown pending object %s (%s)",
206 sha1_to_hex(obj->sha1), name);
207 }
Shawn O. Pearce295dd2a2007-11-09 06:06:10 -0500208 if (revs->pending.nr) {
209 free(revs->pending.objects);
210 revs->pending.nr = 0;
211 revs->pending.alloc = 0;
212 revs->pending.objects = NULL;
213 }
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700214 strbuf_release(&base);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700215}