class RelatonCie::Processor

Public Class Methods

new() click to toggle source
# File lib/relaton_cie/processor.rb, line 5
def initialize # rubocop:disable Lint/MissingSuper
  @short = :relaton_cie
  @prefix = "CIE"
  @defaultprefix = /^CIE(-|\s)/
  @idtype = "CIE"
  @datasets = %w[cie-techstreet]
end

Public Instance Methods

fetch_data(_source, opts) click to toggle source

Fetch all the docukents from a source

@param [String] _source source name @param [Hash] opts @option opts [String] :output directory to output documents @option opts [String] :format

# File lib/relaton_cie/processor.rb, line 29
def fetch_data(_source, opts)
  DataFetcher.fetch(**opts)
end
from_xml(xml) click to toggle source

@param xml [String] @return [RelatonBib::BibliographicItem]

# File lib/relaton_cie/processor.rb, line 35
def from_xml(xml)
  ::RelatonBib::XMLParser.from_xml xml
end
get(code, date, opts) click to toggle source

@param code [String] @param date [String, NilClass] year @param opts [Hash] @return [RelatonBib::BibliographicItem]

# File lib/relaton_cie/processor.rb, line 17
def get(code, date, opts)
  ::RelatonCie::CieBibliography.get(code, date, opts)
end
grammar_hash() click to toggle source

Returns hash of XML grammar @return [String]

# File lib/relaton_cie/processor.rb, line 47
def grammar_hash
  @grammar_hash ||= ::RelatonEcma.grammar_hash
end
hash_to_bib(hash) click to toggle source

@param hash [Hash] @return [RelatonBib::BibliographicItem]

# File lib/relaton_cie/processor.rb, line 41
def hash_to_bib(hash)
  ::RelatonBib::BibliographicItem.from_hash hash
end