Class: Quby::Compiler::Entities::LookupTables
- Inherits:
-
Object
- Object
- Quby::Compiler::Entities::LookupTables
- Defined in:
- lib/quby/compiler/entities/lookup_tables.rb
Class Method Summary collapse
-
.from_csv(levels:, compare:, data:) ⇒ Object
load csv data into a tree.
Instance Method Summary collapse
- #fetch(key) ⇒ Object
-
#initialize(path) ⇒ LookupTables
constructor
A new instance of LookupTables.
Constructor Details
#initialize(path) ⇒ LookupTables
Returns a new instance of LookupTables.
7 8 9 |
# File 'lib/quby/compiler/entities/lookup_tables.rb', line 7 def initialize(path) @path = path end |
Class Method Details
.from_csv(levels:, compare:, data:) ⇒ Object
load csv data into a tree. each row is a path through the tree. String and float types are used to make an exact match. A range is always a range between two floats where the range is between the low value (inclusive) and the high value (exclusive), written as 4:5 (low:high). These boundaries can be given as floats or integers, but internally they are always treated as a floats. The low and high values of a range cannot be equal. Use minfinity or infinity to create infinite ranges.
32 33 34 35 36 37 |
# File 'lib/quby/compiler/entities/lookup_tables.rb', line 32 def self.from_csv(levels:, compare:, data:) tree = data.each_with_object({}) do |row, tree| add_to_tree(tree, row, levels, compare) end {levels: levels, tree: tree} end |
Instance Method Details
#fetch(key) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/quby/compiler/entities/lookup_tables.rb', line 11 def fetch(key) csv_path = File.join(@path, "#{key}.csv") data = CSV.read(csv_path, col_sep: ';', skip_blanks: true) headers = data.shift compare = data.shift self.class.from_csv(levels: headers, compare: compare, data: data) end |