]> source.dussan.org Git - jgit.git/commitdiff
Fix checking out large files 33/2033/3
authorShawn O. Pearce <spearce@spearce.org>
Fri, 3 Dec 2010 21:35:46 +0000 (13:35 -0800)
committerShawn O. Pearce <spearce@spearce.org>
Sat, 4 Dec 2010 00:37:56 +0000 (16:37 -0800)
DirCacheCheckout needs to use ObjectLoader.copyTo to avoid loading the
complete content of a large file into the JVM heap.

Bug: 321097
Change-Id: I967590b6f233fd1c83d873075db01d653208b3b9
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
CC: Chris Aniszczyk <caniszczyk@gmail.com>
CC: Christian Halstrick <christian.halstrick@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheCheckout.java

index 07f97d9b68c042721b69381844c337fb55ed6fce..e4d5b7698835ad58be7ef605f1c8670947d0894f 100644 (file)
@@ -45,8 +45,6 @@ package org.eclipse.jgit.dircache;
 import java.io.File;
 import java.io.FileOutputStream;
 import java.io.IOException;
-import java.nio.ByteBuffer;
-import java.nio.channels.FileChannel;
 import java.text.MessageFormat;
 import java.util.ArrayList;
 import java.util.HashMap;
@@ -59,7 +57,6 @@ import org.eclipse.jgit.errors.CorruptObjectException;
 import org.eclipse.jgit.errors.IncorrectObjectTypeException;
 import org.eclipse.jgit.errors.IndexWriteException;
 import org.eclipse.jgit.errors.MissingObjectException;
-import org.eclipse.jgit.lib.Constants;
 import org.eclipse.jgit.lib.FileMode;
 import org.eclipse.jgit.lib.ObjectId;
 import org.eclipse.jgit.lib.ObjectLoader;
@@ -836,21 +833,11 @@ public class DirCacheCheckout {
        public static void checkoutEntry(final Repository repo, File f, DirCacheEntry entry,
                        boolean config_filemode) throws IOException {
                ObjectLoader ol = repo.open(entry.getObjectId());
-               if (ol == null)
-                       throw new MissingObjectException(entry.getObjectId(),
-                                       Constants.TYPE_BLOB);
-
-               byte[] bytes = ol.getCachedBytes();
-
                File parentDir = f.getParentFile();
                File tmpFile = File.createTempFile("._" + f.getName(), null, parentDir);
-               FileChannel channel = new FileOutputStream(tmpFile).getChannel();
-               ByteBuffer buffer = ByteBuffer.wrap(bytes);
+               FileOutputStream channel = new FileOutputStream(tmpFile);
                try {
-                       int j = channel.write(buffer);
-                       if (j != bytes.length)
-                               throw new IOException(MessageFormat.format(
-                                               JGitText.get().couldNotWriteFile, tmpFile));
+                       ol.copyTo(channel);
                } finally {
                        channel.close();
                }