forked from SciML/MathML.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.jl
163 lines (135 loc) · 3.66 KB
/
parse.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
"""
parse_node(node)
take a node and parse into Symbolics form
"""
function parse_node(node)
tagmap[node.name](node)
end
function parse_str(str)
doc = parsexml(str)
parse_doc(doc)
end
function parse_doc(doc)
node = doc.root
parse_node(node)
end
function parse_file(fn)
node = readxml(fn).root
parse_node(node)
end
"""
parse_cn(node)
parse a <cn> node
"""
function parse_cn(node)
# elements(node) != EzXML.Node[] && error("node cant have elements rn, check if </sep> is in the node")
# this isnt great might want to check that `sep` actually shows up
if haskey(node, "type") && elements(node) != EzXML.Node[]
parse_cn_w_sep(node)
else
# Float64(Meta.parse(node.content))
parse(Float64, node.content) # convert to Float64 for CellML compatibility
end
end
"""
parse_cn_w_sep(node)
parse a <cn type=".."> node
where type ∈ ["e-notation", "rational", "complex-cartesian", "complex-polar"]
"""
function parse_cn_w_sep(node)
# node = clean_attributes(node)
# txts = findall("text()", node)
txts = [n for n in eachnode(node) if istext(n)]
length(txts) != 2 && error("stop, collaborate, and listen!, problem with <cn>")
x1, x2 = map(x -> Meta.parse(x.content), txts)
t = node["type"]
if t == "e-notation"
x1 * exp10(x2)
elseif t == "rational"
Rational(x1, x2)
elseif t == "complex-cartesian"
Complex(x1, x2)
elseif t == "complex-polar"
x1 * exp(x2 * im)
else
error("$t in parse_cn_w_sep, somethings wrong")
end
end
"""
parse_ci(node)
parse a <ci> node
"""
function parse_ci(node)
# c = Symbol(Meta.parse(strip(node.content)))
c = Symbol(string(strip(node.content)))
(@variables $c)[1]
end
########## Parse piecewise ###################################################
function parse_piecewise(node)
ns = elements(node)
pieces = filter(x -> nodename(x) == "piece", ns)
others = filter(x -> nodename(x) == "otherwise", ns)
if length(others) > 0
otherwise = parse_node(firstelement(others[1]))
else
otherwise = 0.0
end
return process_pieces(pieces, otherwise)
end
function process_pieces(pieces, otherwise)
node = pieces[1]
c = parse_node.(elements(node))
return IfElse.ifelse(c[2] > 0.5, c[1],
length(pieces) == 1 ? otherwise :
process_pieces(pieces[2:end], otherwise))
end
"""
parse_apply(node)
parse an <apply> node into Symbolics form
how to deal w apply within apply, need to ensure we've hit bottom
"""
function parse_apply(node)
node.name != "apply" &&
error("calling parse_apply requires the name of the element to be `apply`")
elms = elements(node)
cs = parse_node.(elms[2:end])
applymap[elms[1].name](cs)
end
"""
parse_bvar(node)
parse a <bvar> node
"""
function parse_bvar(node)
es = elements(node)
length(es) == 1 ? (parse_node(es[1]), 1) : Tuple(parse_node.(es))
end
"""
parse_diff(x)
parse a <diff>
"""
function parse_diff(a)
(iv, deg), x = a
deg = trunc(Int, deg)
# num = Num(Symbolics.Sym{Symbolics.FnType{Tuple{Real},Real}}(Symbol(x))(iv))
D = Differential(iv)^deg
D(x)
end
"""
parse_lambda(node)
parse a <lambda> node
```xml
<lambda>
<bvar> x1 </bvar><bvar> xn </bvar>
expression-in-x1-xn
</lambda>
```
"""
function parse_lambda(node)
es = elements(node)
vars = findall("//x:bvar | //bvar", node, ["x" => MathML.mathml_ns])
# vars2 = findall("//bvar", node) # works in tests
# vars = union(vars, vars2) # FIX
args = first.(parse_bvar.(vars))
num = parse_apply(es[end])
eval(build_function([num], args...)[1])
end