diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-11-03 19:01:53 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-11-04 19:12:13 -0700 |
commit | e488f1cacd7813feaca9f7d7b09de7eb5ec69f84 (patch) | |
tree | 7c0979c631e295dcb2e800454a7a8c086a910c59 /org.eclipse.jgit/src/org | |
parent | b22a4e84886e7388d509376be9afce31833de054 (diff) | |
download | jgit-e488f1cacd7813feaca9f7d7b09de7eb5ec69f84.tar.gz jgit-e488f1cacd7813feaca9f7d7b09de7eb5ec69f84.zip |
Add MutableObjectId setByte to modify a mutable id
This mirrors the getByte() API in ObjectId and allows the caller to
modify a single byte, which is useful when updating it as part of a
loop walking through 0x00..0xff inside of a range of objects.
Change-Id: I57fa8420011fe5ed5fc6bfeb26f87a02b3197dab
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/MutableObjectId.java | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/MutableObjectId.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/MutableObjectId.java index 26e83d423b..7d7dfc2f1a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/MutableObjectId.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/MutableObjectId.java @@ -74,6 +74,60 @@ public class MutableObjectId extends AnyObjectId { fromObjectId(src); } + /** + * Set any byte in the id. + * + * @param index + * index of the byte to set in the raw form of the ObjectId. Must + * be in range [0, {@link Constants#OBJECT_ID_LENGTH}). + * @param value + * the value of the specified byte at {@code index}. Values are + * unsigned and thus are in the range [0,255] rather than the + * signed byte range of [-128, 127]. + * @throws ArrayIndexOutOfBoundsException + * {@code index} is less than 0, equal to + * {@link Constants#OBJECT_ID_LENGTH}, or greater than + * {@link Constants#OBJECT_ID_LENGTH}. + */ + public void setByte(int index, int value) { + switch (index >> 2) { + case 0: + w1 = set(w1, index & 3, value); + break; + case 1: + w2 = set(w2, index & 3, value); + break; + case 2: + w3 = set(w3, index & 3, value); + break; + case 3: + w4 = set(w4, index & 3, value); + break; + case 4: + w5 = set(w5, index & 3, value); + break; + default: + throw new ArrayIndexOutOfBoundsException(index); + } + } + + private static int set(int w, int index, int value) { + value &= 0xff; + + switch (index) { + case 0: + return (w & 0x00ffffff) | (value << 24); + case 1: + return (w & 0xff00ffff) | (value << 16); + case 2: + return (w & 0xffff00ff) | (value << 8); + case 3: + return (w & 0xffffff00) | value; + default: + throw new ArrayIndexOutOfBoundsException(); + } + } + /** Make this id match {@link ObjectId#zeroId()}. */ public void clear() { w1 = 0; |