]> source.dussan.org Git - jgit.git/log
jgit.git
13 years agoFix NLSTest and RootLocalTest for JUnit 4 03/2203/1
Shawn O. Pearce [Sun, 2 Jan 2011 22:30:55 +0000 (14:30 -0800)]
Fix NLSTest and RootLocalTest for JUnit 4

These test classes needed new @Test annotations to be found by the
JUnit 4 test runner.

Change-Id: I61b6a8ebd468fa2d13fad5bf9cbd8f81a6f67e41
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoMerge "Implement a revert command"
Shawn Pearce [Sun, 2 Jan 2011 22:21:58 +0000 (17:21 -0500)]
Merge "Implement a revert command"

13 years agoImplement a revert command 01/2201/1
Robin Rosenberg [Sun, 2 Jan 2011 21:05:13 +0000 (22:05 +0100)]
Implement a revert command

This is almost reverted cherry-pick, and the implementation is
almost identical. It orders the input to merge differently to get
the effect and produces a different commit message with the
default author, rather than the original author.

Change-Id: I39970091d9f7406ae7168b8efaab23a5e2c16bad
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoRequire the hamcrest packaging that comes with Eclipse 00/2200/3
Robin Rosenberg [Sat, 1 Jan 2011 18:05:00 +0000 (19:05 +0100)]
Require the hamcrest packaging that comes with Eclipse

The other one gets installed with SWTBot, but you do not
need it if you do not hack EGit. Using import-package
instead of require-bundle fixes the dependency. Actually
we do not need hamcrest at this time, but JUnit wants it.

Change-Id: I59873618f86d02e8439d40c1f322ea8e5c4fe3fc
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoMerge "[findbugs] Make CheckoutResult constants final"
Shawn Pearce [Fri, 31 Dec 2010 22:08:23 +0000 (17:08 -0500)]
Merge "[findbugs] Make CheckoutResult constants final"

13 years agoDrop unneccessary @SuppressWarnings 98/2198/2
Robin Rosenberg [Fri, 31 Dec 2010 10:44:55 +0000 (11:44 +0100)]
Drop unneccessary @SuppressWarnings

Change-Id: I3a5b877efd3a58ad463c47bb663d073baea81dda
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoFix TestTranslationBundle 97/2197/2
Robin Rosenberg [Fri, 31 Dec 2010 10:44:54 +0000 (11:44 +0100)]
Fix TestTranslationBundle

The test was never run from maven, because its name did not end
in a way that was recognized by the pom. After rename it failed
because it did not find its resources.

Rename test class and move resources to the resources folder

Change-Id: I74a7ef1373cd902e1d05ff6ea38f8648b5fc5700
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoConvert all JGit unit tests to JUnit 4 96/2196/3
Robin Rosenberg [Fri, 31 Dec 2010 10:44:54 +0000 (11:44 +0100)]
Convert all JGit unit tests to JUnit 4

Eclipse has some problem re-running single JUnit tests if
the tests are in Junit 3 format, but the JUnit 4 launcher
is used. This was quite unnecessary and the move was not
completed. We still have no JUnit4 test.

This completes the extermination of JUnit3. Most of the
work was global searce/replace using regular expression,
followed by numerous invocarions of quick-fix and organize
imports and verification that we had the same number of
tests before and after.

- Annotations were introduced.
- All references to JUnit3 classes removed
- Half-good replacement for getting the test name. This was
  needed to make the TestRngs work. The initialization of
  TestRngs was also made lazily since we can not longer find
  out the test name in runtime in the @Before methods.
- Renamed test classes to end with Test, with the exception
  of TestTranslateBundle, which fails from Maven
- Moved JGitTestUtil to the junit support bundle

Change-Id: Iddcd3da6ca927a7be773a9c63ebf8bb2147e2d13
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoMerge "Add support for getting the system wide configuration"
Shawn Pearce [Fri, 31 Dec 2010 21:13:33 +0000 (16:13 -0500)]
Merge "Add support for getting the system wide configuration"

13 years agoAdd support for getting the system wide configuration 77/2177/4
Robin Rosenberg [Tue, 28 Dec 2010 16:15:18 +0000 (17:15 +0100)]
Add support for getting the system wide configuration

These settings are stored in <prefix>/etc/gitconfig. The C Git
binary is installed in <prefix>/bin, so we look for the C Git
executable to find this location, first by looking at the PATH
environment variable and then by attemting to launch bash as
a login shell to find out.

Bug: 333216
Change-Id: I1bbee9fb123a81714a34a9cc242b92beacfbb4a8
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoMerge "IndexPack: Use stack-based recursion for delta resolution"
Shawn Pearce [Fri, 31 Dec 2010 00:52:47 +0000 (19:52 -0500)]
Merge "IndexPack: Use stack-based recursion for delta resolution"

13 years agoIndexPack: Use stack-based recursion for delta resolution 72/2172/5
roberto [Thu, 30 Dec 2010 23:08:31 +0000 (23:08 +0000)]
IndexPack: Use stack-based recursion for delta resolution

Replace 'method' with 'heap'-based recursion for resolving deltas.

Git packfile delta-chain depth can exceed 50 levels in certain files
(the packfile of the JGit project itself has >800 objects with
chain-length >50). Using method-based recursion on such packfiles will
quickly throw a StackOverflowError on VMs with constrained stack.

Benefits:

* packfile delta-resolution no longer limited by the maximum number
  of stack frames permitted on the current thread.

* slight performance improvement
  (3% speed increase on the packfile of the JGit project)

