metanorma-plugin-lutaml 0.7.23 → 0.7.25

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
  SHA256:
3
- metadata.gz: 86941bc530959fd2a6023671bfac6d46e18ac1095db5903b67b3be22f411372d
4
- data.tar.gz: f4cbcf8affd7ffffb7773ad3a9e7c6d008d176dfe3a507a2ba146cd38ba57e88
3
+ metadata.gz: 3f52cc174af4c2cd486067a47ca4c2d48093f2bc9a4030ddbc55d9bd0629b60c
4
+ data.tar.gz: f657c5a57479b998913adce1a8147cbd53cdfe10b52d97d7a2a9dfc4198b21af
5
5
  SHA512:
6
- metadata.gz: 3a2dc0a28276e48230002049ba5946821c81d231be38494f978e5ad7298836b3ea1852be10314a8cfe7a86f775a097407c67a541f6f3c633e4a1dc32d6206702
7
- data.tar.gz: 0eda7cedc08c10bb6b0da49cfabb0f72e6a3a22355b784d9f633217be0f7bdec1946fe269deeb7d460a468f91d7004cc08df747018217239580e2d8566337791
6
+ metadata.gz: 3677d003d961777f01889f4d7db189d43f236aa8a8fd0a29dfd29fbb765bb79dd101aa9fb00bc844986f1f09d23a8b3746f3c8eca88d4da5b9ed4532c3314605
7
+ data.tar.gz: 6f2562fa121c7b33e699412bdd70a3b68eb56916254c83b6baba1ab8cac4e286079f21b65b34213774eff761989c0d01c1e2e158a3b54ce3b0387df455c99dbf
data/Gemfile CHANGED
@@ -11,3 +11,17 @@ begin
11
11
  rescue StandardError
12
12
  nil
13
13
  end
14
+
15
+ gem "debug"
16
+ gem "equivalent-xml"
17
+ gem "metanorma-standoc"
18
+ gem "rake"
19
+ gem "rspec"
20
+ gem "rspec-html-matchers"
21
+ gem "rubocop"
22
+ gem "rubocop-performance"
23
+ gem "simplecov"
24
+ gem "timecop"
25
+ gem "vcr"
26
+ gem "webmock"
27
+ gem "xml-c14n"
data/README.adoc CHANGED
@@ -300,6 +300,25 @@ via Liquid:
300
300
  NOTE: This functionality is used in the ISO 10303 SRL to load the full schema
301
301
  set at once but only render the selected schemas in individual documents.
302
302
 
303
+ === Using `include_path`
304
+
305
+ This functionality allows `[lutaml_express_liquid]` blocks to load templates
306
+ from the paths other than the location of the document.
307
+
308
+ [source,adoc]
309
+ -----
310
+ :lutaml-express-index: all_schemas; ../schemas_all.yaml;
311
+
312
+ [lutaml_express_liquid,all_schemas,context,config_yaml=schemas.yaml,include_path=../templates]
313
+ ---
314
+ {% assign selected = context.schemas | where: "selected" %}
315
+ {% render "templates/resources/schema" for selected as schema %}
316
+ ----
317
+ -----
318
+
319
+ The resulting block adds the `include_path` to the Liquid renderer. The path is
320
+ resolved based on the location of the document. You can add multiple paths by
321
+ separating them with commas.
303
322
 
304
323
  == Usage with Lutaml-UML
305
324
 
@@ -871,7 +890,9 @@ that specifies:
871
890
  * What render style is desired;
872
891
 
873
892
  * Location of the root package (which package should the iterative process start
874
- at).
893
+ at);
894
+
895
+ * Which EA extensions to be loaded.
875
896
 
876
897
  The format for using the YAML configuration file:
877
898
 
@@ -887,6 +908,9 @@ packages:
887
908
  - skip: four
888
909
  render_style: entity_list | data_dictionary | default
889
910
  section_depth: 2
911
+ ea_extension:
912
+ - "CityGML_MDG_Technology.xml"
913
+ - "xmi_definition_for_some_standard.xml"
890
914
  ----
891
915
 
892
916
  Where:
@@ -929,6 +953,12 @@ equal to 2, root package will be `one-1`.
929
953
  ]
930
954
  ----
931
955
 
956
+ * `ea_extension` - optional, list of EA extensions to load. Some XMI files may
957
+ contain elements that cannot be resolved by default, for example CityGML
958
+ elements. You can use `ea_extension` to load the definition of these elements
959
+ in XML format (`CityGML_MDG_Technology.xml`) in order to resolve them. The
960
+ location of the xml files is relative to the config YAML file.
961
+
932
962
  Usage with command:
