Class: RelatonIho::Processor

Inherits:
Relaton::Processor
  • Object
show all
Defined in:
lib/relaton_iho/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_iho/processor.rb', line 7

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

Instance Attribute Details

#idtypeObject (readonly)

Returns the value of attribute idtype.



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

def idtype
  @idtype
end

Instance Method Details

#from_xml(xml) ⇒ RelatonIho::IhoBibliographicItem

Parameters:

  • xml (String)

Returns:



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

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

#get(code, date, opts) ⇒ RelatonIho::IhoBibliographicItem

Parameters:

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

    year

  • opts (Hash)

Returns:



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

def get(code, date, opts)
  ::RelatonIho::IhoBibliography.get(code, date, opts)
end

#grammar_hashString

Returns hash of XML grammar

Returns:

  • (String)


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

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

#hash_to_bib(hash) ⇒ RelatonIho::IhoBibliographicItem

Parameters:

  • hash (Hash)

Returns:



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

def hash_to_bib(hash)
  ::RelatonIho::IhoBibliographicItem.new hash
end

#remove_index_fileObject

Remove index file



43
44
45
# File 'lib/relaton_iho/processor.rb', line 43

def remove_index_file
  Relaton::Index.find_or_create(:iho, url: true).remove_file
end