Class: SPARQL::Algebra::Operator::Drop

Inherits:
SPARQL::Algebra::Operator show all
Includes:
Update
Defined in:
vendor/bundler/ruby/3.3.0/bundler/gems/sparql-36baa432eb7f/lib/sparql/algebra/operator/drop.rb

Overview

The SPARQL UPDATE drop operator.

The DROP operation removes the specified graph(s) from the Graph Store

Equivalent to clear in this implementation

[33] Drop ::= 'DROP' 'SILENT'? GraphRefAll

Examples:

SPARQL Grammar (SILENT DEFAULT)

DROP SILENT DEFAULT

SSE (SILENT DEFAULT)

(update
 (drop silent default))

SPARQL Grammar (IRI)

DROP GRAPH <http://example.com/>

SSE (IRI)

(update (drop <http://example.com/>))

See Also:

Constant Summary collapse

NAME =
[:drop]

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Constants included from RDF::Util::Logger

RDF::Util::Logger::IOWrapper

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 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, #formulae, #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?

Methods included from RDF::Util::Logger

#log_debug, #log_depth, #log_error, #log_fatal, #log_info, #log_recover, #log_recovering?, #log_statistics, #log_warn, #logger

Constructor Details

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

Instance Method Details

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

Executes this upate on the given writable graph or repository.

Parameters:

Options Hash (**options):

  • debug (Boolean)

    Query execution debugging

Returns:

Raises:

  • (IOError)

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

See Also:



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sparql-36baa432eb7f/lib/sparql/algebra/operator/drop.rb', line 46

def execute(queryable, **options)
  debug(options) {"Drop"}
  silent = operands.first == :silent
  operands.shift if silent

  raise ArgumentError, "drop expected operand to be 'default', 'named', 'all', or an IRI" unless operands.length == 1
  case operands.last
  when :default
    queryable.each_graph do |g|
      g.clear! unless g.graph_name
    end
  when :named
    queryable.each_graph do |g|
      g.clear! if g.graph_name
    end
  when :all
    queryable.clear!
  when RDF::URI
    if g = queryable.each_graph.detect {|c| c.graph_name == operands.last}
      g.clear!
    else
      raise IOError, "drop operation graph does not exist" unless silent
    end
  else
    raise ArgumentError, "drop expected operand to be 'default', 'named', 'all', or an IRI" 
  end

  queryable
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this operator.

Returns:



81
82
83
84
85
86
87
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/sparql-36baa432eb7f/lib/sparql/algebra/operator/drop.rb', line 81

def to_sparql(**options)
  silent = operands.first == :silent
  str = "DROP "
  str << "SILENT " if operands.first == :silent
  str << "GRAPH " if operands.last.is_a?(RDF::URI)
  str << operands.last.to_sparql(**options)
end