Class: RDF::TriG::Reader

Inherits:
RDF::Turtle::Reader
  • Object
show all
Defined in:
lib/rdf/trig/reader.rb

Overview

A parser for the TriG

Leverages the Turtle reader

Instance Method Summary collapse

Instance Method Details

#add_statement(production, statement) ⇒ RDF::Statement

add a statement, object can be literal or URI or bnode

Parameters:

  • production (Symbol)
  • statement (RDF::Statement)

    the subject of the statement

Returns:

  • (RDF::Statement)

    Added statement

Raises:

  • (RDF::ReaderError)

    Checks parameter types and raises if they are incorrect if parsing mode is validate.



91
92
93
94
95
96
97
98
# File 'lib/rdf/trig/reader.rb', line 91

def add_statement(production, statement)
  error("Statement is invalid: #{statement.inspect.inspect}", production: produciton) if validate? && statement.invalid?
  statement.graph_name = @graph_name if @graph_name
  @callback.call(statement) if statement.subject &&
                               statement.predicate &&
                               statement.object &&
                               (validate? ? statement.valid? : true)
end

#each_quad {|subject, predicate, object, graph_name| ... }

This method returns an undefined value.

Iterates the given block for each RDF quad in the input.

Yields:

  • (subject, predicate, object, graph_name)

Yield Parameters:

  • subject (RDF::Resource)
  • predicate (RDF::URI)
  • object (RDF::Value)
  • graph_name (RDF::URI)


76
77
78
79
80
81
82
83
# File 'lib/rdf/trig/reader.rb', line 76

def each_quad(&block)
  if block_given?
    each_statement do |statement|
      block.call(*statement.to_quad)
    end
  end
  enum_for(:each_quad)
end

#each_statement {|statement| ... }

This method returns an undefined value.

Iterates the given block for each RDF statement in the input.

Yields:

  • (statement)

Yield Parameters:

  • statement (RDF::Statement)


47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/rdf/trig/reader.rb', line 47

def each_statement(&block)
  if block_given?
    @recovering = false
    @callback = block

    begin
      while (@lexer.first rescue true)
        read_trigDoc
      end
    rescue EBNF::LL1::Lexer::Error, SyntaxError, EOFError, Recovery
      # Terminate loop if EOF found while recovering
    end

    if validate? && log_statistics[:error]
      raise RDF::ReaderError, "Errors found during processing"
    end
  end
  enum_for(:each_statement)
end

#read_blockObject (protected)

Returns:

  • (Object)


109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/rdf/trig/reader.rb', line 109

def read_block
  prod(:block, %(})) do
    @graph_name = nil
    token = @lexer.first
    case token && (token.type || token.value)
    when :GRAPH
      @lexer.shift
      @graph_name = read_labelOrSubject || error("Expected label or subject", production: :block, token: @lexer.first)
      read_wrappedGraph || error("Expected wrappedGraph", production: :block, token: @lexer.first)
      @graph_name = nil
    when :IRIREF, :BLANK_NODE_LABEL, :ANON, :PNAME_LN, :PNAME_NS
      read_triplesOrGraph || error("Expected triplesOrGraph", production: :block, token: @lexer.first)
    when '{'
      read_wrappedGraph || error("Expected wrappedGraph", production: :block, token: @lexer.first)
    when '(', '[', '<<'
      read_triples2 || error("Expected collection or blankNodePropertyList", production: :block, token: @lexer.first)
    when nil
      # End of input
    else
      error("Unexpected token: #{@lexer.first.inspect}", production: :block, token: @lexer.first)
    end
  end
end

#read_labelOrSubjectRDF::Resource (protected)

Returns:

  • (RDF::Resource)


248
249
250
251
252
# File 'lib/rdf/trig/reader.rb', line 248

def read_labelOrSubject
  prod(:labelOrSubject) do
    read_iri || read_BlankNode
  end
end

#read_trigDocObject (protected)

Returns:

  • (Object)


102
103
104
105
106
# File 'lib/rdf/trig/reader.rb', line 102

