Module: RDF::TriX::Reader::LibXML

Defined in:
lib/rdf/trix/reader/libxml.rb

Overview

LibXML-Ruby implementation of the TriX reader.

Constant Summary collapse

OPTIONS =
{'trix' => Format::XMLNS}.freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.librarySymbol

Returns the name of the underlying XML library.

Returns:

  • (Symbol)


14
15
16
# File 'lib/rdf/trix/reader/libxml.rb', line 14

def self.library
  :libxml
end

Instance Method Details

#initialize_xml(input, **options)

This method returns an undefined value.

Initializes the underlying XML library.

Parameters:

  • options (Hash{Symbol => Object})


23
24
25
26
27
28
29
30
# File 'lib/rdf/trix/reader/libxml.rb', line 23

def initialize_xml(input, **options)
  require 'libxml' unless defined?(::LibXML)
  @xml = case input
    when File         then ::LibXML::XML::Document.file(input.path)
    when IO, StringIO then ::LibXML::XML::Document.io(input)
    else ::LibXML::XML::Document.string(input.to_s)
  end
end