use std::path::{Path, PathBuf};
use polars_core::prelude::*;
use polars_io::cloud::CloudOptions;
use polars_io::csv::read::{
infer_file_schema, CommentPrefix, CsvEncoding, CsvParseOptions, CsvReadOptions, NullValues,
};
use polars_io::mmap::ReaderBytes;
use polars_io::path_utils::expand_paths;
use polars_io::utils::get_reader_bytes;
use polars_io::RowIndex;
use crate::prelude::*;
#[derive(Clone)]
#[cfg(feature = "csv")]
pub struct LazyCsvReader {
sources: ScanSources,
glob: bool,
cache: bool,
read_options: CsvReadOptions,
cloud_options: Option<CloudOptions>,
include_file_paths: Option<PlSmallStr>,
}
#[cfg(feature = "csv")]
impl LazyCsvReader {
fn map_parse_options<F: Fn(CsvParseOptions) -> CsvParseOptions>(mut self, map_func: F) -> Self {
self.read_options = self.read_options.map_parse_options(map_func);
self
}
pub fn new_paths(paths: Arc<[PathBuf]>) -> Self {
Self::new_with_sources(ScanSources::Paths(paths))
}
pub fn new_with_sources(sources: ScanSources) -> Self {
LazyCsvReader {
sources,
glob: true,
cache: true,
read_options: Default::default(),
cloud_options: Default::default(),
include_file_paths: None,
}
}
pub fn new(path: impl AsRef<Path>) -> Self {
Self::new_with_sources(ScanSources::Paths([path.as_ref().to_path_buf()].into()))
}
#[must_use]
pub fn with_skip_rows_after_header(mut self, offset: usize) -> Self {
self.read_options.skip_rows_after_header = offset;
self
}
#[must_use]
pub fn with_row_index(mut self, row_index: Option<RowIndex>) -> Self {
self.read_options.row_index = row_index;
self
}
#[must_use]
pub fn with_n_rows(mut self, num_rows: Option<usize>) -> Self {
self.read_options.n_rows = num_rows;
self
}
#[must_use]
pub fn with_infer_schema_length(mut self, num_rows: Option<usize>) -> Self {
self.read_options.infer_schema_length = num_rows;
self
}
#[must_use]
pub fn with_ignore_errors(mut self, ignore: bool) -> Self {
self.read_options.ignore_errors = ignore;
self
}
#[must_use]
pub fn with_schema(mut self, schema: Option<SchemaRef>) -> Self {
self.read_options.schema = schema;
self
}
#[must_use]
pub fn with_skip_rows(mut self, skip_rows: usize) -> Self {
self.read_options.skip_rows = skip_rows;
self
}
#[must_use]
pub fn with_dtype_overwrite(mut self, schema: Option<SchemaRef>) -> Self {
self.read_options.schema_overwrite = schema;
self
}
#[must_use]
pub fn with_has_header(mut self, has_header: bool) -> Self {
self.read_options.has_header = has_header;
self
}
pub fn with_chunk_size(mut self, chunk_size: usize) -> Self {
self.read_options.chunk_size = chunk_size;
self
}
#[must_use]
pub fn with_separator(self, separator: u8) -> Self {
self.map_parse_options(|opts| opts.with_separator(separator))
}
#[must_use]
pub fn with_comment_prefix(self, comment_prefix: Option<PlSmallStr>) -> Self {
self.map_parse_options(|opts| {
opts.with_comment_prefix(comment_prefix.clone().map(|s| {
if s.len() == 1 && s.chars().next().unwrap().is_ascii() {
CommentPrefix::Single(s.as_bytes()[0])
} else {
CommentPrefix::Multi(s)
}
}))
})
}
#[must_use]
pub fn with_quote_char(self, quote_char: Option<u8>) -> Self {
self.map_parse_options(|opts| opts.with_quote_char(quote_char))
}
#[must_use]
pub fn with_eol_char(self, eol_char: u8) -> Self {
self.map_parse_options(|opts| opts.with_eol_char(eol_char))
}
#[must_use]
pub fn with_null_values(self, null_values: Option<NullValues>) -> Self {
self.map_parse_options(|opts| opts.with_null_values(null_values.clone()))
}
pub fn with_missing_is_null(self, missing_is_null: bool) -> Self {
self.map_parse_options(|opts| opts.with_missing_is_null(missing_is_null))
}
#[must_use]
pub fn with_cache(mut self, cache: bool) -> Self {
self.cache = cache;
self
}
#[must_use]
pub fn with_low_memory(mut self, low_memory: bool) -> Self {
self.read_options.low_memory = low_memory;
self
}
#[must_use]
pub fn with_encoding(self, encoding: CsvEncoding) -> Self {
self.map_parse_options(|opts| opts.with_encoding(encoding))
}
#[cfg(feature = "temporal")]
pub fn with_try_parse_dates(self, try_parse_dates: bool) -> Self {
self.map_parse_options(|opts| opts.with_try_parse_dates(try_parse_dates))
}
#[must_use]
pub fn with_raise_if_empty(mut self, raise_if_empty: bool) -> Self {
self.read_options.raise_if_empty = raise_if_empty;
self
}
#[must_use]
pub fn with_truncate_ragged_lines(self, truncate_ragged_lines: bool) -> Self {
self.map_parse_options(|opts| opts.with_truncate_ragged_lines(truncate_ragged_lines))
}
#[must_use]
pub fn with_decimal_comma(self, decimal_comma: bool) -> Self {
self.map_parse_options(|opts| opts.with_decimal_comma(decimal_comma))
}
#[must_use]
pub fn with_glob(mut self, toggle: bool) -> Self {
self.glob = toggle;
self
}
pub fn with_cloud_options(mut self, cloud_options: Option<CloudOptions>) -> Self {
self.cloud_options = cloud_options;
self
}
pub fn with_schema_modify<F>(mut self, f: F) -> PolarsResult<Self>
where
F: Fn(Schema) -> PolarsResult<Schema>,
{
let mut n_threads = self.read_options.n_threads;
let mut infer_schema = |reader_bytes: ReaderBytes| {
let skip_rows = self.read_options.skip_rows;
let parse_options = self.read_options.get_parse_options();
PolarsResult::Ok(
infer_file_schema(
&reader_bytes,
parse_options.separator,
self.read_options.infer_schema_length,
self.read_options.has_header,
None,
skip_rows,
self.read_options.skip_rows_after_header,
parse_options.comment_prefix.as_ref(),
parse_options.quote_char,
parse_options.eol_char,
None,
parse_options.try_parse_dates,
self.read_options.raise_if_empty,
&mut n_threads,
parse_options.decimal_comma,
)?
.0,
)
};
let schema = match self.sources.clone() {
ScanSources::Paths(paths) => {
let paths = expand_paths(&paths[..], self.glob(), self.cloud_options())?;
let Some(path) = paths.first() else {
polars_bail!(ComputeError: "no paths specified for this reader");
};
let mut file = polars_utils::open_file(path)?;
infer_schema(get_reader_bytes(&mut file).expect("could not mmap file"))?
},
ScanSources::Files(files) => {
let Some(file) = files.first() else {
polars_bail!(ComputeError: "no buffers specified for this reader");
};
infer_schema(
get_reader_bytes(&mut std::io::BufReader::new(file))
.expect("could not mmap file"),
)?
},
ScanSources::Buffers(buffers) => {
let Some(buffer) = buffers.first() else {
polars_bail!(ComputeError: "no buffers specified for this reader");
};
infer_schema(
get_reader_bytes(&mut std::io::Cursor::new(buffer))
.expect("could not mmap file"),
)?
},
};
self.read_options.n_threads = n_threads;
let mut schema = f(schema)?;
if let Some(overwrite_schema) = &self.read_options.schema_overwrite {
for (name, dtype) in overwrite_schema.iter() {
schema.with_column(name.clone(), dtype.clone());
}
}
Ok(self.with_schema(Some(Arc::new(schema))))
}
pub fn with_include_file_paths(mut self, include_file_paths: Option<PlSmallStr>) -> Self {
self.include_file_paths = include_file_paths;
self
}
}
impl LazyFileListReader for LazyCsvReader {
fn finish(self) -> PolarsResult<LazyFrame> {
let mut lf: LazyFrame = DslBuilder::scan_csv(
self.sources,
self.read_options,
self.cache,
self.cloud_options,
self.glob,
self.include_file_paths,
)?
.build()
.into();
lf.opt_state |= OptFlags::FILE_CACHING;
Ok(lf)
}
fn finish_no_glob(self) -> PolarsResult<LazyFrame> {
unreachable!();
}
fn glob(&self) -> bool {
self.glob
}
fn sources(&self) -> &ScanSources {
&self.sources
}
fn with_sources(mut self, sources: ScanSources) -> Self {
self.sources = sources;
self
}
fn with_n_rows(mut self, n_rows: impl Into<Option<usize>>) -> Self {
self.read_options.n_rows = n_rows.into();
self
}
fn with_row_index(mut self, row_index: impl Into<Option<RowIndex>>) -> Self {
self.read_options.row_index = row_index.into();
self
}
fn rechunk(&self) -> bool {
self.read_options.rechunk
}
#[must_use]
fn with_rechunk(mut self, rechunk: bool) -> Self {
self.read_options.rechunk = rechunk;
self
}
fn n_rows(&self) -> Option<usize> {
self.read_options.n_rows
}
fn row_index(&self) -> Option<&RowIndex> {
self.read_options.row_index.as_ref()
}
fn concat_impl(&self, lfs: Vec<LazyFrame>) -> PolarsResult<LazyFrame> {
let args = UnionArgs {
rechunk: self.rechunk(),
parallel: false,
to_supertypes: false,
from_partitioned_ds: true,
..Default::default()
};
concat_impl(&lfs, args)
}
fn cloud_options(&self) -> Option<&CloudOptions> {
self.cloud_options.as_ref()
}
}