Skip to content

Commit

Permalink
api: iteration should stop after I/O error
Browse files Browse the repository at this point in the history
This commit changes the behavior of the CSV reader (and its iterators)
to stop when an I/O error from the underlying reader is encountered.

When reading and parsing a record fails, correct behavior in most cases
to keep on trying to read and parse the next record. That behavior
remains the same after this commit.

However when the Error is caused by failing to read from the underlying
reader, the next read would almost always fail with the exact same
error. In that scenario, reading from the underlying reader should not
be attempted when trying to extract the next record, as this may lead
to infinite loops. Instead, the reader will behave in the same way as
if an end-of-file had been reached.

Fixes #207
  • Loading branch information
Ten0 committed Nov 3, 2020
1 parent 7120114 commit d1a69a0
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 9 deletions.
51 changes: 43 additions & 8 deletions src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,10 @@ impl ReaderBuilder {
/// [`ReaderBuilder`](struct.ReaderBuilder.html).
/// * When reading CSV data from a resource (like a file), it is possible for
/// reading from the underlying resource to fail. This will return an error.
/// For subsequent calls to the `Reader` after encountering a such error
/// (unless `seek` is used), it will behave as if end of file had been
/// reached, in order to avoid running into infinite loops when still
/// attempting to read the next record when one has errored.
/// * When reading CSV data into `String` or `&str` fields (e.g., via a
/// [`StringRecord`](struct.StringRecord.html)), UTF-8 is strictly
/// enforced. If CSV data is invalid UTF-8, then an error is returned. If
Expand Down Expand Up @@ -741,7 +745,34 @@ struct ReaderState {
/// Whether the reader has been seeked or not.
seeked: bool,
/// Whether EOF of the underlying reader has been reached or not.
eof: bool,
///
/// IO errors on the underlying reader will be considered as an EOF for
/// subsequent read attempts, as it would be incorrect to keep on trying
/// to read when the underlying reader has broken.
///
/// For clarity, having the best `Debug` impl and in case they need to be
/// treated differently at some point, we store whether the `EOF` is
/// considered because an actual EOF happened, or because we encoundered
/// an IO error.
/// This has no additional runtime cost.
eof: ReaderEofState,
}

/// Whether EOF of the underlying reader has been reached or not.
///
/// IO errors on the underlying reader will be considered as an EOF for
/// subsequent read attempts, as it would be incorrect to keep on trying
/// to read when the underlying reader has broken.
///
/// For clarity, having the best `Debug` impl and in case they need to be
/// treated differently at some point, we store whether the `EOF` is
/// considered because an actual EOF happened, or because we encoundered
/// an IO error
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum ReaderEofState {
NotEof,
Eof,
IOError,
}

/// Headers encapsulates any data associated with the headers of CSV data.
Expand Down Expand Up @@ -798,7 +829,7 @@ impl<R: io::Read> Reader<R> {
cur_pos: Position::new(),
first: false,
seeked: false,
eof: false,
eof: ReaderEofState::NotEof,
},
}
}
Expand Down Expand Up @@ -1598,13 +1629,17 @@ impl<R: io::Read> Reader<R> {

record.clear();
record.set_position(Some(self.state.cur_pos.clone()));
if self.state.eof {
if self.state.eof != ReaderEofState::NotEof {
return Ok(false);
}
let (mut outlen, mut endlen) = (0, 0);
loop {
let (res, nin, nout, nend) = {
let input = self.rdr.fill_buf()?;
let input_res = self.rdr.fill_buf();
if input_res.is_err() {
self.state.eof = ReaderEofState::IOError;
}
let input = input_res?;
let (fields, ends) = record.as_parts();
self.core.read_record(
input,
Expand Down Expand Up @@ -1636,7 +1671,7 @@ impl<R: io::Read> Reader<R> {
return Ok(true);
}
End => {
self.state.eof = true;
self.state.eof = ReaderEofState::Eof;
return Ok(false);
}
}
Expand Down Expand Up @@ -1716,7 +1751,7 @@ impl<R: io::Read> Reader<R> {
/// }
/// ```
pub fn is_done(&self) -> bool {
self.state.eof
self.state.eof != ReaderEofState::NotEof
}

/// Returns true if and only if this reader has been configured to
Expand Down Expand Up @@ -1817,7 +1852,7 @@ impl<R: io::Read + io::Seek> Reader<R> {
self.core.reset();
self.core.set_line(pos.line());
self.state.cur_pos = pos;
self.state.eof = false;
self.state.eof = ReaderEofState::NotEof;
Ok(())
}

Expand Down Expand Up @@ -1845,7 +1880,7 @@ impl<R: io::Read + io::Seek> Reader<R> {
self.core.reset();
self.core.set_line(pos.line());
self.state.cur_pos = pos;
self.state.eof = false;
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
}
Expand Down
21 changes: 20 additions & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#![allow(dead_code)]

use csv::Reader;

use std::env;
use std::io::{self, Write};
use std::io::{self, Read, Write};
use std::path::PathBuf;
use std::process::{self, Command};

Expand Down Expand Up @@ -338,6 +340,23 @@ fn tutorial_perf_core_01() {
assert_eq!(out.stdout(), "11\n");
}

#[test]
fn no_infinite_loop_on_io_errors() {
struct FailingRead;
impl Read for FailingRead {
fn read(&mut self, _buf: &mut [u8]) -> io::Result<usize> {
Err(io::Error::new(io::ErrorKind::Other, "Broken reader"))
}
}

let mut record_results = Reader::from_reader(FailingRead).into_records();
let first_result = record_results.next();
assert!(
matches!(&first_result, Some(Err(e)) if matches!(e.kind(), csv::ErrorKind::Io(_)))
);
assert!(record_results.next().is_none());
}

// Helper functions follow.

/// Return the target/debug directory path.
Expand Down

0 comments on commit d1a69a0

Please sign in to comment.