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
|
/* 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.HwpElement;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import HwpDoc.HwpDocInfo;
import HwpDoc.Exception.HwpParseException;
public class HwpRecord_DocumentProperties extends HwpRecord {
private HwpDocInfo parent;
public short sectionSize; // 구역 갯수
public short pageStartNo; // 페이지 시작 번호
public short footNoteStartNo; // 각주 시작 번호
public short endNoteStartNo; // 미주 시작 번호
public short figureStartNo; // 그림 시작 번호
public short tableStartNo; // 표 시작 번호
public short eqStartNo; // 수식 시작 번호
public int listID; // 리스트 아이디 (문서 내 캐럿의 위치 정보)
public int paraID; // 문단 아이디 (문서 내 캐럿의 위치 정보)
public int charUnitLocInPara; // 문단 내에서의 글자 단위 위치
HwpRecord_DocumentProperties(int tagNum, int level, int size) {
super(tagNum, level, size);
}
public HwpRecord_DocumentProperties(HwpDocInfo docInfo, int tagNum, int level, int size, byte[] buf, int off, int version) throws HwpParseException {
this(tagNum, level, size);
this.parent = docInfo;
int offset = off;
sectionSize = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
pageStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
footNoteStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
endNoteStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
figureStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
tableStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
eqStartNo = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
listID = buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
paraID = buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
charUnitLocInPara= buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
if (offset-off!=26) {
throw new HwpParseException();
}
}
public HwpRecord_DocumentProperties(HwpDocInfo docInfo, Node node, int version) throws HwpParseException {
super(HwpTag.HWPTAG_DOCUMENT_PROPERTIES, 0, 0);
this.parent = docInfo;
NamedNodeMap attributes = node.getAttributes();
// [endnote="1", equation="1", footnote="1", page="1", pic="1", tbl="1"]
for (int i=0; i<attributes.getLength(); i++) {
Node attr = attributes.item(i);
switch(attr.getNodeName()) {
case "page":
pageStartNo = Short.parseShort(attr.getNodeValue());
break;
case "footnote":
footNoteStartNo = Short.parseShort(attr.getNodeValue());
break;
case "endnote":
endNoteStartNo = Short.parseShort(attr.getNodeValue());
break;
case "pic":
figureStartNo = Short.parseShort(attr.getNodeValue());
break;
case "tbl":
tableStartNo = Short.parseShort(attr.getNodeValue());
break;
case "equation":
eqStartNo = Short.parseShort(attr.getNodeValue());
break;
default:
System.out.println("Cannot parse Hwpx. " + attr.getNodeName() + ":" + attr.getNodeValue());
throw new HwpParseException();
}
}
}
}
|