Class: SPARQL::Algebra::Operator::Prefix
- Inherits:
-
Binary
- Object
- SPARQL::Algebra::Operator
- Binary
- SPARQL::Algebra::Operator::Prefix
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/prefix.rb
Overview
The SPARQL GraphPattern prefix
operator.
[6] PrefixDecl ::= ‘PREFIX’ PNAME_NS IRIREF
Constant Summary collapse
- NAME =
[:prefix]
Constants inherited from Binary
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes included from Query
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given
queryable
graph or repository. -
#merge!(other) ⇒ Prefix
Combine two prefix definitions, merging their definitions.
-
#optimize(**options) ⇒ Prefix
Returns an optimized version of this query.
-
#query_yields_boolean? ⇒ Boolean
Query results in a boolean result (e.g., ASK).
-
#query_yields_statements? ⇒ Boolean
Query results statements (e.g., CONSTRUCT, DESCRIBE, CREATE).
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
Methods included from Query
#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_solutions?, #unshift, #variables
Methods inherited from Binary
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!, #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!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Binary
Instance Method Details
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given queryable
graph or repository. Really a pass-through, as this is a syntactic object used for providing graph_name for URIs.
38 39 40 41 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 38 def execute(queryable, **, &block) debug() {"Prefix"} @solutions = queryable.query(operands.last, **.merge(depth: [:depth].to_i + 1), &block) end |
#merge!(other) ⇒ Prefix
Combine two prefix definitions, merging their definitions
57 58 59 60 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 57 def merge!(other) operands[0] += other.operands[0] self end |
#optimize(**options) ⇒ Prefix
Returns an optimized version of this query.
Replace with the query with URIs having their lexical shortcut removed
50 51 52 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 50 def optimize(**) operands.last.optimize(**) end |
#query_yields_boolean? ⇒ Boolean
Query results in a boolean result (e.g., ASK)
64 65 66 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 64 def query_yields_boolean? operands.last.query_yields_boolean? end |
#query_yields_statements? ⇒ Boolean
Query results statements (e.g., CONSTRUCT, DESCRIBE, CREATE)
70 71 72 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 70 def query_yields_statements? operands.last.query_yields_statements? end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
79 80 81 82 83 84 85 86 87 88 |
# File 'lib/sparql/algebra/operator/prefix.rb', line 79 def to_sparql(**) prefixes = {} str = operands.first.map do |(pfx, sfx)| pfx = pfx.to_s.chomp(':').to_sym prefixes[pfx] = sfx "PREFIX #{pfx}: #{sfx.to_sparql}\n" end.join("") str << operands.last.to_sparql(prefixes: prefixes, **) end |