diff options
author | Andrey Loskutov <loskutov@gmx.de> | 2014-08-11 09:28:52 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-10-27 19:26:42 +0100 |
commit | 2f5a08798eb29e8141c452c0dc2622bc8fe90dd0 (patch) | |
tree | c719668c07c7bb8740251789e0bac95ff8008fd9 /org.eclipse.jgit.test/META-INF | |
parent | 6eca51923f49026d6e91052bc959472732332560 (diff) | |
download | jgit-2f5a08798eb29e8141c452c0dc2622bc8fe90dd0.tar.gz jgit-2f5a08798eb29e8141c452c0dc2622bc8fe90dd0.zip |
Reimplementation of ignore rule parser
The current IgnoreRule/FileNameMatcher implementation scales not well
with huge repositories - it is both slow and memory expensive while
parsing glob expressions (bug 440732). Addtitionally, the "double star"
pattern (/**/) is not understood by the old parser (bug 416348).
The proposed implementation is a complete clean room rewrite of the
gitignore parser, aiming to add missing double star pattern support and
improve the performance and memory consumption.
The glob expressions from .gitignore rules are converted to Java regular
expressions (java.util.regex.Pattern). java.util.regex.Pattern code can
evaluate expression from gitignore rules considerable faster (and with
less memory consumption) as the old FileNameMatcher implementation.
CQ: 8828
Bug: 416348
Bug: 440732
Change-Id: Ibefb930381f2f16eddb9947e592752f8ae2b76e1
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.test/META-INF')
-rw-r--r-- | org.eclipse.jgit.test/META-INF/MANIFEST.MF | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/META-INF/MANIFEST.MF b/org.eclipse.jgit.test/META-INF/MANIFEST.MF index d493ae4e10..7b9bd64bc1 100644 --- a/org.eclipse.jgit.test/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit.test/META-INF/MANIFEST.MF @@ -20,6 +20,7 @@ Import-Package: com.googlecode.javaewah;version="[0.7.9,0.8.0)", org.eclipse.jgit.fnmatch;version="[3.6.0,3.7.0)", org.eclipse.jgit.gitrepo;version="[3.6.0,3.7.0)", org.eclipse.jgit.ignore;version="[3.6.0,3.7.0)", + org.eclipse.jgit.ignore.internal;version="[3.6.0,3.7.0)", org.eclipse.jgit.internal;version="[3.6.0,3.7.0)", org.eclipse.jgit.internal.storage.dfs;version="[3.6.0,3.7.0)", org.eclipse.jgit.internal.storage.file;version="[3.6.0,3.7.0)", @@ -47,5 +48,6 @@ Import-Package: com.googlecode.javaewah;version="[0.7.9,0.8.0)", org.hamcrest;version="[1.1.0,2.0.0)", org.junit;version="[4.4.0,5.0.0)", org.junit.experimental.theories;version="[4.4.0,5.0.0)", - org.junit.runner;version="[4.4.0,5.0.0)" + org.junit.runner;version="[4.4.0,5.0.0)", + org.junit.runners;version="[4.11.0,5.0.0)" Require-Bundle: org.hamcrest.core;bundle-version="[1.1.0,2.0.0)" |