File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackParser.java |
220 |
org/eclipse/jgit/internal/storage/file/ObjectDirectoryPackParser.java |
224 |
}
@Override
protected void onBeginWholeObject(long streamPosition, int type,
long inflatedSize) throws IOException {
crc.reset();
}
@Override
protected void onEndWholeObject(PackedObjectInfo info) throws IOException {
info.setCRC((int) crc.getValue());
}
@Override
protected void onBeginOfsDelta(long streamPosition,
long baseStreamPosition, long inflatedSize) throws IOException {
crc.reset();
}
@Override
protected void onBeginRefDelta(long streamPosition, AnyObjectId baseId,
long inflatedSize) throws IOException {
crc.reset();
}
@Override
protected UnresolvedDelta onEndDelta() throws IOException {
UnresolvedDelta delta = new UnresolvedDelta();
delta.setCRC((int) crc.getValue());
return delta;
}
@Override
protected void onInflatedObjectData(PackedObjectInfo obj, int typeCode,
byte[] data) throws IOException {
// DfsPackParser ignores this event.
}
@Override
protected void onObjectHeader(Source src, byte[] raw, int pos, int len)
throws IOException {
crc.update(raw, pos, len);
}
@Override
protected void onObjectData(Source src, byte[] raw, int pos, int len)
throws IOException {
crc.update(raw, pos, len);
}
@Override
protected void onStoreStream(byte[] raw, int pos, int len)
throws IOException { |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackFile.java |
541 |
org/eclipse/jgit/internal/storage/file/PackFile.java |
392 |
int c = buf[0] & 0xff;
final int typeCode = (c >> 4) & 7;
long inflatedLength = c & 15;
int shift = 4;
int headerCnt = 1;
while ((c & 0x80) != 0) {
c = buf[headerCnt++] & 0xff;
inflatedLength += ((long) (c & 0x7f)) << shift;
shift += 7;
}
if (typeCode == Constants.OBJ_OFS_DELTA) {
do {
c = buf[headerCnt++] & 0xff;
} while ((c & 128) != 0);
if (validate) {
assert(crc1 != null && crc2 != null);
crc1.update(buf, 0, headerCnt);
crc2.update(buf, 0, headerCnt);
}
} else if (typeCode == Constants.OBJ_REF_DELTA) {
if (validate) {
assert(crc1 != null && crc2 != null);
crc1.update(buf, 0, headerCnt);
crc2.update(buf, 0, headerCnt);
}
readFully(src.offset + headerCnt, buf, 0, 20, ctx); |
File |
Line |
org/eclipse/jgit/internal/storage/pack/BinaryDelta.java |
169 |
org/eclipse/jgit/internal/storage/pack/BinaryDelta.java |
266 |
while (deltaPtr < delta.length) {
final int cmd = delta[deltaPtr++] & 0xff;
if ((cmd & 0x80) != 0) {
// Determine the segment of the base which should
// be copied into the output. The segment is given
// as an offset and a length.
//
int copyOffset = 0;
if ((cmd & 0x01) != 0)
copyOffset = delta[deltaPtr++] & 0xff;
if ((cmd & 0x02) != 0)
copyOffset |= (delta[deltaPtr++] & 0xff) << 8;
if ((cmd & 0x04) != 0)
copyOffset |= (delta[deltaPtr++] & 0xff) << 16;
if ((cmd & 0x08) != 0)
copyOffset |= (delta[deltaPtr++] & 0xff) << 24;
int copySize = 0;
if ((cmd & 0x10) != 0)
copySize = delta[deltaPtr++] & 0xff;
if ((cmd & 0x20) != 0)
copySize |= (delta[deltaPtr++] & 0xff) << 8;
if ((cmd & 0x40) != 0)
copySize |= (delta[deltaPtr++] & 0xff) << 16;
if (copySize == 0)
copySize = 0x10000; |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsInserter.java |
373 |
org/eclipse/jgit/internal/storage/file/PackInserter.java |
409 |
}
void beginObject(int objectType, long length) throws IOException {
crc32.reset();
deflater.reset();
write(hdrBuf, 0, encodeTypeSize(objectType, length));
}
private int encodeTypeSize(int type, long rawLength) {
long nextLength = rawLength >>> 4;
hdrBuf[0] = (byte) ((nextLength > 0 ? 0x80 : 0x00) | (type << 4) | (rawLength & 0x0F));
rawLength = nextLength;
int n = 1;
while (rawLength > 0) {
nextLength >>>= 7;
hdrBuf[n++] = (byte) ((nextLength > 0 ? 0x80 : 0x00) | (rawLength & 0x7F));
rawLength = nextLength;
}
return n;
}
@Override
public void write(final int b) throws IOException {
hdrBuf[0] = (byte) b;
write(hdrBuf, 0, 1);
}
@Override
public void write(byte[] data, int off, int len) throws IOException {
crc32.update(data, off, len); |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackFile.java |
978 |
org/eclipse/jgit/internal/storage/file/PackFile.java |
1006 |
readFully(pos, ib, 0, 20, ctx);
int c = ib[0] & 0xff;
final int type = (c >> 4) & 7;
long sz = c & 15;
int shift = 4;
int p = 1;
while ((c & 0x80) != 0) {
c = ib[p++] & 0xff;
sz += ((long) (c & 0x7f)) << shift;
shift += 7;
}
long deltaAt;
switch (type) {
case Constants.OBJ_COMMIT:
case Constants.OBJ_TREE:
case Constants.OBJ_BLOB:
case Constants.OBJ_TAG:
return sz;
case Constants.OBJ_OFS_DELTA:
c = ib[p++] & 0xff;
while ((c & 128) != 0)
c = ib[p++] & 0xff;
deltaAt = pos + p;
break;
case Constants.OBJ_REF_DELTA:
deltaAt = pos + p + 20;
break;
default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, Integer.valueOf(type)));
}
try {
return BinaryDelta.getResultSize(getDeltaHeader(ctx, deltaAt)); |
File |
Line |
org/eclipse/jgit/revwalk/filter/AndRevFilter.java |
79 |
org/eclipse/jgit/revwalk/filter/OrRevFilter.java |
77 |
return new Binary(a, b);
}
/**
* Create a filter around many filters, all of which must match.
*
* @param list
* list of filters to match against. Must contain at least 2
* filters.
* @return a filter that must match all input filters.
*/
public static RevFilter create(final RevFilter[] list) {
if (list.length == 2)
return create(list[0], list[1]);
if (list.length < 2)
throw new IllegalArgumentException(JGitText.get().atLeastTwoFiltersNeeded);
final RevFilter[] subfilters = new RevFilter[list.length];
System.arraycopy(list, 0, subfilters, 0, list.length);
return new List(subfilters);
}
/**
* Create a filter around many filters, all of which must match.
*
* @param list
* list of filters to match against. Must contain at least 2
* filters.
* @return a filter that must match all input filters.
*/
public static RevFilter create(final Collection<RevFilter> list) {
if (list.size() < 2)
throw new IllegalArgumentException(JGitText.get().atLeastTwoFiltersNeeded);
final RevFilter[] subfilters = new RevFilter[list.size()];
list.toArray(subfilters);
if (subfilters.length == 2)
return create(subfilters[0], subfilters[1]);
return new List(subfilters);
}
private static class Binary extends AndRevFilter { |
File |
Line |
org/eclipse/jgit/treewalk/filter/AndTreeFilter.java |
78 |
org/eclipse/jgit/treewalk/filter/OrTreeFilter.java |
76 |
return new Binary(a, b);
}
/**
* Create a filter around many filters, all of which must match.
*
* @param list
* list of filters to match against. Must contain at least 2
* filters.
* @return a filter that must match all input filters.
*/
public static TreeFilter create(final TreeFilter[] list) {
if (list.length == 2)
return create(list[0], list[1]);
if (list.length < 2)
throw new IllegalArgumentException(JGitText.get().atLeastTwoFiltersNeeded);
final TreeFilter[] subfilters = new TreeFilter[list.length];
System.arraycopy(list, 0, subfilters, 0, list.length);
return new List(subfilters);
}
/**
* Create a filter around many filters, all of which must match.
*
* @param list
* list of filters to match against. Must contain at least 2
* filters.
* @return a filter that must match all input filters.
*/
public static TreeFilter create(final Collection<TreeFilter> list) {
if (list.size() < 2)
throw new IllegalArgumentException(JGitText.get().atLeastTwoFiltersNeeded);
final TreeFilter[] subfilters = new TreeFilter[list.size()];
list.toArray(subfilters);
if (subfilters.length == 2)
return create(subfilters[0], subfilters[1]);
return new List(subfilters);
}
private static class Binary extends AndTreeFilter { |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackFile.java |
927 |
org/eclipse/jgit/internal/storage/file/PackFile.java |
953 |
readFully(pos, ib, 0, 20, ctx);
int c = ib[0] & 0xff;
final int type = (c >> 4) & 7;
switch (type) {
case Constants.OBJ_COMMIT:
case Constants.OBJ_TREE:
case Constants.OBJ_BLOB:
case Constants.OBJ_TAG:
return type;
case Constants.OBJ_OFS_DELTA: {
int p = 1;
while ((c & 0x80) != 0)
c = ib[p++] & 0xff;
c = ib[p++] & 0xff;
long ofs = c & 127;
while ((c & 128) != 0) {
ofs += 1;
c = ib[p++] & 0xff;
ofs <<= 7;
ofs += (c & 127);
}
pos = pos - ofs;
continue;
}
case Constants.OBJ_REF_DELTA: {
int p = 1;
while ((c & 0x80) != 0)
c = ib[p++] & 0xff;
readFully(pos + p, ib, 0, 20, ctx); |
File |
Line |
org/eclipse/jgit/api/ResetCommand.java |
370 |
org/eclipse/jgit/api/StashApplyCommand.java |
307 |
walk.addTree(new EmptyTreeIterator());
walk.addTree(new DirCacheIterator(dc));
walk.setRecursive(true);
while (walk.next()) {
AbstractTreeIterator cIter = walk.getTree(0,
AbstractTreeIterator.class);
if (cIter == null) {
// Not in commit, don't add to new index
continue;
}
final DirCacheEntry entry = new DirCacheEntry(walk.getRawPath());
entry.setFileMode(cIter.getEntryFileMode());
entry.setObjectIdFromRaw(cIter.idBuffer(), cIter.idOffset());
DirCacheIterator dcIter = walk.getTree(1,
DirCacheIterator.class);
if (dcIter != null && dcIter.idEqual(cIter)) {
DirCacheEntry indexEntry = dcIter.getDirCacheEntry();
entry.setLastModified(indexEntry.getLastModified());
entry.setLength(indexEntry.getLength());
}
builder.add(entry);
}
builder.commit();
} finally {
dc.unlock();
}
}
private void checkoutIndex(ObjectId commitTree) throws IOException, |
File |
Line |
org/eclipse/jgit/internal/storage/file/PackIndexV1.java |
208 |
org/eclipse/jgit/internal/storage/file/PackIndexV2.java |
257 |
int low = 0;
do {
int p = (low + high) >>> 1;
final int cmp = id.prefixCompare(data, idOffset(p));
if (cmp < 0)
high = p;
else if (cmp == 0) {
// We may have landed in the middle of the matches. Move
// backwards to the start of matches, then walk forwards.
//
while (0 < p && id.prefixCompare(data, idOffset(p - 1)) == 0)
p--;
for (; p < max && id.prefixCompare(data, idOffset(p)) == 0; p++) {
matches.add(ObjectId.fromRaw(data, idOffset(p)));
if (matches.size() > matchLimit)
break;
}
return;
} else
low = p + 1;
} while (low < high);
}
private static int idOffset(int mid) { |
File |
Line |
org/eclipse/jgit/api/AddNoteCommand.java |
127 |
org/eclipse/jgit/api/RemoveNoteCommand.java |
113 |
return this;
}
private void commitNoteMap(RevWalk walk, NoteMap map,
RevCommit notesCommit,
ObjectInserter inserter,
String msg)
throws IOException {
// commit the note
CommitBuilder builder = new CommitBuilder();
builder.setTreeId(map.writeTree(inserter));
builder.setAuthor(new PersonIdent(repo));
builder.setCommitter(builder.getAuthor());
builder.setMessage(msg);
if (notesCommit != null)
builder.setParentIds(notesCommit);
ObjectId commit = inserter.insert(builder);
inserter.flush();
RefUpdate refUpdate = repo.updateRef(notesRef);
if (notesCommit != null)
refUpdate.setExpectedOldObjectId(notesCommit);
else
refUpdate.setExpectedOldObjectId(ObjectId.zeroId());
refUpdate.setNewObjectId(commit);
refUpdate.update(walk);
}
/**
* @param notesRef
* the ref to read notes from. Note, the default value of
* {@link Constants#R_NOTES_COMMITS} will be used if nothing is
* set
* @return {@code this}
*
* @see Constants#R_NOTES_COMMITS
*/
public AddNoteCommand setNotesRef(String notesRef) { |
File |
Line |
org/eclipse/jgit/revwalk/filter/AuthorRevFilter.java |
84 |
org/eclipse/jgit/revwalk/filter/CommitterRevFilter.java |
84 |
final int b = RawParseUtils.author(raw, 0);
if (b < 0)
return RawCharSequence.EMPTY;
final int e = RawParseUtils.nextLF(raw, b, '>');
return new RawCharSequence(raw, b, e);
}
private static class PatternSearch extends PatternMatchRevFilter {
PatternSearch(final String patternText) {
super(patternText, true, true, Pattern.CASE_INSENSITIVE);
}
@Override
protected CharSequence text(final RevCommit cmit) {
return textFor(cmit);
}
@Override
public RevFilter clone() {
return new PatternSearch(pattern());
}
}
private static class SubStringSearch extends SubStringRevFilter {
SubStringSearch(final String patternText) {
super(patternText);
}
@Override
protected RawCharSequence text(final RevCommit cmit) {
return textFor(cmit);
}
}
} |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackFile.java |
656 |
org/eclipse/jgit/internal/storage/file/PackFile.java |
508 |
Long.valueOf(src.offset), getFileName()));
corruptObject.initCause(dataFormat);
StoredObjectRepresentationNotAvailableException gone;
gone = new StoredObjectRepresentationNotAvailableException(src);
gone.initCause(corruptObject);
throw gone;
} catch (IOException ioError) {
StoredObjectRepresentationNotAvailableException gone;
gone = new StoredObjectRepresentationNotAvailableException(src);
gone.initCause(ioError);
throw gone;
}
if (quickCopy != null) {
// The entire object fits into a single byte array window slice,
// and we have it pinned. Write this out without copying.
//
out.writeHeader(src, inflatedLength);
quickCopy.write(out, dataOffset, (int) dataLength);
} else if (dataLength <= buf.length) {
// Tiny optimization: Lots of objects are very small deltas or
// deflated commits that are likely to fit in the copy buffer.
//
if (!validate) {
long pos = dataOffset;
long cnt = dataLength;
while (cnt > 0) {
final int n = (int) Math.min(cnt, buf.length);
readFully(pos, buf, 0, n, ctx); |
File |
Line |
org/eclipse/jgit/revwalk/FIFORevQueue.java |
130 |
org/eclipse/jgit/revwalk/LIFORevQueue.java |
94 |
tail = null;
free.clear();
}
@Override
boolean everbodyHasFlag(final int f) {
for (Block b = head; b != null; b = b.next) {
for (int i = b.headIndex; i < b.tailIndex; i++)
if ((b.commits[i].flags & f) == 0)
return false;
}
return true;
}
@Override
boolean anybodyHasFlag(final int f) {
for (Block b = head; b != null; b = b.next) {
for (int i = b.headIndex; i < b.tailIndex; i++)
if ((b.commits[i].flags & f) != 0)
return true;
}
return false;
} |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsInserter.java |
165 |
org/eclipse/jgit/internal/storage/file/PackInserter.java |
164 |
byte[] buf = insertBuffer(len);
if (len <= buf.length) {
IO.readFully(in, buf, 0, (int) len);
return insert(type, buf, 0, (int) len);
}
long offset = beginObject(type, len);
SHA1 md = digest();
md.update(Constants.encodedTypeString(type));
md.update((byte) ' ');
md.update(Constants.encodeASCII(len));
md.update((byte) 0);
while (0 < len) {
int n = in.read(buf, 0, (int) Math.min(buf.length, len));
if (n <= 0) |
File |
Line |
org/eclipse/jgit/util/RawParseUtils.java |
209 |
org/eclipse/jgit/util/RawParseUtils.java |
263 |
int r = 0;
int sign = 0;
try {
final int sz = b.length;
while (ptr < sz && b[ptr] == ' ')
ptr++;
if (ptr >= sz)
return 0;
switch (b[ptr]) {
case '-':
sign = -1;
ptr++;
break;
case '+':
ptr++;
break;
}
while (ptr < sz) {
final byte v = digits10[b[ptr]];
if (v < 0)
break;
r = (r * 10) + v;
ptr++;
}
} catch (ArrayIndexOutOfBoundsException e) {
// Not a valid digit.
}
if (ptrResult != null)
ptrResult.value = ptr;
return sign < 0 ? -r : r;
}
/**
* Parse a base 10 numeric from a sequence of ASCII digits into a long.
* <p>
* Digit sequences can begin with an optional run of spaces before the
* sequence, and may start with a '+' or a '-' to indicate sign position.
* Any other characters will cause the method to stop and return the current
* result to the caller.
*
* @param b
* buffer to scan.
* @param ptr
* position within buffer to start parsing digits at.
* @param ptrResult
* optional location to return the new ptr value through. If null
* the ptr value will be discarded.
* @return the value at this location; 0 if the location is not a valid
* numeric.
*/
public static final long parseLongBase10(final byte[] b, int ptr, |
File |
Line |
org/eclipse/jgit/diff/RawTextComparator.java |
87 |
org/eclipse/jgit/diff/RawTextComparator.java |
208 |
public static final RawTextComparator WS_IGNORE_ALL = new RawTextComparator() {
@Override
public boolean equals(RawText a, int ai, RawText b, int bi) {
ai++;
bi++;
int as = a.lines.get(ai);
int bs = b.lines.get(bi);
int ae = a.lines.get(ai + 1);
int be = b.lines.get(bi + 1);
ae = trimTrailingWhitespace(a.content, as, ae);
be = trimTrailingWhitespace(b.content, bs, be);
while (as < ae && bs < be) {
byte ac = a.content[as];
byte bc = b.content[bs]; |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java |
318 |
org/eclipse/jgit/internal/storage/file/GC.java |
821 |
if (ref.isSymbolic() || ref.getObjectId() == null) {
continue;
}
if (isHead(ref)) {
allHeads.add(ref.getObjectId());
} else if (isTag(ref)) {
allTags.add(ref.getObjectId());
} else if (RefTreeNames.isRefTree(refdb, ref.getName())) {
txnHeads.add(ref.getObjectId());
} else {
nonHeads.add(ref.getObjectId());
}
if (ref.getPeeledObjectId() != null) {
tagTargets.add(ref.getPeeledObjectId());
}
} |
File |
Line |
org/eclipse/jgit/revwalk/filter/AndRevFilter.java |
188 |
org/eclipse/jgit/treewalk/filter/AndTreeFilter.java |
210 |
final RevFilter[] s = new RevFilter[subfilters.length];
for (int i = 0; i < s.length; i++)
s[i] = subfilters[i].clone();
return new List(s);
}
@SuppressWarnings("nls")
@Override
public String toString() {
final StringBuilder r = new StringBuilder();
r.append("(");
for (int i = 0; i < subfilters.length; i++) {
if (i > 0)
r.append(" AND ");
r.append(subfilters[i].toString());
}
r.append(")");
return r.toString();
}
}
} |
File |
Line |
org/eclipse/jgit/revwalk/RevCommitList.java |
314 |
org/eclipse/jgit/revwalk/RevCommitList.java |
381 |
while (size <= highMark) {
int index = size;
Block s = contents;
while (index >> s.shift >= BLOCK_SIZE) {
s = new Block(s.shift + BLOCK_SHIFT);
s.contents[0] = contents;
contents = s;
}
while (s.shift > 0) {
final int i = index >> s.shift;
index -= i << s.shift;
if (s.contents[i] == null)
s.contents[i] = new Block(s.shift - BLOCK_SHIFT);
s = (Block) s.contents[i];
}
final Object[] dst = s.contents;
while (size <= highMark && index < BLOCK_SIZE) { |
File |
Line |
org/eclipse/jgit/internal/storage/file/UnpackedObject.java |
99 |
org/eclipse/jgit/internal/storage/file/UnpackedObject.java |
191 |
static ObjectLoader open(InputStream in, File path, AnyObjectId id,
WindowCursor wc) throws IOException {
try {
in = buffer(in);
in.mark(20);
final byte[] hdr = new byte[64];
IO.readFully(in, hdr, 0, 2);
if (isStandardFormat(hdr)) {
in.reset();
Inflater inf = wc.inflater();
InputStream zIn = inflate(in, inf);
int avail = readSome(zIn, hdr, 0, 64);
if (avail < 5)
throw new CorruptObjectException(id,
JGitText.get().corruptObjectNoHeader);
final MutableInteger p = new MutableInteger(); |
File |
Line |
org/eclipse/jgit/revwalk/filter/OrRevFilter.java |
186 |
org/eclipse/jgit/treewalk/filter/OrTreeFilter.java |
208 |
final RevFilter[] s = new RevFilter[subfilters.length];
for (int i = 0; i < s.length; i++)
s[i] = subfilters[i].clone();
return new List(s);
}
@Override
public String toString() {
final StringBuilder r = new StringBuilder();
r.append("("); //$NON-NLS-1$
for (int i = 0; i < subfilters.length; i++) {
if (i > 0)
r.append(" OR "); //$NON-NLS-1$
r.append(subfilters[i].toString());
}
r.append(")"); //$NON-NLS-1$
return r.toString();
}
}
} |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackParser.java |
398 |
org/eclipse/jgit/internal/storage/file/ObjectDirectoryPackParser.java |
323 |
return oldCRC == (int) crc.getValue();
}
@Override
protected boolean onAppendBase(final int typeCode, final byte[] data,
final PackedObjectInfo info) throws IOException {
info.setOffset(packEnd);
final byte[] buf = buffer();
int sz = data.length;
int len = 0;
buf[len++] = (byte) ((typeCode << 4) | sz & 15);
sz >>>= 4;
while (sz > 0) {
buf[len - 1] |= 0x80;
buf[len++] = (byte) (sz & 0x7f);
sz >>>= 7;
} |
File |
Line |
org/eclipse/jgit/util/io/AutoCRLFInputStream.java |
92 |
org/eclipse/jgit/util/io/AutoLFInputStream.java |
126 |
}
@Override
public int read() throws IOException {
final int read = read(single, 0, 1);
return read == 1 ? single[0] & 0xff : -1;
}
@Override
public int read(byte[] bs, final int off, final int len) throws IOException {
if (len == 0)
return 0;
if (cnt == -1)
return -1;
int i = off;
final int end = off + len;
while (i < end) {
if (ptr == cnt && !fillBuffer()) |
File |
Line |
org/eclipse/jgit/revwalk/RevCommitList.java |
316 |
org/eclipse/jgit/revwalk/RevCommitList.java |
383 |
org/eclipse/jgit/revwalk/RevObjectList.java |
94 |
Block s = contents;
while (index >> s.shift >= BLOCK_SIZE) {
s = new Block(s.shift + BLOCK_SHIFT);
s.contents[0] = contents;
contents = s;
}
while (s.shift > 0) {
final int i = index >> s.shift;
index -= i << s.shift;
if (s.contents[i] == null)
s.contents[i] = new Block(s.shift - BLOCK_SHIFT);
s = (Block) s.contents[i];
}
final Object[] dst = s.contents; |
File |
Line |
org/eclipse/jgit/internal/storage/dfs/DfsPackFile.java |
746 |
org/eclipse/jgit/internal/storage/file/PackFile.java |
770 |
readFully(pos, ib, 0, 20, ctx);
int c = ib[0] & 0xff;
final int typeCode = (c >> 4) & 7;
long sz = c & 15;
int shift = 4;
int p = 1;
while ((c & 0x80) != 0) {
c = ib[p++] & 0xff;
sz += ((long) (c & 0x7f)) << shift;
shift += 7;
}
switch (typeCode) {
case Constants.OBJ_COMMIT:
case Constants.OBJ_TREE:
case Constants.OBJ_BLOB:
case Constants.OBJ_TAG: {
if (delta != null) { |
File |
Line |
org/eclipse/jgit/internal/storage/pack/PackWriterBitmapWalker.java |
216 |
org/eclipse/jgit/internal/storage/pack/PackWriterBitmapWalker.java |
270 |
if (bitmap.contains(cmit)) {
// already included
} else if ((visitedBitmap = bitmap.getBitmapIndex()
.getBitmap(cmit)) != null) {
bitmap.or(visitedBitmap);
} else {
bitmap.addObject(cmit, Constants.OBJ_COMMIT);
return true;
}
for (RevCommit p : cmit.getParents()) {
p.add(RevFlag.SEEN);
}
return false;
}
@Override
public final RevFilter clone() {
throw new UnsupportedOperationException();
}
@Override
public final boolean requiresCommitBody() {
return false;
}
} |
File |
Line |
org/eclipse/jgit/revwalk/ObjectWalk.java |
437 |
org/eclipse/jgit/revwalk/ObjectWalk.java |
447 |
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr;
if (buf[++ptr] == 0) return ++ptr; |
File |
Line |
org/eclipse/jgit/transport/TransportBundleFile.java |
80 |
org/eclipse/jgit/transport/TransportLocal.java |
106 |
}
@Override
public boolean canHandle(URIish uri, Repository local, String remoteName) {
if (uri.getPath() == null
|| uri.getPort() > 0
|| uri.getUser() != null
|| uri.getPass() != null
|| uri.getHost() != null
|| (uri.getScheme() != null && !getSchemes().contains(uri.getScheme())))
return false;
return true;
}
@Override
public Transport open(URIish uri, Repository local, String remoteName)
throws NotSupportedException, TransportException { |
File |
Line |
org/eclipse/jgit/treewalk/filter/AndTreeFilter.java |
192 |
org/eclipse/jgit/treewalk/filter/OrTreeFilter.java |
190 |
}
if (r == -1) {
m = -1;
}
}
return m;
}
@Override
public boolean shouldBeRecursive() {
for (final TreeFilter f : subfilters)
if (f.shouldBeRecursive())
return true;
return false;
}
@Override
public TreeFilter clone() {
final TreeFilter[] s = new TreeFilter[subfilters.length];
for (int i = 0; i < s.length; i++)
s[i] = subfilters[i].clone();
return new List(s);
}
@SuppressWarnings("nls") |
File |
Line |
org/eclipse/jgit/util/IntList.java |
151 |
org/eclipse/jgit/util/LongList.java |
157 |
final int[] n = new int[(entries.length + 16) * 3 / 2];
System.arraycopy(entries, 0, n, 0, count);
entries = n;
}
@Override
public String toString() {
final StringBuilder r = new StringBuilder();
r.append('[');
for (int i = 0; i < count; i++) {
if (i > 0)
r.append(", "); //$NON-NLS-1$
r.append(entries[i]);
}
r.append(']');
return r.toString();
}
} |
File |
Line |
org/eclipse/jgit/diff/RawTextComparator.java |
87 |
org/eclipse/jgit/diff/RawTextComparator.java |
173 |
org/eclipse/jgit/diff/RawTextComparator.java |
208 |
public static final RawTextComparator WS_IGNORE_ALL = new RawTextComparator() {
@Override
public boolean equals(RawText a, int ai, RawText b, int bi) {
ai++;
bi++;
int as = a.lines.get(ai);
int bs = b.lines.get(bi);
int ae = a.lines.get(ai + 1);
int be = b.lines.get(bi + 1);
ae = trimTrailingWhitespace(a.content, as, ae);
be = trimTrailingWhitespace(b.content, bs, be); |