Change-Id: I1d9b3a8ba3c6d874d83cb93ebf171c6ab193e6cc
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years ago[findbugs] Make CheckoutResult constants final 95/2195/1
Matthias Sohn [Thu, 30 Dec 2010 22:04:43 +0000 (23:04 +0100)]
[findbugs] Make CheckoutResult constants final

Change-Id: I9117f212e2ad7051fdc6e7417ebc7c2d15b357a8
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoRefactor exec of a command and reading one line into utility 76/2176/3
Robin Rosenberg [Tue, 28 Dec 2010 16:15:12 +0000 (17:15 +0100)]
Refactor exec of a command and reading one line into utility

Change-Id: Ia9e5afe7f29c3e5e74b8d226441ed429fb229c82
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoRefactor search for a file within a PATH 75/2175/3
Robin Rosenberg [Tue, 28 Dec 2010 16:15:08 +0000 (17:15 +0100)]
Refactor search for a file within a PATH

Change-Id: I785ab6bf1823d174394b1d2b25c5bb202535e943

13 years agoMerge "Add launchers for the JGit HTTP package test"
Shawn Pearce [Thu, 30 Dec 2010 20:32:33 +0000 (15:32 -0500)]
Merge "Add launchers for the JGit HTTP package test"

13 years agoMerge "Enable JUnit4 in the jgit.http package too"
Shawn Pearce [Thu, 30 Dec 2010 20:31:40 +0000 (15:31 -0500)]
Merge "Enable JUnit4 in the jgit.http package too"

13 years agoMerge "Fix FileSnapShot"
Shawn Pearce [Thu, 30 Dec 2010 20:31:06 +0000 (15:31 -0500)]
Merge "Fix FileSnapShot"

13 years agoMerge "Enable use of JUnit 4 with maven"
Shawn Pearce [Thu, 30 Dec 2010 20:27:26 +0000 (15:27 -0500)]
Merge "Enable use of JUnit 4 with maven"

13 years agoAdd launchers for the JGit HTTP package test 85/2185/2
Robin Rosenberg [Thu, 30 Dec 2010 00:37:04 +0000 (01:37 +0100)]
Add launchers for the JGit HTTP package test

Change-Id: I8bb5cb5342ab86fbc586d879dc56f70f4c0e6ace
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoEnable JUnit4 in the jgit.http package too 84/2184/1
Robin Rosenberg [Thu, 30 Dec 2010 00:25:18 +0000 (01:25 +0100)]
Enable JUnit4 in the jgit.http package too

There are currently no JUnit4 tests here, but since we made JUnit4
the default for maven, it should be for Eclipse builds too.

Change-Id: Ic910df1705fa8d6ac26e97a41947cb8e5526d334
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoFix FileSnapShot 74/2174/2
Robin Rosenberg [Tue, 28 Dec 2010 18:01:46 +0000 (19:01 +0100)]
Fix FileSnapShot

We cannot use SystemReader to get the time, unless we do that consistently,
which is harder to do and be sure we are really testing what we want.

Then we need to update our lastRead variable whenever we conclude that
our file is not racily clean according to lastRead. It may well be clean,
but we do not know that until we check the system clock again.

Finally add a test for this class.

Change-Id: I1894b032b9bd359d1b5325e5472d48e372599e4c
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoEnable use of JUnit 4 with maven 83/2183/1
Robin Rosenberg [Thu, 30 Dec 2010 00:02:21 +0000 (01:02 +0100)]
Enable use of JUnit 4 with maven

Change-Id: If1948232ae73bc9cf1ce6ce1e953172e0a8bcee6
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoMerge "CheckoutResult: return paths instead of Files"
Shawn Pearce [Wed, 29 Dec 2010 19:29:49 +0000 (14:29 -0500)]
Merge "CheckoutResult: return paths instead of Files"

13 years agoEnable use of JUnit 4 with the jgit.test project 73/2173/1
Robin Rosenberg [Tue, 28 Dec 2010 16:14:32 +0000 (17:14 +0100)]
Enable use of JUnit 4 with the jgit.test project

Some enablement was done earlier, but we need to add the org.junit package
and hamcrest to make it work.

junit.textui removed, probably a mistake at some time in the past.

Change-Id: I6922a2f40eb0c077a8ade5ed073ecf0e90425544

13 years agoFix ArrayIndexOutOfBoundsException in DirCacheIterator 68/2168/1
Shawn O. Pearce [Wed, 22 Dec 2010 22:11:18 +0000 (14:11 -0800)]
Fix ArrayIndexOutOfBoundsException in DirCacheIterator

If the 'TREE' extension contains an invalid subtree that has
been removed, DirCacheIterator still tried to access it due to
an invalid childCnt field within the parent DirCacheTree object.
This is easy for a user to do, they just need to move all files
out of a subdirectory.

For example, the input for the JUnit test case for this bug was
built using the following C Git sequence:

  mkdir -p a/b
  touch a/b/c q
  git add a/b/c q
  git write-tree
  git mv a/b/c a/a

After the last step, the subdirectory a/b is empty, as its only
file was moved into the parent directory.  Because of the earlier
`git write-tree` operation, there is a 'TREE' extension present, but
the a and a/b subdirectories have been marked invalid by the rename.

When JGit tried to iterate over the a tree, it tried to correct
childCnt to be zero as a/b no longer exists, but it failed to
update childCnt.

Change-Id: I7a0f78fc48a36b1a83252d354618f6807fca0426
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoDirCacheIteratorTest: Use newInCore instead of disk 67/2167/1
Shawn O. Pearce [Wed, 22 Dec 2010 21:39:38 +0000 (13:39 -0800)]
DirCacheIteratorTest: Use newInCore instead of disk

Avoid the dependency on the local filesystem by using only an in-core
DirCache instance.  Each test case builds up the index from scratch
anyway through a DirCacheBuilder.

Change-Id: I5decf6bffc3ed35bf1d3e4ad5cc095891c80b772
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoCorrect GIT_INDEX_FILE environment variable 66/2166/1
Shawn O. Pearce [Wed, 22 Dec 2010 19:26:33 +0000 (11:26 -0800)]
Correct GIT_INDEX_FILE environment variable

This is GIT_INDEX_FILE, not GIT_INDEX.

Change-Id: Ib3af28ba196f74c8cb4d318b57ea346bb90f9a1e
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoCheckoutResult: return paths instead of Files 61/2161/1
Mathias Kinzler [Tue, 21 Dec 2010 09:06:19 +0000 (10:06 +0100)]
CheckoutResult: return paths instead of Files

As discussed in

http://egit.eclipse.org/r/#change,2127

we should use paths relative the working directory instead of Files to
notify the caller about conflicts and nondeleted files.

Change-Id: I034c7bd846f0df78d97bc246f38d411f29713dde
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoMerge "FileBasedConfig: Use FileSnapshot for isOutdated()"
Chris Aniszczyk [Mon, 20 Dec 2010 17:06:00 +0000 (12:06 -0500)]
Merge "FileBasedConfig: Use FileSnapshot for isOutdated()"

13 years agoFix CheckoutCommandTest 59/2159/1
Mathias Kinzler [Mon, 20 Dec 2010 15:54:41 +0000 (16:54 +0100)]
Fix CheckoutCommandTest

Change-Id: Ieacae01de20d7729ef34e6e6a1523fbaf9db41a8
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoFix JDK 6 Usage of String.getBytes(Charset) 58/2158/1
Mathias Kinzler [Mon, 20 Dec 2010 15:52:52 +0000 (16:52 +0100)]
Fix JDK 6 Usage of String.getBytes(Charset)

Change-Id: I619b00d8a3b0770c9fd1dc3314794f915ea80604
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoCheckout: fix handling if name does not refer to a local branch 39/2139/5
Mathias Kinzler [Mon, 20 Dec 2010 09:35:10 +0000 (10:35 +0100)]
Checkout: fix handling if name does not refer to a local branch

The CheckoutCommand does not handle names other than local branch
names properly; it must detach HEAD if such a name is encountered (for
example a commit ID or a remote tracking branch).

Change-Id: I5d55177f4029bcc34fc2649fd564b125a2929cc4
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoclone: Use DirCacheCheckout 34/2134/2
Shawn O. Pearce [Thu, 16 Dec 2010 00:14:19 +0000 (16:14 -0800)]
clone: Use DirCacheCheckout

This simple change lets us get rid of WorkDirCheckout from JGit,
and all of its supporting code.

Change-Id: I1a5aabe9ab4a2b156fd37cc7e9ededb4ed70f53a
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoMerge "Extract pack directory last modified check code"
Chris Aniszczyk [Mon, 20 Dec 2010 15:27:33 +0000 (10:27 -0500)]
Merge "Extract pack directory last modified check code"

13 years agoRemove deprecated WriteTree from tests 33/2133/2
Shawn O. Pearce [Thu, 16 Dec 2010 00:39:28 +0000 (16:39 -0800)]
Remove deprecated WriteTree from tests

These tests doesn't need to use WriteTree anymore.  There are
other means of creating tree objects in the repository that aren't
deprecated, so use those instead.

Change-Id: I89cd8ab54c66964a5fddc0a045f1c0f1c7c49055
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoCheckout: expose a CheckoutResult 27/2127/3
Mathias Kinzler [Mon, 20 Dec 2010 09:21:49 +0000 (10:21 +0100)]
Checkout: expose a CheckoutResult

This is needed by callers to determine checkout conflicts and
possible files that were not deleted during the checkout so that they
can present the end user with a better Exception description and retry
to delete the undeleted files later, respectively.

Change-Id: I037930da7b1a4dfb24cfa3205afb51dc29e4a5b8
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoFix wrong javadoc comment in Repository 53/2153/1
Robin Rosenberg [Sun, 19 Dec 2010 10:02:13 +0000 (11:02 +0100)]
Fix wrong javadoc comment in Repository

Change-Id: I9fc084b48418884ce1ccf16d56e800f1d3594885
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
13 years agoMerge "Move TransferConfig to transport package"
Robin Rosenberg [Sat, 18 Dec 2010 15:43:26 +0000 (10:43 -0500)]
Merge "Move TransferConfig to transport package"

13 years agoQualify post 0.10 builds 49/2149/1
Matthias Sohn [Fri, 17 Dec 2010 14:49:30 +0000 (15:49 +0100)]
Qualify post 0.10 builds

Change-Id: Ifcb8fdea95286779c8aea6bf4d7647e8c1c98d63
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoMerge branch 'stable-0.10' 48/2148/1
Matthias Sohn [Fri, 17 Dec 2010 14:41:27 +0000 (15:41 +0100)]
Merge branch 'stable-0.10'

13 years agoQualify post 0.10.1 builds 45/2145/1 stable-0.10
Matthias Sohn [Fri, 17 Dec 2010 14:23:14 +0000 (15:23 +0100)]
Qualify post 0.10.1 builds