933
963
 
934
964
  [source,adoc]
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ module Config
7
+ class Guidance < ::Lutaml::Model::Serializable
8
+ attribute :classes, GuidanceKlass, collection: true,
9
+ initialize_empty: true
10
+
11
+ yaml do
12
+ map "classes", to: :classes
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ module Config
7
+ class GuidanceAttribute < ::Lutaml::Model::Serializable
8
+ attribute :name, :string
9
+ attribute :used, :boolean
10
+ attribute :guidance, :string
11
+
12
+ yaml do
13
+ map "name", to: :name
14
+ map "used", to: :used
15
+ map "guidance", to: :guidance
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ module Config
7
+ class GuidanceKlass < ::Lutaml::Model::Serializable
8
+ attribute :name, :string
9
+ attribute :attributes, GuidanceAttribute, collection: true,
10
+ initialize_empty: true
11
+
12
+ yaml do
13
+ map "name", to: :name
14
+ map "attributes", to: :attributes
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ module Config
7
+ class Package < ::Lutaml::Model::Serializable
8
+ attribute :name, :string
9
+ attribute :skip_tables, :string, collection: true
10
+ attribute :render_entities, :string, collection: true
11
+
12
+ yaml do
13
+ map "name", to: :name
14
+ map "skip_tables", to: :skip_tables
15
+ map "render_entities", to: :render_entities
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,104 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ module Config
7
+ class Root < ::Lutaml::Model::Serializable
8
+ attribute :packages, Package, collection: true
9
+ attribute :render_style, :string
10
+ attribute :ea_extension, :string, collection: true
11
+ attribute :template_path, :string
12
+ attribute :section_depth, :integer
13
+ attribute :guidance, :string
14
+ attribute :skip, :string, collection: true
15
+ attribute :include_root, :boolean
16
+ attribute :package_root_level, :integer
17
+ attribute :render_nested_packages, :boolean
18
+ attribute :external_classes, :hash
19
+
20
+ yaml do
21
+ map "packages", to: :packages,
22
+ with: {
23
+ from: :packages_from_yaml,
24
+ to: :packages_to_yaml,
25
+ }
26
+ map "render_style", to: :render_style
27
+ map "ea_extension", to: :ea_extension
28
+ map "template_path", to: :template_path
29
+ map "section_depth", to: :section_depth
30
+ map "guidance", to: :guidance
31
+ map "include_root", to: :include_root
32
+ map "package_root_level", to: :package_root_level
33
+ map "render_nested_packages", to: :render_nested_packages
34
+ map "external_classes", to: :external_classes
35
+ end
36
+
37
+ def packages_from_yaml(model, values) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
38
+ values.each do |value|
39
+ if value.is_a?(Hash)
40
+ if value.keys.first == "skip"
41
+ # contains skip key
42
+ model.skip ||= []
43
+ model.skip << value["skip"]
44
+ else
45
+ # contains skip_tables or render_entities key
46
+ package = create_package_from_value(value)
47
+
48
+ model.packages ||= []
49
+ model.packages << package
50
+ end
51
+ else
52
+ # only contains package name
53
+ model.packages ||= []
54
+ model.packages << Package.new(name: value)
55
+ end
56
+ end
57
+ end
58
+
59
+ def packages_to_yaml(model, doc) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
60
+ doc["packages"] = []
61
+ model.packages.each do |package|
62
+ if package.skip_tables || package.render_entities # rubocop:disable Style/ConditionalAssignment
63
+ doc["packages"] << {
64
+ package.name => package.to_yaml_hash
65
+ .reject { |k| k == "name" },
66
+ }
67
+ else
68
+ doc["packages"] << package.name
69
+ end
70
+ end
71
+
72
+ model.skip.each do |skip_package|
73
+ doc["packages"] << { "skip" => skip_package }
74
+ end
75
+ end
76
+
77
+ private
78
+
79
+ def create_package_from_value(value) # rubocop:disable Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics/MethodLength
80
+ package = Package.new
81
+ package.name = value.keys.first
82
+ package_options = value[package.name]
83
+
84
+ if package_options.key?("skip_tables")
85
+ package_options["skip_tables"].each do |table|
86
+ package.skip_tables ||= []
87
+ package.skip_tables << table
88
+ end
89
+ end
90
+
91
+ if package_options.key?("render_entities")
92
+ package_options["render_entities"].each do |entity|
93
+ package.render_entities ||= []
94
+ package.render_entities << entity
95
+ end
96
+ end
97
+
98
+ package
99
+ end
100
+ end
101
+ end
102
+ end
103
+ end
104
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "yaml"
4
+ require "lutaml"
5
+ require "lutaml/model"
6
+ require_relative "config/package"
7
+ require_relative "config/root"
8
+ require_relative "config/guidance_attribute"
9
+ require_relative "config/guidance_klass"
10
+ require_relative "config/guidance"
11
+
12
+ module Metanorma
13
+ module Plugin
14
+ module Lutaml
15
+ module Config
16
+ end
17
+ end
18
+ end
19
+ end
@@ -7,7 +7,7 @@ module Metanorma
7
7
  module CustomFilters
8
8
  def html2adoc(input)
9
9
  # Coradoc::ReverseAdoc.convert(input)
10
- Coradoc::Input::HTML.convert(input)
10
+ Coradoc::Input::Html.convert(input)
11
11
  end
12
12
 
13
13
  def interpolate(input)
@@ -38,7 +38,10 @@ module Metanorma
38
38
  path = get_path_from_index(parent, index) if index
39
39
 
40
40
  if index && path
41
- doc = lutaml_document_from_file_or_cache(parent.document, path, {})
41
+ doc = lutaml_document_from_file_or_cache(
42
+ parent.document, path,
43
+ Metanorma::Plugin::Lutaml::Config::Root.new
44
+ )
42
45
  end
43
46
 
44
47
  doc ||= parent.document.attributes["lutaml_xmi_cache"].values.first
@@ -49,7 +49,7 @@ module Metanorma
49
49
  return document.attributes["lutaml_xmi_cache"][full_path]
50
50
  end
51
51
 
52
- yaml_config["ea_extension"]&.each do |ea_extension_path|
52
+ yaml_config.ea_extension&.each do |ea_extension_path|
53
53
  # resolve paths of ea extensions based on the location of
54
54
  # config yaml file
55
55
  ea_extension_full_path = File.expand_path(
@@ -58,29 +58,31 @@ module Metanorma
58
58
  Xmi::EaRoot.load_extension(ea_extension_full_path)
59
59
  end
60
60
 
61
- guidance = get_guidance_file(document, yaml_config["guidance"])
61
+ guidance = get_guidance(document, yaml_config.guidance)
62
62
  result_document = parse_result_document(full_path, guidance)
63
63
  document.attributes["lutaml_xmi_cache"] ||= {}
64
64
  document.attributes["lutaml_xmi_cache"][full_path] = result_document
65
65
  result_document
66
66
  end
67
67
 
68
- def get_guidance_file(document, guidance_config)
69
- guidance = nil
68
+ def get_guidance(document, guidance_config)
69
+ return unless guidance_config
70
70
 
71
- if guidance_config
72
- guidance = Utils.relative_file_path(document,
73
- guidance_config)
74
- end
75
-
76
- guidance
71
+ guidance_yaml = Utils.relative_file_path(document, guidance_config)
72
+ guidance = Metanorma::Plugin::Lutaml::Config::Guidance.from_yaml(
73
+ File.read(guidance_yaml, encoding: "UTF-8"),
74
+ )
75
+ guidance.to_yaml_hash
77
76
  end
78
77
 
79
78
  def parse_yaml_config_file(document, file_path)
80
- return {} if file_path.nil?
79
+ return Metanorma::Plugin::Lutaml::Config::Root.new if file_path.nil?
81
80
 
82
81
  relative_file_path = Utils.relative_file_path(document, file_path)
83
- YAML.safe_load(File.read(relative_file_path, encoding: "UTF-8"))
82
+
83
+ Metanorma::Plugin::Lutaml::Config::Root.from_yaml(
84
+ File.read(relative_file_path, encoding: "UTF-8"),
85
+ )
84
86
  end
85
87
 
86
88
  def processed_lines(document, input_lines)
@@ -261,14 +263,14 @@ module Metanorma
261
263
 
262
264
  def create_context_object(lutaml_document, additional_context, options) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
263
265
  root_package = package_level(lutaml_document.to_liquid,
264
- options["package_root_level"] || 1)
265
- if options.empty? || options["packages"].nil?
266
+ options.package_root_level || 1)
267
+ if options.packages.nil?
266
268
  return {
267
269
  "render_nested_packages" => true,
268
270
  "packages" => root_package["packages"],
269
271
  "root_packages" => [root_package],
270
272
  "additional_context" => additional_context
271
- .merge("external_classes" => options["external_classes"]),
273
+ .merge("external_classes" => options.external_classes),
272
274
  "name" => root_package["name"],
273
275
  }
