43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
|
module Gitlab
|
||
|
module Ci
|
||
|
module Pipeline
|
||
|
module Expression
|
||
|
class Statement
|
||
|
StatementError = Class.new(StandardError)
|
||
|
|
||
|
GRAMMAR = [
|
||
|
%w[variable equals string],
|
||
|
%w[variable equals variable],
|
||
|
%w[variable equals null],
|
||
|
%w[string equals variable],
|
||
|
%w[null equals variable],
|
||
|
%w[variable]
|
||
|
].freeze
|
||
|
|
||
|
def initialize(statement, pipeline)
|
||
|
@lexer = Expression::Lexer.new(statement)
|
||
|
|
||
|
@variables = pipeline.variables.map do |variable|
|
||
|
[variable.key, variable.value]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def parse_tree
|
||
|
raise StatementError if @lexer.lexemes.empty?
|
||
|
|
||
|
unless GRAMMAR.find { |syntax| syntax == @lexer.lexemes }
|
||
|
raise StatementError, 'Unknown pipeline expression!'
|
||
|
end
|
||
|
|
||
|
Expression::Parser.new(@lexer.tokens).tree
|
||
|
end
|
||
|
|
||
|
def evaluate
|
||
|
parse_tree.evaluate(@variables.to_h)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|