Change-Id: I320f1f739f3689daf11d532a55ae1133785aec8e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoJGit 0.10.1 42/2142/2 v0.10.1
Matthias Sohn [Fri, 17 Dec 2010 00:38:13 +0000 (01:38 +0100)]
JGit 0.10.1

Change-Id: I4a46d35d354193e5d4f28ef7dfae75944be8ffcf
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoDirCacheCheckout: fix getToBeDeleted() 37/2137/1
Mathias Kinzler [Thu, 16 Dec 2010 07:41:36 +0000 (08:41 +0100)]
DirCacheCheckout: fix getToBeDeleted()

This wrongly returns the same as getConflicts()
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
Change-Id: Id37c625458fc5a9b3987f05b684620e24fdfe852

13 years agoMove TransferConfig to transport package 32/2132/1
Shawn O. Pearce [Thu, 16 Dec 2010 01:02:50 +0000 (17:02 -0800)]
Move TransferConfig to transport package

This doesn't belong in the main lib package.

Change-Id: Idb20bf5849138b34a7277250fe0795c2a1f22447
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoMerge "Do not rely on filemode differences in case of symbolic links"
Shawn Pearce [Wed, 15 Dec 2010 23:55:59 +0000 (18:55 -0500)]
Merge "Do not rely on filemode differences in case of symbolic links"

13 years agoFileBasedConfig: Use FileSnapshot for isOutdated() 17/2117/3
Shawn O. Pearce [Mon, 13 Dec 2010 22:19:02 +0000 (14:19 -0800)]
FileBasedConfig: Use FileSnapshot for isOutdated()

Relying only on the last modified time for a file can be tricky.
The "racy git" problem may cause some modifications to be missed.

Use the new FileSnapshot code to track when a configuration file
has been modified, and needs to be reloaded in memory.

Change-Id: Ib6312fdd3b2403eee5af3f8ae711294b0e5f9035
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoExtract pack directory last modified check code 14/2114/2
Shawn O. Pearce [Mon, 13 Dec 2010 20:23:07 +0000 (12:23 -0800)]
Extract pack directory last modified check code

Pulling the last modified checking logic out of ObjectDirectory
makes it possible to reuse this code for other files, such as
the $GIT_DIR/config or $GIT_DIR/packed-refs files.

Change-Id: If2f27a89fc3b7adde7e65ff40bbca5d55b98b772
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoSave StoredConfig after modifications 16/2116/2
Shawn O. Pearce [Mon, 13 Dec 2010 22:18:42 +0000 (14:18 -0800)]
Save StoredConfig after modifications

When the Config is changed, it should be saved back to its local
file.  This ensure that a future call to getConfig() won't wipe
out the edits that were just made.

Change-Id: Id46d3f85d1c9b377f63ef861b72824e1aa060eee
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoReduce calls to Repository.getConfig 15/2115/2
Shawn O. Pearce [Mon, 13 Dec 2010 22:18:05 +0000 (14:18 -0800)]
Reduce calls to Repository.getConfig

Each time getConfig() is called on FileRepository, it checks the
last modified time of both ~/.gitconfig and $GIT_DIR?config.  If
$GIT_DIR/config appears to have been modified, it is read back in
from disk and the current config is wiped out.

When mutating a configuration file, this may cause in-memory edits
to disappear.  To avoid that callers need to avoid calling getConfig
until after the configuration has been saved to disk.

Unfortunately the API is still horribly broken.  Configuration should
be modified only while a lock is held on the configuration file, very
similar to the way a ref is updated via its locking protocol.  But our
existing API is really broken for that so we'll have to defer cleaning
up the edit path for a future change.

Change-Id: I5888dd97bac20ddf60456c81ffc1eb8df04ef410
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoSupport GIT_SSH=tortoiseplink 30/2130/1
Shawn O. Pearce [Wed, 15 Dec 2010 18:17:57 +0000 (10:17 -0800)]
Support GIT_SSH=tortoiseplink

The tortoiseplink command does not understand -batch, even though
it smells like the putty plink command that does use it.  Don't add
-batch if GIT_SSH is tortoiseplink.

Change-Id: I638532a02faa2caf8c39d482094e7ff4f4ec7e78
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoCorrect plink -batch option 29/2129/1
Shawn O. Pearce [Wed, 15 Dec 2010 18:17:01 +0000 (10:17 -0800)]
Correct plink -batch option

When GIT_SSH is set to use plink, the correct option name is "-batch"
and not "--batch".  This was a typo introduced when we added support
for plink via GIT_SSH.

Change-Id: I391660e38f5d208bba11e3f2a8f25922de2af878
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoDo not rely on filemode differences in case of symbolic links 09/2109/2
Philipp Thun [Tue, 14 Dec 2010 10:31:41 +0000 (11:31 +0100)]
Do not rely on filemode differences in case of symbolic links

When checking whether a file in the working tree has been modified -
WorkingTreeIterator.isModified() - we should not trust the filemode
in case of symbolic links, but check the timestamp and also the
content, if requested. Without this fix symlinks will always be shown
in EGit as modified files on Windows systems.

Change-Id: I367c807df5a7e85e828ddacff7fee7901441f187
Signed-off-by: Philipp Thun <philipp.thun@sap.com>
13 years agoRemove remaining uses of FileWriter 12/2112/2
Shawn O. Pearce [Mon, 13 Dec 2010 18:57:26 +0000 (10:57 -0800)]
Remove remaining uses of FileWriter