274
276
  end
@@ -276,41 +278,30 @@ module Metanorma
276
278
  all_packages = [root_package, *root_package["children_packages"]]
277
279
  {
278
280
  "packages" => sort_and_filter_out_packages(all_packages, options),
279
- "package_entities" => package_entities(options),
280
- "package_skip_sections" => package_skip_sections(options),
281
+ "package_entities" => package_hash(options, "render_entities"),
282
+ "package_skip_sections" => package_hash(options, "skip_tables"),
281
283
  "additional_context" => additional_context
282
- .merge("external_classes" => options["external_classes"]),
284
+ .merge("external_classes" => options.external_classes),
283
285
  "root_packages" => [root_package],
284
- "render_nested_packages" => options["render_nested_packages"] ||
286
+ "render_nested_packages" => options.render_nested_packages ||
285
287
  false,
286
288
  "name" => root_package["name"],
287
289
  }
288
290
  end
289
291
 
290
- def package_entities(options) # rubocop:disable Metrics/AbcSize
291
- return {} unless options["packages"]
292
+ def package_hash(options, key)
293
+ return {} unless options.packages
292
294
 
293
- options["packages"].find_all do |entity|
294
- entity.is_a?(Hash) && entity.values.first["render_entities"]
295
- end.map do |entity|
296
- [entity.keys.first,
297
- entity.values.first["render_entities"].map { |n| [n, true] }.to_h]
298
- end.to_h
299
- end
300
-
301
- def package_skip_sections(options) # rubocop:disable Metrics/AbcSize
302
- return {} unless options["packages"]
303
-
304
- options["packages"].find_all do |entity|
305
- entity.is_a?(Hash) && entity.values.first["skip_tables"]
306
- end.map do |entity|
307
- [entity.keys.first,
308
- entity.values.first["skip_tables"].map { |n| [n, true] }.to_h]
309
- end.to_h
295
+ result = {}
296
+ packages = options.packages.reject { |p| p.send(key.to_sym).nil? }
297
+ packages.each do |p|
298
+ result[p.name] = p.send(key.to_sym).map { |n| [n, true] }.to_h
299
+ end
300
+ result
310
301
  end
311
302
 
312
303
  def sort_and_filter_out_packages(all_packages, options) # rubocop:disable Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics/MethodLength,Metrics/PerceivedComplexity
313
- return all_packages if options["packages"].nil?
304
+ return all_packages if options.packages.nil?
314
305
 
315
306
  result = []
316
307
  # Step one - filter out all skipped packages
@@ -322,11 +313,11 @@ module Metanorma
322
313
  result)
323
314
  end
324
315
 
325
- def filter_out_all_skipped_packages(options, all_packages)
326
- options["packages"].find_all do |entity|
327
- entity.is_a?(Hash) && entity["skip"]
328
- end.each do |entity|
329
- entity_regexp = config_entity_regexp(entity["skip"])
316
+ def filter_out_all_skipped_packages(options, all_packages) # rubocop:disable Metrics/AbcSize
317
+ return all_packages if options.skip.nil?
318
+
319
+ options.skip.each do |skip_package|
320
+ entity_regexp = config_entity_regexp(skip_package)
330
321
  all_packages.delete_if do |package|
331
322
  package["name"] =~ entity_regexp
332
323
  end
@@ -335,21 +326,14 @@ module Metanorma
335
326
  all_packages
336
327
  end
337
328
 
338
- def select_supplied_packages_by_pattern(options, all_packages, result) # rubocop:disable Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics/MethodLength,Metrics/PerceivedComplexity
339
- options["packages"].find_all do |entity|
340
- entity.is_a?(String) || (entity.is_a?(Hash) && !entity["skip"])
341
- end.each do |entity_obj|
342
- entity = if entity_obj.is_a?(String)
343
- entity_obj
344
- else
345
- entity_obj.keys.first
346
- end
347
- entity_regexp = config_entity_regexp(entity)
348
- all_packages.each do |package|
349
- if package["name"]&.match?(entity_regexp)
350
- result.push(package)
329
+ def select_supplied_packages_by_pattern(options, all_packages, result) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
330
+ options.packages.each do |package|
331
+ entity_regexp = config_entity_regexp(package.name)
332
+ all_packages.each do |p|
333
+ if p["name"]&.match?(entity_regexp)
334
+ result.push(p)
351
335
  all_packages.delete_if do |nest_package|
