1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
// SPDX-License-Identifier: MIT
// Copyright 2023 IROX Contributors
#![forbid(unsafe_code)]
use std::io::{BufRead, BufReader};
use std::{
collections::BTreeMap,
io::{Read, Write},
};
use error::CSVError;
use crate::error::CSVErrorType;
pub mod error;
///
/// Flexible CSV writer, wherein one can specify
pub struct CSVWriter<T>
where
T: Write + Sized,
{
pub(crate) output: T,
pub(crate) columns: Option<Vec<String>>,
pub(crate) column_separator: Option<String>,
pub(crate) newlines: Option<String>,
pub(crate) wrote_header: bool,
}
impl<T: Write + Sized> CSVWriter<T> {
///
/// Ensures that the header (if specified and present) is written to the file.
pub fn write_header(&mut self) -> Result<(), CSVError> {
if self.wrote_header {
return Ok(());
}
let Some(cols) = &self.columns else {
self.wrote_header = true;
return Ok(());
};
let line = self.make_line(cols);
self.output.write_all(line.as_bytes())?;
self.wrote_header = true;
Ok(())
}
///
/// Serializes the fields in iteration order using the optionally specified Column Separator and
/// newline character(s)
pub(crate) fn make_line(&self, fields: &[String]) -> String {
let sep = match &self.column_separator {
Some(sep) => sep.as_str(),
None => ",",
};
let newlines = match &self.newlines {
Some(nl) => nl.as_str(),
None => "\n",
};
let line = fields.join(sep);
format!("{line}{newlines}")
}
///
/// Raw low-level write of a set of fields to this file in simple iteration order. This does
/// NOT check against previous lines to ensure the fields are the same length as priors.
pub fn write_line<R: AsRef<str>>(&mut self, fields: &[R]) -> Result<(), CSVError> {
self.write_header()?;
let fields: Vec<String> = fields.iter().map(|f| f.as_ref().to_string()).collect();
let line = self.make_line(fields.as_slice());
self.output.write_all(line.as_bytes())?;
Ok(())
}
///
/// Write the set of fields to the CSV file. You must have already provided a set of headers/columns
/// or else this function will fail with a [`CSVErrorType::MissingHeaderError`].
///
/// It will write the fields in the order defined by the columns.
///
/// Note: It is NOT required for the fields map to have every header/column within it. Any
/// missing fields will be replaced with an empty string.
pub fn write_fields(&mut self, fields: &BTreeMap<String, String>) -> Result<(), CSVError> {
self.write_header()?;
let Some(cols) = &self.columns else {
return CSVError::err(
CSVErrorType::MissingHeaderError,
"No header columns specified".to_string(),
);
};
let mut out = Vec::new();
for col in cols {
let Some(val) = fields.get(col) else {
out.push(String::new());
continue;
};
out.push(val.to_string().clone());
}
let line = self.make_line(&out);
self.output.write_all(line.as_bytes())?;
Ok(())
}
}
///
/// Helper builder to lazily create a [`CSVWriter`]
#[derive(Debug, Clone, Default)]
pub struct CSVWriterBuilder {
columns: Option<Vec<String>>,
newlines: Option<String>,
column_separator: Option<String>,
}
impl CSVWriterBuilder {
///
/// Start here.
#[must_use]
pub fn new() -> CSVWriterBuilder {
Default::default()
}
///
/// Specify a set of Headers to use. Without calling
#[must_use]
pub fn with_columns<T: ToString>(mut self, columns: &[T]) -> Self {
self.columns = Some(columns.iter().map(ToString::to_string).collect());
self
}
#[must_use]
pub fn with_newlines(mut self, newlines: String) -> Self {
self.newlines = Some(newlines);
self
}
#[must_use]
pub fn with_column_separator(mut self, column_separator: String) -> Self {
self.column_separator = Some(column_separator);
self
}
pub fn build<T: Write + Sized>(self, output: T) -> CSVWriter<T> {
CSVWriter {
output,
columns: self.columns,
newlines: self.newlines,
column_separator: self.column_separator,
wrote_header: false,
}
}
}
///
/// Output from the [`Tokenizer`] as it detects individual tokens from the input stream.
pub enum Token {
Field(String),
EndRow,
}
///
/// Scans the provided input stream and outputs [`Token`]s as it detects them.
pub struct Tokenizer<T>
where
T: Read + Sized,
{
reader: BufReader<T>,
line_number: u64,
char_number: u64,
}
///
/// Consume a single byte from the underlying reader.
fn consume_one<T: BufRead>(mut reader: &mut T) -> Result<Option<u8>, std::io::Error> {
let Some(val) = peek_one(&mut reader)? else {
return Ok(None);
};
reader.consume(1);
Ok(Some(val))
}
///
/// Reads a single byte from the underlying reader, but does NOT consume it. Repeated calls to this
/// function will return the same value.
fn peek_one<T: BufRead>(reader: &mut T) -> Result<Option<u8>, std::io::Error> {
let val = {
let buf = reader.fill_buf()?;
let Some(val) = buf.first() else {
return Ok(None);
};
*val
};
Ok(Some(val))
}
impl<T: Read + Sized> Tokenizer<T> {
///
/// Creates a new Tokenizer, consuming the underlying reader.
pub fn new(reader: T) -> Tokenizer<T> {
Tokenizer {
reader: BufReader::new(reader),
line_number: 0,
char_number: 0,
}
}
///
/// Attempts to scan the line and return the immediate next set of [`Token`]s it finds.
/// The real brunt of the processing work is done here.
pub fn next_tokens(&mut self) -> Result<Option<Vec<Token>>, CSVError> {
use std::io::ErrorKind;
let mut output: Vec<u8> = Vec::new();
loop {
match consume_one(&mut self.reader) {
Ok(Some(elem)) => {
self.char_number += 1;
match elem {
// Comma means 'End of Field', return whatever has been found (which may be empty)
b',' => {
let out: String = String::from_utf8_lossy(&output).into();
return Ok(Some(vec![Token::Field(out)]));
}
// CR/LF mean 'End of Row', but repeated CR/LF characters are ignored.
b'\r' | b'\n' => {
while let Some(b'\r') | Some(b'\n') = peek_one(&mut self.reader)? {
// if it's another CR/LF, consume it.
self.reader.consume(1);
}
self.char_number = 0;
self.line_number += 1;
let out: String = String::from_utf8_lossy(&output).into();
return Ok(Some(vec![Token::Field(out), Token::EndRow]));
}
// Special case for quotes, consume all characters until we receive the next quote.
b'"' => {
while let Some(v) = consume_one(&mut self.reader)? {
// special special case for a double quote within a quoted block,
// it just becomes a single double quote
if v == b'"' {
// handle special "" within a quoted block meaning: literal quote
if let Some(b'"') = peek_one(&mut self.reader)? {
output.push(b'"');
self.reader.consume(1);
continue;
}
break;
}
output.push(v);
}
}
// standard loop, it's part of the value
_ => output.push(elem),
}
}
Ok(None) => {
if !output.is_empty() {
let out: String = String::from_utf8_lossy(&output).into();
return Ok(Some(vec![Token::Field(out), Token::EndRow]));
}
return Ok(None);
}
Err(e) => {
return match e.kind() {
ErrorKind::UnexpectedEof => Ok(None),
kind => CSVError::err(
CSVErrorType::IOError,
format!(
"IO Error at line {} char {}: {:?}: {:?}",
self.line_number, self.char_number, kind, e
),
),
}
}
}
}
}
}
///
/// Incredibly basic CSV reader.
///
/// Has some equivalent functionality as String.split(","), except it handles quoted entries.
pub struct CSVReader<T>
where
T: Read + Sized,
{
tokenizer: Tokenizer<T>,
}
impl<T: Read + Sized> CSVReader<T> {
///
/// Create a new CSV Reader from the input. Accepts anything that implements [`Read`]
pub fn new(reader: T) -> CSVReader<T> {
CSVReader {
tokenizer: Tokenizer::new(reader),
}
}
///
/// Read and parse a single line from the CSV file.
///
/// Will return [`Result::Ok(None)`] upon EOF.
/// Will return [`Result::Err(CSVError)`] upon any I/O error.
/// Will return [`Result::Ok(Option::Some(Vec<String>))`] upon success, with each element within
/// the line separated inside of the innermost [`Vec<String>`]
pub fn read_line(&mut self) -> Result<Option<Vec<String>>, CSVError> {
let mut out: Vec<String> = Vec::new();
loop {
if let Some(toks) = self.tokenizer.next_tokens()? {
for tok in toks {
match tok {
Token::Field(f) => out.push(f),
Token::EndRow => return Ok(Some(out)),
}
}
} else {
if !out.is_empty() {
return Ok(Some(out));
}
return Ok(None);
}
}
}
}
///
/// Returns each row as a Key => Value Mapping, rather than a simple list of values.
///
/// CSVMapReader has more validation than [`CSVReader`], as it REQUIRES that each line in the
/// csv file have the same number of elements as the header.
pub struct CSVMapReader<T>
where
T: Read + Sized,
{
reader: CSVReader<T>,
keys: Vec<String>,
}
impl<T: Read + Sized> CSVMapReader<T> {
///
/// Creates a new [`CSVMapReader`]
///
/// Will return [`Result::Ok(CSVMapReader)`] if it can read the CSV's header.
/// Will return [`Result::Err(CSVError)`] if any I/O Error, or no header.
pub fn new(read: T) -> Result<CSVMapReader<T>, CSVError> {
let mut reader = CSVReader::new(read);
let keys = reader.read_line()?;
match keys {
Some(keys) => Ok(CSVMapReader { reader, keys }),
None => CSVError::err(
CSVErrorType::MissingHeaderError,
"Missing header or empty file".to_string(),
),
}
}
///
/// Maybe return a single row from the CSV file.
///
/// Will return [`std::result::Result::Ok(None)`] upon EOF
/// Will return [`std::result::Result::Err(CSVError)`] upon underlying I/O error, or if the
/// particular row doesn't have enough elements to match up against the header.
pub fn next_row(&mut self) -> Result<Option<Row>, CSVError> {
let data = self.reader.read_line()?;
let Some(data) = data else {
return Ok(None);
};
let hdrlen = self.keys.len();
let datalen = data.len();
if hdrlen != datalen {
return CSVError::err(
CSVErrorType::HeaderDataMismatchError,
format!("Headers length ({hdrlen}) != data length ({datalen})"),
);
}
Ok(Some(Row {
keys: self.keys.clone(),
data,
}))
}
///
/// Apply the specified function on each element of the read CSV file. This WILL iteratively
/// consume the underlying reader, and will continue until the reader exhausts.
pub fn for_each<F: FnMut(Row)>(mut self, mut func: F) -> Result<(), CSVError> {
while let Some(row) = self.next_row()? {
func(row);
}
Ok(())
}
}
///
/// A row represents a single Map line from a CSV table
#[derive(Debug, Clone, PartialEq, Default)]
pub struct Row {
/// A list of the Map Keys (may be repeats!)
keys: Vec<String>,
/// A list of the row values (may be repeats!)
data: Vec<String>,
}
impl Row {
///
/// Converts this row into a BTreeMap<String, String>.
///
/// This WILL return a [`Err`] if there are duplicate keys
pub fn into_map(self) -> Result<BTreeMap<String, String>, CSVError> {
let mut out: BTreeMap<String, String> = BTreeMap::new();
for (k, v) in self.into_items() {
if let Some(_elem) = out.insert(k.clone(), v) {
return CSVError::err(
CSVErrorType::DuplicateKeyInHeaderError,
format!("Duplicate key in header detected: {k}"),
);
}
}
Ok(out)
}
///
/// Convert into a [`BTreeMap<String, String>`].
///
/// Unlike [`into_map`], this function will overwrite any previous keys with those found later in
/// the row.
#[must_use]
pub fn into_map_lossy(self) -> BTreeMap<String, String> {
BTreeMap::from_iter(self.into_items())
}
///
/// Converts into a [`std::vec::Vec<(String, String)>`], pairing each key with it's associated value
#[must_use]
pub fn into_items(self) -> Vec<(String, String)> {
self.keys.into_iter().zip(self.data).collect()
}
}