1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
module Mustermann
# @see Mustermann::AST::Pattern
module AST
# @!visibility private
class Node
# @!visibility private
attr_accessor :payload, :start, :stop
# @!visibility private
# @param [Symbol] name of the node
# @return [Class] factory for the node
def self.[](name)
@names ||= {}
@names[name] ||= begin
const_name = constant_name(name)
const_name.split("::").inject(Object){|current, const| current.const_get(const) } rescue nil
end
end
# Turns a class name into a node identifier.
# @!visibility private
def self.type
name[/[^:]+$/].split(/(?<=.)(?=[A-Z])/).map(&:downcase).join(?_).to_sym
end
# @!visibility private
# @param [Symbol] name of the node
# @return [String] qualified name of factory for the node
def self.constant_name(name)
return self.name if name.to_sym == :node
name = name.to_s.split(?_).map(&:capitalize).join
"#{self.name}::#{name}"
end
# Helper for creating a new instance and calling #parse on it.
# @return [Mustermann::AST::Node]
# @!visibility private
def self.parse(*args, &block)
new(*args).tap { |n| n.parse(&block) }
end
# @!visibility private
def initialize(payload = nil, options = {})
options, payload = payload, nil if payload.is_a?(Hash)
options.each { |key, value| public_send("#{key}=", value) }
self.payload = payload
end
# @!visibility private
def is_a?(type)
type = Node[type] if type.is_a? Symbol
super(type)
end
# Double dispatch helper for reading from the buffer into the payload.
# @!visibility private
def parse
self.payload ||= []
while element = yield
payload << element
end
end
# Loop through all nodes that don't have child nodes.
# @!visibility private
def each_leaf(&block)
return enum_for(__method__) unless block_given?
called = false
Array(payload).each do |entry|
next unless entry.respond_to? :each_leaf
entry.each_leaf(&block)
called = true
end
yield(self) unless called
end
# @return [Integer] length of the substring
# @!visibility private
def length
stop - start if start and stop
end
# @return [Integer] minimum size for a node
# @!visibility private
def min_size
0
end
# Turns a class name into a node identifier.
# @!visibility private
def type
self.class.type
end
# @!visibility private
class Capture < Node
# @see Mustermann::AST::Compiler::Capture#default
# @!visibility private
attr_accessor :constraint
# @see Mustermann::AST::Compiler::Capture#qualified
# @!visibility private
attr_accessor :qualifier
# @see Mustermann::AST::Pattern#map_param
# @!visibility private
attr_accessor :convert
# @see Mustermann::AST::Node#parse
# @!visibility private
def parse
self.payload ||= ""
super
end
# @!visibility private
alias_method :name, :payload
end
# @!visibility private
class Char < Node
# @return [Integer] minimum size for a node
# @!visibility private
def min_size
1
end
end
# AST node for template expressions.
# @!visibility private
class Expression < Node
# @!visibility private
attr_accessor :operator
end
# @!visibility private
class Composition < Node
# @!visibility private
def initialize(payload = nil, options = {})
options, payload = payload, nil if payload.is_a?(Hash)
super(Array(payload), options)
end
end
# @!visibility private
class Group < Composition
end
# @!visibility private
class Union < Composition
end
# @!visibility private
class Optional < Node
end
# @!visibility private
class Or < Node
end
# @!visibility private
class Root < Node
# @!visibility private
attr_accessor :pattern
# Will trigger transform.
#
# @see Mustermann::AST::Node.parse
# @!visibility private
def self.parse(string, &block)
root = new
root.pattern = string
root.parse(&block)
root
end
end
# @!visibility private
class Separator < Node
# @return [Integer] minimum size for a node
# @!visibility private
def min_size
1
end
end
# @!visibility private
class Splat < Capture
# @see Mustermann::AST::Node::Capture#name
# @!visibility private
def name
"splat"
end
end
# @!visibility private
class NamedSplat < Splat
# @see Mustermann::AST::Node::Capture#name
# @!visibility private
alias_method :name, :payload
end
# AST node for template variables.
# @!visibility private
class Variable < Capture
# @!visibility private
attr_accessor :prefix, :explode
end
# @!visibility private
class WithLookAhead < Node
# @!visibility private
attr_accessor :head, :at_end
# @!visibility private
def initialize(payload, at_end, options = {})
super(options)
self.head, *self.payload = Array(payload)
self.at_end = at_end
end
end
end
end
end
|