2006-09-05 06:50:12 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "commit.h"
|
|
|
|
#include "tree.h"
|
|
|
|
#include "blob.h"
|
|
|
|
#include "diff.h"
|
|
|
|
#include "tree-walk.h"
|
|
|
|
#include "revision.h"
|
|
|
|
#include "list-objects.h"
|
2017-11-21 21:58:50 +01:00
|
|
|
#include "list-objects-filter.h"
|
|
|
|
#include "list-objects-filter-options.h"
|
2017-12-08 16:27:15 +01:00
|
|
|
#include "packfile.h"
|
2018-05-16 01:42:15 +02:00
|
|
|
#include "object-store.h"
|
2018-10-18 02:39:15 +02:00
|
|
|
#include "trace.h"
|
2006-09-05 06:50:12 +02:00
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
struct traversal_context {
|
|
|
|
struct rev_info *revs;
|
|
|
|
show_object_fn show_object;
|
|
|
|
show_commit_fn show_commit;
|
|
|
|
void *show_data;
|
2019-06-28 00:54:05 +02:00
|
|
|
struct filter *filter;
|
2018-08-13 20:14:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void process_blob(struct traversal_context *ctx,
|
2006-09-05 06:50:12 +02:00
|
|
|
struct blob *blob,
|
2016-02-11 23:26:44 +01:00
|
|
|
struct strbuf *path,
|
2018-08-13 20:14:28 +02:00
|
|
|
const char *name)
|
2006-09-05 06:50:12 +02:00
|
|
|
{
|
|
|
|
struct object *obj = &blob->object;
|
list-objects: pass full pathname to callbacks
When we find a blob at "a/b/c", we currently pass this to
our show_object_fn callbacks as two components: "a/b/" and
"c". Callbacks which want the full value then call
path_name(), which concatenates the two. But this is an
inefficient interface; the path is a strbuf, and we could
simply append "c" to it temporarily, then roll back the
length, without creating a new copy.
So we could improve this by teaching the callsites of
path_name() this trick (and there are only 3). But we can
also notice that no callback actually cares about the
broken-down representation, and simply pass each callback
the full path "a/b/c" as a string. The callback code becomes
even simpler, then, as we do not have to worry about freeing
an allocated buffer, nor rolling back our modification to
the strbuf.
This is theoretically less efficient, as some callbacks
would not bother to format the final path component. But in
practice this is not measurable. Since we use the same
strbuf over and over, our work to grow it is amortized, and
we really only pay to memcpy a few bytes.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:28:36 +01:00
|
|
|
size_t pathlen;
|
2019-06-28 00:54:05 +02:00
|
|
|
enum list_objects_filter_result r;
|
2006-09-05 06:50:12 +02:00
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
if (!ctx->revs->blob_objects)
|
2006-09-05 06:50:12 +02:00
|
|
|
return;
|
2008-02-18 21:47:56 +01:00
|
|
|
if (!obj)
|
|
|
|
die("bad blob object");
|
2006-09-05 06:50:12 +02:00
|
|
|
if (obj->flags & (UNINTERESTING | SEEN))
|
|
|
|
return;
|
list-objects: pass full pathname to callbacks
When we find a blob at "a/b/c", we currently pass this to
our show_object_fn callbacks as two components: "a/b/" and
"c". Callbacks which want the full value then call
path_name(), which concatenates the two. But this is an
inefficient interface; the path is a strbuf, and we could
simply append "c" to it temporarily, then roll back the
length, without creating a new copy.
So we could improve this by teaching the callsites of
path_name() this trick (and there are only 3). But we can
also notice that no callback actually cares about the
broken-down representation, and simply pass each callback
the full path "a/b/c" as a string. The callback code becomes
even simpler, then, as we do not have to worry about freeing
an allocated buffer, nor rolling back our modification to
the strbuf.
This is theoretically less efficient, as some callbacks
would not bother to format the final path component. But in
practice this is not measurable. Since we use the same
strbuf over and over, our work to grow it is amortized, and
we really only pay to memcpy a few bytes.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:28:36 +01:00
|
|
|
|
2017-12-08 16:27:15 +01:00
|
|
|
/*
|
|
|
|
* Pre-filter known-missing objects when explicitly requested.
|
|
|
|
* Otherwise, a missing object error message may be reported
|
|
|
|
* later (depending on other filtering criteria).
|
|
|
|
*
|
|
|
|
* Note that this "--exclude-promisor-objects" pre-filtering
|
|
|
|
* may cause the actual filter to report an incomplete list
|
|
|
|
* of missing objects.
|
|
|
|
*/
|
2018-08-13 20:14:28 +02:00
|
|
|
if (ctx->revs->exclude_promisor_objects &&
|
2017-12-08 16:27:15 +01:00
|
|
|
!has_object_file(&obj->oid) &&
|
|
|
|
is_promisor_object(&obj->oid))
|
|
|
|
return;
|
|
|
|
|
list-objects: pass full pathname to callbacks
When we find a blob at "a/b/c", we currently pass this to
our show_object_fn callbacks as two components: "a/b/" and
"c". Callbacks which want the full value then call
path_name(), which concatenates the two. But this is an
inefficient interface; the path is a strbuf, and we could
simply append "c" to it temporarily, then roll back the
length, without creating a new copy.
So we could improve this by teaching the callsites of
path_name() this trick (and there are only 3). But we can
also notice that no callback actually cares about the
broken-down representation, and simply pass each callback
the full path "a/b/c" as a string. The callback code becomes
even simpler, then, as we do not have to worry about freeing
an allocated buffer, nor rolling back our modification to
the strbuf.
This is theoretically less efficient, as some callbacks
would not bother to format the final path component. But in
practice this is not measurable. Since we use the same
strbuf over and over, our work to grow it is amortized, and
we really only pay to memcpy a few bytes.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:28:36 +01:00
|
|
|
pathlen = path->len;
|
|
|
|
strbuf_addstr(path, name);
|
2019-06-28 00:54:05 +02:00
|
|
|
r = list_objects_filter__filter_object(ctx->revs->repo,
|
|
|
|
LOFS_BLOB, obj,
|
|
|
|
path->buf, &path->buf[pathlen],
|
|
|
|
ctx->filter);
|
2017-11-21 21:58:50 +01:00
|
|
|
if (r & LOFR_MARK_SEEN)
|
|
|
|
obj->flags |= SEEN;
|
|
|
|
if (r & LOFR_DO_SHOW)
|
2018-08-13 20:14:28 +02:00
|
|
|
ctx->show_object(obj, path->buf, ctx->show_data);
|
list-objects: pass full pathname to callbacks
When we find a blob at "a/b/c", we currently pass this to
our show_object_fn callbacks as two components: "a/b/" and
"c". Callbacks which want the full value then call
path_name(), which concatenates the two. But this is an
inefficient interface; the path is a strbuf, and we could
simply append "c" to it temporarily, then roll back the
length, without creating a new copy.
So we could improve this by teaching the callsites of
path_name() this trick (and there are only 3). But we can
also notice that no callback actually cares about the
broken-down representation, and simply pass each callback
the full path "a/b/c" as a string. The callback code becomes
even simpler, then, as we do not have to worry about freeing
an allocated buffer, nor rolling back our modification to
the strbuf.
This is theoretically less efficient, as some callbacks
would not bother to format the final path component. But in
practice this is not measurable. Since we use the same
strbuf over and over, our work to grow it is amortized, and
we really only pay to memcpy a few bytes.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:28:36 +01:00
|
|
|
strbuf_setlen(path, pathlen);
|
2006-09-05 06:50:12 +02:00
|
|
|
}
|
|
|
|
|
2007-04-13 18:25:01 +02:00
|
|
|
/*
|
|
|
|
* Processing a gitlink entry currently does nothing, since
|
|
|
|
* we do not recurse into the subproject.
|
|
|
|
*
|
|
|
|
* We *could* eventually add a flag that actually does that,
|
|
|
|
* which would involve:
|
|
|
|
* - is the subproject actually checked out?
|
|
|
|
* - if so, see if the subproject has already been added
|
|
|
|
* to the alternates list, and add it if not.
|
|
|
|
* - process the commit (or tag) the gitlink points to
|
|
|
|
* recursively.
|
|
|
|
*
|
|
|
|
* However, it's unclear whether there is really ever any
|
|
|
|
* reason to see superprojects and subprojects as such a
|
|
|
|
* "unified" object pool (potentially resulting in a totally
|
|
|
|
* humongous pack - avoiding which was the whole point of
|
|
|
|
* having gitlinks in the first place!).
|
|
|
|
*
|
|
|
|
* So for now, there is just a note that we *could* follow
|
|
|
|
* the link, and how to do it. Whether it necessarily makes
|
|
|
|
* any sense what-so-ever to ever do that is another issue.
|
|
|
|
*/
|
2018-08-13 20:14:28 +02:00
|
|
|
static void process_gitlink(struct traversal_context *ctx,
|
2007-04-13 18:25:01 +02:00
|
|
|
const unsigned char *sha1,
|
2016-02-11 23:26:44 +01:00
|
|
|
struct strbuf *path,
|
2018-08-13 20:14:28 +02:00
|
|
|
const char *name)
|
2007-04-13 18:25:01 +02:00
|
|
|
{
|
|
|
|
/* Nothing to do */
|
|
|
|
}
|
|
|
|
|
2018-08-13 20:14:29 +02:00
|
|
|
static void process_tree(struct traversal_context *ctx,
|
2006-09-05 06:50:12 +02:00
|
|
|
struct tree *tree,
|
2010-12-17 14:26:47 +01:00
|
|
|
struct strbuf *base,
|
2018-08-13 20:14:29 +02:00
|
|
|
const char *name);
|
|
|
|
|
|
|
|
static void process_tree_contents(struct traversal_context *ctx,
|
|
|
|
struct tree *tree,
|
|
|
|
struct strbuf *base)
|
2006-09-05 06:50:12 +02:00
|
|
|
{
|
|
|
|
struct tree_desc desc;
|
|
|
|
struct name_entry entry;
|
2018-08-13 20:14:29 +02:00
|
|
|
enum interesting match = ctx->revs->diffopt.pathspec.nr == 0 ?
|
|
|
|
all_entries_interesting : entry_not_interesting;
|
|
|
|
|
|
|
|
init_tree_desc(&desc, tree->buffer, tree->size);
|
|
|
|
|
|
|
|
while (tree_entry(&desc, &entry)) {
|
|
|
|
if (match != all_entries_interesting) {
|
2018-11-18 17:47:57 +01:00
|
|
|
match = tree_entry_interesting(ctx->revs->repo->index,
|
|
|
|
&entry, base, 0,
|
2018-08-13 20:14:29 +02:00
|
|
|
&ctx->revs->diffopt.pathspec);
|
|
|
|
if (match == all_entries_not_interesting)
|
|
|
|
break;
|
|
|
|
if (match == entry_not_interesting)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-05 23:31:24 +02:00
|
|
|
if (S_ISDIR(entry.mode)) {
|
2019-01-15 01:39:44 +01:00
|
|
|
struct tree *t = lookup_tree(ctx->revs->repo, &entry.oid);
|
2019-04-10 04:13:19 +02:00
|
|
|
if (!t) {
|
|
|
|
die(_("entry '%s' in tree %s has tree mode, "
|
|
|
|
"but is not a tree"),
|
|
|
|
entry.path, oid_to_hex(&tree->object.oid));
|
|
|
|
}
|
2018-10-05 23:31:24 +02:00
|
|
|
t->object.flags |= NOT_USER_GIVEN;
|
|
|
|
process_tree(ctx, t, base, entry.path);
|
|
|
|
}
|
2018-08-13 20:14:29 +02:00
|
|
|
else if (S_ISGITLINK(entry.mode))
|
2019-01-15 01:39:44 +01:00
|
|
|
process_gitlink(ctx, entry.oid.hash,
|
2018-08-13 20:14:29 +02:00
|
|
|
base, entry.path);
|
2018-10-05 23:31:24 +02:00
|
|
|
else {
|
2019-01-15 01:39:44 +01:00
|
|
|
struct blob *b = lookup_blob(ctx->revs->repo, &entry.oid);
|
2019-04-10 04:13:17 +02:00
|
|
|
if (!b) {
|
|
|
|
die(_("entry '%s' in tree %s has blob mode, "
|
|
|
|
"but is not a blob"),
|
|
|
|
entry.path, oid_to_hex(&tree->object.oid));
|
|
|
|
}
|
2018-10-05 23:31:24 +02:00
|
|
|
b->object.flags |= NOT_USER_GIVEN;
|
|
|
|
process_blob(ctx, b, base, entry.path);
|
|
|
|
}
|
2018-08-13 20:14:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
static void process_tree(struct traversal_context *ctx,
|
2006-09-05 06:50:12 +02:00
|
|
|
struct tree *tree,
|
2010-12-17 14:26:47 +01:00
|
|
|
struct strbuf *base,
|
2018-08-13 20:14:28 +02:00
|
|
|
const char *name)
|
2006-09-05 06:50:12 +02:00
|
|
|
{
|
|
|
|
struct object *obj = &tree->object;
|
2018-08-13 20:14:28 +02:00
|
|
|
struct rev_info *revs = ctx->revs;
|
2010-12-17 14:26:47 +01:00
|
|
|
int baselen = base->len;
|
2019-06-28 00:54:05 +02:00
|
|
|
enum list_objects_filter_result r;
|
2018-10-05 23:31:23 +02:00
|
|
|
int failed_parse;
|
2006-09-05 06:50:12 +02:00
|
|
|
|
|
|
|
if (!revs->tree_objects)
|
|
|
|
return;
|
2008-02-18 21:47:56 +01:00
|
|
|
if (!obj)
|
|
|
|
die("bad tree object");
|
2006-09-05 06:50:12 +02:00
|
|
|
if (obj->flags & (UNINTERESTING | SEEN))
|
|
|
|
return;
|
2018-10-05 23:31:23 +02:00
|
|
|
|
|
|
|
failed_parse = parse_tree_gently(tree, 1);
|
|
|
|
if (failed_parse) {
|
add `ignore_missing_links` mode to revwalk
When pack-objects is computing the reachability bitmap to
serve a fetch request, it can erroneously die() if some of
the UNINTERESTING objects are not present. Upload-pack
throws away HAVE lines from the client for objects we do not
have, but we may have a tip object without all of its
ancestors (e.g., if the tip is no longer reachable and was
new enough to survive a `git prune`, but some of its
reachable objects did get pruned).
In the non-bitmap case, we do a revision walk with the HAVE
objects marked as UNINTERESTING. The revision walker
explicitly ignores errors in accessing UNINTERESTING commits
to handle this case (and we do not bother looking at
UNINTERESTING trees or blobs at all).
When we have bitmaps, however, the process is quite
different. The bitmap index for a pack-objects run is
calculated in two separate steps:
First, we perform an extensive walk from all the HAVEs to
find the full set of objects reachable from them. This walk
is usually optimized away because we are expected to hit an
object with a bitmap during the traversal, which allows us
to terminate early.
Secondly, we perform an extensive walk from all the WANTs,
which usually also terminates early because we hit a commit
with an existing bitmap.
Once we have the resulting bitmaps from the two walks, we
AND-NOT them together to obtain the resulting set of objects
we need to pack.
When we are walking the HAVE objects, the revision walker
does not know that we are walking it only to mark the
results as uninteresting. We strip out the UNINTERESTING flag,
because those objects _are_ interesting to us during the
first walk. We want to keep going to get a complete set of
reachable objects if we can.
We need some way to tell the revision walker that it's OK to
silently truncate the HAVE walk, just like it does for the
UNINTERESTING case. This patch introduces a new
`ignore_missing_links` flag to the `rev_info` struct, which
we set only for the HAVE walk.
It also adds tests to cover UNINTERESTING objects missing
from several positions: a missing blob, a missing tree, and
a missing parent commit. The missing blob already worked (as
we do not care about its contents at all), but the other two
cases caused us to die().
Note that there are a few cases we do not need to test:
1. We do not need to test a missing tree, with the blob
still present. Without the tree that refers to it, we
would not know that the blob is relevant to our walk.
2. We do not need to test a tip commit that is missing.
Upload-pack omits these for us (and in fact, we
complain even in the non-bitmap case if it fails to do
so).
Reported-by: Siddharth Agarwal <sid0@fb.com>
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-03-28 11:00:43 +01:00
|
|
|
if (revs->ignore_missing_links)
|
|
|
|
return;
|
2017-12-08 16:27:15 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Pre-filter known-missing tree objects when explicitly
|
|
|
|
* requested. This may cause the actual filter to report
|
|
|
|
* an incomplete list of missing objects.
|
|
|
|
*/
|
|
|
|
if (revs->exclude_promisor_objects &&
|
|
|
|
is_promisor_object(&obj->oid))
|
|
|
|
return;
|
|
|
|
|
2018-10-05 23:31:23 +02:00
|
|
|
if (!revs->do_not_die_on_missing_tree)
|
|
|
|
die("bad tree object %s", oid_to_hex(&obj->oid));
|
add `ignore_missing_links` mode to revwalk
When pack-objects is computing the reachability bitmap to
serve a fetch request, it can erroneously die() if some of
the UNINTERESTING objects are not present. Upload-pack
throws away HAVE lines from the client for objects we do not
have, but we may have a tip object without all of its
ancestors (e.g., if the tip is no longer reachable and was
new enough to survive a `git prune`, but some of its
reachable objects did get pruned).
In the non-bitmap case, we do a revision walk with the HAVE
objects marked as UNINTERESTING. The revision walker
explicitly ignores errors in accessing UNINTERESTING commits
to handle this case (and we do not bother looking at
UNINTERESTING trees or blobs at all).
When we have bitmaps, however, the process is quite
different. The bitmap index for a pack-objects run is
calculated in two separate steps:
First, we perform an extensive walk from all the HAVEs to
find the full set of objects reachable from them. This walk
is usually optimized away because we are expected to hit an
object with a bitmap during the traversal, which allows us
to terminate early.
Secondly, we perform an extensive walk from all the WANTs,
which usually also terminates early because we hit a commit
with an existing bitmap.
Once we have the resulting bitmaps from the two walks, we
AND-NOT them together to obtain the resulting set of objects
we need to pack.
When we are walking the HAVE objects, the revision walker
does not know that we are walking it only to mark the
results as uninteresting. We strip out the UNINTERESTING flag,
because those objects _are_ interesting to us during the
first walk. We want to keep going to get a complete set of
reachable objects if we can.
We need some way to tell the revision walker that it's OK to
silently truncate the HAVE walk, just like it does for the
UNINTERESTING case. This patch introduces a new
`ignore_missing_links` flag to the `rev_info` struct, which
we set only for the HAVE walk.
It also adds tests to cover UNINTERESTING objects missing
from several positions: a missing blob, a missing tree, and
a missing parent commit. The missing blob already worked (as
we do not care about its contents at all), but the other two
cases caused us to die().
Note that there are a few cases we do not need to test:
1. We do not need to test a missing tree, with the blob
still present. Without the tree that refers to it, we
would not know that the blob is relevant to our walk.
2. We do not need to test a tip commit that is missing.
Upload-pack omits these for us (and in fact, we
complain even in the non-bitmap case if it fails to do
so).
Reported-by: Siddharth Agarwal <sid0@fb.com>
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-03-28 11:00:43 +01:00
|
|
|
}
|
list-objects: convert name_path to a strbuf
The "struct name_path" data is examined in only two places:
we generate it in process_tree(), and we convert it to a
single string in path_name(). Everyone else just passes it
through to those functions.
We can further note that process_tree() already keeps a
single strbuf with the leading tree path, for use with
tree_entry_interesting().
Instead of building a separate name_path linked list, let's
just use the one we already build in "base". This reduces
the amount of code (especially tricky code in path_name()
which did not check for integer overflows caused by deep
or large pathnames).
It is also more efficient in some instances. Any time we
were using tree_entry_interesting, we were building up the
strbuf anyway, so this is an immediate and obvious win
there. In cases where we were not, we trade off storing
"pathname/" in a strbuf on the heap for each level of the
path, instead of two pointers and an int on the stack (with
one pointer into the tree object). On a 64-bit system, the
latter is 20 bytes; so if path components are less than that
on average, this has lower peak memory usage. In practice
it probably doesn't matter either way; we are already
holding in memory all of the tree objects leading up to each
pathname, and for normal-depth pathnames, we are only
talking about hundreds of bytes.
This patch leaves "struct name_path" as a thin wrapper
around the strbuf, to avoid disrupting callbacks. We should
fix them, but leaving it out makes this diff easier to view.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:26:18 +01:00
|
|
|
|
|
|
|
strbuf_addstr(base, name);
|
2019-06-28 00:54:05 +02:00
|
|
|
r = list_objects_filter__filter_object(ctx->revs->repo,
|
|
|
|
LOFS_BEGIN_TREE, obj,
|
|
|
|
base->buf, &base->buf[baselen],
|
|
|
|
ctx->filter);
|
2017-11-21 21:58:50 +01:00
|
|
|
if (r & LOFR_MARK_SEEN)
|
|
|
|
obj->flags |= SEEN;
|
|
|
|
if (r & LOFR_DO_SHOW)
|
2018-08-13 20:14:28 +02:00
|
|
|
ctx->show_object(obj, base->buf, ctx->show_data);
|
list-objects: convert name_path to a strbuf
The "struct name_path" data is examined in only two places:
we generate it in process_tree(), and we convert it to a
single string in path_name(). Everyone else just passes it
through to those functions.
We can further note that process_tree() already keeps a
single strbuf with the leading tree path, for use with
tree_entry_interesting().
Instead of building a separate name_path linked list, let's
just use the one we already build in "base". This reduces
the amount of code (especially tricky code in path_name()
which did not check for integer overflows caused by deep
or large pathnames).
It is also more efficient in some instances. Any time we
were using tree_entry_interesting, we were building up the
strbuf anyway, so this is an immediate and obvious win
there. In cases where we were not, we trade off storing
"pathname/" in a strbuf on the heap for each level of the
path, instead of two pointers and an int on the stack (with
one pointer into the tree object). On a 64-bit system, the
latter is 20 bytes; so if path components are less than that
on average, this has lower peak memory usage. In practice
it probably doesn't matter either way; we are already
holding in memory all of the tree objects leading up to each
pathname, and for normal-depth pathnames, we are only
talking about hundreds of bytes.
This patch leaves "struct name_path" as a thin wrapper
around the strbuf, to avoid disrupting callbacks. We should
fix them, but leaving it out makes this diff easier to view.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-02-11 23:26:18 +01:00
|
|
|
if (base->len)
|
|
|
|
strbuf_addch(base, '/');
|
2010-12-17 14:26:47 +01:00
|
|
|
|
2018-10-18 02:39:15 +02:00
|
|
|
if (r & LOFR_SKIP_TREE)
|
|
|
|
trace_printf("Skipping contents of tree %s...\n", base->buf);
|
|
|
|
else if (!failed_parse)
|
2018-10-05 23:31:23 +02:00
|
|
|
process_tree_contents(ctx, tree, base);
|
2006-09-05 06:50:12 +02:00
|
|
|
|
2019-06-28 00:54:05 +02:00
|
|
|
r = list_objects_filter__filter_object(ctx->revs->repo,
|
|
|
|
LOFS_END_TREE, obj,
|
|
|
|
base->buf, &base->buf[baselen],
|
|
|
|
ctx->filter);
|
|
|
|
if (r & LOFR_MARK_SEEN)
|
|
|
|
obj->flags |= SEEN;
|
|
|
|
if (r & LOFR_DO_SHOW)
|
|
|
|
ctx->show_object(obj, base->buf, ctx->show_data);
|
2017-11-21 21:58:50 +01:00
|
|
|
|
2010-12-17 14:26:47 +01:00
|
|
|
strbuf_setlen(base, baselen);
|
2013-06-06 00:37:39 +02:00
|
|
|
free_tree_buffer(tree);
|
2006-09-05 06:50:12 +02:00
|
|
|
}
|
|
|
|
|
2006-09-06 10:42:23 +02:00
|
|
|
static void mark_edge_parents_uninteresting(struct commit *commit,
|
|
|
|
struct rev_info *revs,
|
|
|
|
show_edge_fn show_edge)
|
|
|
|
{
|
|
|
|
struct commit_list *parents;
|
|
|
|
|
|
|
|
for (parents = commit->parents; parents; parents = parents->next) {
|
|
|
|
struct commit *parent = parents->item;
|
|
|
|
if (!(parent->object.flags & UNINTERESTING))
|
|
|
|
continue;
|
2018-09-21 17:57:39 +02:00
|
|
|
mark_tree_uninteresting(revs->repo, get_commit_tree(parent));
|
2006-09-06 10:42:23 +02:00
|
|
|
if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
|
|
|
|
parent->object.flags |= SHOWN;
|
|
|
|
show_edge(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-16 19:25:58 +01:00
|
|
|
static void add_edge_parents(struct commit *commit,
|
|
|
|
struct rev_info *revs,
|
|
|
|
show_edge_fn show_edge,
|
|
|
|
struct oidset *set)
|
|
|
|
{
|
|
|
|
struct commit_list *parents;
|
|
|
|
|
|
|
|
for (parents = commit->parents; parents; parents = parents->next) {
|
|
|
|
struct commit *parent = parents->item;
|
|
|
|
struct tree *tree = get_commit_tree(parent);
|
|
|
|
|
|
|
|
if (!tree)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
oidset_insert(set, &tree->object.oid);
|
|
|
|
|
|
|
|
if (!(parent->object.flags & UNINTERESTING))
|
|
|
|
continue;
|
|
|
|
tree->object.flags |= UNINTERESTING;
|
|
|
|
|
|
|
|
if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
|
|
|
|
parent->object.flags |= SHOWN;
|
|
|
|
show_edge(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mark_edges_uninteresting(struct rev_info *revs,
|
|
|
|
show_edge_fn show_edge,
|
|
|
|
int sparse)
|
2006-09-06 10:42:23 +02:00
|
|
|
{
|
2013-08-16 11:52:06 +02:00
|
|
|
struct commit_list *list;
|
list-objects: mark more commits as edges in mark_edges_uninteresting
The purpose of edge commits is to let pack-objects know what objects
it can use as base, but does not need to include in the thin pack
because the other side is supposed to already have them. So far we
mark uninteresting parents of interesting commits as edges. But even
an unrelated uninteresting commit (that the other side has) may
become a good base for pack-objects and help produce more efficient
packs.
This is especially true for shallow clone, when the client issues a
fetch with a depth smaller or equal to the number of commits the
server is ahead of the client. For example, in this commit history
the client has up to "A" and the server has up to "B":
-------A---B
have--^ ^
/
want--+
If depth 1 is requested, the commit list to send to the client
includes only B. The way m_e_u is working, it checks if parent
commits of B are uninteresting, if so mark them as edges. Due to
shallow effect, commit B is grafted to have no parents and the
revision walker never sees A as the parent of B. In fact it marks no
edges at all in this simple case and sends everything B has to the
client even if it could have excluded what A and also the client
already have.
In a slightly different case where A is not a direct parent of B
(iow there are commits in between A and B), marking A as an edge can
still save some because B may still have stuff from the far ancestor
A.
There is another case from the earlier patch, when we deepen a ref
from C->E to A->E:
---A---B C---D---E
want--^ ^ ^
shallow-+ /
have-------+
In this case we need to send A and B to the client, and C (i.e. the
current shallow point that the client informs the server) is a very
good base because it's closet to A and B. Normal m_e_u won't recognize
C as an edge because it only looks back to parents (i.e. A<-B) not the
opposite way B->C even if C is already marked as uninteresting commit
by the previous patch.
This patch includes all uninteresting commits from command line as
edges and lets pack-objects decide what's best to do. The upside is we
have better chance of producing better packs in certain cases. The
downside is we may need to process some extra objects on the server
side.
For the shallow case on git.git, when the client is 5 commits behind
and does "fetch --depth=3", the result pack is 99.26 KiB instead of
4.92 MiB.
Reported-and-analyzed-by: Matthijs Kooijman <matthijs@stdin.nl>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-08-16 11:52:07 +02:00
|
|
|
int i;
|
|
|
|
|
2019-01-16 19:25:58 +01:00
|
|
|
if (sparse) {
|
|
|
|
struct oidset set;
|
|
|
|
oidset_init(&set, 16);
|
|
|
|
|
|
|
|
for (list = revs->commits; list; list = list->next) {
|
|
|
|
struct commit *commit = list->item;
|
|
|
|
struct tree *tree = get_commit_tree(commit);
|
2006-09-06 10:42:23 +02:00
|
|
|
|
2019-01-16 19:25:58 +01:00
|
|
|
if (commit->object.flags & UNINTERESTING)
|
|
|
|
tree->object.flags |= UNINTERESTING;
|
|
|
|
|
|
|
|
oidset_insert(&set, &tree->object.oid);
|
|
|
|
add_edge_parents(commit, revs, show_edge, &set);
|
|
|
|
}
|
|
|
|
|
|
|
|
mark_trees_uninteresting_sparse(revs->repo, &set);
|
|
|
|
oidset_clear(&set);
|
|
|
|
} else {
|
|
|
|
for (list = revs->commits; list; list = list->next) {
|
|
|
|
struct commit *commit = list->item;
|
|
|
|
if (commit->object.flags & UNINTERESTING) {
|
|
|
|
mark_tree_uninteresting(revs->repo,
|
|
|
|
get_commit_tree(commit));
|
|
|
|
if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
|
|
|
|
commit->object.flags |= SHOWN;
|
|
|
|
show_edge(commit);
|
|
|
|
}
|
|
|
|
continue;
|
list-objects: mark more commits as edges in mark_edges_uninteresting
The purpose of edge commits is to let pack-objects know what objects
it can use as base, but does not need to include in the thin pack
because the other side is supposed to already have them. So far we
mark uninteresting parents of interesting commits as edges. But even
an unrelated uninteresting commit (that the other side has) may
become a good base for pack-objects and help produce more efficient
packs.
This is especially true for shallow clone, when the client issues a
fetch with a depth smaller or equal to the number of commits the
server is ahead of the client. For example, in this commit history
the client has up to "A" and the server has up to "B":
-------A---B
have--^ ^
/
want--+
If depth 1 is requested, the commit list to send to the client
includes only B. The way m_e_u is working, it checks if parent
commits of B are uninteresting, if so mark them as edges. Due to
shallow effect, commit B is grafted to have no parents and the
revision walker never sees A as the parent of B. In fact it marks no
edges at all in this simple case and sends everything B has to the
client even if it could have excluded what A and also the client
already have.
In a slightly different case where A is not a direct parent of B
(iow there are commits in between A and B), marking A as an edge can
still save some because B may still have stuff from the far ancestor
A.
There is another case from the earlier patch, when we deepen a ref
from C->E to A->E:
---A---B C---D---E
want--^ ^ ^
shallow-+ /
have-------+
In this case we need to send A and B to the client, and C (i.e. the
current shallow point that the client informs the server) is a very
good base because it's closet to A and B. Normal m_e_u won't recognize
C as an edge because it only looks back to parents (i.e. A<-B) not the
opposite way B->C even if C is already marked as uninteresting commit
by the previous patch.
This patch includes all uninteresting commits from command line as
edges and lets pack-objects decide what's best to do. The upside is we
have better chance of producing better packs in certain cases. The
downside is we may need to process some extra objects on the server
side.
For the shallow case on git.git, when the client is 5 commits behind
and does "fetch --depth=3", the result pack is 99.26 KiB instead of
4.92 MiB.
Reported-and-analyzed-by: Matthijs Kooijman <matthijs@stdin.nl>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-08-16 11:52:07 +02:00
|
|
|
}
|
2019-01-16 19:25:58 +01:00
|
|
|
mark_edge_parents_uninteresting(commit, revs, show_edge);
|
2006-09-06 10:42:23 +02:00
|
|
|
}
|
|
|
|
}
|
2019-01-16 19:25:58 +01:00
|
|
|
|
2014-12-25 00:05:39 +01:00
|
|
|
if (revs->edge_hint_aggressive) {
|
list-objects: only look at cmdline trees with edge_hint
When rev-list is given a command-line like:
git rev-list --objects $commit --not --all
the most accurate answer is the difference between the set
of objects reachable from $commit and the set reachable from
all of the existing refs. However, we have not historically
provided that answer, because it is very expensive to
calculate. We would have to open every tree of every commit
in the entire history.
Instead, we find the accurate set difference of the
reachable commits, and then mark the trees at the boundaries
as uninteresting. This misses objects which appear in the
trees of both the interesting commits and deep within the
uninteresting history.
Commit fbd4a70 (list-objects: mark more commits as edges in
mark_edges_uninteresting, 2013-08-16) noticed that we miss
those objects during pack-objects, and added code to examine
the trees of all of the "--not" refs given on the
command-line. Note that this is still not the complete set
difference, because we look only at the tips of the
command-line arguments, not all of their reachable commits.
But it increases the set of boundary objects we consider,
which is especially important for shallow fetches. So we
are trading extra CPU time for a larger set of boundary
objects, which can improve the resulting pack size for a
--thin pack.
This tradeoff probably makes sense in the context of
pack-objects, where we have set revs->edge_hint to have the
traversal feed us the set of boundary objects. For a
regular rev-list, though, it is probably not a good
tradeoff. It is true that it makes our list slightly closer
to a true set difference, but it is a rare case where this
is important. And because we do not have revs->edge_hint
set, we do nothing useful with the larger set of boundary
objects.
This patch therefore ties the extra tree examination to the
revs->edge_hint flag; it is the presence of that flag that
makes the tradeoff worthwhile.
Here is output from the p0001-rev-list showing the
improvement in performance:
Test HEAD^ HEAD
-----------------------------------------------------------------------------------------
0001.1: rev-list --all 0.69(0.65+0.02) 0.69(0.66+0.02) +0.0%
0001.2: rev-list --all --objects 3.22(3.19+0.03) 3.23(3.20+0.03) +0.3%
0001.4: rev-list $commit --not --all 0.04(0.04+0.00) 0.04(0.04+0.00) +0.0%
0001.5: rev-list --objects $commit --not --all 0.27(0.26+0.01) 0.04(0.04+0.00) -85.2%
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-01-21 03:25:40 +01:00
|
|
|
for (i = 0; i < revs->cmdline.nr; i++) {
|
|
|
|
struct object *obj = revs->cmdline.rev[i].item;
|
|
|
|
struct commit *commit = (struct commit *)obj;
|
|
|
|
if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
|
|
|
|
continue;
|
2018-09-21 17:57:39 +02:00
|
|
|
mark_tree_uninteresting(revs->repo,
|
|
|
|
get_commit_tree(commit));
|
list-objects: only look at cmdline trees with edge_hint
When rev-list is given a command-line like:
git rev-list --objects $commit --not --all
the most accurate answer is the difference between the set
of objects reachable from $commit and the set reachable from
all of the existing refs. However, we have not historically
provided that answer, because it is very expensive to
calculate. We would have to open every tree of every commit
in the entire history.
Instead, we find the accurate set difference of the
reachable commits, and then mark the trees at the boundaries
as uninteresting. This misses objects which appear in the
trees of both the interesting commits and deep within the
uninteresting history.
Commit fbd4a70 (list-objects: mark more commits as edges in
mark_edges_uninteresting, 2013-08-16) noticed that we miss
those objects during pack-objects, and added code to examine
the trees of all of the "--not" refs given on the
command-line. Note that this is still not the complete set
difference, because we look only at the tips of the
command-line arguments, not all of their reachable commits.
But it increases the set of boundary objects we consider,
which is especially important for shallow fetches. So we
are trading extra CPU time for a larger set of boundary
objects, which can improve the resulting pack size for a
--thin pack.
This tradeoff probably makes sense in the context of
pack-objects, where we have set revs->edge_hint to have the
traversal feed us the set of boundary objects. For a
regular rev-list, though, it is probably not a good
tradeoff. It is true that it makes our list slightly closer
to a true set difference, but it is a rare case where this
is important. And because we do not have revs->edge_hint
set, we do nothing useful with the larger set of boundary
objects.
This patch therefore ties the extra tree examination to the
revs->edge_hint flag; it is the presence of that flag that
makes the tradeoff worthwhile.
Here is output from the p0001-rev-list showing the
improvement in performance:
Test HEAD^ HEAD
-----------------------------------------------------------------------------------------
0001.1: rev-list --all 0.69(0.65+0.02) 0.69(0.66+0.02) +0.0%
0001.2: rev-list --all --objects 3.22(3.19+0.03) 3.23(3.20+0.03) +0.3%
0001.4: rev-list $commit --not --all 0.04(0.04+0.00) 0.04(0.04+0.00) +0.0%
0001.5: rev-list --objects $commit --not --all 0.27(0.26+0.01) 0.04(0.04+0.00) -85.2%
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-01-21 03:25:40 +01:00
|
|
|
if (!(obj->flags & SHOWN)) {
|
|
|
|
obj->flags |= SHOWN;
|
|
|
|
show_edge(commit);
|
|
|
|
}
|
list-objects: mark more commits as edges in mark_edges_uninteresting
The purpose of edge commits is to let pack-objects know what objects
it can use as base, but does not need to include in the thin pack
because the other side is supposed to already have them. So far we
mark uninteresting parents of interesting commits as edges. But even
an unrelated uninteresting commit (that the other side has) may
become a good base for pack-objects and help produce more efficient
packs.
This is especially true for shallow clone, when the client issues a
fetch with a depth smaller or equal to the number of commits the
server is ahead of the client. For example, in this commit history
the client has up to "A" and the server has up to "B":
-------A---B
have--^ ^
/
want--+
If depth 1 is requested, the commit list to send to the client
includes only B. The way m_e_u is working, it checks if parent
commits of B are uninteresting, if so mark them as edges. Due to
shallow effect, commit B is grafted to have no parents and the
revision walker never sees A as the parent of B. In fact it marks no
edges at all in this simple case and sends everything B has to the
client even if it could have excluded what A and also the client
already have.
In a slightly different case where A is not a direct parent of B
(iow there are commits in between A and B), marking A as an edge can
still save some because B may still have stuff from the far ancestor
A.
There is another case from the earlier patch, when we deepen a ref
from C->E to A->E:
---A---B C---D---E
want--^ ^ ^
shallow-+ /
have-------+
In this case we need to send A and B to the client, and C (i.e. the
current shallow point that the client informs the server) is a very
good base because it's closet to A and B. Normal m_e_u won't recognize
C as an edge because it only looks back to parents (i.e. A<-B) not the
opposite way B->C even if C is already marked as uninteresting commit
by the previous patch.
This patch includes all uninteresting commits from command line as
edges and lets pack-objects decide what's best to do. The upside is we
have better chance of producing better packs in certain cases. The
downside is we may need to process some extra objects on the server
side.
For the shallow case on git.git, when the client is 5 commits behind
and does "fetch --depth=3", the result pack is 99.26 KiB instead of
4.92 MiB.
Reported-and-analyzed-by: Matthijs Kooijman <matthijs@stdin.nl>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-08-16 11:52:07 +02:00
|
|
|
}
|
|
|
|
}
|
2006-09-06 10:42:23 +02:00
|
|
|
}
|
|
|
|
|
process_{tree,blob}: show objects without buffering
Here's a less trivial thing, and slightly more dubious one.
I was looking at that "struct object_array objects", and wondering why we
do that. I have honestly totally forgotten. Why not just call the "show()"
function as we encounter the objects? Rather than add the objects to the
object_array, and then at the very end going through the array and doing a
'show' on all, just do things more incrementally.
Now, there are possible downsides to this:
- the "buffer using object_array" _can_ in theory result in at least
better I-cache usage (two tight loops rather than one more spread out
one). I don't think this is a real issue, but in theory..
- this _does_ change the order of the objects printed. Instead of doing a
"process_tree(revs, commit->tree, &objects, NULL, "");" in the loop
over the commits (which puts all the root trees _first_ in the object
list, this patch just adds them to the list of pending objects, and
then we'll traverse them in that order (and thus show each root tree
object together with the objects we discover under it)
I _think_ the new ordering actually makes more sense, but the object
ordering is actually a subtle thing when it comes to packing
efficiency, so any change in order is going to have implications for
packing. Good or bad, I dunno.
- There may be some reason why we did it that odd way with the object
array, that I have simply forgotten.
Anyway, now that we don't buffer up the objects before showing them
that may actually result in lower memory usage during that whole
traverse_commit_list() phase.
This is seriously not very deeply tested. It makes sense to me, it seems
to pass all the tests, it looks ok, but...
Does anybody remember why we did that "object_array" thing? It used to be
an "object_list" a long long time ago, but got changed into the array due
to better memory usage patterns (those linked lists of obejcts are
horrible from a memory allocation standpoint). But I wonder why we didn't
do this back then. Maybe there's a reason for it.
Or maybe there _used_ to be a reason, and no longer is.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-04-11 02:27:58 +02:00
|
|
|
static void add_pending_tree(struct rev_info *revs, struct tree *tree)
|
|
|
|
{
|
|
|
|
add_pending_object(revs, &tree->object, "");
|
|
|
|
}
|
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
static void traverse_trees_and_blobs(struct traversal_context *ctx,
|
|
|
|
struct strbuf *base)
|
2006-09-05 06:50:12 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2017-11-02 20:41:43 +01:00
|
|
|
assert(base->len == 0);
|
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
for (i = 0; i < ctx->revs->pending.nr; i++) {
|
|
|
|
struct object_array_entry *pending = ctx->revs->pending.objects + i;
|
2006-09-05 06:50:12 +02:00
|
|
|
struct object *obj = pending->item;
|
|
|
|
const char *name = pending->name;
|
traverse_commit_list: support pending blobs/trees with paths
When we call traverse_commit_list, we may have trees and
blobs in the pending array. As we process these, we pass the
"name" field from the pending entry as the path of the
object within the tree (which then becomes the root path if
we recurse into subtrees).
When we set up the traversal in prepare_revision_walk,
though, the "name" field of any pending trees and blobs is
likely to be the ref at which we found the object. We would
not want to make this part of the path (e.g., doing so would
make "git rev-list --objects v2.6.11-tree" in linux.git show
paths like "v2.6.11-tree/Makefile", which is nonsensical).
Therefore prepare_revision_walk sets the name field of each
pending tree and blobs to the empty string.
However, this leaves no room for a caller who does know the
correct path of a pending object to propagate that
information to the revision walker. We can fix this by
making two related changes:
1. Use the "path" field as the path instead of the "name"
field in traverse_commit_list. If the path is not set,
default to "" (which is what we always ended up with in
the current code, because of prepare_revision_walk).
2. In prepare_revision_walk, make a complete copy of the
entry. This makes the path field available to the
walker (if there is one), solving our problem.
Leaving the name field intact is now OK, as we do not
use it as a path due to point (1) above (and we can use
it to make more meaningful error messages if we want).
We also make the original "mode" field available to the
walker, though it does not actually use it.
Note that we still re-add the pending objects and free the
old ones (so we may strdup the path and name only to free
the old ones). This could be made more efficient by simply
copying the object_array entries that we are keeping.
However, that would require more restructuring of the code,
and is not done here.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-10-16 00:43:19 +02:00
|
|
|
const char *path = pending->path;
|
2006-09-05 06:50:12 +02:00
|
|
|
if (obj->flags & (UNINTERESTING | SEEN))
|
|
|
|
continue;
|
|
|
|
if (obj->type == OBJ_TAG) {
|
|
|
|
obj->flags |= SEEN;
|
2018-08-13 20:14:28 +02:00
|
|
|
ctx->show_object(obj, name, ctx->show_data);
|
2006-09-05 06:50:12 +02:00
|
|
|
continue;
|
|
|
|
}
|
traverse_commit_list: support pending blobs/trees with paths
When we call traverse_commit_list, we may have trees and
blobs in the pending array. As we process these, we pass the
"name" field from the pending entry as the path of the
object within the tree (which then becomes the root path if
we recurse into subtrees).
When we set up the traversal in prepare_revision_walk,
though, the "name" field of any pending trees and blobs is
likely to be the ref at which we found the object. We would
not want to make this part of the path (e.g., doing so would
make "git rev-list --objects v2.6.11-tree" in linux.git show
paths like "v2.6.11-tree/Makefile", which is nonsensical).
Therefore prepare_revision_walk sets the name field of each
pending tree and blobs to the empty string.
However, this leaves no room for a caller who does know the
correct path of a pending object to propagate that
information to the revision walker. We can fix this by
making two related changes:
1. Use the "path" field as the path instead of the "name"
field in traverse_commit_list. If the path is not set,
default to "" (which is what we always ended up with in
the current code, because of prepare_revision_walk).
2. In prepare_revision_walk, make a complete copy of the
entry. This makes the path field available to the
walker (if there is one), solving our problem.
Leaving the name field intact is now OK, as we do not
use it as a path due to point (1) above (and we can use
it to make more meaningful error messages if we want).
We also make the original "mode" field available to the
walker, though it does not actually use it.
Note that we still re-add the pending objects and free the
old ones (so we may strdup the path and name only to free
the old ones). This could be made more efficient by simply
copying the object_array entries that we are keeping.
However, that would require more restructuring of the code,
and is not done here.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-10-16 00:43:19 +02:00
|
|
|
if (!path)
|
|
|
|
path = "";
|
2006-09-05 06:50:12 +02:00
|
|
|
if (obj->type == OBJ_TREE) {
|
2018-08-13 20:14:28 +02:00
|
|
|
process_tree(ctx, (struct tree *)obj, base, path);
|
2006-09-05 06:50:12 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (obj->type == OBJ_BLOB) {
|
2018-08-13 20:14:28 +02:00
|
|
|
process_blob(ctx, (struct blob *)obj, base, path);
|
2006-09-05 06:50:12 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
die("unknown pending object %s (%s)",
|
2015-11-10 03:22:28 +01:00
|
|
|
oid_to_hex(&obj->oid), name);
|
2006-09-05 06:50:12 +02:00
|
|
|
}
|
2018-08-13 20:14:28 +02:00
|
|
|
object_array_clear(&ctx->revs->pending);
|
2017-11-02 20:41:43 +01:00
|
|
|
}
|
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
static void do_traverse(struct traversal_context *ctx)
|
2017-11-02 20:41:43 +01:00
|
|
|
{
|
|
|
|
struct commit *commit;
|
|
|
|
struct strbuf csp; /* callee's scratch pad */
|
|
|
|
strbuf_init(&csp, PATH_MAX);
|
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
while ((commit = get_revision(ctx->revs)) != NULL) {
|
2017-11-02 20:41:43 +01:00
|
|
|
/*
|
|
|
|
* an uninteresting boundary commit may not have its tree
|
|
|
|
* parsed yet, but we are not going to show them anyway
|
|
|
|
*/
|
list-objects: don't queue root trees unless revs->tree_objects is set
When traverse_commit_list() processes each commit, it queues the
commit's root tree in the pending array. Then, after all commits are
processed, it calls traverse_trees_and_blobs() to walk over the pending
list, calling process_tree() on each. But if revs->tree_objects is not
set, process_tree() just exists immediately!
We can save ourselves some work by not even bothering to queue these
trees in the first place. There are a few subtle points to make:
- we also detect commits with a NULL tree pointer here. But this isn't
an interesting check for broken commits, since the lookup_tree()
we'd have done during commit parsing doesn't actually check that we
have the tree on disk. So we're not losing any robustness.
- besides queueing, we also set the NOT_USER_GIVEN flag on the tree
object. This is used by the traverse_commit_list_filtered() variant.
But if we're not exploring trees, then we won't actually care about
this flag, which is used only inside process_tree() code-paths.
- queueing trees eventually leads to us queueing blobs, too. But we
don't need to check revs->blob_objects here. Even in the current
code, we still wouldn't find those blobs, because we'd never open up
the tree objects to list their contents.
- the user-visible impact to the caller is minimal. The pending trees
are all cleared by the time the function returns anyway, by
traverse_trees_and_blobs(). We do call a show_commit() callback,
which technically could be looking at revs->pending during the
callback. But it seems like a rather unlikely thing to do (if you
want the tree of the current commit, then accessing the tree struct
member is a lot simpler).
So this should be safe to do. Let's look at the benefits:
[before]
Benchmark #1: git -C linux rev-list HEAD >/dev/null
Time (mean ± σ): 7.651 s ± 0.021 s [User: 7.399 s, System: 0.252 s]
Range (min … max): 7.607 s … 7.683 s 10 runs
[after]
Benchmark #1: git -C linux rev-list HEAD >/dev/null
Time (mean ± σ): 7.593 s ± 0.023 s [User: 7.329 s, System: 0.264 s]
Range (min … max): 7.565 s … 7.634 s 10 runs
Not too impressive, but then we're really just avoiding sticking a
pointer into a growable array. But still, I'll take a free 0.75%
speedup.
Let's try it after running "git commit-graph write":
[before]
Benchmark #1: git -C linux rev-list HEAD >/dev/null
Time (mean ± σ): 1.458 s ± 0.011 s [User: 1.199 s, System: 0.259 s]
Range (min … max): 1.447 s … 1.481 s 10 runs
[after]
Benchmark #1: git -C linux rev-list HEAD >/dev/null
Time (mean ± σ): 1.126 s ± 0.023 s [User: 896.5 ms, System: 229.0 ms]
Range (min … max): 1.106 s … 1.181 s 10 runs
Now that's more like it. We saved over 22% of the total time. Part of
that is because the runtime is shorter overall, but the absolute
improvement is also much larger. What's going on?
When we fill in a commit struct using the commit graph, we don't bother
to set the tree pointer, and instead lazy-load it when somebody calls
get_commit_tree(). So we're not only skipping the pointer write to the
pending queue, but we're skipping the lazy-load of the tree entirely.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2019-09-12 03:11:37 +02:00
|
|
|
if (!ctx->revs->tree_objects)
|
|
|
|
; /* do not bother loading tree */
|
|
|
|
else if (get_commit_tree(commit)) {
|
2018-10-05 23:31:24 +02:00
|
|
|
struct tree *tree = get_commit_tree(commit);
|
|
|
|
tree->object.flags |= NOT_USER_GIVEN;
|
|
|
|
add_pending_tree(ctx->revs, tree);
|
2019-04-10 04:13:25 +02:00
|
|
|
} else if (commit->object.parsed) {
|
|
|
|
die(_("unable to load root tree for commit %s"),
|
|
|
|
oid_to_hex(&commit->object.oid));
|
2018-10-05 23:31:24 +02:00
|
|
|
}
|
2018-08-13 20:14:28 +02:00
|
|
|
ctx->show_commit(commit, ctx->show_data);
|
2017-11-16 03:00:35 +01:00
|
|
|
|
2018-08-13 20:14:28 +02:00
|
|
|
if (ctx->revs->tree_blobs_in_commit_order)
|
2017-11-16 03:00:35 +01:00
|
|
|
/*
|
|
|
|
* NEEDSWORK: Adding the tree and then flushing it here
|
|
|
|
* needs a reallocation for each commit. Can we pass the
|
|
|
|
* tree directory without allocation churn?
|
|
|
|
*/
|
2018-08-13 20:14:28 +02:00
|
|
|
traverse_trees_and_blobs(ctx, &csp);
|
2017-11-02 20:41:43 +01:00
|
|
|
}
|
2018-08-13 20:14:28 +02:00
|
|
|
traverse_trees_and_blobs(ctx, &csp);
|
2017-11-02 20:41:43 +01:00
|
|
|
strbuf_release(&csp);
|
2006-09-05 06:50:12 +02:00
|
|
|
}
|
2017-11-21 21:58:50 +01:00
|
|
|
|
|
|
|
void traverse_commit_list(struct rev_info *revs,
|
|
|
|
show_commit_fn show_commit,
|
|
|
|
show_object_fn show_object,
|
|
|
|
void *show_data)
|
|
|
|
{
|
2018-08-13 20:14:28 +02:00
|
|
|
struct traversal_context ctx;
|
|
|
|
ctx.revs = revs;
|
|
|
|
ctx.show_commit = show_commit;
|
|
|
|
ctx.show_object = show_object;
|
|
|
|
ctx.show_data = show_data;
|
2019-06-28 00:54:05 +02:00
|
|
|
ctx.filter = NULL;
|
2018-08-13 20:14:28 +02:00
|
|
|
do_traverse(&ctx);
|
2017-11-21 21:58:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void traverse_commit_list_filtered(
|
|
|
|
struct list_objects_filter_options *filter_options,
|
|
|
|
struct rev_info *revs,
|
|
|
|
show_commit_fn show_commit,
|
|
|
|
show_object_fn show_object,
|
|
|
|
void *show_data,
|
|
|
|
struct oidset *omitted)
|
|
|
|
{
|
2018-08-13 20:14:28 +02:00
|
|
|
struct traversal_context ctx;
|
|
|
|
|
|
|
|
ctx.revs = revs;
|
|
|
|
ctx.show_object = show_object;
|
|
|
|
ctx.show_commit = show_commit;
|
|
|
|
ctx.show_data = show_data;
|
2019-06-28 00:54:05 +02:00
|
|
|
ctx.filter = list_objects_filter__init(omitted, filter_options);
|
2018-08-13 20:14:28 +02:00
|
|
|
do_traverse(&ctx);
|
2019-06-28 00:54:05 +02:00
|
|
|
list_objects_filter__free(ctx.filter);
|
2017-11-21 21:58:50 +01:00
|
|
|
}
|