-
Notifications
You must be signed in to change notification settings - Fork 3
/
ddl2_dictionary_ng.jl
484 lines (422 loc) · 16.3 KB
/
ddl2_dictionary_ng.jl
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# Enough support for DDL2 dictionaries to allow them to be used
# for category construction
#
# Next generation: reads the dictionary as a database the way
# the PDB intended, and split on '.' for cat/obj
#
export DDL2_Dictionary,as_data,get_parent_name,get_toplevel_cats
"""
DDL2_Dictionary
The type of DDL2 dictionaries.
"""
struct DDL2_Dictionary <: AbstractCifDictionary
block::Dict{Symbol,DataFrame}
func_defs::Dict{String,Function}
func_text::Dict{String,Expr} #unevaluated Julia code
parent_lookup::Dict{String,String}
end
"""
DDL2_Dictionary(c::Cif)
Create a DDL2_Dictionary from `c`.
"""
DDL2_Dictionary(c::Cif) = begin
if length(keys(c))!= 1
error("Error: Cif dictionary has more than one data block")
end
return DDL2_Dictionary(first(c).second,lowercase(first(keys(c))))
end
"""
DDL2_Dictionary(a; verbose=false)
Create a `DDL2_Dictionary` given filename `a`. `verbose = true` will print
extra debugging information during reading.
"""
DDL2_Dictionary(a; verbose=false) = DDL2_Dictionary(Cif(a,verbose=verbose))
DDL2_Dictionary(b::CifBlock,blockname::AbstractString) = begin
all_dict_info = Dict{Symbol,DataFrame}()
# loop over all blocks, storing information
defs = get_frames(b)
bnames = keys(defs)
for k in bnames
# process loops
loops = get_loop_names(defs[k])
for one_loop in loops
new_info = get_loop(defs[k],first(one_loop))
update_dict!(all_dict_info,new_info,CaselessString(k))
end
# process unlooped
unlooped = [x for x in keys(defs[k]) if !(x in Iterators.flatten(loops))]
cats = unique([split(x,'.')[1][2:end] for x in unlooped])
#println("Cats for $k: $cats")
for one_cat in cats
dnames = filter(x-> split(x,'.')[1][2:end] == one_cat,unlooped)
new_vals = (defs[k][x][] for x in dnames)
@assert length(new_vals)>0
update_row!(all_dict_info,Dict(zip(dnames,new_vals)),CaselessString(k))
end
end
# and now store information in the enclosing block
loops = get_loop_names(b)
for one_loop in loops
new_info = get_loop(b,first(one_loop))
update_dict!(all_dict_info,new_info,CaselessString(blockname))
end
# process unlooped
unlooped = [x for x in keys(b) if !(x in Iterators.flatten(loops))]
cats = unique([split(x,'.')[1][2:end] for x in unlooped])
for one_cat in cats
dnames = filter(x-> split(x,'.')[1][2:end] == one_cat,unlooped)
new_vals = (b[x][] for x in dnames)
update_row!(all_dict_info,Dict(zip(dnames,new_vals)),CaselessString(blockname))
end
# Add implicit values
populate_implicits(all_dict_info)
# now the parent lookup: DDL2 dictionaries store children...
parent_dict = generate_parents(defs)
# And add category, object
add_cat_obj!(all_dict_info)
# Remove any duplicates
for (x,df) in all_dict_info
unique!(df,Not(r"^__blockname"))
end
return DDL2_Dictionary(all_dict_info,Dict(),Dict(),parent_dict)
end
"""
Construct a dictionary when provided with a collection of data frames indexed
by symbols. The symbols are DDL2 attribute categories, and the dataframe columns
are the object_ids of the DDL2 attributes of that category.
TODO: work out child-parent relations as well
"""
DDL2_Dictionary(attr_dict::Dict{Symbol,DataFrame},nspace) = begin
# make sure all rows are unique
for (_,df) in attr_dict
unique!(df,Not(r"^__blockname"))
end
DDL2_Dictionary(attr_dict,Dict(),Dict(),Dict())
end
# Methods needed for creating DDLm Loop categories
"""
keys(d::DDL2_Dictionary)
Return a list of datanames defined by the dictionary, including
any aliases.
"""
keys(d::DDL2_Dictionary) = Iterators.flatten((d.block[:item][!,:name],d.block[:category][!,:id]))
haskey(d::DDL2_Dictionary,k::String) = k in keys(d)
# Obtain all information about item `k` or category `k`
"""
getindex(d::DDL2_Dictionary,k)
d[k] returns the definition for data name `k` as a `Dict{Symbol,DataFrame}`
where `Symbol` is the attribute category (e.g. `:item_name`).
"""
getindex(d::DDL2_Dictionary,k) = begin
lk = lowercase(k)
info_dict = Dict{Symbol,DataFrame}()
if '.' in k search_space = children_of_item else search_space = children_of_category end
for one_child in search_space
cat = Symbol(find_category(d,one_child))
if !haskey(d.block,cat) continue end
obj = Symbol(find_object(d,one_child))
#println("Filtering on $cat / $obj")
info_dict[cat] = d.block[cat][lowercase.(d.block[cat][!,obj]) .== lk,:]
if nrow(info_dict[cat]) == 0 delete!(info_dict,cat) end
end
return info_dict
end
# If a symbol is passed we access the block directly.
getindex(d::DDL2_Dictionary,k::Symbol) = getindex(d.block,k)
get_dic_name(d::DDL2_Dictionary) = d.block[:dictionary][!,:title][]
get_dic_namespace(d::DDL2_Dictionary) = "ddl2" #single namespace
find_category(d::DDL2_Dictionary,dataname) = begin
return String(split(dataname,'.')[1][2:end])
end
get_child_categories(d::DDL2_Dictionary,catname) = []
is_set_category(d::DDL2_Dictionary,catname) = false
is_loop_category(d::DDL2_Dictionary,catname) = true
find_object(d::DDL2_Dictionary,dataname) = begin
if occursin(".",dataname)
return String(split(dataname,".")[end])
end
return nothing
end
"""
get_categories(d::DDL2_Dictionary; referred = false)
List all categories defined in `d`. If `referred` is `true`, categories
for which data names are defined, but no category is defined, are also included.
"""
get_categories(d::DDL2_Dictionary; referred = false) = begin
defed_cats = lowercase.(d.block[:category][!,:id])
if !referred return defed_cats end
more_cats = unique!(lowercase.(d[:item].category_id))
return union(defed_cats, more_cats)
end
get_set_categories(d::DDL2_Dictionary) = []
get_loop_categories(d::DDL2_Dictionary) = get_categories(d)
"""
get_keys_for_cat(d::DDL2_Dictionary,cat)
List all category key data names for `cat` listed in `d`.
"""
get_keys_for_cat(d::DDL2_Dictionary,catname::String) = begin
d[catname][:category_key][!,:name]
end
get_keys_for_cat(d::DDL2_Dictionary,catname::Symbol) = get_keys_for_cat(d,String(catname))
get_names_in_cat(d::DDL2_Dictionary,catname) = begin
unique!(d.block[:item][d.block[:item].category_id .== catname,:name])
end
get_objs_in_cat(d::DDL2_Dictionary,catname) = begin
unique!(d.block[:item][d.block[:item].category_id .== catname,:__object_id])
end
"""
get_default(d::DDL2_Dictionary,dataname)
Return the default value for `dataname` or `missing` if none defined.
"""
get_default(d::DDL2_Dictionary,dataname) = begin
info = d[dataname]
if haskey(info,:item_default) && :value in propertynames(info[:item_default])
return info[:item_default].value[]
end
return missing
end
# Not available for DDL2
lookup_default(d::DDL2_Dictionary,dataname,packet) = missing
list_aliases(d::DDL2_Dictionary,name;include_self=false) = begin
if include_self result = [name] else result = [] end
alias_block = get(d[name],:item_aliases,nothing)
if !isnothing(alias_block)
append!(result, alias_block[!,:alias_name])
end
return result
end
"""
Find the canonical name for `name`. For DDL2 this is not implemented,
that is, aliases are not recognised.
"""
find_name(d::DDL2_Dictionary,name) = begin
lname = lowercase(name)
if lname in lowercase.(d[:item][!,:name]) return lname end
if !haskey(d.block,:item_aliases) return lname end
potentials = d[:item_aliases][lowercase.(d[:item_aliases][!,:alias_name]) .== lname,:name]
if length(potentials) == 1 return potentials[] end
throw(KeyError(name))
end
find_name(d::DDL2_Dictionary,cat,obj) = begin
return "_"*cat*"."*obj
end
has_drel_methods(d::DDL2_Dictionary) = true
"""
Create a dictionary allowing lookup in the direction child -> parent
"""
generate_parents(defs) = begin
child_list = []
parent_list = []
for d in keys(defs)
if haskey(defs[d],"_item_linked.child_name")
append!(child_list,defs[d]["_item_linked.child_name"])
append!(parent_list,defs[d]["_item_linked.parent_name"])
end
end
return Dict(collect(zip(child_list,parent_list)))
end
get_parent_name(d::DDL2_Dictionary,name) = begin
return get(d.parent_lookup,name,nothing)
end
get_cat_class(d::DDL2_Dictionary,name) = "Loop"
"""
Update the appropriate table of `all_dict_info` with
the contents of `new_info`, filling in implicit values
with `blockname`
"""
update_dict!(all_dict_info,new_info,blockname) = begin
tablename = Symbol(split(first(names(new_info)),'.')[1][2:end])
rename!(x-> Symbol(split(String(x),'.')[end]),new_info)
if !haskey(all_dict_info,tablename)
all_dict_info[tablename] = DataFrame()
end
new_info[!,:__blockname] = fill(blockname,nrow(new_info))
all_dict_info[tablename] = vcat(all_dict_info[tablename],new_info,cols=:union)
end
update_row!(all_dict_info,new_vals,blockname) = begin
catname = Symbol(split(first(keys(new_vals)),'.')[1][2:end])
if !haskey(all_dict_info,catname)
all_dict_info[catname] = DataFrame()
end
final_vals = Dict{Symbol,Any}((Symbol(split(x.first,'.')[end]),x.second) for x in new_vals)
final_vals[:__blockname] = blockname
#push!(all_dict_info[catname],final_vals,cols=:union) dataframes 0.21
all_dict_info[catname] = vcat(all_dict_info[catname],DataFrame(final_vals),cols=:union)
end
# DDL2 uses implicit values based on the block name
const implicits = [
"_item.name",
"_item_aliases.name",
"_item_default.name",
"_item_dependent.name",
"_item_description.name",
"_item_enumeration.name",
"_item_examples.name",
"_item_linked.parent_name",
"_item_methods.name",
"_item_range.name",
"_item_related.name",
"_item_type.name",
"_item_type_conditions.name",
"_item_structure.name",
"_item_sub_category.name",
"_item_units.name",
"_category_examples.id",
"_category_key.id",
"_category_group.category_id",
"_category_methods.category_id",
"_item.category_id",
"_datablock.id",
"_datablock_methods.datablock_id",
"_dictionary.datablock_id",
# category.implicit_key -- should be datablock.id
]
const children_of_item = [ "_item.name",
"_item_aliases.name",
"_item_default.name",
"_item_dependent.name",
"_item_description.name",
"_item_enumeration.name",
"_item_examples.name",
"_item_linked.parent_name",
"_item_methods.name",
"_item_range.name",
"_item_related.name",
"_item_type.name",
"_item_type_conditions.name",
"_item_structure.name",
"_item_sub_category.name",
"_item_units.name" ]
const children_of_category = [ "_category.id",
"_category_examples.id",
"_category_key.id",
"_category_group.category_id",
"_category_methods.category_id"
]
#
# All of the implicit are defined as caseless, so we use this information
# as we might find ourselves comparing stuff in the future.
#
populate_implicits(all_tables) = begin
cats = map(x->Symbol(split(x,'.')[1][2:end]),implicits)
objs = map(x->Symbol(split(x,'.')[2]),implicits)
for (cat,table) in all_tables
if cat in cats
target_name = objs[indexin([cat],cats)[]]
if !(target_name in propertynames(table))
table[!,target_name] = copy(table.__blockname)
println("Added implicit value for $cat.$target_name")
else
table[!,target_name] = CaselessString.(table[!,target_name])
end
end
end
end
add_cat_obj!(all_info) = begin
catobj = split.(all_info[:item][!,:name],".")
all_info[:item].category_id = [String(x[1][2:end]) for x in catobj]
all_info[:item].__object_id = [String(x[2]) for x in catobj]
end
"""
get_toplevel_cats(d::DDL2_Dictionary)
Return a list of category names that appear outside the definition blocks.
Typically these are lists of types, units, groups and methods.
"""
get_toplevel_cats(d::DDL2_Dictionary) = begin
[k for k in keys(d.block) if d.block[k].__blockname[1] == get_dic_name(d)]
end
"""
as_data(d::DDL2_Dictionary)
Return an object `o` accessible using
`o[attribute]` where `attribute`
is a ddl2 attribute.
"""
as_data(d::DDL2_Dictionary) = begin
output = Dict{String,Any}()
for c in keys(d.block)
for o in propertynames(d.block[c])
output["_$c.$o"] = d.block[c][!,o]
end
end
return output
end
## Handling functions
# Methods for setting and retrieving evaluated functions
set_func!(d::DDL2_Dictionary,func_name::AbstractString,func_text::Expr,func_code) = begin
d.func_defs[lowercase(func_name)] = func_code
d.func_text[lowercase(func_name)] = func_text
end
get_func(d::DDL2_Dictionary,func_name::AbstractString) = d.func_defs[lowercase(func_name)]
get_func_text(d::DDL2_Dictionary,func_name::AbstractString) = d.func_text[lowercase(func_name)]
has_func(d::DDL2_Dictionary,func_name::AbstractString) = begin
try
d.func_defs[lowercase(func_name)]
catch KeyError
return false
end
return true
end
"""
Return functions defined in the dictionary. DDL2 does not have this
"""
get_dict_funcs(d::DDL2_Dictionary) = (nothing,[])
#== Extract the dREL text from the dictionary, if any
DDL2 holds all methods in a table indexed by method_id, with the
text listed in "_method_list.inline", the type of method given
in "_method_list.code" and the language in _method_list.language.
We say that 'Evaluation' == 'calculation' and accept only 'dREL'
for now.
==#
load_func_text(dict::DDL2_Dictionary,dataname::AbstractString,meth_type::String) = begin
if meth_type != "Evaluation" return "" end
full_def = dict[dataname]
meth_text = ""
if haskey(full_def,:item_methods)
for one_row in eachrow(full_def[:item_methods])
target = dict[:method_list][dict[:method_list].id .== one_row.method_id,:]
if lowercase(target.code[]) == "calculation" &&
lowercase(target.language[]) == "drel" meth_text = target.inline[]
end
end
elseif haskey(full_def,:category_methods)
for one_row in eachrow(full_def[:category_methods])
target = dict[:method_list][dict[:method_list].id .== one_row.method_id,:]
if lowercase(target.code[]) == "calculation" &&
lowercase(target.language[]) == "drel" meth_text = target.inline[]
end
end
end
return meth_text
end
# Methods for setting and retrieving definition functions
has_default_methods(d::DDL2_Dictionary) = false
"""
Type mappings for DDL2. A subset of DDL2 types can be mapped
to Julia types. This table maps the type codes, and there is
a fallback to caseless/caseful strings. Note that this relies
on consistent type naming across all DDL2 dictionaries.
"""
const ddl2_type_mapping = Dict( "text" => String,
"int" => Integer,
"float" => Float64
)
get_julia_type_name(cdic::DDL2_Dictionary,cat::AbstractString,obj::AbstractString) = begin
definition = cdic[find_name(cdic,cat,obj)]
type_index = haskey(definition, :item_type) ? definition[:item_type][!,:code][] : "text"
all_types = cdic[:item_type_list]
type_base = all_types[all_types[!,:code] .== type_index,:primitive_code][]
if type_index in keys(ddl2_type_mapping)
return ddl2_type_mapping[type_index],"Single"
end
if type_base != "uchar" return String,"Single" end
return Symbol("CaselessString"),"Single"
end
get_container_type(cdic::DDL2_Dictionary,dataname) = "Single"
#
# We always want item.name to be printed.
#
get_implicit_list(cdic::DDL2_Dictionary) = begin
all_imps = map(x->x[2:end],implicits)
filter!(x-> !(x in ["item.name","item.category_id",
"item_linked.parent_name"]),all_imps)
end