FileWriter uses the platform default encoding, which might not
be UTF-8.  JGit prefers UTF-8 everywhere for string encodings,
so make the unit tests more predictable by ensuring use of UTF-8.

Change-Id: I75bb9f962ee230b73ca3a942bffd7a8a28674ba5
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoSimplify NoteParser use of prefix.length() 11/2111/2
Shawn O. Pearce [Mon, 13 Dec 2010 18:21:04 +0000 (10:21 -0800)]
Simplify NoteParser use of prefix.length()

Sasa pointed out we only ever use the length here, so instead of
holding onto the AbbreviatedObjectId, lets just hold onto the length
as a primitive int.

Change-Id: I2444f59f9fe5ddcaea4a3537d3f1064736ae3215
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
CC: Sasa Zivkov <zivkov@gmail.com>
13 years agoFix HTTP digest authentication 10/2110/1
Shawn O. Pearce [Mon, 13 Dec 2010 18:09:14 +0000 (10:09 -0800)]
Fix HTTP digest authentication

JGit's internal implementation of the HTTP digest authentication
method wasn't conforming to RFC 2617 (HTTP Authentication: Basic
and Digest Access Authentication), resulting in authentication
failures when connecting to a digest protected site.

The code now more accurately matches section 3.2.2 (The Authorization
Request Header) from the standards document.

Change-Id: If41b5c2cbdd59ddd6b2dea143f325e42cd58c395
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoFile utilities for creating directories 01/2101/5
Matthias Sohn [Fri, 10 Dec 2010 20:48:09 +0000 (21:48 +0100)]
File utilities for creating directories

The java.io.File methods for creating directories report failure by
returning false. To ease proper checking of return values provide
utility methods wrapping mkdir() and mkdirs() which throw IOException
on failure.

Also fix the tests to store test data under a trash folder and cleanup
after test.

Change-Id: I09c7f9909caf7e25feabda9d31e21ce154e7fcd5
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoDiffFormatter: Use IndexDiffFilter to speed up working tree 83/2083/2
Shawn O. Pearce [Wed, 8 Dec 2010 20:05:48 +0000 (12:05 -0800)]
DiffFormatter: Use IndexDiffFilter to speed up working tree

If DiffFormatter is asked to compare the index to the working tree,
it can go faster by using the cached stat information to compare
the two entries rather than relying on SHA-1 computation alone.

Change-Id: Icb21c15b8279ee8cee382e5e179e0cf8903aee4d
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoRebase: abort on unknown/unsupported command in git-rebase-todo 02/2102/1
Mathias Kinzler [Fri, 10 Dec 2010 08:44:51 +0000 (09:44 +0100)]
Rebase: abort on unknown/unsupported command in git-rebase-todo

This is needed to ensure interoperability with the command line: if
the git-rebase-todo file was created manually (by git rebase -i in the
command line), and any commands other than pick are used (reword,
edit, fixup, squash) JGit must abort as it does not understand these
commands yet.
The same is true if an unknown command is found (e.g. due to a typo);
this is the same behavior as shown by the command line.

Change-Id: I2322014f69460361f7fc09da223e8a5c31f100dd
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoMerge "IndexPack: Remove blob-streaming size threshold"
Shawn Pearce [Fri, 10 Dec 2010 00:33:58 +0000 (19:33 -0500)]
Merge "IndexPack: Remove blob-streaming size threshold"

13 years agoIndexPack: Remove blob-streaming size threshold 00/2100/1
roberto [Thu, 9 Dec 2010 23:40:34 +0000 (23:40 +0000)]
IndexPack: Remove blob-streaming size threshold

Always use streaming (for SHA-checksum & collision detection)
when indexing whole blobs, regardless of their size.

Positives:
* benefits of bugfix #312868 will apply to all runtimes, without
  additional conf for mem-constrained JVMs (5MB huge for some)
* no byte array allocation
  (re-uses readBuffer instead of allocating new full-size array)
* mildly better overall performance
  (given the usual blob-does-not-need-collision-checking case)
* removes unnecessary code

Negative:
* doubles the disk IO for a blob comparision
  (comparitively rare occurance)

I perf-tested a range of threshold sizes against a random selection
of packfiles I found on my harddrive, the results are here:

https://spreadsheets.google.com/ccc?key=tLCQElyyd2RKN9QevfvgwGQ&hl=en_GB#gid=1

My interpretation of the results is that the streaming size threshold
isn't beneficial (actually seems to be very slightly detrimental) -so
we should just get rid of it. This tallies with some of the comments
Shawn & I had for the default value of streamFileThreshold in the
review for I862afd4c:

http://egit.eclipse.org/r/#patch,sidebyside,2040,2,org.eclipse.jgit/src/org/eclipse/jgit/transport/IndexPack.java

The perf-test code is here: https://gist.github.com/735402
It's a bit scruffy but basically does 10 runs (in randomised order)
for each threshold size on various packfiles, waiting a second
between each pack-indexing to allow GC to catch up. I know it's not
perfect - proper perf testing is hard to do :-)

13 years agoMerge "Add option to skip deletion of non-existing files"
Chris Aniszczyk [Thu, 9 Dec 2010 23:31:48 +0000 (18:31 -0500)]
Merge "Add option to skip deletion of non-existing files"

13 years agoMerge "Add further unit tests for IndexDiffFilter"
Chris Aniszczyk [Thu, 9 Dec 2010 23:31:04 +0000 (18:31 -0500)]
Merge "Add further unit tests for IndexDiffFilter"

