Class: JSON::LD::Reader

Inherits:
RDF::Reader
  • Object
show all
Defined in:
lib/json/ld/reader.rb

Overview

A JSON-LD parser in Ruby.

See Also:

Author:

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input = $stdin, options = {}) {|reader| ... } ⇒ Reader

Initializes the RDF/JSON reader instance.

Parameters:

  • input (IO, File, String) (defaults to: $stdin)
  • options (Hash{Symbol => Object}) (defaults to: {})

    any additional options (see ‘RDF::Reader#initialize` and API.initialize)

Yields:

  • (reader)

    ‘self`

Yield Parameters:

  • reader (RDF::Reader)

Yield Returns:

  • (void)

    ignored

Raises:

  • (RDF::ReaderError)

    if the JSON document cannot be loaded



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/json/ld/reader.rb', line 28

def initialize(input = $stdin, options = {}, &block)
  options[:base_uri] ||= options[:base]
  super do
    @options[:base] ||= base_uri.to_s if base_uri
    begin
      # Trim non-JSON stuff in script.
      input = input.read if input.respond_to?(:read)
      input = input.to_s.sub(%r(\A[^{\[]*)m, '').sub(%r([^}\]]*\Z)m, '') 
      @doc = JSON.load(input)
    rescue JSON::ParserError => e
      raise RDF::ReaderError, "Failed to parse input document: #{e.message}" if validate?
      @doc = JSON.parse("{}")
    end

    if block_given?
      case block.arity
        when 0 then instance_eval(&block)
        else block.call(self)
      end
    end
  end
end

Class Method Details

.to_symObject

Override normal symbol generation



14
15
16
# File 'lib/json/ld/reader.rb', line 14

def self.to_sym
  :jsonld
end

Instance Method Details

#each_statement(&block) ⇒ Object

See Also:

  • RDF::Reader#each_statement


54
55
56
# File 'lib/json/ld/reader.rb', line 54

def each_statement(&block)
  JSON::LD::API.toRdf(@doc, @options, &block)
end

#each_triple(&block) ⇒ Object

See Also:

  • RDF::Reader#each_triple


61
62
63
64
65
66
67
68
# File 'lib/json/ld/reader.rb', line 61

def each_triple(&block)
  if block_given?
    JSON::LD::API.toRdf(@doc, @options) do |statement|
      yield *statement.to_triple
    end
  end
  enum_for(:each_triple)
end