Class: SPARQL::Algebra::Operator::Insert

Inherits:
Unary show all
Includes:
Update
Defined in:
lib/sparql/algebra/operator/insert.rb

Overview

The SPARQL UPDATE insertData operator.

The INSERT operation is a form of the DELETE/INSERT operation having no DELETE section

[43] InsertClause ::= 'INSERT' QuadPattern

Examples:

SPARQL Grammar

PREFIX : <http://example.org/> 
INSERT { ?s ?p "q" }
WHERE { ?s ?p ?o }

SSE

(prefix
 ((: <http://example.org/>))
 (update
  (modify (bgp (triple ?s ?p ?o))
   (insert ((triple ?s ?p "q"))))))

See Also:

Constant Summary collapse

NAME =
[:insert]

Constants inherited from Unary

Unary::ARITY

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Instance Attribute Summary

Attributes inherited from SPARQL::Algebra::Operator

#operands

Instance Method Summary collapse

Methods included from Update

#graph_name=, #unshift, #variables

Methods inherited from Unary

#initialize

Methods inherited from SPARQL::Algebra::Operator

#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars

Methods included from Expression

cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?

Constructor Details

This class inherits a constructor from SPARQL::Algebra::Operator::Unary

Instance Method Details

#execute(queryable, solutions: nil, **options) ⇒ RDF::Queryable

Executes this upate on the given writable graph or repository.

Parameters:

  • queryable (RDF::Queryable)

    the graph or repository to write

  • solutions (RDF::Query::Solutions) (defaults to: nil)

    Solution to map to patterns for this operation

  • options (Hash{Symbol => Object})

    any additional keyword options

Options Hash (**options):

  • debug (Boolean)

    Query execution debugging

Returns:

Raises:

  • (IOError)

    If from does not exist, unless the silent operator is present

See Also:



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/sparql/algebra/operator/insert.rb', line 45

def execute(queryable, solutions: nil, **options)
  # Only binds the first solution
  solution = solutions.is_a?(RDF::Query::Solutions) ? solutions.first : solutions
  debug(options) {"Insert"}
  patterns = operand.inject([]) do |memo, op|
    if op.respond_to?(:statements)
      memo += op.statements.to_a
    else
      memo << op
    end
    memo
  end
  patterns.each do |pattern|
    pattern = pattern.dup.bind(solution)
    debug(options) {"Insert pattern #{pattern.to_sse}"}
    # Only insert bound or constant patterns
    queryable.insert(RDF::Statement.from(pattern)) if pattern.bound? || pattern.constant?
  end
  queryable
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this term.

Returns:

  • (String)


71
72
73
74
75
# File 'lib/sparql/algebra/operator/insert.rb', line 71

def to_sparql(**options)
  "INSERT {\n" +
    operands.first.to_sparql(delimiter: " .\n", **options) +
    "\n}"
end