13 years agoMerge "Simplify logic in StrategySimpleTwoWayInCore"
Chris Aniszczyk [Thu, 9 Dec 2010 23:30:41 +0000 (18:30 -0500)]
Merge "Simplify logic in StrategySimpleTwoWayInCore"

13 years agoAdd option to skip deletion of non-existing files 99/2099/2
Matthias Sohn [Thu, 9 Dec 2010 23:21:23 +0000 (00:21 +0100)]
Add option to skip deletion of non-existing files

For convenience provide an option to skip deletion of non-existing
files. Also add some tests for deletion methods in FileUtils.

Change-Id: I33e355cfcdc19367d50208150ee49a4a06394890
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoAdd further unit tests for IndexDiffFilter 97/2097/1
Philipp Thun [Thu, 9 Dec 2010 19:34:53 +0000 (20:34 +0100)]
Add further unit tests for IndexDiffFilter

This change contains a bunch of unit tests for the newly introduced
IndexDiffFilter. With these tests the code coverage of
IndexDiffFilter.include() is now 100%, i.e. every special case is
tested at least once.

Change-Id: Ib248d1cd16084f9c8e099006af151814c63c5941
Signed-off-by: Philipp Thun <philipp.thun@sap.com>
13 years agoSimplify logic in StrategySimpleTwoWayInCore 96/2096/1
Shawn O. Pearce [Thu, 9 Dec 2010 18:54:01 +0000 (10:54 -0800)]
Simplify logic in StrategySimpleTwoWayInCore

Sasa and I were reviewing this code today and Sasa pointed out we
can simplify the conflict logic, as the two cases (subtree and file)
are logically identical.

Change-Id: Ie0d40b2dd15605785eff453a846b1d20a2d021fc
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Reviewed-by: Sasa Zivkov <zivkov@gmail.com>
13 years agoRebase: fix wrong update if original HEAD after Merge+Skip 95/2095/1
Mathias Kinzler [Thu, 9 Dec 2010 18:22:11 +0000 (19:22 +0100)]
Rebase: fix wrong update if original HEAD after Merge+Skip

Rebase would update the original HEAD to the wrong commit when
"skipping" the last commit after a merged commit.

Includes a test for the specific situation.

Change-Id: I087314b1834a3f11a4561f04ca5c21411d54d993
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoAdd a performance optimized variant of the ANY_DIFF filter 66/2066/5
Christian Halstrick [Thu, 9 Dec 2010 17:24:52 +0000 (18:24 +0100)]
Add a performance optimized variant of the ANY_DIFF filter

If a treewalk walks also over index and the workingtree then the
IndexDiffFilter filter can be used which works much faster then
the semantically equivalent ANY_DIFF filter. This is because this
filter can better avoid computing SHA-1 ids over the content of
working-tree files which is very costly.

This fix will significantly improve the performance of e.g.
EGit's commit dialog.

Change-Id: I2a51816f4ed9df2900c6307a54cd09f50004266f
Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
Signed-off-by: Philipp Thun <philipp.thun@sap.com>
13 years agoImplement rebase --continue and --skip 81/2081/3
Mathias Kinzler [Thu, 9 Dec 2010 15:10:21 +0000 (16:10 +0100)]
Implement rebase --continue and --skip

For --continue, the Rebase command asserts that there are no unmerged
paths in the current repository. Then it checks if a commit is needed.
If yes, the commit message and author are taken from the author_script
and message files, respectively, and a commit is performed before the
next step is applied.
For --skip, the workspace is reset to the current HEAD before applying
the next step.

Includes some tests and a refactoring that extracts Strings in the
code into constants.

Change-Id: I72d9968535727046e737ec20e23239fe79976179
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
13 years agoJGit Build: use jetty 7.1.6 93/2093/1
Jens Baumgart [Thu, 9 Dec 2010 09:42:05 +0000 (10:42 +0100)]
JGit Build: use jetty 7.1.6

Jetty 7.1.6 is used because this version is also available in P2.

Change-Id: I410fbca8592cac6e58c651c4d086573820e777a5
Signed-off-by: Jens Baumgart <jens.baumgart@sap.com>
13 years agoIndexDiff: Remove unnecessary changesExist flag 75/2075/2
Shawn O. Pearce [Wed, 8 Dec 2010 03:11:05 +0000 (19:11 -0800)]
IndexDiff: Remove unnecessary changesExist flag

Instead of setting a boolean when a difference record is found, return
false from diff() only if all of the collections are empty.  When all
of them are empty, no difference was found.

Change-Id: I555fef37adb764ce253481751071c53ad12cf416
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Use isModified() when comparing index-worktree 74/2074/2
Shawn O. Pearce [Wed, 8 Dec 2010 03:08:02 +0000 (19:08 -0800)]
IndexDiff: Use isModified() when comparing index-worktree

The isModified() is more efficient because it can skip over files that
are stat clean, without needing to scan them.

This is useful to efficently work on paths that were already staged
and thus differ between HEAD and the index, but not between the index
and the working tree.

Change-Id: I4418202e612f0571974e0898050d987c6c280966
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Clean up tree-index compare for staged files 73/2073/2
Shawn O. Pearce [Wed, 8 Dec 2010 03:05:07 +0000 (19:05 -0800)]
IndexDiff: Clean up tree-index compare for staged files

When comparing the ObjectIds for two tree entries its faster
to use the raw buffer compares over allocating ObjectIds and
then performing equals on their contents.

However, this also needs to consider the raw modes.  It is possible
for a path to change modes but not ObjectId (e.g. making a file
executable), and in this case its still a staged change to report back
to the caller.

