Class: Metanorma::CollectionRenderer
- Inherits:
-
Object
- Object
- Metanorma::CollectionRenderer
- Defined in:
- lib/metanorma/collection_renderer.rb,
lib/metanorma/collection_fileprocess.rb
Overview
XML collection renderer
Defined Under Namespace
Classes: Dummy
Constant Summary collapse
- FORMATS =
i[html xml doc pdf].freeze
Class Method Summary collapse
Instance Method Summary collapse
- #add_document_suffix(identifier, doc) ⇒ Object
- #add_suffix_to_attributes(doc, suffix, tag_name, attribute_name) ⇒ Object
- #concatenate(col, options) ⇒ Object
-
#coverpage ⇒ Object
populate liquid template of ARGV with metadata extracted from collection manifest.
- #docrefs(elm, builder) ⇒ Object
-
#doctype ⇒ Object
infer the flavour from the first document identifier; relaton does that.
-
#file_compile(f, filename, identifier) ⇒ Object
compile and output individual file in collection.
-
#files ⇒ Object
process each file in the collection files are held in memory, and altered as postprocessing.
-
#gather_internal_refs ⇒ Object
gather internal bibitem references.
-
#indexfile(elm) ⇒ String
single level navigation list, with hierarchical nesting if multiple lists are needed as separate HTML fragments, multiple instances of this function will be needed, and associated to different variables in the call to @isodoc.metadata_init (including possibly an array of HTML fragments).
-
#indexfile_docref(elm, builder) ⇒ Object
uses the identifier to label documents; other attributes (title) can be looked up in @files[:bibdata].
- #indexfile_title(elm) ⇒ String
-
#initialize(xml, folder, options = {}) ⇒ CollectionRenderer
constructor
This is only going to render the HTML collection We presuppose that the bibdata of the document is equivalent to that of the collection, and that the flavour gem can sensibly process it.
-
#isodoc ⇒ Object
The isodoc class for the metanorma flavour we are using.
-
#locate_internal_refs ⇒ Object
resolve file location for the target of each internal reference.
- #ns(xpath) ⇒ Object
- #pdfconv ⇒ Object
-
#read_anchors(xml) ⇒ Object
map locality type and label (e.g. “clause” “1”) to id = anchor for a document.
-
#read_files(path) ⇒ Hash{String=>Hash}
hash for each document in collection of document identifier to: document reference (fileref or id), type of document reference, and bibdata entry for that file.
- #ref_file(ref, read) ⇒ Array<String, nil>
-
#targetfile(data, read = false) ⇒ Array<String, nil>
return file contents + output filename for each file in the collection, given a docref entry.
-
#update_anchor_create_loc(bib, e, docid) ⇒ Object
if there is a crossref to another document, with no anchor, retrieve the anchor given the locality, and insert it into the crossref.
- #update_anchor_loc(bib, e, docid) ⇒ Object
-
#update_anchors(bib, docxml, _id) ⇒ Object
update crossrefences to other documents, to include disambiguating document suffix on id.
- #update_bibitem(bib, identifier) ⇒ Object
-
#update_direct_refs_to_docs(docxml, identifier) ⇒ Object
repo(current-metanorma-collection/ISO 17301-1:2016) replaced by bibdata of “ISO 17301-1:2016” in situ as bibitem.
-
#update_indirect_refs_to_docs(docxml, internal_refs) ⇒ Object
Resolve erefs to a container of ids in another doc, to an anchor eref (direct link).
- #update_indirect_refs_to_docs1(docxml, schema, id, file) ⇒ Object
-
#update_xrefs(file, identifier, internal_refs) ⇒ String
Resolves direct links to other files in collection (repo(current-metanorma-collection/x), and indirect links to other files in collection (bibitem[@type = ‘internal’] pointing to a file anchor in another file in the collection).
- #xml_file(id, read) ⇒ Array<String, nil>
Constructor Details
#initialize(xml, folder, options = {}) ⇒ CollectionRenderer
This is only going to render the HTML collection We presuppose that the bibdata of the document is equivalent to that of the collection, and that the flavour gem can sensibly process it. We may need to enhance metadata in the flavour gems isodoc/metadata.rb with collection metadata
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/metanorma/collection_renderer.rb', line 23 def initialize(xml, folder, = {}) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength @xml = Nokogiri::XML xml # @xml is the collection manifest @lang = @xml&.at(ns("//bibdata/language"))&.text || "en" @script = @xml&.at(ns("//bibdata/script"))&.text || "Latn" @doctype = doctype require "metanorma-#{@doctype}" # output processor for flavour @isodoc = isodoc @outdir = [:output_folder] @coverpage = [:coverpage] @format = [:format] = [:compile] || {} @log = [:log] # list of files in the collection @files = read_files folder FileUtils.rm_rf @outdir FileUtils.mkdir_p @outdir end |
Class Method Details
.render(col, options = {}) ⇒ Object
51 52 53 54 55 56 57 |
# File 'lib/metanorma/collection_renderer.rb', line 51 def self.render(col, = {}) folder = File.dirname col.file cr = new(col.to_xml, folder, ) cr.files cr.concatenate(col, ) cr.coverpage if [:format]&.include?(:html) end |
Instance Method Details
#add_document_suffix(identifier, doc) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/metanorma/collection_fileprocess.rb', line 38 def add_document_suffix(identifier, doc) document_suffix = Metanorma::Utils::to_ncname(identifier) [%w[* id], %w[* bibitemid], %w[review from], %w[review to], %w[index to], %w[xref target], %w[callout target]] .each do |(tag_name, attribute_name)| add_suffix_to_attributes(doc, document_suffix, tag_name, attribute_name) end end |
#add_suffix_to_attributes(doc, suffix, tag_name, attribute_name) ⇒ Object
31 32 33 34 35 36 |
# File 'lib/metanorma/collection_fileprocess.rb', line 31 def add_suffix_to_attributes(doc, suffix, tag_name, attribute_name) doc.xpath(ns("//#{tag_name}[@#{attribute_name}]")).each do |elem| elem.attributes[attribute_name].value = "#{elem.attributes[attribute_name].value}_#{suffix}" end end |
#concatenate(col, options) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/metanorma/collection_renderer.rb', line 59 def concatenate(col, ) [:format] << :presentation if [:format].include?(:pdf) [:format].uniq.each do |e| next unless i(presentation xml).include?(e) ext = e == :presentation ? "presentation.xml" : e.to_s out = col.clone out.directives << "documents-inline" out.documents.keys.each do |id| filename = @files[id][:outputs][e] out.documents[id] = Metanorma::Document.raw_file(filename) end File.open(File.join(@outdir, "collection.#{ext}"), "w:UTF-8") { |f| f.write(out.to_xml) } end [:format].include?(:pdf) and pdfconv.convert(File.join(@outdir, "collection.presentation.xml")) end |
#coverpage ⇒ Object
populate liquid template of ARGV with metadata extracted from collection manifest
121 122 123 124 125 |
# File 'lib/metanorma/collection_renderer.rb', line 121 def coverpage File.open(File.join(@outdir, "index.html"), "w:UTF-8") do |f| f.write @isodoc.populate_template(File.read(@coverpage)) end end |
#docrefs(elm, builder) ⇒ Object
148 149 150 151 152 153 154 155 156 |
# File 'lib/metanorma/collection_renderer.rb', line 148 def docrefs(elm, builder) elm.xpath(ns("./docref")).each do |d| identifier = d.at(ns("./identifier")).text link = if d["fileref"] then d["fileref"].sub(/\.xml$/, ".html") else d["id"] + ".html" end builder.li { builder.a identifier, href: link } end end |
#doctype ⇒ Object
infer the flavour from the first document identifier; relaton does that
104 105 106 107 108 109 110 111 112 113 |
# File 'lib/metanorma/collection_renderer.rb', line 104 def doctype if (docid = @xml&.at(ns("//bibdata/docidentifier/@type"))&.text) dt = docid.downcase elsif (docid = @xml&.at(ns("//bibdata/docidentifier"))&.text) dt = docid.sub(/\s.*$/, "").lowercase else return "standoc" end @registry = Metanorma::Registry.instance @registry.alias(dt.to_sym)&.to_s || dt end |
#file_compile(f, filename, identifier) ⇒ Object
compile and output individual file in collection
208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/metanorma/collection_fileprocess.rb', line 208 def file_compile(f, filename, identifier) # warn "metanorma compile -x html #{f.path}" c = Compile.new c.compile f.path, { format: :asciidoc, extension_keys: @format }.merge() @files[identifier][:outputs] = {} @format.each do |e| ext = c.processor.output_formats[e] fn = File.basename(filename).sub(/(?<=\.)[^\.]+$/, ext.to_s) FileUtils.mv f.path.sub(/\.xml$/, ".#{ext}"), File.join(@outdir, fn) @files[identifier][:outputs][e] = File.join(@outdir, fn) end end |
#files ⇒ Object
process each file in the collection files are held in memory, and altered as postprocessing
257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/metanorma/collection_fileprocess.rb', line 257 def files # rubocop:disable Metrics/AbcSize, Metrics/MethodLength internal_refs = locate_internal_refs @files.each do |identifier, x| file, filename = targetfile(x, true) file = update_xrefs(file, identifier, internal_refs) Tempfile.open(["collection", ".xml"], encoding: "utf-8") do |f| f.write(file) f.close file_compile(f, filename, identifier) end end end |
#gather_internal_refs ⇒ Object
gather internal bibitem references
222 223 224 225 226 227 228 229 230 231 232 |
# File 'lib/metanorma/collection_fileprocess.rb', line 222 def gather_internal_refs @files.each_with_object({}) do |(identifier, x), refs| file, _ = targetfile(x, true) Nokogiri::XML(file).xpath(ns("//bibitem[@type = 'internal']/docidentifier[@type = 'repository']")).each do |d| a = d.text.split(%r{/}, 2) a.size > 1 or next refs[a[0]] ||= {} refs[a[0]][a[1]] = true end end end |
#indexfile(elm) ⇒ String
single level navigation list, with hierarchical nesting if multiple lists are needed as separate HTML fragments, multiple instances of this function will be needed, and associated to different variables in the call to @isodoc.metadata_init (including possibly an array of HTML fragments)
166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/metanorma/collection_renderer.rb', line 166 def indexfile(elm) Nokogiri::HTML::Builder.new do |b| b.ul do b.li indexfile_title(elm) indexfile_docref(elm, b) elm.xpath(ns("./manifest")).each do |d| b << indexfile(d) end end end.doc.root.to_html end |
#indexfile_docref(elm, builder) ⇒ Object
uses the identifier to label documents; other attributes (title) can be looked up in @files[:bibdata]
140 141 142 143 144 |
# File 'lib/metanorma/collection_renderer.rb', line 140 def indexfile_docref(elm, builder) return "" unless elm.at(ns("./docref")) builder.ul { |b| docrefs(elm, b) } end |
#indexfile_title(elm) ⇒ String
129 130 131 132 133 |
# File 'lib/metanorma/collection_renderer.rb', line 129 def indexfile_title(elm) lvl = elm&.at(ns("./level"))&.text&.capitalize lbl = elm&.at(ns("./title"))&.text "#{lvl}#{lvl && lbl ? ': ' : ''}#{lbl}" end |
#isodoc ⇒ Object
The isodoc class for the metanorma flavour we are using
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/metanorma/collection_renderer.rb', line 87 def isodoc # rubocop:disable Metrics/MethodLength x = Asciidoctor.load nil, backend: @doctype.to_sym isodoc = x.converter.html_converter(Dummy.new) isodoc.i18n_init(@lang, @script) # read in internationalisation # create the @meta class of isodoc, with "navigation" set to the index bar # extracted from the manifest nav = indexfile(@xml.at(ns("//manifest"))) i18n = isodoc.i18n i18n.set(:navigation, nav) isodoc.(@lang, @script, i18n) # populate the @meta class of isodoc with the various metadata fields # native to the flavour; used to populate Liquid isodoc.info(@xml, nil) isodoc end |
#locate_internal_refs ⇒ Object
resolve file location for the target of each internal reference
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/metanorma/collection_fileprocess.rb', line 235 def locate_internal_refs refs = gather_internal_refs @files.each do |identifier, x| file, filename = targetfile(x, true) docxml = Nokogiri::XML(file) refs.each do |schema, ids| ids.keys.each do |id| docxml.at(ns("//*[@id = '#{id}'][@type = '#{schema}']")) and refs[schema][id] = identifier end end end refs.each do |schema, ids| ids.each do |id, key| key == true and refs[schema][id] = "Missing:#{schema}:#{id}" end end refs end |
#ns(xpath) ⇒ Object
115 116 117 |
# File 'lib/metanorma/collection_renderer.rb', line 115 def ns(xpath) IsoDoc::Convert.new({}).ns(xpath) end |
#pdfconv ⇒ Object
76 77 78 79 |
# File 'lib/metanorma/collection_renderer.rb', line 76 def pdfconv x = Asciidoctor.load nil, backend: @doctype.to_sym x.converter.pdf_converter(Dummy.new) end |
#read_anchors(xml) ⇒ Object
map locality type and label (e.g. “clause” “1”) to id = anchor for a document
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/metanorma/collection_fileprocess.rb', line 54 def read_anchors(xml) ret = {} xrefs = @isodoc.xref_init(@lang, @script, @isodoc, @isodoc.i18n, {}) xrefs.parse xml xrefs.get.each do |k, v| ret[v[:type]] ||= {} index = v[:container] || v[:label].nil? || v[:label].empty? ? UUIDTools::UUID.random_create.to_s : v[:label] # Note: will only key clauses, which have unambiguous reference label in locality. # Notes, examples etc with containers are just plunked agaisnt UUIDs, so that their # IDs can at least be registered to be tracked as existing. ret[v[:type]][index] = k end ret end |
#read_files(path) ⇒ Hash{String=>Hash}
hash for each document in collection of document identifier to: document reference (fileref or id), type of document reference, and bibdata entry for that file
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/metanorma/collection_fileprocess.rb', line 13 def read_files(path) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength files = {} @xml.xpath(ns("//docref")).each do |d| identifier = d.at(ns("./identifier")).text files[identifier] = if d["fileref"] { type: "fileref", ref: File.join(path, d["fileref"]) } else { type: "id", ref: d["id"] } end file, _filename = targetfile(files[identifier], true) xml = Nokogiri::XML(file) add_document_suffix(identifier, xml) files[identifier][:anchors] = read_anchors(xml) files[identifier][:bibdata] = xml.at(ns("//bibdata")) end files end |
#ref_file(ref, read) ⇒ Array<String, nil>
84 85 86 87 88 |
# File 'lib/metanorma/collection_fileprocess.rb', line 84 def ref_file(ref, read) file = File.read(ref, encoding: "utf-8") if read filename = ref.sub(/\.xml$/, ".html") [file, filename] end |
#targetfile(data, read = false) ⇒ Array<String, nil>
return file contents + output filename for each file in the collection, given a docref entry
75 76 77 78 79 |
# File 'lib/metanorma/collection_fileprocess.rb', line 75 def targetfile(data, read = false) if data[:type] == "fileref" then ref_file data[:ref], read else xml_file data[:id], read end end |
#update_anchor_create_loc(bib, e, docid) ⇒ Object
if there is a crossref to another document, with no anchor, retrieve the anchor given the locality, and insert it into the crossref
194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/metanorma/collection_fileprocess.rb', line 194 def update_anchor_create_loc(bib, e, docid) ins = e.at(ns("./localityStack")) || return type = ins&.at(ns("./locality/@type"))&.text ref = ins&.at(ns("./locality/referenceFrom"))&.text (anchor = @files[docid][:anchors][type][ref]) || return ref_from = Nokogiri::XML::Node.new "referenceFrom", bib ref_from.content = anchor.sub(/^_/, "") locality = Nokogiri::XML::Node.new "locality", bib locality[:type] = "anchor" locality.add_child ref_from ins << locality end |
#update_anchor_loc(bib, e, docid) ⇒ Object
183 184 185 186 187 188 189 190 |
# File 'lib/metanorma/collection_fileprocess.rb', line 183 def update_anchor_loc(bib, e, docid) loc = e.at(ns(".//locality[@type = 'anchor']")) or return update_anchor_create_loc(bib, e, docid) document_suffix = Metanorma::Utils::to_ncname(docid) ref = loc.at(ns("./referenceFrom")) || return anchor = "#{ref.text}_#{document_suffix}" return unless @files[docid][:anchors].inject([]) { |m, (_, x)| m+= x.values }.include?(anchor) ref.content = anchor end |
#update_anchors(bib, docxml, _id) ⇒ Object
update crossrefences to other documents, to include disambiguating document suffix on id
172 173 174 175 176 177 178 179 180 181 |
# File 'lib/metanorma/collection_fileprocess.rb', line 172 def update_anchors(bib, docxml, _id) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize docid = bib&.at(ns("./docidentifier"))&.text docxml.xpath("//xmlns:eref[@citeas = '#{docid}']").each do |e| if @files[docid] update_anchor_loc(bib, e, docid) else e << "<strong>** Unresolved reference to document #{docid}, id #{e['bibitemid']}</strong>" end end end |
#update_bibitem(bib, identifier) ⇒ Object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/metanorma/collection_fileprocess.rb', line 101 def update_bibitem(bib, identifier) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength docid = bib&.at(ns("./docidentifier"))&.text unless @files[docid] error = "[metanorma] Cannot find crossreference to document #{docid} in document #{identifier}." @log.add("Cross-References", nil, error) Util.log(error, :warning) return end id = bib["id"] newbib = bib.replace(@files[docid][:bibdata]) newbib.name = "bibitem" newbib["id"] = id newbib["hidden"] = "true" newbib&.at(ns("./ext"))&.remove _file, url = targetfile(@files[docid], false) uri_node = Nokogiri::XML::Node.new "uri", newbib uri_node[:type] = "citation" uri_node.content = url newbib.at(ns("./docidentifier")).previous = uri_node end |
#update_direct_refs_to_docs(docxml, identifier) ⇒ Object
repo(current-metanorma-collection/ISO 17301-1:2016) replaced by bibdata of “ISO 17301-1:2016” in situ as bibitem. Any erefs to that bibitem id are replaced with relative URL Preferably with anchor, and is a job to realise dynamic lookup of localities.
144 145 146 147 148 149 150 151 |
# File 'lib/metanorma/collection_fileprocess.rb', line 144 def update_direct_refs_to_docs(docxml, identifier) docxml.xpath(ns("//bibitem[not(ancestor::bibitem)]")).each do |b| docid = b&.at(ns("./docidentifier[@type = 'repository']"))&.text next unless docid && %r{^current-metanorma-collection/}.match(docid) update_bibitem(b, identifier) update_anchors(b, docxml, docid) end end |
#update_indirect_refs_to_docs(docxml, internal_refs) ⇒ Object
Resolve erefs to a container of ids in another doc, to an anchor eref (direct link)
154 155 156 157 158 159 160 |
# File 'lib/metanorma/collection_fileprocess.rb', line 154 def update_indirect_refs_to_docs(docxml, internal_refs) internal_refs.each do |schema, ids| ids.each do |id, file| update_indirect_refs_to_docs1(docxml, schema, id, file) end end end |
#update_indirect_refs_to_docs1(docxml, schema, id, file) ⇒ Object
162 163 164 165 166 167 168 169 |
# File 'lib/metanorma/collection_fileprocess.rb', line 162 def update_indirect_refs_to_docs1(docxml, schema, id, file) docxml.xpath(ns("//eref[@bibitemid = '#{schema}_#{id}']")).each do |e| e["citeas"] = file end docid = docxml.at(ns("//bibitem[@id = '#{schema}_#{id}']/docidentifier[@type = 'repository']")) or return docid.children = "current-metanorma-collection/#{file}" docid.previous = "<docidentifier type='X'>#{file}</docidentifier>" end |
#update_xrefs(file, identifier, internal_refs) ⇒ String
Resolves direct links to other files in collection (repo(current-metanorma-collection/x), and indirect links to other files in collection (bibitem[@type = ‘internal’] pointing to a file anchor in another file in the collection)
129 130 131 132 133 134 135 136 137 138 |
# File 'lib/metanorma/collection_fileprocess.rb', line 129 def update_xrefs(file, identifier, internal_refs) docxml = Nokogiri::XML(file) update_indirect_refs_to_docs(docxml, internal_refs) add_document_suffix(identifier, docxml) update_direct_refs_to_docs(docxml, identifier) docxml.xpath(ns("//references[not(./bibitem[not(@hidden) or @hidden = 'false'])]")).each do |f| f["hidden"] = "true" end docxml.to_xml end |
#xml_file(id, read) ⇒ Array<String, nil>
93 94 95 96 97 |
# File 'lib/metanorma/collection_fileprocess.rb', line 93 def xml_file(id, read) file = @xml.at(ns("//doc-container[@id = '#{id}']")).to_xml if read filename = id + ".html" [file, filename] end |