Class: RelatonJis::Processor
- Inherits:
-
Relaton::Processor
- Object
- Relaton::Processor
- RelatonJis::Processor
- Defined in:
- lib/relaton_jis/processor.rb
Instance Attribute Summary collapse
-
#idtype ⇒ Object
readonly
Returns the value of attribute idtype.
Instance Method Summary collapse
- #from_xml(xml) ⇒ RelatonJis::BibliographicItem
- #get(code, date, opts) ⇒ RelatonJis::BibliographicItem
-
#grammar_hash ⇒ String
Returns hash of XML grammar.
- #hash_to_bib(hash) ⇒ RelatonJis::BibliographicItem
-
#initialize ⇒ Processor
constructor
rubocop:disable Lint/MissingSuper.
Constructor Details
#initialize ⇒ Processor
rubocop:disable Lint/MissingSuper
7 8 9 10 11 12 |
# File 'lib/relaton_jis/processor.rb', line 7 def initialize # rubocop:disable Lint/MissingSuper @short = :relaton_jis @prefix = "JIS" @defaultprefix = %r{^JIS\s} @idtype = "JIS" end |
Instance Attribute Details
#idtype ⇒ Object (readonly)
Returns the value of attribute idtype.
5 6 7 |
# File 'lib/relaton_jis/processor.rb', line 5 def idtype @idtype end |
Instance Method Details
#from_xml(xml) ⇒ RelatonJis::BibliographicItem
24 25 26 |
# File 'lib/relaton_jis/processor.rb', line 24 def from_xml(xml) ::RelatonJis::XMLParser.from_xml xml end |
#get(code, date, opts) ⇒ RelatonJis::BibliographicItem
18 19 20 |
# File 'lib/relaton_jis/processor.rb', line 18 def get(code, date, opts) ::RelatonJis::Bibliography.get(code, date, opts) end |
#grammar_hash ⇒ String
Returns hash of XML grammar
37 38 39 |
# File 'lib/relaton_jis/processor.rb', line 37 def grammar_hash @grammar_hash ||= ::RelatonJis.grammar_hash end |
#hash_to_bib(hash) ⇒ RelatonJis::BibliographicItem
30 31 32 33 |
# File 'lib/relaton_jis/processor.rb', line 30 def hash_to_bib(hash) item_hash = ::RelatonJis::HashConverter.hash_to_bib(hash) ::RelatonJis::BibliographicItem.new(**item_hash) end |