metanorma-plugin-lutaml 0.7.24 → 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: ca6fb652af0690c22f2677cfe39f2546cecf24a46f539fe190b5d56023d942da
4
- data.tar.gz: 99b7de7844b8e9f3e2fce736f7c931a8dd2a5b1c95bf93b57520b3261f5c2b3e
3
+ metadata.gz: 3f52cc174af4c2cd486067a47ca4c2d48093f2bc9a4030ddbc55d9bd0629b60c
4
+ data.tar.gz: f657c5a57479b998913adce1a8147cbd53cdfe10b52d97d7a2a9dfc4198b21af
5
5
  SHA512:
6
- metadata.gz: 754f952fbbad357aab40b9ab7e6d53af6e8195a797f8d3d4086265cfbb5d0360502b5f03bb68ce0ef02eeb51ff457931116e586273c60e2186fab49103dd33cc
7
- data.tar.gz: '08cf1a352e910912d8d1c4323f5336e1e05da8fb30746a730ebd830e85e5adc07c55b23f8a01c048f4781de2b85f9295940c383b3057c2d502ec16fd0bef9745'
6
+ metadata.gz: 3677d003d961777f01889f4d7db189d43f236aa8a8fd0a29dfd29fbb765bb79dd101aa9fb00bc844986f1f09d23a8b3746f3c8eca88d4da5b9ed4532c3314605
7
+ data.tar.gz: 6f2562fa121c7b33e699412bdd70a3b68eb56916254c83b6baba1ab8cac4e286079f21b65b34213774eff761989c0d01c1e2e158a3b54ce3b0387df455c99dbf
@@ -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)
@@ -1,7 +1,7 @@
1
1
  module Metanorma
2
2
  module Plugin
3
3
  module Lutaml
4
- VERSION = "0.7.24".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"
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
  spec.add_dependency "coradoc", "~> 1.1.1"
30
30
  spec.add_dependency "expressir", "~> 2.1.13"
31
31
  spec.add_dependency "liquid"
32
- spec.add_dependency "lutaml", "~> 0.9.25"
32
+ spec.add_dependency "lutaml", "~> 0.9.32"
33
33
  spec.add_dependency "ogc-gml", "~>1.0.0"
34
34
  spec.add_dependency "relaton-cli"
35
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.24
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-20 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
@@ -72,14 +72,14 @@ 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
@@ -129,6 +129,12 @@ files:
129
129
  - bin/setup
130
130
  - lib/metanorma-plugin-lutaml.rb
131
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
132
138
  - lib/metanorma/plugin/lutaml/liquid/custom_filters.rb
133
139
  - lib/metanorma/plugin/lutaml/liquid/multiply_local_file_system.rb
134
140
  - lib/metanorma/plugin/lutaml/liquid_drops/gml_dictionary_drop.rb