Class: Asciidoctor::Generic::Converter

Inherits:
Standoc::Converter
  • Object
show all
Defined in:
lib/asciidoctor/generic/front.rb,
lib/asciidoctor/generic/converter.rb

Constant Summary collapse

EXT_STRUCT =
%w(_output _attribute _list).freeze
XML_ROOT_TAG =
"generic-standard".freeze
XML_NAMESPACE =
"https://www.metanorma.org/ns/generic".freeze

Instance Method Summary collapse

Instance Method Details

#baselocation(loc) ⇒ Object



22
23
24
25
26
27
# File 'lib/asciidoctor/generic/converter.rb', line 22

def baselocation(loc)
  return nil if loc.nil?
  return loc
  File.expand_path(File.join(File.dirname(
    self.class::_file || __FILE__), "..", "..", "..", loc))
end

#bibdata_validate(doc) ⇒ Object



99
100
101
102
# File 'lib/asciidoctor/generic/converter.rb', line 99

def bibdata_validate(doc)
  stage_validate(doc)
  committee_validate(doc)
end

#blank_method(*args) ⇒ Object Also known as: style, title_validate



128
# File 'lib/asciidoctor/generic/converter.rb', line 128

def blank_method(*args); end

#boilerplate_file(xmldoc) ⇒ Object



158
159
160
161
162
163
164
# File 'lib/asciidoctor/generic/converter.rb', line 158

def boilerplate_file(xmldoc)
  f = configuration.boilerplate
  f.nil? and return super
  f.is_a? String and return baselocation(f)
  f.is_a? Hash and f[@lang] and return baselocation(f[@lang])
  super
end

#boilerplate_isodoc(xmldoc) ⇒ Object



150
151
152
153
154
155
156
# File 'lib/asciidoctor/generic/converter.rb', line 150

def boilerplate_isodoc(xmldoc)
  conv = super
  Metanorma::Generic::Configuration::CONFIG_ATTRS.each do |a|
    conv.meta.set(a, configuration.send(a))
  end
  conv
end

#cleanup(xmldoc) ⇒ Object



166
167
168
169
170
# File 'lib/asciidoctor/generic/converter.rb', line 166

def cleanup(xmldoc)
  super
  (xmldoc)
  xmldoc
end

#committee_validate(xmldoc) ⇒ Object



112
113
114
115
116
117
118
119
# File 'lib/asciidoctor/generic/converter.rb', line 112

def committee_validate(xmldoc)
  committees = Array(configuration&.committees) || return
  committees.empty? and return
  xmldoc.xpath("//bibdata/ext/editorialgroup/committee").each do |c|
    committees.include? c.text or
      @log.add("Document Attributes", nil, "#{c.text} is not a recognised committee")
  end
end

#configurationObject



146
147
148
# File 'lib/asciidoctor/generic/converter.rb', line 146

def configuration
  Metanorma::Generic.configuration
end

#content_validate(doc) ⇒ Object



94
95
96
97
# File 'lib/asciidoctor/generic/converter.rb', line 94

def content_validate(doc)
  super
  bibdata_validate(doc.root)
end

#default_publisherObject



4
5
6
# File 'lib/asciidoctor/generic/front.rb', line 4

def default_publisher
  configuration.organization_name_long
end

#doc_converter(node) ⇒ Object



142
143
144
# File 'lib/asciidoctor/generic/converter.rb', line 142

def doc_converter(node)
  IsoDoc::Generic::WordConvert.new(doc_extract_attributes(node))
end

#docidentifier_cleanup(xmldoc) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/asciidoctor/generic/converter.rb', line 29

def docidentifier_cleanup(xmldoc)
  template = configuration.docid_template ||
    "{{ organization_name_short }} {{ docnumeric }}"
  docid = xmldoc.at("//bibdata/docidentifier")
  id = boilerplate_isodoc(xmldoc).populate_template(template, nil)
  id.empty? and docid.remove or docid.children = id
end

#doctype(node) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/asciidoctor/generic/converter.rb', line 37