352
- nest_package["name"] == package["name"]
336
+ nest_package["name"] == p["name"]
353
337
  end
354
338
  end
355
339
  end
@@ -366,15 +350,15 @@ module Metanorma
366
350
  def model_representation(lutaml_doc, document, add_context, options) # rubocop:disable Metrics/MethodLength
367
351
  fill_in_entities_refs_attributes(document, lutaml_doc, options)
368
352
  render_result, errors = Utils.render_liquid_string(
369
- template_string: template(options["section_depth"] || 2,
370
- options["render_style"],
371
- options["include_root"]),
353
+ template_string: template(options.section_depth || 2,
354
+ options.render_style,
355
+ options.include_root),
372
356
  context_items: create_context_object(lutaml_doc,
373
357
  add_context,
374
358
  options),
375
359
  context_name: "context",
376
360
  document: document,
377
- include_path: template_path(document, options["template_path"]),
361
+ include_path: template_path(document, options.template_path),
378
362
  )
379
363
  Utils.notify_render_errors(document, errors)
380
364
  render_result.split("\n")
@@ -4,6 +4,8 @@ module Metanorma
4
4
  module Plugin
5
5
  module Lutaml
6
6
  class LutamlKlassTableBlockMacro < ::Asciidoctor::Extensions::BlockMacroProcessor
7
+ include LutamlEaXmiBase
8
+
7
9
  DEFAULT_TEMPLATE = File.join(
8
10
  Gem::Specification.find_by_name("metanorma-plugin-lutaml").gem_dir,
9
11
  "lib", "metanorma", "plugin", "lutaml", "liquid_templates",
@@ -22,10 +24,9 @@ module Metanorma
22
24
  )
23
25
  end
24
26
 
27
+ guidance = nil
25
28
  if attrs["guidance"]
26
- attrs["guidance"] = Utils.relative_file_path(
27
- parent.document, attrs["guidance"]
28
- )
29
+ guidance = get_guidance(parent.document, attrs["guidance"])
29
30
  end
30
31
 
31
32
  path = if !attrs["path"].nil?
@@ -37,7 +38,7 @@ module Metanorma
37
38
  end
38
39
 
39
40
  klass = ::Lutaml::XMI::Parsers::XML.serialize_generalization_by_name(
40
- xmi_path, path, attrs["guidance"]
41
+ xmi_path, path, guidance
41
42
  )
42
43
 
43
44
  render(klass, parent, attrs)
@@ -105,10 +105,11 @@ module Metanorma
105
105
  def gather_context_liquid_items( # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/ParameterLists
106
106
  index_names:, document:, indexes:, options: {}
107
107
  )
108
- index_names.map do |path|
109
- if indexes[path]
110
- indexes[path][:liquid_drop] ||=
111
- indexes[path][:model].to_liquid(options: options)
108
+ index_names.map do |path| # rubocop:disable Metrics/BlockLength
109
+ if indexes[path] && indexes[path][:model]
110
+ repo = indexes[path][:model]
111
+ repo = update_repo(options, repo)
112
+ indexes[path][:liquid_drop] ||= repo.to_liquid
112
113
  else
113
114
  full_path = Utils.relative_file_path(document, path)
114
115
  unless File.file?(full_path)
@@ -118,9 +119,10 @@ module Metanorma
118
119
  "the full path.",
119
120
  )
120
121
  end
121
- express_model = load_express_lutaml_file(document, path)
122
+ repo = load_express_lutaml_file(document, path)
123
+ repo = update_repo(options, repo)
122
124
  indexes[path] = {
123
- liquid_drop: express_model.to_liquid(options: options),
125
+ liquid_drop: repo.to_liquid,
124
126
  }
125
127
  end
126
128
 
@@ -128,7 +130,63 @@ module Metanorma
128
130
  end
129
131
  end
130
132
 
