class RelatonCalconnect::Processor
Attributes
idtype[R]
Public Class Methods
new()
click to toggle source
# File lib/relaton_calconnect/processor.rb, line 7 def initialize # rubocop:disable Lint/MissingSuper @short = :relaton_calconnect @prefix = "CC" @defaultprefix = %r{^CC\s} @idtype = "CC" @datasets = %w[calconnect-org] end
Public Instance Methods
fetch_data(_source, opts)
click to toggle source
Fetch all the documents 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_calconnect/processor.rb, line 31 def fetch_data(_source, opts) DataFetcher.fetch(**opts) end
from_xml(xml)
click to toggle source
@param xml [String] @return [RelatonCalconnect::CcBibliographicItem]
# File lib/relaton_calconnect/processor.rb, line 37 def from_xml(xml) ::RelatonCalconnect::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 [RelatonCalconnect::CcBibliographicItem]
# File lib/relaton_calconnect/processor.rb, line 19 def get(code, date, opts) ::RelatonCalconnect::CcBibliography.get(code, date, opts) end
grammar_hash()
click to toggle source
Returns hash of XML grammar @return [String]
# File lib/relaton_calconnect/processor.rb, line 49 def grammar_hash @grammar_hash ||= ::RelatonCalconnect.grammar_hash end
hash_to_bib(hash)
click to toggle source
@param hash [Hash] @return [RelatonIsoBib::CcBibliographicItem]
# File lib/relaton_calconnect/processor.rb, line 43 def hash_to_bib(hash) ::RelatonCalconnect::CcBibliographicItem.from_hash hash end