def doctype(node)
  d = super
  configuration.doctypes or return d == "article" ? 
    (configuration.default_doctype || "standard") : d
  type = configuration.default_doctype ||
    configuration.doctypes.keys.dig(0) || "standard"
  unless configuration.doctypes.keys.include? d
    @log.add("Document Attributes", nil,
             "#{d} is not a legal document type: reverting to '#{type}'")
    d = type
  end
  d
end

#document(node) ⇒ Object



70
71
72
73
# File 'lib/asciidoctor/generic/converter.rb', line 70

def document(node)
  read_config_file(node.attr("customize")) if node.attr("customize")
  super
end

#empty_metadata_cleanup(xmldoc) ⇒ Object



172
173
174
175
176
# File 'lib/asciidoctor/generic/converter.rb', line 172

def (xmldoc)
  xmldoc.xpath("//bibdata/ext//*").each do |x|
    x.remove if x.children.empty?
  end
end

#html_converter(node) ⇒ Object Also known as: pdf_converter



130
131
132
# File 'lib/asciidoctor/generic/converter.rb', line 130

def html_converter(node)
  IsoDoc::Generic::HtmlConvert.new(html_extract_attributes(node))
end

#metadata_committee(node, xml) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/asciidoctor/generic/front.rb', line 24

def (node, xml)
  return unless node.attr("committee")
  xml.editorialgroup do |a|
    a.committee node.attr("committee"),
      **attr_code(type: node.attr("committee-type"))
    i = 2
    while node.attr("committee_#{i}") do
      a.committee node.attr("committee_#{i}"),
        **attr_code(type: node.attr("committee-type_#{i}"))
      i += 1
    end
  end
end

#metadata_doctype(node, xml) ⇒ Object



66
67
68
69
# File 'lib/asciidoctor/generic/front.rb', line 66

def (node, xml)
  d = doctype(node)
  xml.doctype d, attr_code(abbreviation: configuration&.doctypes&.dig(d))
end

#metadata_ext(node, ext) ⇒ Object



55
56
57
58
59
60
61
62
63
64
# File 'lib/asciidoctor/generic/front.rb', line 55

def (node, ext)
  super
  if configuration..is_a? Hash
    (node, ext, configuration.)
  else
    Array(configuration.).each do |e|
      a = node.attr(e) and ext.send e, a
    end
  end
end

#metadata_ext_attrs(hash, node) ⇒ Object



97
98
99
100
101
102
103
104
105
# File 'lib/asciidoctor/generic/front.rb', line 97

def (hash, node)
  return {} unless hash.is_a?(Hash)
  ret = {}
  hash.each do |k, v|
    next unless v.is_a?(Hash) && v["_attribute"]
    ret[(v["_output"] || k).to_sym] = node.attr(k)
  end
  ret
end

#metadata_ext_hash(node, ext, hash) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/asciidoctor/generic/front.rb', line 73

def (node, ext, hash)
  hash.each do |k, v|
    next if EXT_STRUCT.include?(k) || !v&.is_a?(Hash) && !node.attr(k)
    if v&.is_a?(Hash) && v["_list"]
      csv_split(node.attr(k), ",").each do |val|
        (k, val, ext, v, node)
      end
    else
      (k, node.attr(k), ext, v, node)
    end
  end
end

#metadata_ext_hash1(key, value, ext, hash, node) ⇒ Object



86
87
88
89
90
91
92
93
94
95
# File 'lib/asciidoctor/generic/front.rb', line 86

def (key, value, ext, hash, node)
  return if hash&.is_a?(Hash) && hash["_attribute"]
  is_hash = hash&.is_a?(Hash) &&
      !hash.keys.reject { |n| EXT_STRUCT.include?(n) }.empty?
  return if !is_hash && (value.nil? || value.empty?)
  name = hash&.is_a?(Hash) ? (hash["_output"] || key) : key
  ext.send name, **attr_code((hash, node)) do |e|
      is_hash ? (node, e, hash) : (e << value)
  end
end

#metadata_id(node, xml) ⇒ Object



47
48
49
50
51
52
53
# File 'lib/asciidoctor/generic/front.rb', line 47

def (node, xml)
  xml.docidentifier **{ type:
                        configuration.organization_name_short } do |i|
    i << "DUMMY"
  end
  xml.docnumber { |i| i << node.attr("docnumber") }
end

#metadata_status(node, xml) ⇒ Object