131
- def read_config_yaml_file(document, file_path) # rubocop:disable Metrics/MethodLength
133
+ def update_repo(options, repo)
134
+ # Unwrap repo if it's a cache
135
+ repo = repo.content if repo.is_a? Expressir::Model::Cache
136
+
137
+ # Process each schema
138
+ repo.schemas.each do |schema|
139
+ update_schema_selection(schema, options)
140
+ options["relative_path_prefix"] =
141
+ relative_path_prefix(options, schema)
142
+ update_schema_remarks(schema, options)
143
+ end
144
+
145
+ repo
146
+ end
147
+
148
+ def update_schema_selection(schema, options)
149
+ return unless options["selected_schemas"]
150
+
151
+ schema.selected = options["selected_schemas"].include?(schema.file_basename) ||
152
+ options["selected_schemas"].include?(schema.id)
153
+ end
154
+
155
+ def update_schema_remarks(schema, options)
156
+ # Update schema-level remarks
157
+ schema.remarks = decorate_remarks(options, schema.remarks)
158
+
159
+ # Update remark items
160
+ return unless schema.remark_items
161
+
162
+ schema.remark_items.each do |ri|
163
+ ri.remarks = decorate_remarks(options, ri.remarks)
164
+ end
165
+ end
166
+
167
+ def relative_path_prefix(options, model)
168
+ return nil if options.nil? || options["document"].nil?
169
+
170
+ document = options["document"]
171
+ file_path = File.dirname(model.file)
172
+ docfile_directory = File.dirname(
173
+ document.attributes["docfile"] || ".",
174
+ )
175
+ document
176
+ .path_resolver
177
+ .system_path(file_path, docfile_directory)
178
+ end
179
+
180
+ def decorate_remarks(options, remarks)
181
+ return [] unless remarks
182
+
183
+ remarks.map do |remark|
184
+ ::Expressir::Express::ExpressRemarksDecorator
185
+ .call(remark, options)
186
+ end
187
+ end
188
+
189
+ def read_config_yaml_file(document, file_path)
132
190
  return {} if file_path.nil?
133
191
 
134
192
  relative_file_path = Utils.relative_file_path(document, file_path)
@@ -136,29 +194,24 @@ module Metanorma
136
194
  File.read(relative_file_path, encoding: "UTF-8"),
137
195
  )
138
196
 
139
- options = {}
140
- if config_yaml["schemas"]
141
- unless config_yaml["schemas"].is_a?(Hash)
142
- raise StandardError.new(
143
- "[lutaml_express_liquid] attribute `config_yaml` must point " \
144
- "to a YAML file that has the `schema` key containing a hash.",
145
- )
146
- end
197
+ return {} unless config_yaml["schemas"]
147
198
 
148
- options["selected_schemas"] = config_yaml["schemas"].keys
199
+ unless config_yaml["schemas"].is_a?(Hash)
200
+ raise StandardError.new(
201
+ "[lutaml_express_liquid] attribute `config_yaml` must point " \
202
+ "to a YAML file that has the `schemas` key containing a hash.",
203
+ )
149
204
  end
150
205
 
151
- options
206
+ { "selected_schemas" => config_yaml["schemas"].keys }
152
207
  end
153
208
 
154
209
  def render_liquid_template(document:, lines:, context_name:, # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/ParameterLists
155
- index_names:, options:, indexes:)
156
- config_yaml_path = options.delete("config_yaml")
157
- config = read_config_yaml_file(document, config_yaml_path)
158
- if config["selected_schemas"]
159
- options["selected_schemas"] = config["selected_schemas"]
160
- end
210
+ index_names:, options:, indexes:)
211
+ # Process options and configuration
212
+ options = process_options(document, options)
161
213
 
214
+ # Get all context items in one go
162
215
  all_items = gather_context_liquid_items(
163
216
  index_names: index_names,
164
217
  document: document,
@@ -166,19 +219,23 @@ index_names:, options:, indexes:)
166
219
  options: options.merge("document" => document),
167
220
  )
168
221
 
169
- # Allow includes for the template
170
- include_paths = [
171
- Utils.relative_file_path(document, ""),
172
- options["include_path"],
173
- ].compact
222
+ # Setup include paths for liquid templates
223
+ include_paths = [Utils.relative_file_path(document, "")]
224
+ options["include_path"]&.split(",")&.each do |path|
225
+ # resolve include_path relative to the document
226
+ include_paths.push(Utils.relative_file_path(document, path))
227
+ end
228
+
229
+ file_system = ::Metanorma::Plugin::Lutaml::Liquid::LocalFileSystem
230
+ .new(include_paths, ["%s.liquid", "_%s.liquid", "_%s.adoc"])
174
231
 
232
+ # Parse template once outside the loop
233
+ template = ::Liquid::Template.parse(lines.join("\n"))
234
+ template.registers[:file_system] = file_system
235
+
236
+ # Render for each item
175
237
  all_items.map do |item|
