Class: RelatonCalconnect::Processor

Inherits:
Relaton::Processor
  • Object
show all
Defined in:
lib/relaton_calconnect/processor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProcessor

Returns a new instance of Processor.



7
8
9
10
11
12
# File 'lib/relaton_calconnect/processor.rb', line 7

def initialize
  @short = :relaton_calconnect
  @prefix = "CC"
  @defaultprefix = %r{^CC\s}
  @idtype = "CC"
end

Instance Attribute Details

#idtypeObject (readonly)

Returns the value of attribute idtype.



5
6
7
# File 'lib/relaton_calconnect/processor.rb', line 5

def idtype
  @idtype
end

Instance Method Details

#from_xml(xml) ⇒ RelatonCalconnect::CcBibliographicItem

Parameters:

  • xml (String)

Returns:



24
25
26
# File 'lib/relaton_calconnect/processor.rb', line 24

def from_xml(xml)
  ::RelatonCalconnect::XMLParser.from_xml xml
end

#get(code, date, opts) ⇒ RelatonCalconnect::CcBibliographicItem

Parameters:

  • code (String)
  • date (String, NilClass)

    year

  • opts (Hash)

Returns:



18
19
20
# File 'lib/relaton_calconnect/processor.rb', line 18

def get(code, date, opts)
  ::RelatonCalconnect::CcBibliography.get(code, date, opts)
end

#grammar_hashString

Returns hash of XML grammar

Returns:

  • (String)


36
37
38
# File 'lib/relaton_calconnect/processor.rb', line 36

def grammar_hash
  @grammar_hash ||= ::RelatonCalconnect.grammar_hash
end

#hash_to_bib(hash) ⇒ RelatonIsoBib::CcBibliographicItem

Parameters:

  • hash (Hash)

Returns:

  • (RelatonIsoBib::CcBibliographicItem)


30
31
32
# File 'lib/relaton_calconnect/processor.rb', line 30

def hash_to_bib(hash)
  ::RelatonCalconnect::CcBibliographicItem.from_hash hash
end