Class: ShEx::Algebra::LanguageStem
- Inherits:
-
Stem
- Object
- Operator
- Operator::Unary
- Stem
- ShEx::Algebra::LanguageStem
- Defined in:
- lib/shex/algebra/stem.rb
Constant Summary collapse
- NAME =
:languageStem
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
-
#match?(value, depth: 0) ⇒ Boolean
For a node n and constraint value v, nodeSatisfies(n, v) if n matches some valueSetValue vsv in v.
Methods inherited from Stem
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=, #validate!, #value, value
Constructor Details
This class inherits a constructor from ShEx::Algebra::Operator::Unary
Instance Method Details
#match?(value, depth: 0) ⇒ Boolean
For a node n and constraint value v, nodeSatisfies(n, v) if n matches some valueSetValue vsv in v. A term matches a valueSetValue if:
-
vsv is a Stem with stem st and nodeIn(n, st). If the operand is empty, than any language will do, otherwise, it matches the substring up to that first ‘-’, if any.
71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/shex/algebra/stem.rb', line 71 def match?(value, depth: 0) if value.literal? && value.language? && (operands.first.to_s.empty? || value.language.to_s.match?(%r(^#{operands.first}((-.*)?)$))) status "matched #{value}", depth: depth true else status "not matched #{value}", depth: depth false end end |