176
- repo_drop = item[:liquid_drop]
177
- template = ::Liquid::Template.parse(lines.join("\n"))
178
- template.registers[:file_system] =
179
- ::Metanorma::Plugin::Lutaml::Liquid::LocalFileSystem
180
- .new(include_paths, ["%s.liquid", "_%s.liquid", "_%s.adoc"])
181
- template.assigns[context_name] = repo_drop
238
+ template.assigns[context_name] = item[:liquid_drop]
182
239
  template.render
183
240
  end.flatten
184
241
  rescue StandardError => e
@@ -186,10 +243,21 @@ index_names:, options:, indexes:)
186
243
  "[LutamlPreprocessor] Failed to parse LutaML block: #{e.message}",
187
244
  :error,
188
245
  )
189
- # [] # Return empty array to avoid breaking the document
190
246
  raise e
191
247
  end
192
248
 
249
+ def process_options(document, options)
250
+ # Process config file if specified
251
+ if (config_yaml_path = options.delete("config_yaml"))
252
+ config = read_config_yaml_file(document, config_yaml_path)
253
+ if config["selected_schemas"]
254
+ options["selected_schemas"] =
255
+ config["selected_schemas"]
256
+ end
257
+ end
258
+ options
259
+ end
260
+
193
261
  def parse_options(options_string)
194
262
  options_string
195
263
  .to_s
@@ -1,7 +1,7 @@
1
1
  module Metanorma
2
2
  module Plugin
3
3
  module Lutaml
4
- VERSION = "0.7.23".freeze
4
+ VERSION = "0.7.25".freeze
5
5
  end
6
6
  end
7
7
  end
@@ -1,4 +1,5 @@
1
1
  require "metanorma/plugin/lutaml/version"
2
+ require "metanorma/plugin/lutaml/config"
2
3
  require "metanorma/plugin/lutaml/lutaml_preprocessor"
3
4
  require "metanorma/plugin/lutaml/lutaml_uml_datamodel_description_preprocessor"
4
5
  require "metanorma/plugin/lutaml/lutaml_ea_xmi_preprocessor"
@@ -27,23 +27,9 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.add_dependency "asciidoctor"
29
29
  spec.add_dependency "coradoc", "~> 1.1.1"
30
- spec.add_dependency "expressir", "~> 2.1.11"
30
+ spec.add_dependency "expressir", "~> 2.1.13"
31
31
  spec.add_dependency "liquid"
32
- spec.add_dependency "lutaml", "~> 0.9.25"
33
- spec.add_dependency "ogc-gml", "1.0.0"
32
+ spec.add_dependency "lutaml", "~> 0.9.32"
33
+ spec.add_dependency "ogc-gml", "~>1.0.0"
34
34
  spec.add_dependency "relaton-cli"
35
-
36
- spec.add_development_dependency "debug"
37
- spec.add_development_dependency "equivalent-xml"
38
- spec.add_development_dependency "metanorma-standoc", "~> 3.0"
39
- spec.add_development_dependency "rake", "~> 13"
40
- spec.add_development_dependency "rspec", "~> 3.6"
41
- spec.add_development_dependency "rspec-html-matchers"
42
- spec.add_development_dependency "rubocop", "~> 1.58"
43
- spec.add_development_dependency "rubocop-performance", "~> 1.19"
44
- spec.add_development_dependency "simplecov", "~> 0.15"
45
- spec.add_development_dependency "timecop", "~> 0.9"
46
- spec.add_development_dependency "vcr", "~> 5.0.0"
47
- spec.add_development_dependency "webmock"
48
- spec.add_development_dependency "xml-c14n"
49
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-plugin-lutaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.23
4
+ version: 0.7.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-14 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 2.1.11
47
+ version: 2.1.13
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 2.1.11
54
+ version: 2.1.13
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: liquid
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -72,26 +72,26 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.9.25
75
+ version: 0.9.32
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.9.25
82
+ version: 0.9.32
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: ogc-gml
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '='
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: 1.0.0
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '='
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 1.0.0
97
97
  - !ruby/object:Gem::Dependency