Change-Id: I1a267254c04b3273a97f63c71d1e6718cd9d2fa8
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Fix getAssumeUnchanged() 72/2072/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:53:09 +0000 (18:53 -0800)]
IndexDiff: Fix getAssumeUnchanged()

If the caller really needs the list of files that are flagged as
assume-unchanged (aka assume-valid in the DirCache), we should give
them the complete list and not just those that we wrongly identified
as being modified during diff().

This change is necessary because diff() is slightly broken and is
discovering differences on files that it shouldn't have considered.

Change-Id: Ibe464c1a0e51c19dc287a4bc5348b7b07f4d840b
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Correct Javadoc for getUntracked() method 71/2071/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:53:00 +0000 (18:53 -0800)]
IndexDiff: Correct Javadoc for getUntracked() method

Change-Id: I5f26c40dec5f0e4a47413af033dbedb0c252dd20
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Remove always true not-subtree check 70/2070/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:45:11 +0000 (18:45 -0800)]
IndexDiff: Remove always true not-subtree check

The TreeWalk is configured to be recursive, which means subtrees are
never presented to the application.  Therefore the working tree file
mode can never be a subtree/subdirectory at this point in the code.

Change-Id: Ie842ddc147957d09205c0d2ce87b25c566862fd9
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Always use TreeWalk.getPathString() 69/2069/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:42:10 +0000 (18:42 -0800)]
IndexDiff: Always use TreeWalk.getPathString()

Instead of asking the individual iterators for their path string, use
the TreeWalk's generic getPathString() method.  Its just as fast
because it uses the path of the current matching iterator.

Change-Id: I9b827fbbafce1c78f09d5527cdc64fbe9022a16e
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexDiff: Simplify allocation of filter list 68/2068/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:27:59 +0000 (18:27 -0800)]
IndexDiff: Simplify allocation of filter list

We add either 3 or 4 filters.  If we are adding only 3 filters,
allocating the array for 4 isn't a huge waste of memory, but it
does simplify our code.

Change-Id: I7df29b414f6d5cfcf533edb1405083e6fcec32cf
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoClarify WorkingTreeOptions and filemode usage 67/2067/2
Shawn O. Pearce [Wed, 8 Dec 2010 02:13:36 +0000 (18:13 -0800)]
Clarify WorkingTreeOptions and filemode usage

To improve runtime performance, caching the WorkingTreeOptions inside
of the Config object using the Config.SectionParser API allows
the WorkingTreeOptions to be accessed more efficiently whenever a
FileTreeIterator is constructed for the Repository.

Instead of passing the filemode handling option into isModified(),
the WorkingTreeIterator should always honor whatever setting has
been configured in this repository, as defined by its own copy of
the WorkingTreeOptions.  This simplifies all of the callers as they
no longer need to lookup core.filemode on their own.

A few locations were changed from always using a hardcoded "true"
on the file mode to passing what is actually configured in the
repository.  This is a behavior change, but corrects what should be
considered to be bugs as the core.filemode variable wasn't always
being used.

Change-Id: Idb176736fa0dc97af372f1d652a94ecc72fb457c
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoIndexPack: Use streaming for large whole blobs 40/2040/5
Shawn O. Pearce [Tue, 7 Dec 2010 22:05:40 +0000 (14:05 -0800)]
IndexPack: Use streaming for large whole blobs

When indexing large blobs that are stored whole (non-delta form),
avoid allocating the entire blob in memory and instead stream it
through the SHA-1 checksum computation.  This reduces the size
of memory required by IndexPack when processing very big blobs,
such as a 500 MiB uncompressable binary.

If the large blob already exists in the local repository, its
contents needs to be compared byte-for-byte after the entire pack
has been indexed, to ensure there isn't an unexpected SHA-1 collision
which may result in later data corruption.  This compare is performed
as a streaming compare, again avoiding the large object allocation.

This change doesn't improve on memory utilization for large objects
stored as deltas.  The change also doesn't improve handling for
any large commits, trees or annotated tags.  There isn't much to
be done here for those objects, because they need to be passed down
to the ObjectChecker as a byte[].  Fortunately it isn't common for
these object types to be that large,

Bug: 312868
Change-Id: I862afd4cb78013ee033d4ec68c067b1774a05be8
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
CC: Roberto Tyley <roberto.tyley@guardian.co.uk>
13 years agoMerge "Refactor IndexPack to use InputStream for inflation"
Chris Aniszczyk [Wed, 8 Dec 2010 16:19:51 +0000 (11:19 -0500)]
Merge "Refactor IndexPack to use InputStream for inflation"

13 years agoRemoved unread parameters 65/2065/2
Christian Halstrick [Mon, 6 Dec 2010 09:03:39 +0000 (10:03 +0100)]
Removed unread parameters

Some method parameters in WorkingTreeIterator are never used. Remove
them. Especially the removal of the FS parameter in isModified()
simplifies upcoming performance optimizations.

Change-Id: I7c449589283a4a6b6e23f2586cd784febdca8bcd
Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoIntroduce http test bundle 76/2076/3
Jens Baumgart [Wed, 8 Dec 2010 15:20:28 +0000 (16:20 +0100)]
Introduce http test bundle

Introduce a http test bundle to make this functionality available for
EGit tests. A simple http server class is provided. The jetty version
was updated to a version that is also available via p2 (needed in EGit
UI tests).