38
39
40
41
42
43
44
45
# File 'lib/asciidoctor/generic/front.rb', line 38

def (node, xml)
  xml.status do |s|
    s.stage ( node.attr("status") || node.attr("docstage") ||
             configuration.default_stage || "published" )
    x = node.attr("substage") and s.substage x
    x = node.attr("iteration") and s.iteration x
  end
end

#org_abbrevObject



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/asciidoctor/generic/front.rb', line 8

def org_abbrev
  if !configuration.organization_name_long.empty? &&
      !configuration.organization_name_short.empty? &&
      configuration.organization_name_long !=
      configuration.organization_name_short
    { configuration.organization_name_long =>
      configuration.organization_name_short }
  else
    super
  end
end

#outputs(node, ret) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
# File 'lib/asciidoctor/generic/converter.rb', line 75

def outputs(node, ret)
  File.open(@filename + ".xml", "w:UTF-8") { |f| f.write(ret) }
  presentation_xml_converter(node)&.convert(@filename + ".xml")
  html_converter(node)&.convert(@filename + ".presentation.xml", 
                                nil, false, "#{@filename}.html")
  doc_converter(node)&.convert(@filename + ".presentation.xml", 
                               nil, false, "#{@filename}.doc")
  pdf_converter(node)&.convert(@filename + ".presentation.xml", 
                               nil, false, "#{@filename}.pdf")

end

#presentation_xml_converter(node) ⇒ Object



134
135
136
# File 'lib/asciidoctor/generic/converter.rb', line 134

def presentation_xml_converter(node)
  IsoDoc::Generic::PresentationXMLConvert.new(html_extract_attributes(node))
end

#read_config_file(path_to_config_file) ⇒ Object



51
52
53
54
# File 'lib/asciidoctor/generic/converter.rb', line 51

def read_config_file(path_to_config_file)
  Metanorma::Generic.configuration.
    set_default_values_from_yaml_file(path_to_config_file)
end

#relaton_relationsObject



20
21
22
# File 'lib/asciidoctor/generic/front.rb', line 20

def relaton_relations
  Array(configuration.relations) || []
end

#sections_cleanup(x) ⇒ Object



121
122
123
124
125
126
# File 'lib/asciidoctor/generic/converter.rb', line 121

def sections_cleanup(x)
  super
  x.xpath("//*[@inline-header]").each do |h|
    h.delete("inline-header")
  end
end

#sectiontype_streamline(ret) ⇒ Object



56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/asciidoctor/generic/converter.rb', line 56

def sectiontype_streamline(ret)
  if configuration&.termsdefs_titles&.map(&:downcase)&.include? (ret)
    "terms and definitions"
  elsif configuration&.symbols_titles&.map(&:downcase)&.include? (ret)
    "symbols and abbreviated terms"
  elsif configuration&.normref_titles&.map(&:downcase)&.include? (ret)
    "normative references"
  elsif configuration&.bibliography_titles&.map(&:downcase)&.include? (ret)
    "bibliography"
  else
    ret
  end
end

#stage_validate(xmldoc) ⇒ Object



104
105
106
107
108
109
110
# File 'lib/asciidoctor/generic/converter.rb', line 104

def stage_validate(xmldoc)
  stages = configuration&.stage_abbreviations&.keys || return
  stages.empty? and return
  stage = xmldoc&.at("//bibdata/status/stage")&.text
  stages.include? stage or
    @log.add("Document Attributes", nil, "#{stage} is not a recognised status")
end

#validate(doc) ⇒ Object



87
88
89
90
91
92
# File 'lib/asciidoctor/generic/converter.rb', line 87

def validate(doc)
  content_validate(doc)
  schema_validate(formattedstr_strip(doc.dup),
                  baselocation(configuration.validate_rng_file) ||
                  File.join(File.dirname(__FILE__), "generic.rng"))
end

#xml_namespaceObject



18
19
20
# File 'lib/asciidoctor/generic/converter.rb', line 18

def xml_namespace
  configuration.document_namespace || XML_NAMESPACE
end

#xml_root_tagObject



14
15
16
# File 'lib/asciidoctor/generic/converter.rb', line 14

def xml_root_tag
  configuration.xml_root_tag || XML_ROOT_TAG
end