Class: Dentaku::Parser
- Inherits:
-
Object
- Object
- Dentaku::Parser
- Defined in:
- lib/dentaku/parser.rb
Instance Attribute Summary collapse
-
#arities ⇒ Object
readonly
Returns the value of attribute arities.
-
#input ⇒ Object
readonly
Returns the value of attribute input.
-
#operations ⇒ Object
readonly
Returns the value of attribute operations.
-
#output ⇒ Object
readonly
Returns the value of attribute output.
Instance Method Summary collapse
- #consume(count = 2) ⇒ Object
- #function(token) ⇒ Object
- #get_args(count) ⇒ Object
-
#initialize(tokens, options = {}) ⇒ Parser
constructor
A new instance of Parser.
- #operation(token) ⇒ Object
- #parse ⇒ Object
Constructor Details
#initialize(tokens, options = {}) ⇒ Parser
Returns a new instance of Parser.
7 8 9 10 11 12 |
# File 'lib/dentaku/parser.rb', line 7 def initialize(tokens, ={}) @input = tokens.dup @output = [] @operations = .fetch(:operations, []) @arities = .fetch(:arities, []) end |
Instance Attribute Details
#arities ⇒ Object (readonly)
Returns the value of attribute arities.
5 6 7 |
# File 'lib/dentaku/parser.rb', line 5 def arities @arities end |
#input ⇒ Object (readonly)
Returns the value of attribute input.
5 6 7 |
# File 'lib/dentaku/parser.rb', line 5 def input @input end |
#operations ⇒ Object (readonly)
Returns the value of attribute operations.
5 6 7 |
# File 'lib/dentaku/parser.rb', line 5 def operations @operations end |
#output ⇒ Object (readonly)
Returns the value of attribute output.
5 6 7 |
# File 'lib/dentaku/parser.rb', line 5 def output @output end |
Instance Method Details
#consume(count = 2) ⇒ Object
18 19 20 21 |
# File 'lib/dentaku/parser.rb', line 18 def consume(count=2) operator = operations.pop output.push operator.new(*get_args(operator.arity || count)) end |
#function(token) ⇒ Object
227 228 229 |
# File 'lib/dentaku/parser.rb', line 227 def function(token) Dentaku::AST::Function.get(token.value) end |
#get_args(count) ⇒ Object
14 15 16 |
# File 'lib/dentaku/parser.rb', line 14 def get_args(count) Array.new(count) { output.pop }.reverse end |
#operation(token) ⇒ Object
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/dentaku/parser.rb', line 205 def operation(token) { add: AST::Addition, subtract: AST::Subtraction, multiply: AST::Multiplication, divide: AST::Division, pow: AST::Exponentiation, negate: AST::Negation, mod: AST::Modulo, lt: AST::LessThan, gt: AST::GreaterThan, le: AST::LessThanOrEqual, ge: AST::GreaterThanOrEqual, ne: AST::NotEqual, eq: AST::Equal, and: AST::And, or: AST::Or, }.fetch(token.value) end |
#parse ⇒ Object
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 |
# File 'lib/dentaku/parser.rb', line 23 def parse return AST::Nil.new if input.empty? while token = input.shift case token.category when :numeric output.push AST::Numeric.new(token) when :logical output.push AST::Logical.new(token) when :string output.push AST::String.new(token) when :identifier output.push AST::Identifier.new(token) when :operator, :comparator, :combinator op_class = operation(token) if op_class.right_associative? while operations.last && operations.last < AST::Operation && op_class.precedence < operations.last.precedence consume end operations.push op_class else while operations.last && operations.last < AST::Operation && op_class.precedence <= operations.last.precedence consume end operations.push op_class end when :null output.push AST::Nil.new when :function arities.push 0 operations.push function(token) when :case case token.value when :open # special handling for case nesting: strip out inner case # statements and parse their AST segments recursively if operations.include?(AST::Case) open_cases = 0 case_end_index = nil input.each_with_index do |token, index| if token.category == :case && token.value == :open open_cases += 1 end if token.category == :case && token.value == :close if open_cases > 0 open_cases -= 1 else case_end_index = index break end end end inner_case_inputs = input.slice!(0..case_end_index) subparser = Parser.new( inner_case_inputs, operations: [AST::Case], arities: [0] ) subparser.parse output.concat(subparser.output) else operations.push AST::Case arities.push(0) end when :close if operations[1] == AST::CaseThen while operations.last != AST::Case consume end operations.push(AST::CaseConditional) consume(2) arities[-1] += 1 elsif operations[1] == AST::CaseElse while operations.last != AST::Case consume end arities[-1] += 1 end unless operations.count == 1 && operations.last == AST::Case fail ParseError, "Unprocessed token #{ token.value }" end consume(arities.pop.succ) when :when if operations[1] == AST::CaseThen while ![AST::CaseWhen, AST::Case].include?(operations.last) consume end operations.push(AST::CaseConditional) consume(2) arities[-1] += 1 elsif operations.last == AST::Case operations.push(AST::CaseSwitchVariable) consume end operations.push(AST::CaseWhen) when :then if operations[1] == AST::CaseWhen while ![AST::CaseThen, AST::Case].include?(operations.last) consume end end operations.push(AST::CaseThen) when :else if operations[1] == AST::CaseThen while operations.last != AST::Case consume end operations.push(AST::CaseConditional) consume(2) arities[-1] += 1 end operations.push(AST::CaseElse) else fail ParseError, "Unknown case token #{ token.value }" end when :grouping case token.value when :open if input.first && input.first.value == :close input.shift consume(0) else operations.push AST::Grouping end when :close while operations.any? && operations.last != AST::Grouping consume end lparen = operations.pop fail ParseError, "Unbalanced parenthesis" unless lparen == AST::Grouping if operations.last && operations.last < AST::Function consume(arities.pop.succ) end when :comma arities[-1] += 1 while operations.any? && operations.last != AST::Grouping consume end else fail ParseError, "Unknown grouping token #{ token.value }" end else fail ParseError, "Not implemented for tokens of category #{ token.category }" end end while operations.any? consume end unless output.count == 1 fail ParseError, "Invalid statement" end output.first end |