v/vlib/encoding/csv/reader.v

164 lines
3.7 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-08-14 08:45:56 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-08-17 14:51:20 +02:00
module csv
2019-08-14 08:45:56 +02:00
// Once interfaces are further along the idea would be to have something similar to
// go's io.reader & bufio.reader rather than reading the whole file into string, this
// would then satisfy that interface. I designed it this way to be easily adapted.
const (
err_comment_is_delim = error('encoding.csv: comment cannot be the same as delimiter')
err_invalid_delim = error('encoding.csv: invalid delimiter')
err_eof = error('encoding.csv: end of file')
err_invalid_le = error('encoding.csv: could not find any valid line endings')
2019-08-14 08:45:56 +02:00
)
2021-01-05 19:14:35 +01:00
struct Reader {
2019-08-14 08:45:56 +02:00
// not used yet
// has_header bool
// headings []string
data string
pub mut:
2019-08-14 08:45:56 +02:00
delimiter byte
comment byte
is_mac_pre_osx_le bool
row_pos int
}
// new_reader initializes a Reader with string data to parse
2019-09-03 13:57:04 +02:00
pub fn new_reader(data string) &Reader {
2019-08-14 08:45:56 +02:00
return &Reader{
2021-01-05 19:14:35 +01:00
delimiter: `,`
comment: `#`
2019-08-14 08:45:56 +02:00
data: data
}
}
// read reads a row from the CSV data.
// If successful, the result holds an array of each column's data.
2020-05-17 13:51:18 +02:00
pub fn (mut r Reader) read() ?[]string {
2021-01-05 19:14:35 +01:00
l := r.read_record() ?
2019-08-14 08:45:56 +02:00
return l
}
// Once we have multi dimensional array
2020-05-17 13:51:18 +02:00
// pub fn (mut r Reader) read_all() ?[][]string {
2020-04-26 13:49:31 +02:00
// mut records := []string{}
2019-08-14 08:45:56 +02:00
// for {
// record := r.read_record() or {
// if error(err).error == err_eof.error {
// return records
// } else {
// return error(err)
// }
// }
// records << record
// }
// return records
// }
2020-05-17 13:51:18 +02:00
fn (mut r Reader) read_line() ?string {
2019-08-14 08:45:56 +02:00
// last record
if r.row_pos == r.data.len {
return err_eof
}
le := if r.is_mac_pre_osx_le { '\r' } else { '\n' }
mut i := r.data.index_after(le, r.row_pos)
if i == -1 {
if r.row_pos == 0 {
// check for pre osx mac line endings
i = r.data.index_after('\r', r.row_pos)
if i != -1 {
r.is_mac_pre_osx_le = true
} else {
// no valid line endings found
return err_invalid_le
}
2020-04-21 00:02:55 +02:00
} else {
// No line ending on file
2021-01-05 19:14:35 +01:00
i = r.data.len - 1
2019-08-14 08:45:56 +02:00
}
}
mut line := r.data[r.row_pos..i]
2021-01-05 19:14:35 +01:00
r.row_pos = i + 1
2019-08-14 08:45:56 +02:00
// normalize win line endings (remove extra \r)
2021-01-05 19:14:35 +01:00
if !r.is_mac_pre_osx_le && (line.len >= 1 && line[line.len - 1] == `\r`) {
line = line[..line.len - 1]
2019-08-14 08:45:56 +02:00
}
return line
}
2020-05-17 13:51:18 +02:00
fn (mut r Reader) read_record() ?[]string {
2019-08-14 08:45:56 +02:00
if r.delimiter == r.comment {
return err_comment_is_delim
}
2019-08-17 14:51:20 +02:00
if !valid_delim(r.delimiter) {
return err_invalid_delim
}
2020-05-10 14:19:26 +02:00
mut need_read := true
mut keep_raw := false
2019-08-14 08:45:56 +02:00
mut line := ''
2020-04-26 13:49:31 +02:00
mut fields := []string{}
2019-08-14 08:45:56 +02:00
mut i := -1
for {
2020-05-10 14:19:26 +02:00
if need_read {
2021-01-05 19:14:35 +01:00
l := r.read_line() ?
2020-05-10 14:19:26 +02:00
if l.len <= 0 {
2021-01-05 19:14:35 +01:00
if keep_raw {
line += '\n'
}
2020-05-10 14:19:26 +02:00
continue
} else if l[0] == r.comment {
2021-01-05 19:14:35 +01:00
if keep_raw {
line += '\n' + l
}
2020-05-10 14:19:26 +02:00
continue
} else {
2021-01-05 19:14:35 +01:00
if keep_raw {
line += '\n'
}
2020-05-10 14:19:26 +02:00
line += l
}
need_read = false
keep_raw = false
}
2021-01-05 19:14:35 +01:00
if line[0] != `"` { // not quoted
j := line.index(r.delimiter.ascii_str()) or {
2019-08-14 08:45:56 +02:00
// last
2020-04-20 21:49:05 +02:00
fields << line[..line.len]
2019-08-14 08:45:56 +02:00
break
}
i = j
fields << line[..i]
2021-01-05 19:14:35 +01:00
line = line[i + 1..]
2019-08-14 08:45:56 +02:00
continue
2021-01-05 19:14:35 +01:00
} else { // quoted
2020-05-10 14:19:26 +02:00
j := line[1..].index('"') or {
need_read = true
keep_raw = true
continue
2020-04-29 16:50:02 +02:00
}
2020-05-10 14:19:26 +02:00
line = line[1..]
2021-01-05 19:14:35 +01:00
if j + 1 == line.len {
2020-04-29 16:50:02 +02:00
// last record
fields << line[..j]
break
}
2021-01-05 19:14:35 +01:00
next := line[j + 1]
2020-04-29 16:50:02 +02:00
if next == r.delimiter {
fields << line[..j]
line = line[j..]
continue
2019-08-14 08:45:56 +02:00
}
line = line[1..]
2019-08-14 08:45:56 +02:00
}
if i <= -1 && fields.len == 0 {
return err_invalid_delim
}
}
return fields
}
2019-08-17 14:51:20 +02:00
fn valid_delim(b byte) bool {
2021-01-05 19:14:35 +01:00
return b != 0 && b != `"` && b != `\r` && b != `\n`
2019-08-17 14:51:20 +02:00
}