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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb76f2afcac22ab8c56593829fc84ec21ff1ac6a
4
- data.tar.gz: 5de14320187997e34c4aba43ee3183b9e25ddc45
3
+ metadata.gz: f310021527cf21283951d133438156181a2937b2
4
+ data.tar.gz: c7ac7d363ecd3451628a26b84cde8c139c9564fa
5
5
  SHA512:
6
- metadata.gz: 209f32ee7f0108e8fd88340455eac5504b2fb11f7f1a10ca20016a391c89a35bcf52a24daa2d97d1875fdb5838d04b81a565b8c1f4280a2efe2143338cf36551
7
- data.tar.gz: a1dfeabc917a8b7836b7e545b0082f9256f918725d76929845e99c8503af4c40783929f613bd11e45cab9c56299155be2d79456d2ee83a7be2c67fa062fe77ab
6
+ metadata.gz: 0f94edd9c559d4515270e928d5f9a4497be68710ae4cc9bdf2bef50f85932886029e2d6f4797fae261e85a905cc50075ab71aa106740c1f7542b1bdd9c921510
7
+ data.tar.gz: 0e351f296e4538c421342af885062f6e2040a2b90f0b7063457b7eae9f25659938f392adbdb17af76e41d8c8ba2c911e325b775382f7f2074a6169d9eb0823df
@@ -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; source file can
15
- # also contain directives or links to them
16
- # @return [Doc] result of transform; automatically hashed into @transforms
17
- def transform(transforms, doc_or_path=nil)
18
- @output = Doc.new
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
- @doc = case doc_or_path
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 doc
30
+ else
29
31
  end
30
32
  @src_ns = transforms[:src_ns]
31
- source = doc.locate(add_name_space_prefix(transforms[:source])).first
32
- @output.grammar = transforms[:grammar] if transforms[:grammar]
33
- add_observer @output.history
34
- a = activate(transforms.first, source).first
35
- @output << a
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
- include Duxml
5
- class TransformClass < ChangeClass
6
- def initialize(xform, src, output)
7
- @instructions = xform
8
- @input = src
9
- @output = output
10
- end
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
- attr_reader :instructions, :input, :output
12
+ attr_reader :instructions, :input, :output
13
13
 
14
- # @return [String] verbal description of transform event
15
- def description
16
- "#{output.description} created from #{input.description} by #{instructions.description}"
17
- end
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
- # @return [false] required to prevent grammar from attempting to validate transform
20
- def error?
21
- false
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 $MATCH
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 ''
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: con_duxml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Kong