Module: Roo::Utils
Instance Method Summary collapse
-
#each_element(path, elements) ⇒ Object
Yield each element of a given type (‘row’, ‘c’, etc.) to caller.
- #letter_to_number(letters) ⇒ Object
- #load_xml(path) ⇒ Object
-
#num_cells_in_range(str) ⇒ Object
Compute upper bound for cells in a given cell range.
-
#number_to_letter(num) ⇒ Object
convert a number to something like ‘AB’ (1 => ‘A’, 2 => ‘B’, …).
- #split_coord(s) ⇒ Object
- #split_coordinate(str) ⇒ Object (also: #ref_to_key)
Instance Method Details
#each_element(path, elements) ⇒ Object
Yield each element of a given type (‘row’, ‘c’, etc.) to caller
71 72 73 74 75 76 |
# File 'lib/roo/utils.rb', line 71 def each_element(path, elements) Nokogiri::XML::Reader(::File.open(path, 'rb'), nil, nil, Nokogiri::XML::ParseOptions::NOBLANKS).each do |node| next unless node.node_type == Nokogiri::XML::Reader::TYPE_ELEMENT && Array(elements).include?(node.name) yield Nokogiri::XML(node.outer_xml).root if block_given? end end |
#letter_to_number(letters) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/roo/utils.rb', line 42 def letter_to_number(letters) @letter_to_number ||= {} @letter_to_number[letters] ||= begin result = 0 # :bytes method returns an enumerator in 1.9.3 and an array in 2.0+ letters.bytes.to_a.map{|b| b > 96 ? b - 96 : b - 64 }.reverse.each_with_index{ |num, i| result += num * 26 ** i } result end end |
#load_xml(path) ⇒ Object
64 65 66 67 68 |
# File 'lib/roo/utils.rb', line 64 def load_xml(path) ::File.open(path, 'rb') do |file| ::Nokogiri::XML(file) end end |
#num_cells_in_range(str) ⇒ Object
Compute upper bound for cells in a given cell range.
55 56 57 58 59 60 61 62 |
# File 'lib/roo/utils.rb', line 55 def num_cells_in_range(str) cells = str.split(':') return 1 if cells.count == 1 raise ArgumentError.new("invalid range string: #{str}. Supported range format 'A1:B2'") if cells.count != 2 x1, y1 = split_coordinate(cells[0]) x2, y2 = split_coordinate(cells[1]) (x2 - (x1 - 1)) * (y2 - (y1 - 1)) end |
#number_to_letter(num) ⇒ Object
convert a number to something like ‘AB’ (1 => ‘A’, 2 => ‘B’, …)
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/roo/utils.rb', line 29 def number_to_letter(num) results = [] num = num.to_i while (num > 0) mod = (num - 1) % 26 results = [(65 + mod).chr] + results num = ((num - mod) / 26) end results.join end |
#split_coord(s) ⇒ Object
18 19 20 21 22 23 24 25 26 |
# File 'lib/roo/utils.rb', line 18 def split_coord(s) if s =~ /([a-zA-Z]+)([0-9]+)/ letter = Regexp.last_match[1] number = Regexp.last_match[2].to_i else fail ArgumentError end [letter, number] end |
#split_coordinate(str) ⇒ Object Also known as: ref_to_key
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/roo/utils.rb', line 5 def split_coordinate(str) @split_coordinate ||= {} @split_coordinate[str] ||= begin letter, number = split_coord(str) x = letter_to_number(letter) y = number [y, x] end end |