Browse Source
Blobs that are too large to read as a single byte array should be accessed through an InputStream based interface instead, allowing the application to walk through the data stream incrementally. Define the basic interface to support streaming contents, but don't implement it yet for the file based backend. Change-Id: If9e4442e9ef4ed52c3e0f1af9398199a73145516 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>stable-0.9
Shawn O. Pearce
15 years ago
5 changed files with 318 additions and 2 deletions
@ -0,0 +1,67 @@
|
||||
/* |
||||
* Copyright (C) 2010, Google Inc. |
||||
* and other copyright owners as documented in the project's IP log. |
||||
* |
||||
* This program and the accompanying materials are made available |
||||
* under the terms of the Eclipse Distribution License v1.0 which |
||||
* accompanies this distribution, is reproduced below, and is |
||||
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||
* |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or |
||||
* without modification, are permitted provided that the following |
||||
* conditions are met: |
||||
* |
||||
* - Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* - Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following |
||||
* disclaimer in the documentation and/or other materials provided |
||||
* with the distribution. |
||||
* |
||||
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||
* names of its contributors may be used to endorse or promote |
||||
* products derived from this software without specific prior |
||||
* written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
|
||||
package org.eclipse.jgit.errors; |
||||
|
||||
import org.eclipse.jgit.lib.ObjectId; |
||||
|
||||
/** An object is too big to load into memory as a single byte array. */ |
||||
public class LargeObjectException extends RuntimeException { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** Create a large object exception, where the object isn't known. */ |
||||
public LargeObjectException() { |
||||
// Do nothing.
|
||||
} |
||||
|
||||
/** |
||||
* Create a large object exception, naming the object that is too big. |
||||
* |
||||
* @param id |
||||
* identity of the object that is too big to be loaded as a byte |
||||
* array in this JVM. |
||||
*/ |
||||
public LargeObjectException(ObjectId id) { |
||||
super(id.name()); |
||||
} |
||||
} |
@ -0,0 +1,137 @@
|
||||
/* |
||||
* Copyright (C) 2010, Google Inc. |
||||
* and other copyright owners as documented in the project's IP log. |
||||
* |
||||
* This program and the accompanying materials are made available |
||||
* under the terms of the Eclipse Distribution License v1.0 which |
||||
* accompanies this distribution, is reproduced below, and is |
||||
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||
* |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or |
||||
* without modification, are permitted provided that the following |
||||
* conditions are met: |
||||
* |
||||
* - Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* - Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following |
||||
* disclaimer in the documentation and/or other materials provided |
||||
* with the distribution. |
||||
* |
||||
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||
* names of its contributors may be used to endorse or promote |
||||
* products derived from this software without specific prior |
||||
* written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
|
||||
package org.eclipse.jgit.lib; |
||||
|
||||
import java.io.InputStream; |
||||
|
||||
/** Stream of data coming from an object loaded by {@link ObjectLoader}. */ |
||||
public abstract class ObjectStream extends InputStream { |
||||
/** @return Git object type, see {@link Constants}. */ |
||||
public abstract int getType(); |
||||
|
||||
/** @return total size of object in bytes */ |
||||
public abstract long getSize(); |
||||
|
||||
/** |
||||
* Simple stream around the cached byte array created by a loader. |
||||
* <p> |
||||
* ObjectLoader implementations can use this stream type when the object's |
||||
* content is small enough to be accessed as a single byte array, but the |
||||
* application has still requested it in stream format. |
||||
*/ |
||||
public static class SmallStream extends ObjectStream { |
||||
private final int type; |
||||
|
||||
private final byte[] data; |
||||
|
||||
private int ptr; |
||||
|
||||
private int mark; |
||||
|
||||
/** |
||||
* Create the stream from an existing loader's cached bytes. |
||||
* |
||||
* @param loader |
||||
* the loader. |
||||
*/ |
||||
public SmallStream(ObjectLoader loader) { |
||||
this.type = loader.getType(); |
||||
this.data = loader.getCachedBytes(); |
||||
} |
||||
|
||||
@Override |
||||
public int getType() { |
||||
return type; |
||||
} |
||||
|
||||
@Override |
||||
public long getSize() { |
||||
return data.length; |
||||
} |
||||
|
||||
@Override |
||||
public int available() { |
||||
return data.length - ptr; |
||||
} |
||||
|
||||
@Override |
||||
public long skip(long n) { |
||||
int s = (int) Math.min(available(), Math.max(0, n)); |
||||
ptr += s; |
||||
return s; |
||||
} |
||||
|
||||
@Override |
||||
public int read() { |
||||
if (ptr == data.length) |
||||
return -1; |
||||
return data[ptr++] & 0xff; |
||||
} |
||||
|
||||
@Override |
||||
public int read(byte[] b, int off, int len) { |
||||
if (ptr == data.length) |
||||
return -1; |
||||
int n = Math.min(available(), len); |
||||
System.arraycopy(data, ptr, b, off, n); |
||||
ptr += n; |
||||
return n; |
||||
} |
||||
|
||||
@Override |
||||
public boolean markSupported() { |
||||
return true; |
||||
} |
||||
|
||||
@Override |
||||
public void mark(int readlimit) { |
||||
mark = ptr; |
||||
} |
||||
|
||||
@Override |
||||
public void reset() { |
||||
ptr = mark; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue