Class: TableImporter::RooSpreadsheetSource
- Inherits:
-
Source
- Object
- Source
- TableImporter::RooSpreadsheetSource
show all
- Defined in:
- lib/table_importer/roo_spreadsheet_source.rb
Constant Summary
Constants inherited
from Source
Source::SEPARATORS
Instance Method Summary
collapse
Methods inherited from Source
#clean_chunks, #default_headers, #get_column_separator, #get_record_separator, #get_sep_count, #get_type, #initialize, #sort_separators
Instance Method Details
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/table_importer/roo_spreadsheet_source.rb', line 33
def
= @headers_present ? @file.row(1) :
= (.count)
return unless @mapping
@mapping.each do |key, value|
if value.to_i.to_s == value.to_s
[value.to_i] = key.to_sym
end
end
end
|
#get_chunks(chunk_size) ⇒ Object
45
46
47
48
49
50
51
52
53
54
55
56
|
# File 'lib/table_importer/roo_spreadsheet_source.rb', line 45
def get_chunks(chunk_size)
@headers =
@last_row ||= @file.last_row
chunks = []
start_point = @headers_present ? 2 : 1
while chunks.count <= @last_row/chunk_size
chunks << get_lines(start_point, chunk_size)
start_point += chunk_size
end
chunks.last << Hash[@headers.zip(@file.row(@last_row))]
clean_chunks(chunks, @compulsory_headers)
end
|
5
6
7
|
# File 'lib/table_importer/roo_spreadsheet_source.rb', line 5
def
@headers
end
|
#get_lines(start, number_of_lines) ⇒ Object
23
24
25
26
27
28
29
30
31
|
# File 'lib/table_importer/roo_spreadsheet_source.rb', line 23
def get_lines(start, number_of_lines)
@last_row ||= @file.last_row
finish = [@last_row, start + number_of_lines].min
mapped_lines = []
(start...finish).each do |row_number|
mapped_lines << Hash[@headers.zip(@file.row(row_number + 1))]
end
mapped_lines
end
|
#get_preview_lines(start_point = 0, end_point = 10) ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/table_importer/roo_spreadsheet_source.rb', line 9
def get_preview_lines(start_point = 0, end_point = 10)
begin
@headers = @mapping.present? && @mapping != false ? : @headers
lines = clean_chunks([get_lines(start_point, end_point)], @compulsory_headers)[0][:lines]
if lines.first.nil?
get_preview_lines(start_point+10, end_point+10)
else
lines[0..8]
end
rescue SystemStackError, NoMethodError
raise TableImporter::EmptyFileImportError.new
end
end
|