Class: Unitwise::Expression::Decomposer

Inherits:
Object
  • Object
show all
Defined in:
lib/unitwise/expression/decomposer.rb

Overview

The decomposer is used to turn string expressions into collections of terms. It is responsible for executing the parsing and transformation of a string, as well as caching the results.

Constant Summary collapse

MODES =
[:primary_code, :secondary_code, :names, :slugs, :symbol]
PARSERS =
MODES.reduce({}) do |hash, mode|
  hash[mode] = Parser.new(mode); hash
end
TRANSFORMER =
Transformer.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(expression) ⇒ Decomposer

Returns a new instance of Decomposer.



39
40
41
42
43
44
# File 'lib/unitwise/expression/decomposer.rb', line 39

def initialize(expression)
  @expression = expression.to_s
  if expression.empty? || terms.nil? || terms.empty?
    fail(ExpressionError, "Could not evaluate '#{ expression }'.")
  end
end

Instance Attribute Details

#expressionObject (readonly)

Returns the value of attribute expression.



37
38
39
# File 'lib/unitwise/expression/decomposer.rb', line 37

def expression
  @expression
end

#modeObject (readonly)

Returns the value of attribute mode.



37
38
39
# File 'lib/unitwise/expression/decomposer.rb', line 37

def mode
  @mode
end

Class Method Details

.parse(expression) ⇒ Object

Parse an expression to an array of terms and cache the results



19
20
21
22
23
24
25
26
# File 'lib/unitwise/expression/decomposer.rb', line 19

def parse(expression)
  expression = expression.to_s
  if cache.key?(expression)
    cache[expression]
  elsif decomposer = new(expression)
    cache[expression] = decomposer
  end
end

Instance Method Details

#parseObject



46
47
48
49
50
51
52
# File 'lib/unitwise/expression/decomposer.rb', line 46

def parse
  PARSERS.reduce(nil) do |_, (mode, parser)|
    parsed = parser.parse(expression) rescue next
    @mode = mode
    break parsed
  end
end

#termsObject



58
59
60
61
62
63
64
# File 'lib/unitwise/expression/decomposer.rb', line 58

def terms
  @terms ||= if transform.respond_to?(:terms)
    transform.terms
  else
    Array(transform)
  end
end

#transformObject



54
55
56
# File 'lib/unitwise/expression/decomposer.rb', line 54

def transform
  @transform ||= TRANSFORMER.apply(parse, :mode => mode)
end