1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/* Copyright (C) 2023 ebandal
*
* 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/>
*/
/* 본 제품은 한글과컴퓨터의 ᄒᆞᆫ글 문서 파일(.hwp) 공개 문서를 참고하여 개발하였습니다.
* 개방형 워드프로세서 마크업 언어(OWPML) 문서 구조 KS X 6101:2018 문서를 참고하였습니다.
* 작성자 : 반희수 ebandal@gmail.com
* 작성일 : 2022.10
*/
package HwpDoc.OCFdoc;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.RandomAccessFile;
import java.util.HashMap;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.zip.DataFormatException;
import java.util.zip.Inflater;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
public class OwpmlFile {
private HashMap<String, Offset> offsetMap = new HashMap<>();
private File file;
public OwpmlFile(String filename) throws FileNotFoundException {
this(new File(filename));
}
public OwpmlFile(File file) throws FileNotFoundException {
this.file = file;
}
public void open() {
try (FileInputStream fileInputStream = new FileInputStream(this.file);
ZipInputStream zipInputStream = new ZipInputStream(fileInputStream)) {
ZipEntry zipEntry = null;
long entryOffset = 0;
while ((zipEntry = zipInputStream.getNextEntry()) != null) {
entryOffset += 30 + zipEntry.getName().length() + (zipEntry.getExtra()==null ? 0 : zipEntry.getExtra().length);
long offsetStart = entryOffset;
entryOffset += zipEntry.getCompressedSize();
long offsetEnd = entryOffset;
int zipMethod = zipEntry.getMethod();
offsetMap.put(zipEntry.getName(), new Offset(offsetStart, offsetEnd, zipMethod));
zipInputStream.closeEntry();
}
} catch (IOException e) {
e.printStackTrace();
}
}
public InputStream getInputStream(String entryName) throws IOException, DataFormatException {
Offset offset = offsetMap.get(entryName);
if (offset == null) {
throw new DataFormatException();
}
long entrySize = (int)(offset.end - offset.start);
byte[] buf = new byte[(int)entrySize];
try (RandomAccessFile raf = new RandomAccessFile(file, "r")) {
raf.seek(offset.start);
int readLen = raf.read(buf, 0, (int)entrySize);
if (offset.zipMethod == ZipEntry.DEFLATED) {
buf = unzip(buf, readLen);
}
}
return new ByteArrayInputStream(buf);
}
public String findBinData(String shortName) {
return null;
}
public byte[] getBytes(String entryName) throws IOException, DataFormatException {
Offset offset = offsetMap.get(entryName);
long entrySize = (int)(offset.end - offset.start);
byte[] buf = new byte[(int)entrySize];
try (RandomAccessFile raf = new RandomAccessFile(file, "r")) {
raf.seek(offset.start);
int readLen = raf.read(buf, 0, (int)entrySize);
if (offset.zipMethod == ZipEntry.DEFLATED) {
buf = unzip(buf, readLen);
}
}
return buf;
}
public List<String> getSections() {
List<String> sections = offsetMap.keySet().stream().filter(s -> s.contains("section"))
.sorted((s1, s2) -> {
int lengthCompare = Integer.compare(s1.length(), s2.length());
if (lengthCompare != 0) {
return lengthCompare;
}
return s1.compareTo(s2);
})
.collect(Collectors.toList());
return sections;
}
public String getBinData(String shortName) {
Optional<String> binData = offsetMap.keySet().stream().filter(s -> s.startsWith("BinData"))
.filter(s -> s.contains(shortName + ".")).findAny();
return binData.orElse("");
}
private byte[] unzip(byte[] input, int inLen) throws IOException, DataFormatException {
Inflater decompressor = new Inflater(true);
decompressor.setInput(input, 0, input.length);
ByteArrayOutputStream bos = new ByteArrayOutputStream(inLen);
// Decompress the data
byte[] buf = new byte[8096];
while (!decompressor.finished()) {
int count = decompressor.inflate(buf);
if (count > 0) {
bos.write(buf, 0, count);
} else {
throw new IOException("can't decompress data");
}
}
bos.close();
return bos.toByteArray();
}
public void close() throws IOException {
}
public static class Offset {
long start;
long end;
int zipMethod;
public Offset(long start, long end, int zipMethod) {
this.start = start;
this.end = end;
this.zipMethod = zipMethod;
}
}
}
|