mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 19:00:48 +00:00
85 lines
2.5 KiB
Java
85 lines
2.5 KiB
Java
/*
|
|
* Copyright (C) 2010-2016 JPEXS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.jpexs.browsers.cache.chrome;
|
|
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.RandomAccessFile;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class Index {
|
|
|
|
IndexHeader header;
|
|
|
|
CacheAddr table[];
|
|
|
|
public static final int kIndexTablesize = 0x10000;
|
|
|
|
public File rootDir;
|
|
|
|
private final Map<Integer, RandomAccessFile> dataFiles;
|
|
|
|
private final File externalFilesDir;
|
|
|
|
public void free() {
|
|
for (RandomAccessFile r : dataFiles.values()) {
|
|
try {
|
|
r.close();
|
|
} catch (IOException ex) {
|
|
}
|
|
}
|
|
}
|
|
|
|
public List<EntryStore> getEntries() throws IOException {
|
|
List<EntryStore> ret = new ArrayList<>();
|
|
for (CacheAddr ca : table) {
|
|
InputStream is = ca.getInputStream();
|
|
if (is != null) {
|
|
EntryStore es = new EntryStore(is, rootDir, dataFiles, externalFilesDir);
|
|
ret.add(es);
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
public Index(File file, File externalFilesDir) throws IOException {
|
|
dataFiles = new HashMap<>();
|
|
this.externalFilesDir = externalFilesDir;
|
|
try (FileInputStream is = new FileInputStream(file)) {
|
|
rootDir = file.getParentFile();
|
|
header = new IndexHeader(is, rootDir, dataFiles, externalFilesDir);
|
|
int tsize = kIndexTablesize;
|
|
if (header.table_len > 0) {
|
|
tsize = header.table_len;
|
|
}
|
|
table = new CacheAddr[tsize];
|
|
for (int i = 0; i < tsize; i++) {
|
|
table[i] = new CacheAddr(is, rootDir, dataFiles, externalFilesDir);
|
|
}
|
|
}
|
|
}
|
|
}
|