Class: ShEx::Algebra::Start
- Inherits:
-
Operator::Unary
- Object
- Operator
- Operator::Unary
- ShEx::Algebra::Start
- Includes:
- ShapeExpression
- Defined in:
- lib/shex/algebra/start.rb
Constant Summary collapse
- NAME =
:start
Constants inherited from Operator::Unary
Constants inherited from Operator
Instance Attribute Summary
Attributes inherited from Operator
#id, #logger, #operands, #options, #schema
Instance Method Summary collapse
- #satisfies?(focus, depth: 0) ⇒ Boolean, ShapeExpression
-
#validate! ⇒ Operator
expressions must be ShapeExpressions or references to ShapeExpressions.
Methods included from ShapeExpression
#validate_expressions!, #validate_self_references!
Methods inherited from Operator::Unary
Methods inherited from Operator
#base_uri, #closed?, #dup, #each_descendant, #eql?, #expression, #expressions, #find, #focus, #focus=, from_shexj, #initialize, #inspect, #iri, iri, #json_type, #matched, #matched=, #message, #message=, #not_matched, #not_satisfied, #operand, #parent, #parent=, #references, #satisfied, #satisfied=, #satisfy, #semact?, #semantic_actions, #serialize_value, #status, #structure_error, #to_h, #to_json, #to_sxp, #to_sxp_bin, #triple_expression?, #unmatched, #unmatched=, #unsatisfied, #unsatisfied=, #value, value
Constructor Details
This class inherits a constructor from ShEx::Algebra::Operator::Unary
Instance Method Details
#satisfies?(focus, depth: 0) ⇒ Boolean, ShapeExpression
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/shex/algebra/start.rb', line 11 def satisfies?(focus, depth: 0) status "", depth: depth matched_op = case expression when RDF::Resource schema.enter_shape(expression, focus) do |shape| if shape shape.satisfies?(focus, depth: depth + 1) else status "Satisfy as #{expression} was re-entered for #{focus}", depth: depth nil end end when ShapeExpression expression.satisfies?(focus, depth: depth + 1) end satisfy focus: focus, satisfied: matched_op, depth: depth rescue ShEx::NotSatisfied => e not_satisfied e., focus: focus, unsatisfied: e.expression, depth: depth raise end |
#validate! ⇒ Operator
expressions must be ShapeExpressions or references to ShapeExpressions
37 38 39 40 |
# File 'lib/shex/algebra/start.rb', line 37 def validate! validate_expressions! super end |