diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-04-06 15:50:01 -0700 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2018-04-20 11:10:48 -0700 |
commit | 4faec31c0a9ff92efdac10d1bd5db1a929ce74a2 (patch) | |
tree | c78b793028240be22185ec7f4fed33053b9159ea | |
parent | 42e69409d796421bb1353279cfae463b19a43fe9 (diff) | |
download | jgit-4faec31c0a9ff92efdac10d1bd5db1a929ce74a2.tar.gz jgit-4faec31c0a9ff92efdac10d1bd5db1a929ce74a2.zip |
Add RefDatabase#getRefsByPrefix method
The existing RefDatabase#getRefs abstract method (to be implemented by
ref database backends) has the following issues:
- It returns a map with a key (the name of the ref with the prefix
removed) which is potentially superfluous (it can be derived by the
caller if need be) and confusing (in that the prefix is removed).
- The prefix is required to end with a '/', but some backends (e.g.
reftable) have fast search by prefix regardless of what the last
character of the prefix is.
Add a new method #getRefsByPrefix that does not have these issues. This
is non-abstract with a default implementation that uses #getRefs (for
backwards compatibility), but ref database backends can reimplement it.
This also prepares for supporting "ref-prefix" in the "ls-refs" command
in the fetch-pack/upload-pack protocol v2, which does not require that
the prefix end with a '/'.
Change-Id: I4c92f852e8c1558095dd460b5fd7b602c1d82df1
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Jonathan Nieder <jrn@google.com>
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RefTest.java | 23 | ||||
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java | 41 |
2 files changed, 64 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RefTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RefTest.java index e93867829a..2481e64997 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RefTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/RefTest.java @@ -57,6 +57,7 @@ import static org.junit.Assert.fail; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; +import java.util.List; import java.util.Map; import java.util.TreeSet; @@ -305,4 +306,26 @@ public class RefTest extends SampleDataRepositoryTestCase { assertSame(dst.getPeeledObjectId(), ref.getPeeledObjectId()); assertEquals(dst.isPeeled(), ref.isPeeled()); } + + private static void checkContainsRef(List<Ref> haystack, Ref needle) { + for (Ref ref : haystack) { + if (ref.getName().equals(needle.getName()) && + ref.getObjectId().equals(needle.getObjectId())) { + return; + } + } + fail("list " + haystack + " does not contain ref " + needle); + } + + @Test + public void testGetRefsByPrefix() throws IOException { + List<Ref> refs = db.getRefDatabase().getRefsByPrefix("refs/heads/g"); + assertEquals(2, refs.size()); + checkContainsRef(refs, db.exactRef("refs/heads/g")); + checkContainsRef(refs, db.exactRef("refs/heads/gitlink")); + + refs = db.getRefDatabase().getRefsByPrefix("refs/heads/prefix/"); + assertEquals(1, refs.size()); + checkContainsRef(refs, db.exactRef("refs/heads/prefix/a")); + } } diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java index 557bdb994f..a9ba16afee 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefDatabase.java @@ -43,6 +43,8 @@ package org.eclipse.jgit.lib; +import static java.util.stream.Collectors.toList; + import java.io.IOException; import java.util.ArrayList; import java.util.Collection; @@ -343,11 +345,50 @@ public abstract class RefDatabase { * of each key. The map can be an unsorted map. * @throws java.io.IOException * the reference space cannot be accessed. + * @deprecated use {@link #getRefsByPrefix} instead */ @NonNull + @Deprecated public abstract Map<String, Ref> getRefs(String prefix) throws IOException; /** + * Returns refs whose names start with a given prefix. + * <p> + * The default implementation uses {@link #getRefs}. Implementors of + * {@link RefDatabase} should override this method directly if a better + * implementation is possible. + * + * @param prefix string that names of refs should start with; may be + * empty (to return all refs). + * @return immutable list of refs whose names start with {@code prefix}. + * @throws java.io.IOException + * the reference space cannot be accessed. + * @since 5.0 + */ + @NonNull + public List<Ref> getRefsByPrefix(String prefix) throws IOException { + Map<String, Ref> coarseRefs; + int lastSlash = prefix.lastIndexOf('/'); + if (lastSlash == -1) { + coarseRefs = getRefs(ALL); + } else { + coarseRefs = getRefs(prefix.substring(0, lastSlash + 1)); + } + + List<Ref> result; + if (lastSlash + 1 == prefix.length()) { + result = coarseRefs.values().stream().collect(toList()); + } else { + String p = prefix.substring(lastSlash + 1); + result = coarseRefs.entrySet().stream() + .filter(e -> e.getKey().startsWith(p)) + .map(e -> e.getValue()) + .collect(toList()); + } + return Collections.unmodifiableList(result); + } + + /** * Get the additional reference-like entities from the repository. * <p> * The result list includes non-ref items such as MERGE_HEAD and |