forked from na2co3-ftw/pdic-conv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdic-conv.js
251 lines (227 loc) · 7.69 KB
/
pdic-conv.js
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* pdic-conv.js v0.6.0
*
* Copyright (c) 2015-2019 na2co3
* Released under the MIT License, see:
* http://opensource.org/licenses/mit-license.php
*
* Modified by kepeken
*/
/*
* 未対応: 圧縮, 暗号化, ファイルリンクや埋め込みファイルやOLEオブジェクト
*/
const { Buffer } = require("buffer");
const bocu1 = require("./bocu1");
class FormatError {
constructor(message) {
this.message = message;
}
}
class SeekableFile {
constructor(arrayBuffer) {
this.buffer = Buffer.from(arrayBuffer);
this.position = 0;
}
read(buffer, length) {
this.buffer.copy(buffer, 0, this.position, this.position + length);
this.position += length;
}
seek(position) {
this.position = position;
}
skip(length) {
this.position += length;
}
}
/*
* DICファイルを読み込む
* arrayBuffer: DICファイルのデータバッファ
* 返り値 : エントリーオブジェクトの配列
*
* エントリーオブジェクト: {
* keyword : 見出語の検索キー
* word : 見出語
* trans : 訳語
* exp : 用例
* level : 単語レベル
* memory : 暗記必須マーク
* modify : 修正マーク
* pron : 発音記号
* linkdata: ファイルリンク又は埋め込みファイル (未対応)
* }
*/
export function readPDIC(arrayBuffer) {
let entries = [];
let dic = new SeekableFile(arrayBuffer);
let headerBuf = Buffer.alloc(256);
dic.read(headerBuf, 256);
// --- header ---
let header = {};
// header.headername = headerBuf.toString("ascii", 0, 100);
header.version = headerBuf.readInt16LE(0x8c);
if (header.version >> 8 != 6) {
throw new FormatError("Error: 辞書ファイルが正しくないか、非対応のバージョンです。バージョン: 0x" + header.version.toString(16));
}
header.index_block = headerBuf.readUInt16LE(0x94);
// header.nword = headerBuf.readUInt32LE(0xa0);
header.dictype = headerBuf.readUInt8(0xa5); // 0x01:バイナリを圧縮, 0x08:BOCU-1, 0x40:暗号化
if (header.dictype & 64) {
throw new FormatError("Error: 辞書が暗号化されています。");
}
// header.olenumber = headerBuf.readInt32LE(0xa8);
header.index_blkbit = headerBuf.readUInt8(0xb6); //0:16bit, 1:32bit
header.extheader = headerBuf.readUInt32LE(0xb8);
// header.empty_block2 = headerBuf.readInt32LE(0xbc);
header.nindex2 = headerBuf.readUInt32LE(0xc0);
// header.nblock2 = headerBuf.readUInt32LE(0xc4);
// header.cypt = headerBuf.slice(0xc8, 0xc8 + 8);
// header.dicident = headerBuf.slice(0xd8, 0xd8 + 8);
// --- index ---
let indexOffset = 1024 + header.extheader;
let index = new Array(header.nindex2);
let blockIDBuf = Buffer.alloc(4);
let indexWordBuf = Buffer.alloc(1);
dic.seek(indexOffset);
for (let index_id = 0; index_id < header.nindex2; index_id++) {
if (!header.index_blkbit) { // 16bit index
dic.read(blockIDBuf, 2);
index[index_id] = blockIDBuf.readUInt16LE(0);
} else { // 32bit index
dic.read(blockIDBuf, 4);
index[index_id] = blockIDBuf.readUInt32LE(0);
}
do {
dic.read(indexWordBuf, 1);
} while (indexWordBuf[0] !== 0);
}
// --- data block ---
let dataOffset = indexOffset + (header.index_block * 1024);
let blockSpanBuf = Buffer.alloc(2);
let fieldLengthBuf = Buffer.alloc(4);
let omitLengthBuf = Buffer.alloc(1);
let wordFlagBuf = Buffer.alloc(1);
let tmp;
for (let index_id = 0; index_id < header.nindex2; index_id++) {
dic.seek(dataOffset + (index[index_id] * 1024));
dic.read(blockSpanBuf, 2);
let blockSpan = blockSpanBuf.readUInt16LE(0);
if (blockSpan === 0) { // 空ブロック
continue;
}
let fieldLengthBit = !!(blockSpan & 0x8000); // 0:16bit, 1:32bit
// blockSpan &= 0x7fff;
let prevRawWord = Buffer.alloc(0);
while (true) {
let entry = {};
let fieldLength;
if (!fieldLengthBit) { // 16bit
dic.read(fieldLengthBuf, 2);
fieldLength = fieldLengthBuf.readUInt16LE(0);
} else { // 32bit
dic.read(fieldLengthBuf, 4);
fieldLength = fieldLengthBuf.readUInt32LE(0);
}
if (fieldLength === 0) {
break;
}
dic.read(omitLengthBuf, 1);
let omitLength = omitLengthBuf[0];
dic.read(wordFlagBuf, 1);
let wordFlag = wordFlagBuf[0];
if (wordFlag == 0xff) {
dic.skip(fieldLength);
continue; // リファレンス登録語(Ver.6.10で廃案)
}
entry.memory = !!(wordFlag & 0x20);
entry.modify = !!(wordFlag & 0x40);
entry.level = wordFlag & 0x0f;
let fieldBuf = Buffer.alloc(fieldLength);
dic.read(fieldBuf, fieldLength);
tmp = sliceBufferUntilNull(fieldBuf, 0);
tmp.buffer = Buffer.concat([prevRawWord.slice(0, omitLength), tmp.buffer]);
try {
entry.word = bocu1.decode(tmp.buffer);
} catch(e) {
console.log(`WARNING: 見出し語のデコードに失敗しました : ${tmp.buffer.toString("hex")}`);
entry.word = "";
}
prevRawWord = tmp.buffer;
let nameSplitIndex = entry.word.indexOf("\t");
if (nameSplitIndex >= 0) {
entry.keyword = entry.word.substr(0, nameSplitIndex);
entry.word = entry.word.substr(nameSplitIndex + 1);
} else {
entry.keyword = entry.word;
}
tmp = sliceBufferUntilNull(fieldBuf, tmp.next);
try {
entry.trans = bocu1.decode(tmp.buffer);
} catch(e) {
console.log(`WARNING: 訳語のデコードに失敗しました : ${entry.word} : ${tmp.buffer.toString("hex")}`);
entry.trans = "";
}
if (wordFlag & 0x10) { // 拡張構成
let fieldPtr = tmp.next;
while (fieldPtr < fieldBuf.length) {
let extFlag = fieldBuf[fieldPtr];
let extType = extFlag & 0x0f; //1:exp, 2:pron, 4:linkdata
if (extType & 0x80) {
break;
}
fieldPtr++;
if (!(extFlag & 0x10)) { // テキストデータ
tmp = sliceBufferUntilNull(fieldBuf, fieldPtr);
fieldPtr = tmp.next;
let content;
try {
content = bocu1.decode(tmp.buffer);
} catch(e) {
console.log(`WARNING: ${extType == 1 ? "例文" : extType == 2 ? "発音" : "拡張データ(" + extType + ")"}のデコードに失敗しました : ${entry.word} : ${tmp.buffer.toString("hex")}`);
continue;
}
if (extType == 1) {
entry.exp = content;
continue;
} else if (extType == 2) {
entry.pron = content;
continue;
} else if (extType == 0) {
continue;
}
console.log(`Notice: 不明な拡張テキストデータ(${extType})が含まれています : ${entry.word} : "${content}"`)
} else { // バイナリデータ
let extSize;
if (!fieldLengthBit) { // 16bit
extSize = fieldBuf.readUInt16LE(fieldPtr);
fieldPtr += 2;
} else { // 32bit
extSize = fieldBuf.readUInt32LE(fieldPtr);
fieldPtr += 4;
}
fieldPtr += extSize;
if (extType == 1) {
console.log(`Notice: 訳語が圧縮されているかバイナリデータです。非対応のため無視します : ${entry.word}`);
} else if (extType == 4) {
console.log(`Notice: ファイルまたはオブジェクトが含まれています。非対応のため無視します : ${entry.word}`);
} else if (extType == 0) {
continue;
} else {
console.log(`Notice: 不明な拡張バイナリデータ(${extType})が含まれています : ${entry.word}`)
}
}
}
}
entries.push(entry);
}
}
return entries;
}
function sliceBufferUntilNull(buffer, start) {
let end = start;
while (buffer[end] !== 0){
end++;
if (end >= buffer.length)
break;
}
return {buffer: buffer.slice(start, end), next: end + 1};
}