def read_trigDoc
  prod(:trigDoc, %(} .)) do
    read_directive || read_block
  end
end

#read_triples2Object (protected)

Returns:

  • (Object)


160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/rdf/trig/reader.rb', line 160

def read_triples2
  token = @lexer.first
  case token && token.value
  when '['
    prod(:triples2) do
      # blankNodePropertyList predicateObjectList? 
      subject = read_blankNodePropertyList || error("Failed to parse blankNodePropertyList", production: :triples2, token: @lexer.first)
      read_predicateObjectList(subject)
      if !@recovering || @lexer.first === '.'
        # If recovering, we will have eaten the closing '.'
        token = @lexer.shift
        unless token && token.value == '.'
          error("Expected '.' following triple", production: :triples2, token: token)
        end
      end
      true
    end
  when '('
    prod(:triples2) do
      subject = read_collection || error("Failed to parse read_collection", production: :triples2, token: @lexer.first)
      token = @lexer.first
      case token && (token.type || token.value)
      when 'a', :IRIREF, :PNAME_LN, :PNAME_NS then read_predicateObjectList(subject)
      else error("Expected predicateObjectList after collection subject", production: :triples2, token: token)
      end
      if !@recovering || @lexer.first === '.'
        # If recovering, we will have eaten the closing '.'
        token = @lexer.shift
        unless token && token.value == '.'
          error("Expected '.' following triple", production: :triples2, token: token)
        end
      end
      true
    end
  when '<<'
    prod(:triples2) do
      subject = read_quotedTriple || error("Failed to parse embedded triple", production: :triples2, token: @lexer.first)
      token = @lexer.first
      case token && (token.type || token.value)
      when 'a', :IRIREF, :PNAME_LN, :PNAME_NS then read_predicateObjectList(subject)
      else error("Expected predicateObjectList after collection subject", production: :triples2, token: token)
      end
      if !@recovering || @lexer.first === '.'
        # If recovering, we will have eaten the closing '.'
        token = @lexer.shift
        unless token && token.value == '.'
          error("Expected '.' following triple", production: :triples2, token: token)
        end
      end
      true
    end
  end
end

#read_triplesBlockObject (protected)

Returns:

  • (Object)


236
237
238
239
240
241
242
243
244
245
# File 'lib/rdf/trig/reader.rb', line 236

def read_triplesBlock
  prod(:triplesBlock, %w(.)) do
    while (token = @lexer.first) && token.value != '}' && read_triples
      unless log_recovering?
        break unless @lexer.first === '.'
        @lexer.shift
      end
    end
  end
end

#read_triplesOrGraphObject (protected)

Returns:

  • (Object)


134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/rdf/trig/reader.rb', line 134

def read_triplesOrGraph
  while name = read_labelOrSubject
    prod(:triplesOrGraph, %(} .)) do
      token = @lexer.first
      case token && token.value
      when '{'
        @graph_name = name
        read_wrappedGraph || error("Expected wrappedGraph", production: :triplesOrGraph, token: @lexer.first)
        @graph_name = nil
        true
      else
        read_predicateObjectList(name) || error("Expected predicateObjectList", production: :triplesOrGraph, token: @lexer.first)
        unless @recovering
          # If recovering, we will have eaten the closing '.'
          token = @lexer.shift
          unless token && token.value == '.'
            error("Expected '.' following triple", production: :triplesOrGraph, token: token)
          end
        end
      end
    end
  end
  true
end

#read_wrappedGraphObject (protected)

Returns:

  • (Object)


215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/rdf/trig/reader.rb', line 215

def read_wrappedGraph
  token = @lexer.first
  if token && token.value == '{'
    prod(:wrappedGraph, %w(})) do
      @lexer.shift
      while read_triplesBlock
        # Read until nothing found
      end
      if !@recovering || @lexer.first === '}'
        # If recovering, we will have eaten the closing '}'
        token = @lexer.shift
        unless token && token.value == '}'
          error("Expected '}' following triple", production: :wrappedGraph, token: token)
        end
      end
      true
    end
  end
end