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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
#!/usr/bin/env python3
# © Copyright 2021-2022, Scott Gasch
"""A fast word unscrambler library."""
import logging
from typing import Dict, Mapping, Optional
import config
import decorator_utils
import file_utils
import list_utils
cfg = config.add_commandline_args(
f'Unscrambler base library ({__file__})', 'A fast word unscrambler.'
)
cfg.add_argument(
"--unscrambler_default_indexfile",
help="Path to a file of signature -> word index.",
metavar="FILENAME",
default="/usr/share/dict/sparse_index",
)
logger = logging.getLogger(__name__)
letters_bits = 32
letters_mask = 2**letters_bits - 1
fprint_bits = 52
fprint_mask = (2**fprint_bits - 1) << letters_bits
fprint_feature_bit = {
'e': 0,
'i': 2,
'a': 4,
'o': 6,
'r': 8,
'n': 10,
't': 12,
's': 14,
'l': 16,
'c': 18,
'u': 20,
'p': 22,
'm': 24,
'd': 26,
'h': 28,
'y': 30,
'g': 32,
'b': 34,
'f': 36,
'v': 38,
'k': 40,
'w': 42,
'z': 44,
'x': 46,
'q': 48,
'j': 50,
}
letter_sigs = {
'a': 1789368711,
'b': 3146859322,
'c': 43676229,
'd': 3522623596,
'e': 3544234957,
'f': 3448207591,
'g': 1282648386,
'h': 3672791226,
'i': 1582316135,
'j': 4001984784,
'k': 831769172,
'l': 1160692746,
'm': 2430986565,
'n': 1873586768,
'o': 694443915,
'p': 1602297017,
'q': 533722196,
'r': 3754550193,
's': 1859447115,
't': 1121373020,
'u': 2414108708,
'v': 2693866766,
'w': 748799881,
'x': 2627529228,
'y': 2376066489,
'z': 802338724,
}
class Unscrambler(object):
"""A class that unscrambles words quickly by computing a signature
(sig) for the word based on its position independent letter
population and then using a pregenerated index to look up known
words the same set of letters.
Note that each instance of Unscrambler caches its index to speed
up lookups number 2..N; careless reinstantiation will by slower.
Sigs are designed to cluster similar words near each other so both
lookup methods support a "fuzzy match" argument that can be set to
request similar words that do not match exactly in addition to any
exact matches.
"""
def __init__(self, indexfile: Optional[str] = None):
"""
Constructs an unscrambler.
Args:
indexfile: overrides the default indexfile location if provided
"""
# Cached index per instance.
self.sigs = []
self.words = []
filename = Unscrambler.get_indexfile(indexfile)
with open(filename, 'r') as rf:
lines = rf.readlines()
for line in lines:
line = line[:-1]
(fsig, word) = line.split('+')
isig = int(fsig, 16)
self.sigs.append(isig)
self.words.append(word)
@staticmethod
def get_indexfile(indexfile: Optional[str]) -> str:
"""Returns the current indexfile location."""
if indexfile is None:
if 'unscrambler_default_indexfile' in config.config:
indexfile = config.config['unscramble_indexfile']
else:
indexfile = "/usr/share/dict/sparse_index"
else:
assert file_utils.file_is_readable(indexfile), f"Can't read {indexfile}"
return indexfile
# 52 bits
@staticmethod
def _compute_word_fingerprint(population: Mapping[str, int]) -> int:
fp = 0
for pair in sorted(population.items(), key=lambda x: x[1], reverse=True):
letter = pair[0]
if letter in fprint_feature_bit:
count = min(pair[1], 3)
shift = fprint_feature_bit[letter]
s = count << shift
fp |= s
return fp << letters_bits
# 32 bits
@staticmethod
def _compute_word_letter_sig(
lsigs: Mapping[str, int],
word: str,
population: Mapping[str, int],
) -> int:
sig = 0
for pair in sorted(population.items(), key=lambda x: x[1], reverse=True):
letter = pair[0]
if letter not in lsigs:
continue
s = lsigs[letter]
count = pair[1]
if count > 1:
s <<= count
s |= count
s &= letters_mask
sig ^= s
length = min(len(word), 31)
sig ^= length << 8
sig &= letters_mask
return sig
# 52 + 32 bits
@staticmethod
@decorator_utils.memoized
def compute_word_sig(word: str) -> int:
"""Given a word, compute its signature for subsequent lookup
operations. Signatures are computed based on the letters in
the word and their frequencies. We try to cluster "similar"
words close to each other in the signature space.
Args:
word: the word to compute a signature for
Returns:
The word's signature.
>>> train = Unscrambler.compute_word_sig('train')
>>> train
23178969883741
>>> retain = Unscrambler.compute_word_sig('retrain')
>>> retain
24282502197479
>>> retain - train
1103532313738
"""
population = list_utils.population_counts(word)
fprint = Unscrambler._compute_word_fingerprint(population)
letter_sig = Unscrambler._compute_word_letter_sig(letter_sigs, word, population)
assert fprint & letter_sig == 0
sig = fprint | letter_sig
return sig
@staticmethod
def repopulate(
dictfile: str = '/usr/share/dict/words',
indexfile: str = '/usr/share/dict/sparse_index',
) -> None:
"""
Repopulates the indexfile.
.. warning::
Before calling this method, change letter_sigs from the
default above unless you want to populate the same exact
files.
"""
words_by_sigs: Dict[int, str] = {}
seen = set()
with open(dictfile, "r") as f:
for word in f:
word = word.replace('\n', '')
word = word.lower()
sig = Unscrambler.compute_word_sig(word)
logger.debug("%s => 0x%x", word, sig)
if word in seen:
continue
seen.add(word)
if sig in words_by_sigs:
words_by_sigs[sig] += f",{word}"
else:
words_by_sigs[sig] = word
with open(indexfile, 'w') as f:
for sig in sorted(words_by_sigs.keys()):
word = words_by_sigs[sig]
print(f'0x{sig:x}+{word}', file=f)
def lookup(self, word: str, *, window_size: int = 5) -> Dict[str, bool]:
"""Looks up a potentially scrambled word optionally including near
"fuzzy" matches.
Args:
word: the word to lookup
window_size: the number of nearby fuzzy matches to return
Returns:
A dict of word -> bool containing unscrambled words with (close
to or precisely) the same letters as the input word. The bool
values in this dict indicate whether the key word is an exact
or near match. The count of entries in this dict is controlled
by the window_size param.
>>> u = Unscrambler()
>>> u.lookup('eanycleocipd', window_size=0)
{'encyclopedia': True}
"""
sig = Unscrambler.compute_word_sig(word)
return self.lookup_by_sig(sig, window_size=window_size)
def lookup_by_sig(self, sig: int, *, window_size: int = 5) -> Dict[str, bool]:
"""Looks up a word that has already been translated into a signature by
a previous call to Unscrambler.compute_word_sig. Optionally returns
near "fuzzy" matches.
Args:
sig: the signature of the word to lookup (see :meth:`compute_word_sig`
to generate these signatures).
window_size: the number of nearby fuzzy matches to return
Returns:
A dict of word -> bool containing unscrambled words with (close
to or precisely) the same letters as the input word. The bool
values in this dict indicate whether the key word is an exact
or near match. The count of entries in this dict is controlled
by the window_size param.
>>> sig = Unscrambler.compute_word_sig('sunepsapetuargiarin')
>>> sig
18491949645300288339
>>> u = Unscrambler()
>>> u.lookup_by_sig(sig)
{'pupigerous': False, 'pupigenous': False, 'unpurposing': False, 'superpurgation': False, 'unsupporting': False, 'superseptuaginarian': True, 'purpurogallin': False, 'scuppaug': False, 'purpurigenous': False, 'purpurogenous': False, 'proppage': False}
"""
ret = {}
(_, location) = list_utils.binary_search(self.sigs, sig)
start = location - window_size
start = max(start, 0)
end = location + 1 + window_size
end = min(end, len(self.words))
for x in range(start, end):
word = self.words[x]
fsig = self.sigs[x]
if window_size > 0 or (fsig == sig):
ret[word] = fsig == sig
return ret
#
# To repopulate, change letter_sigs and then call Unscrambler.repopulate.
# See notes above. See also ~/bin/unscramble.py --populate_destructively.
#
if __name__ == "__main__":
import doctest
doctest.testmod()
|