mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-05-04 08:04:25 +02:00
99 lines
3.0 KiB
Java
99 lines
3.0 KiB
Java
/*
|
|
* 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.arsc.chunk;
|
|
|
|
import com.reandroid.arsc.header.HeaderBlock;
|
|
import com.reandroid.arsc.item.ByteArray;
|
|
|
|
import java.io.*;
|
|
|
|
/**
|
|
* This class can load any valid chunk, aimed to
|
|
* handle any future android changes
|
|
* */
|
|
public class UnknownChunk extends Chunk<HeaderBlock> implements HeaderBlock.HeaderLoaded {
|
|
private final ByteArray body;
|
|
public UnknownChunk() {
|
|
super(new HeaderBlock(INITIAL_CHUNK_TYPE), 1);
|
|
this.body = new ByteArray();
|
|
addChild(body);
|
|
setHeaderLoaded(this);
|
|
}
|
|
public ByteArray getBody(){
|
|
return body;
|
|
}
|
|
@Override
|
|
public void onChunkTypeLoaded(short type) {
|
|
}
|
|
@Override
|
|
public void onHeaderSizeLoaded(int headerSize) {
|
|
}
|
|
@Override
|
|
public void onChunkSizeLoaded(int headerSize, int chunkSize) {
|
|
getBody().setSize(chunkSize - headerSize);
|
|
}
|
|
|
|
@Override
|
|
void checkInvalidChunk(HeaderBlock headerBlock) throws IOException {
|
|
}
|
|
@Override
|
|
protected void onChunkRefreshed() {
|
|
}
|
|
@Override
|
|
public byte[] getBytes(){
|
|
ByteArrayOutputStream os=new ByteArrayOutputStream();
|
|
try {
|
|
writeBytes(os);
|
|
os.close();
|
|
} catch (IOException ignored) {
|
|
}
|
|
return os.toByteArray();
|
|
}
|
|
public int readBytes(File file) throws IOException{
|
|
FileInputStream inputStream=new FileInputStream(file);
|
|
int result=readBytes(inputStream);
|
|
inputStream.close();
|
|
return result;
|
|
}
|
|
public int readBytes(InputStream inputStream) throws IOException{
|
|
int result;
|
|
result=getHeaderBlock().readBytes(inputStream);
|
|
result+=getBody().readBytes(inputStream);
|
|
super.notifyBlockLoad();
|
|
return result;
|
|
}
|
|
public final int writeBytes(File file) throws IOException{
|
|
File dir=file.getParentFile();
|
|
if(dir!=null && !dir.exists()){
|
|
if(dir.mkdirs()){
|
|
throw new IOException("Can not create directory: "+dir);
|
|
}
|
|
}
|
|
OutputStream outputStream=new FileOutputStream(file);
|
|
int length = super.writeBytes(outputStream);
|
|
outputStream.close();
|
|
return length;
|
|
}
|
|
@Override
|
|
public String toString(){
|
|
return getHeaderBlock()
|
|
+" {Body="+getBody().size()+"}";
|
|
}
|
|
|
|
private static final short INITIAL_CHUNK_TYPE = 0x0000;
|
|
|
|
}
|