This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathbinarydictionary.py
79 lines (66 loc) · 2.7 KB
/
binarydictionary.py
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
# Copyright (c) 2019 Works Applications Co., Ltd.
#
# 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.
import mmap
from . import SYSTEM_DICT_VERSION, USER_DICT_VERSION_1, USER_DICT_VERSION_2
from .dictionaryheader import DictionaryHeader
from .doublearraylexicon import DoubleArrayLexicon
from .grammar import Grammar
class BinaryDictionary(object):
def __init__(self, bytes_: mmap.mmap, grammar: Grammar, header: DictionaryHeader, lexicon: DoubleArrayLexicon):
self._bytes = bytes_
self._grammar = grammar
self._header = header
self._lexicon = lexicon
@staticmethod
def _read_dictionary(filename, access=mmap.ACCESS_READ):
with open(filename, 'r+b') as system_dic:
bytes_ = mmap.mmap(system_dic.fileno(), 0, access=access)
offset = 0
header = DictionaryHeader.from_bytes(bytes_, offset)
offset += header.storage_size()
if header.version not in [SYSTEM_DICT_VERSION, USER_DICT_VERSION_1, USER_DICT_VERSION_2]:
raise Exception('invalid dictionary version')
grammar = None
if header.version != USER_DICT_VERSION_1:
grammar = Grammar(bytes_, offset)
offset += grammar.get_storage_size()
lexicon = DoubleArrayLexicon(bytes_, offset)
return bytes_, grammar, header, lexicon
@classmethod
def from_system_dictionary(cls, filename):
args = cls._read_dictionary(filename)
version = args[2].version
if version != SYSTEM_DICT_VERSION:
raise IOError('invalid system dictionary')
return cls(*args)
@classmethod
def from_user_dictionary(cls, filename):
args = cls._read_dictionary(filename, mmap.ACCESS_COPY)
version = args[2].version
if version not in [USER_DICT_VERSION_1, USER_DICT_VERSION_2]:
raise IOError('invalid user dictionary')
return cls(*args)
def close(self):
del self._grammar
del self._lexicon
self._bytes.close()
@property
def grammar(self) -> Grammar:
return self._grammar
@property
def header(self) -> DictionaryHeader:
return self._header
@property
def lexicon(self) -> DoubleArrayLexicon:
return self._lexicon