con_duxml 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/con_duxml.rb +17 -12
- data/lib/con_duxml/duxml_ext/transform_class.rb +17 -16
- data/lib/con_duxml/transform/transform_private.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f310021527cf21283951d133438156181a2937b2
|
4
|
+
data.tar.gz: c7ac7d363ecd3451628a26b84cde8c139c9564fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f94edd9c559d4515270e928d5f9a4497be68710ae4cc9bdf2bef50f85932886029e2d6f4797fae261e85a905cc50075ab71aa106740c1f7542b1bdd9c921510
|
7
|
+
data.tar.gz: 0e351f296e4538c421342af885062f6e2040a2b90f0b7063457b7eae9f25659938f392adbdb17af76e41d8c8ba2c911e325b775382f7f2074a6169d9eb0823df
|
data/lib/con_duxml.rb
CHANGED
@@ -11,30 +11,35 @@ module ConDuxml
|
|
11
11
|
attr_reader :src_ns
|
12
12
|
|
13
13
|
# @param transforms [String, Doc] transforms file or path to one
|
14
|
-
# @param doc_or_path [String, Doc] XML document or path to one that will provide content to be transformed
|
15
|
-
#
|
16
|
-
#
|
17
|
-
|
18
|
-
|
14
|
+
# @param doc_or_path [String, Doc] XML document or path to one that will provide content to be transformed
|
15
|
+
# @param opts [Hash] more to come TODO
|
16
|
+
# :strict => [boolean] # true by default, throws errors when transform results violate given grammar; if false,
|
17
|
+
# # saves error to doc.history and resumes transform
|
18
|
+
# @return [Doc] result of transform; automatically saved to @doc
|
19
|
+
def transform(transforms, doc_or_path, opts={})
|
20
|
+
@doc = Doc.new
|
19
21
|
transforms = case transforms
|
20
22
|
when Doc then transforms.root
|
21
23
|
when Element then transforms
|
22
24
|
when String then sax(transforms).root
|
23
25
|
else
|
24
26
|
end
|
25
|
-
@
|
27
|
+
@src_doc = case doc_or_path
|
26
28
|
when Doc then doc_or_path
|
27
29
|
when String then sax doc_or_path
|
28
|
-
else
|
30
|
+
else
|
29
31
|
end
|
30
32
|
@src_ns = transforms[:src_ns]
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
src_node = src_doc.locate(add_name_space_prefix(transforms[:source])).first
|
34
|
+
doc.grammar = transforms[:grammar] if transforms[:grammar]
|
35
|
+
doc.history.strict?(false) if opts[:strict].is_a?(FalseClass)
|
36
|
+
add_observer doc.history
|
37
|
+
a = activate(transforms.first, src_node).first
|
38
|
+
@doc << a
|
36
39
|
end
|
37
40
|
|
41
|
+
attr_reader :src_doc
|
42
|
+
|
38
43
|
# instantiation takes a static design file and constructs a dynamic model by identifying certain keyword elements,
|
39
44
|
# executing their method on child nodes, then removing the interpolating keyword element. these are:
|
40
45
|
#
|
@@ -1,23 +1,24 @@
|
|
1
1
|
# Copyright (c) 2016 Freescale Semiconductor Inc.
|
2
2
|
require 'duxml/meta/history/change'
|
3
3
|
|
4
|
-
|
5
|
-
class TransformClass < ChangeClass
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
module Duxml
|
5
|
+
class TransformClass < ChangeClass
|
6
|
+
def initialize(xform, src, output)
|
7
|
+
@instructions = xform
|
8
|
+
@input = src
|
9
|
+
@output = output
|
10
|
+
end
|
11
11
|
|
12
|
-
|
12
|
+
attr_reader :instructions, :input, :output
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
# @return [String] verbal description of transform event
|
15
|
+
def description
|
16
|
+
"#{output.description} created from #{input.description} by #{instructions.description}"
|
17
|
+
end
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
# @return [false] required to prevent grammar from attempting to validate transform
|
20
|
+
def error?
|
21
|
+
false
|
22
|
+
end
|
22
23
|
end
|
23
|
-
end
|
24
|
+
end
|
@@ -22,6 +22,10 @@ module Private
|
|
22
22
|
changed
|
23
23
|
notify_observers(:Transform, xform, src, output)
|
24
24
|
changed false
|
25
|
+
output.add_observer doc.history if output.respond_to?(:add_observer)
|
26
|
+
if output.is_a?(Element) and doc.history.strict?
|
27
|
+
raise Exception, doc.history.latest.description unless doc.grammar.validate output
|
28
|
+
end
|
25
29
|
output
|
26
30
|
end
|
27
31
|
end
|
@@ -64,7 +68,7 @@ module Private
|
|
64
68
|
when /^([\w]+): (\S.*)$/, /^([\S]+) => (\S.*)$/ then {$1.to_sym => normalize_arg($2, src)}
|
65
69
|
when /^'(.+)' => (.+)$/ then {$1 => normalize_arg($2, src)}
|
66
70
|
when /\// then src.locate(add_name_space_prefix arg_str).first
|
67
|
-
when /^'([\s\w]+)'$/ then $
|
71
|
+
when /^'([\s\w]+)'$/ then $1
|
68
72
|
else # arg is path to node
|
69
73
|
target = src.locate(add_name_space_prefix arg_str).first
|
70
74
|
target or ''
|