|
| 1 | +module TreeSitter |
| 2 | + PREDICATES = { |
| 3 | + "match?" => MatchPredicate, |
| 4 | + } |
| 5 | + |
| 6 | + abstract class Predicate |
| 7 | + @query : TreeSitter::Query |
| 8 | + @steps : Array(LibTreeSitter::TSQueryPredicateStep) |
| 9 | + |
| 10 | + def initialize(@query, @steps) |
| 11 | + end |
| 12 | + |
| 13 | + def self.resolve( |
| 14 | + query : TreeSitter::Query, |
| 15 | + capture : TreeSitter::Capture, |
| 16 | + source : String, |
| 17 | + ) : Bool |
| 18 | + unsafe_steps = LibTreeSitter.ts_query_predicates_for_pattern( |
| 19 | + query, |
| 20 | + capture.capture_index, |
| 21 | + out step_count |
| 22 | + ) |
| 23 | + steps = Slice.new(unsafe_steps, step_count).to_a |
| 24 | + |
| 25 | + name_ptr = LibTreeSitter.ts_query_string_value_for_id( |
| 26 | + query.to_unsafe, steps[0].value_id, out name_len |
| 27 | + ) |
| 28 | + |
| 29 | + name = String.new(name_ptr, name_len) |
| 30 | + |
| 31 | + !!PREDICATES[name]?.try(&.new(query, steps).call(capture, source)) |
| 32 | + end |
| 33 | + end |
| 34 | + |
| 35 | + class MatchPredicate < Predicate |
| 36 | + def call(capture : TreeSitter::Capture, source : String) : Bool |
| 37 | + # Get the regex pattern from the third step (steps[2]) |
| 38 | + pattern_ptr = LibTreeSitter.ts_query_string_value_for_id( |
| 39 | + @query.to_unsafe, |
| 40 | + @steps[2].value_id, |
| 41 | + out pattern_len |
| 42 | + ) |
| 43 | + pattern = String.new(pattern_ptr, pattern_len) |
| 44 | + |
| 45 | + # Get the text from the captured node |
| 46 | + node_text = capture.text(source) |
| 47 | + |
| 48 | + # Match the captured text against the regex pattern |
| 49 | + Regex.new(pattern).matches?(node_text) |
| 50 | + end |
| 51 | + end |
| 52 | +end |
0 commit comments