@@ -108,188 +108,6 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: debug
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - ">="
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: '0'
125
- - !ruby/object:Gem::Dependency
126
- name: equivalent-xml
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: metanorma-standoc
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: '3.0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: '3.0'
153
- - !ruby/object:Gem::Dependency
154
- name: rake
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '13'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '13'
167
- - !ruby/object:Gem::Dependency
168
- name: rspec
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - "~>"
172
- - !ruby/object:Gem::Version
173
- version: '3.6'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: '3.6'
181
- - !ruby/object:Gem::Dependency
182
- name: rspec-html-matchers
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - ">="
186
- - !ruby/object:Gem::Version
187
- version: '0'
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - ">="
193
- - !ruby/object:Gem::Version
194
- version: '0'
195
- - !ruby/object:Gem::Dependency
196
- name: rubocop
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: '1.58'
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: '1.58'
209
- - !ruby/object:Gem::Dependency
210
- name: rubocop-performance
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - "~>"
214
- - !ruby/object:Gem::Version
215
- version: '1.19'
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - "~>"
221
- - !ruby/object:Gem::Version
222
- version: '1.19'
223
- - !ruby/object:Gem::Dependency
224
- name: simplecov
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - "~>"
228
- - !ruby/object:Gem::Version
229
- version: '0.15'
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - "~>"
235
- - !ruby/object:Gem::Version
236
- version: '0.15'
237
- - !ruby/object:Gem::Dependency
238
- name: timecop
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - "~>"
242
- - !ruby/object:Gem::Version
243
- version: '0.9'
244
- type: :development
245
- prerelease: false
246
- version_requirements: !ruby/object:Gem::Requirement
247
- requirements:
248
- - - "~>"
249
- - !ruby/object:Gem::Version
250
- version: '0.9'
251
- - !ruby/object:Gem::Dependency
252
- name: vcr
253
- requirement: !ruby/object:Gem::Requirement
254
- requirements:
255
- - - "~>"
256
- - !ruby/object:Gem::Version
257
- version: 5.0.0
258
- type: :development
259
- prerelease: false
260
- version_requirements: !ruby/object:Gem::Requirement
261
- requirements:
262
- - - "~>"
263
- - !ruby/object:Gem::Version
264
- version: 5.0.0
265
- - !ruby/object:Gem::Dependency
266
- name: webmock
267
- requirement: !ruby/object:Gem::Requirement
268
- requirements:
269
- - - ">="
270
- - !ruby/object:Gem::Version
271
- version: '0'
272
- type: :development
273
- prerelease: false
274
- version_requirements: !ruby/object:Gem::Requirement
275
- requirements:
276
- - - ">="
277
- - !ruby/object:Gem::Version
278
- version: '0'
279
- - !ruby/object:Gem::Dependency
280
- name: xml-c14n
281
- requirement: !ruby/object:Gem::Requirement
282
- requirements:
283
- - - ">="
284
- - !ruby/object:Gem::Version
285
- version: '0'
286
- type: :development
287
- prerelease: false
288
- version_requirements: !ruby/object:Gem::Requirement
289
- requirements:
290
- - - ">="
291
- - !ruby/object:Gem::Version
292
- version: '0'
293
111
  description: Metanorma plugin for LutaML
294
112
  email:
295
113
  - open.source@ribose.com
@@ -303,16 +121,20 @@ files:
303
121
  - ".hound.yml"
304
122
  - ".rubocop.yml"
305
123
  - CODE_OF_CONDUCT.md
306
- - Dockerfile
307
124
  - Gemfile
308
125
  - LICENSE
309
- - Makefile
310
126
  - README.adoc
311
127
  - Rakefile
312
128
  - bin/console
313
129
  - bin/setup
314
130
  - lib/metanorma-plugin-lutaml.rb
315
131
  - lib/metanorma/plugin/lutaml/asciidoctor/preprocessor.rb
132
+ - lib/metanorma/plugin/lutaml/config.rb
133
+ - lib/metanorma/plugin/lutaml/config/guidance.rb
134
+ - lib/metanorma/plugin/lutaml/config/guidance_attribute.rb
135
+ - lib/metanorma/plugin/lutaml/config/guidance_klass.rb
136
+ - lib/metanorma/plugin/lutaml/config/package.rb
137
+ - lib/metanorma/plugin/lutaml/config/root.rb
316
138
  - lib/metanorma/plugin/lutaml/liquid/custom_filters.rb
317
139
  - lib/metanorma/plugin/lutaml/liquid/multiply_local_file_system.rb
318
140
  - lib/metanorma/plugin/lutaml/liquid_drops/gml_dictionary_drop.rb
data/Dockerfile DELETED
@@ -1,4 +0,0 @@
1
- FROM ruby:2.6
2
- COPY . .
3
- RUN gem install bundler:2.1.4
4
- RUN bundle install
data/Makefile DELETED
@@ -1,2 +0,0 @@
1
- fix-lint-staged:
2
- git status --short | egrep '^(A|M)' | awk '{ print $$2}' | grep -v db/schema.rb | xargs bundle exec rubocop -a