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
|
if not modules then modules = { } end modules ['strc-syn'] = {
version = 1.001,
comment = "companion to str-syn.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local next, type = next, type
local format = string.format
local allocate = utilities.storage.allocate
-- interface to tex end
local context = context
local sorters = sorters
local structures = structures
local synonyms = structures.synonyms
local tags = structures.tags
local collected = allocate()
local tobesaved = allocate()
local firstofsplit = sorters.firstofsplit
local strip = sorters.strip
local splitter = sorters.splitters.utf
synonyms.collected = collected
synonyms.tobesaved = tobesaved
local function initializer()
collected = synonyms.collected
tobesaved = synonyms.tobesaved
end
local function finalizer()
for entry, data in next, tobesaved do
data.hash = nil
end
end
job.register('structures.synonyms.collected', tobesaved, initializer, finalizer)
-- todo: allocate becomes metatable
local function allocate(class)
local d = tobesaved[class]
if not d then
d = {
metadata = {
language = 'en',
sorted = false,
class = class
},
entries = {
},
hash = {
}
}
tobesaved[class] = d
end
return d
end
function synonyms.define(class,kind)
local data = allocate(class)
data.metadata.kind = kind
end
function synonyms.register(class,kind,spec)
local data = allocate(class)
data.metadata.kind = kind -- runtime, not saved in format (yet)
if not data.hash[spec.definition.tag or ""] then
data.entries[#data.entries+1] = spec
data.hash[spec.definition.tag or ""] = spec
end
end
function synonyms.registerused(class,tag)
local data = allocate(class)
local dht = data.hash[tag]
if dht then
dht.definition.used = true
end
end
function synonyms.synonym(class,tag)
local data = allocate(class).hash
local d = data[tag]
if d then
local de = d.definition
de.used = true
context(de.synonym)
end
end
function synonyms.meaning(class,tag)
local data = allocate(class).hash
local d = data[tag]
if d then
local de = d.definition
de.used = true
context(de.meaning)
end
end
synonyms.compare = sorters.comparers.basic -- (a,b)
function synonyms.filter(data,options)
local result = { }
local entries = data.entries
local all = options and options.criterium == interfaces.variables.all
for i=1,#entries do
local entry = entries[i]
if all or entry.definition.used then
result[#result+1] = entry
end
end
data.result = result
end
function synonyms.prepare(data)
local result = data.result
if result then
for i=1, #result do
local r = result[i]
local rd = r.definition
if rd then
local rt = rd.tag
local sortkey = rt and rt ~= "" and rt or rd.synonym
r.split = splitter(strip(sortkey))
end
end
end
end
function synonyms.sort(data,options)
sorters.sort(data.result,synonyms.compare)
end
function synonyms.finalize(data,options)
local result = data.result
data.metadata.nofsorted = #result
local split = { }
for k=1,#result do
local v = result[k]
local entry, tag = firstofsplit(v)
local s = split[entry] -- keeps track of change
local d
if not s then
d = { }
s = { tag = tag, data = d }
split[entry] = s
else
d = s.data
end
d[#d+1] = v
end
data.result = split
end
-- for now, maybe at some point we will do a multipass or so
-- maybe pass the settings differently
local ctx_synonymentry = context.synonymentry
function synonyms.flush(data,options)
local kind = data.metadata.kind -- hack, will be done better
local result = data.result
local sorted = table.sortedkeys(result)
for k=1,#sorted do
local letter = sorted[k]
local sublist = result[letter]
local data = sublist.data
for d=1,#data do
local entry = data[d].definition
ctx_synonymentry(d,entry.tag,entry.synonym,entry.meaning or "")
end
end
data.result = nil
data.metadata.sorted = false
end
function synonyms.analyzed(class,options)
local data = synonyms.collected[class]
if data and data.entries then
options = options or { }
sorters.setlanguage(options.language)
synonyms.filter(data,options) -- filters entries to result
synonyms.prepare(data,options) -- adds split table parallel to list table
synonyms.sort(data,options) -- sorts entries in result
synonyms.finalize(data,options) -- do things with data.entries
data.metadata.sorted = true
end
return data and data.metadata.sorted and data.result and next(data.result)
end
function synonyms.process(class,options)
if synonyms.analyzed(class,options) then
synonyms.flush(synonyms.collected[class],options)
end
end
commands.registersynonym = synonyms.register
commands.registerusedsynonym = synonyms.registerused
commands.synonymmeaning = synonyms.meaning
commands.synonymname = synonyms.synonym
commands.processsynonyms = synonyms.process
|