Change-Id: I13bfc4c6c47e27d8f97d3e9752347d6d23e553d4
Signed-off-by: Jens Baumgart <jens.baumgart@sap.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoRemove empty iterator from TreeWalk 64/2064/1
Shawn O. Pearce [Wed, 8 Dec 2010 00:49:51 +0000 (16:49 -0800)]
Remove empty iterator from TreeWalk

Its confusing that a new TreeWalk() needs to have reset() invoked
on it before addTree().  This is a historical accident caused by
how TreeWalk was abused within ObjectWalk.

Drop the initial empty tree from the TreeWalk and thus remove a
number of pointless reset() operations from unit tests and some of
the internal JGit code.

Existing application code which is still calling reset() will simply
be incurring a few unnecessary field assignments, but they should
consider cleaning up their code in the future.

Change-Id: I434e94ffa43491019e7dff52ca420a4d2245f48b
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
13 years agoRefactor IndexPack to use InputStream for inflation 63/2063/2
Shawn O. Pearce [Tue, 7 Dec 2010 20:45:52 +0000 (12:45 -0800)]
Refactor IndexPack to use InputStream for inflation

By inflating with an InputStream like API, it is possible to stream
through large objects rather than allocating the entire thing as
a byte[].  This change only refactors the inflation code within
IndexPack to use a streaming interface.

Change-Id: I5a84b486901c2cf63fa6a3306dd5fb5c53b4056b
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
CC: Roberto Tyley <roberto.tyley@guardian.co.uk>
13 years ago[findbugs] Do not ignore exceptional return value 55/2055/4
Matthias Sohn [Mon, 6 Dec 2010 23:58:19 +0000 (00:58 +0100)]
[findbugs] Do not ignore exceptional return value

java.io.File.delete() reports failure as an exceptional
return value false. Fix the code which silently ignored
this exceptional return value. Also remove some duplicate
deletion helper methods.

Change-Id: I80ed20ca1f07a2bc6e779957a4ad0c713789c5be
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoProvide file utilities for file deletion 54/2054/4
Matthias Sohn [Mon, 6 Dec 2010 23:45:58 +0000 (00:45 +0100)]
Provide file utilities for file deletion

Provide file helper methods in a reusable utility class to
replace many local implementations. java.io.File has some
methods reporting failure by returning false. We prefer to
throw IOException on failure so that callers can't forget
checking the return value.

Change-Id: I430c77b5d2cffcf8b47584326ad4817a7291845e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
13 years agoMerge "Clean up Init API"
Chris Aniszczyk [Tue, 7 Dec 2010 15:57:36 +0000 (10:57 -0500)]
Merge "Clean up Init API"

13 years agoClean up Init API 58/2058/1
Chris Aniszczyk [Tue, 7 Dec 2010 15:13:57 +0000 (09:13 -0600)]
Clean up Init API

Static accessors should come before a constructor.

Change-Id: Iee1051ce4f2038f19a08741e7a3a33f06a97a3c0
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoAvoid NPE in Init 57/2057/1
Chris Aniszczyk [Tue, 7 Dec 2010 15:10:07 +0000 (09:10 -0600)]
Avoid NPE in Init

We should grab the repository directory from the command to
avoid an NPE if no git directory is passed in via the CLI.

Change-Id: I649467c6d84bbc0d26a070d0d4ff1e6f81fd5bad
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
13 years agoMerge "Rebase Interoperability third part: handle stop upon conflict"
Chris Aniszczyk [Tue, 7 Dec 2010 14:34:25 +0000 (09:34 -0500)]
Merge "Rebase Interoperability third part: handle stop upon conflict"

13 years agoMerge "Rebase Interoperability second part: fix "pop steps""
Chris Aniszczyk [Tue, 7 Dec 2010 14:19:35 +0000 (09:19 -0500)]
Merge "Rebase Interoperability second part: fix "pop steps""

13 years agoRebase Interoperability third part: handle stop upon conflict 86/1986/2
Mathias Kinzler [Tue, 7 Dec 2010 12:34:44 +0000 (13:34 +0100)]
Rebase Interoperability third part: handle stop upon conflict

There are some files that need to exist so that the CLI can continue
after the rebase has been stopped due to conflicts

Change-Id: I3cb4dc98609c059bf0cf9fd5f9e47a9c681cea2d
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>
13 years agoMerge "LockFile.commit: retry renaming"
Shawn Pearce [Mon, 6 Dec 2010 23:55:18 +0000 (18:55 -0500)]
Merge "LockFile.commit: retry renaming"

13 years agoMerge "Update Init to use InitCommand"
Chris Aniszczyk [Mon, 6 Dec 2010 22:09:14 +0000 (17:09 -0500)]
Merge "Update Init to use InitCommand"

13 years agoMerge "Add InitCommand"
Chris Aniszczyk [Mon, 6 Dec 2010 22:08:55 +0000 (17:08 -0500)]
Merge "Add InitCommand"

13 years agoMerge "Add debugging toString to TreeFormatter"
Chris Aniszczyk [Mon, 6 Dec 2010 15:11:11 +0000 (10:11 -0500)]
Merge "Add debugging toString to TreeFormatter"

13 years agoMerge "Add insert(TreeFormatter) to ObjectInserter"
Chris Aniszczyk [Mon, 6 Dec 2010 15:10:58 +0000 (10:10 -0500)]
Merge "Add insert(TreeFormatter) to ObjectInserter"

13 years agoMerge "Add toByteArray to CommitBuilder, TreeBuilder"
Chris Aniszczyk [Mon, 6 Dec 2010 15:10:41 +0000 (10:10 -0500)]
Merge "Add toByteArray to CommitBuilder, TreeBuilder"