
com.reandroid.dex.base.DexBlockItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARSCLib Show documentation
Show all versions of ARSCLib Show documentation
Android binary resources read/write library
The newest version!
/*
* Copyright (C) 2022 github.com/REAndroid
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.reandroid.dex.base;
import com.reandroid.arsc.item.BlockItem;
import com.reandroid.dex.common.SectionTool;
import com.reandroid.dex.io.ByteReader;
import com.reandroid.dex.io.StreamUtil;
import java.io.IOException;
import java.io.InputStream;
public abstract class DexBlockItem extends BlockItem implements SectionTool {
public DexBlockItem(int bytesLength) {
super(bytesLength);
}
public static int writeUleb128(byte[] bytes, int offset, int value) {
int index = 0;
while ((value & 0xffffffffL) > 0x7f) {
bytes[offset + index] = (byte) ((value & 0x7f) | 0x80);
value >>>= 7;
index ++;
}
bytes[offset + index] = (byte) (value);
return index + 1;
}
public static int readUleb128(InputStream inputStream) throws IOException {
return readUleb128(StreamUtil.createByteReader(inputStream));
}
public static int readUleb128(byte[] bytes, int offset) throws IOException {
return readUleb128(StreamUtil.createByteReader(bytes, offset));
}
public static int readUleb128(ByteReader reader) throws IOException{
return readUleb128(reader, 4);
}
public static int readUleb128Large(ByteReader reader) throws IOException{
return readUleb128(reader, 5);
}
public static int readUleb128(ByteReader reader, int size) throws IOException {
int result = 0;
int value = 0x80;
int count = 0;
while (value > 0x7f && count < size){
value = reader.read();
result |= ((value & 0x7f) << (count * 7));
count ++;
}
if (value > 0x7f) {
throw new IOException("Invalid uleb128 integer, size = " + size);
} else if (count == size && ((value & 0xf) > 0x07)) {
throw new IOException("Encountered valid uleb128 that is out of range, size = " + size);
}
return result;
}
public static int readSleb128(ByteReader reader) throws IOException {
int value = 0x80;
int result = 0;
int count = 0;
while (value > 0x7f && count < 5){
value = reader.read();
result = result | ((value & 0x7f) << count * 7);
count ++;
}
if(count == 5 && value > 0x7f){
throw new IOException("Invalid sleb128 integer");
}
int shift = 32 - count * 7;
result = (result << shift) >> shift;
return result;
}
public static int writeSleb128(byte[] bytes, int offset, int value) {
int index = 0;
if (value >= 0) {
while (value > 0x3f) {
bytes[offset + index] = (byte) ((value & 0x7f) | 0x80);
index ++;
value >>>= 7;
}
bytes[offset + index] = (byte) (value & 0x7f);
index ++;
} else {
while (value < -0x40) {
bytes[offset + index] = (byte) ((value & 0x7f) | 0x80);
index ++;
value >>= 7;
}
bytes[offset + index] = (byte) (value & 0x7f);
index ++;
}
return index;
}
protected static long getSignedNumber(byte[] bytes, int offset, int size){
if((offset + size)> bytes.length){
return 0;
}
long result = 0;
int index = offset + size - 1;
int high = bytes[index] & 0xff;
while (index >= offset){
result = result << 8;
result |= (bytes[index] & 0xff);
index --;
}
if(high > 0x7f) {
long max = 0xffffffffffffffffL >>> (64 - (size * 8));
result = result - max;
result = result - 1;
}
return result;
}
protected static long getUnsignedNumber(byte[] bytes, int offset, int size){
if((offset + size)> bytes.length){
return 0;
}
long result = 0;
int index = offset + size - 1;
while (index>=offset){
result = result << 8;
result |= (bytes[index] & 0xff);
index --;
}
return result;
}
protected static void putNumber(byte[] bytes, int offset, int size, long value){
if((offset + size) > bytes.length){
return;
}
int index = offset;
offset = index + size;
while (index>> 8;
index++;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy