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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
//! Input/output functionality for OptimizedDataFrame
use std::collections::HashMap;
use std::fs::File;
use std::io::{self, BufReader, BufWriter, Read, Write};
use std::path::Path;
use super::core::OptimizedDataFrame;
use crate::column::{
BooleanColumn, Column, ColumnTrait, ColumnType, Float64Column, Int64Column, StringColumn,
};
use crate::error::{Error, Result};
use crate::index::{DataFrameIndex, Index, IndexTrait};
use std::sync::Arc;
use csv::{ReaderBuilder, Writer};
// Excel I/O is delegated to the crate-internal Pure Rust xlsx module.
#[cfg(feature = "parquet")]
use arrow::array::{Array, ArrayRef, BooleanArray, Float64Array, Int64Array, StringArray};
#[cfg(feature = "parquet")]
use arrow::datatypes::{DataType, Field, Schema};
#[cfg(feature = "parquet")]
use arrow::record_batch::RecordBatch;
#[cfg(feature = "parquet")]
use parquet::arrow::arrow_reader::ParquetRecordBatchReaderBuilder;
#[cfg(feature = "parquet")]
use parquet::arrow::arrow_writer::ArrowWriter;
#[cfg(feature = "parquet")]
use parquet::basic::Compression;
#[cfg(feature = "parquet")]
use parquet::file::properties::WriterProperties;
// The following are already imported in lines 8-10
/// Enumeration of Parquet compression options
#[cfg(feature = "parquet")]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ParquetCompression {
None,
Snappy,
Gzip,
Lzo,
Brotli,
Lz4,
Zstd,
}
#[cfg(feature = "parquet")]
impl From<ParquetCompression> for Compression {
fn from(comp: ParquetCompression) -> Self {
match comp {
ParquetCompression::None => Compression::UNCOMPRESSED,
ParquetCompression::Snappy => Compression::SNAPPY,
ParquetCompression::Gzip => Compression::GZIP(Default::default()),
ParquetCompression::Lzo => Compression::LZO,
ParquetCompression::Brotli => Compression::BROTLI(Default::default()),
ParquetCompression::Lz4 => Compression::LZ4,
ParquetCompression::Zstd => Compression::ZSTD(Default::default()),
}
}
}
impl OptimizedDataFrame {
/// Read DataFrame from a CSV file
///
/// # Arguments
/// * `path` - Path to the CSV file
/// * `has_header` - Whether the file has a header row
///
/// # Returns
/// * `Result<Self>` - The loaded DataFrame
pub fn from_csv<P: AsRef<Path>>(path: P, has_header: bool) -> Result<Self> {
let file = File::open(path.as_ref()).map_err(|e| Error::Io(e))?;
// Configure CSV reader
let mut rdr = ReaderBuilder::new()
.has_headers(has_header)
.flexible(true)
.trim(csv::Trim::All)
.from_reader(file);
let mut df = Self::new();
// Get header row
let headers: Vec<String> = if has_header {
rdr.headers()
.map_err(|e| Error::Csv(e))?
.iter()
.map(|h| h.to_string())
.collect()
} else {
// Generate column names if no header
if let Some(first_record_result) = rdr.records().next() {
let first_record = first_record_result.map_err(|e| Error::Csv(e))?;
(0..first_record.len())
.map(|i| format!("column_{}", i))
.collect()
} else {
// If file is empty
return Ok(Self::new());
}
};
// Buffer for collecting column data
let mut str_buffers: Vec<Vec<String>> = headers.iter().map(|_| Vec::new()).collect();
// Read all rows
for result in rdr.records() {
let record = result.map_err(|e| Error::Csv(e))?;
for (i, field) in record.iter().enumerate() {
if i < str_buffers.len() {
str_buffers[i].push(field.to_string());
}
}
// Add NULL for missing fields
let max_len = str_buffers.get(0).map_or(0, |b| b.len());
for buffer in &mut str_buffers {
if buffer.len() < max_len {
buffer.push(String::new());
}
}
}
// Infer types from string data and add columns
for (i, header) in headers.into_iter().enumerate() {
if i < str_buffers.len() {
// Perform type inference
let values = &str_buffers[i];
// Check for non-empty values
let non_empty_values: Vec<&String> =
values.iter().filter(|s| !s.is_empty()).collect();
if non_empty_values.is_empty() {
// Use string type if all values are empty
df.add_column(
header,
Column::String(StringColumn::new(
values.iter().map(|s| s.clone()).collect(),
)),
)?;
continue;
}
// Try to parse as integers
let all_ints = non_empty_values.iter().all(|&s| s.parse::<i64>().is_ok());
if all_ints {
let int_values: Vec<i64> = values
.iter()
.map(|s| s.parse::<i64>().unwrap_or(0))
.collect();
df.add_column(header, Column::Int64(Int64Column::new(int_values)))?;
continue;
}
// Try to parse as floating point numbers
let all_floats = non_empty_values.iter().all(|&s| s.parse::<f64>().is_ok());
if all_floats {
let float_values: Vec<f64> = values
.iter()
.map(|s| s.parse::<f64>().unwrap_or(0.0))
.collect();
df.add_column(header, Column::Float64(Float64Column::new(float_values)))?;
continue;
}
// Try to parse as boolean values
let all_bools = non_empty_values.iter().all(|&s| {
let lower = s.to_lowercase();
lower == "true"
|| lower == "false"
|| lower == "1"
|| lower == "0"
|| lower == "yes"
|| lower == "no"
|| lower == "t"
|| lower == "f"
});
if all_bools {
let bool_values: Vec<bool> = values
.iter()
.map(|s| {
let lower = s.to_lowercase();
lower == "true" || lower == "1" || lower == "yes" || lower == "t"
})
.collect();
df.add_column(header, Column::Boolean(BooleanColumn::new(bool_values)))?;
} else {
// Default to string type
df.add_column(
header,
Column::String(StringColumn::new(
values.iter().map(|s| s.clone()).collect(),
)),
)?;
}
}
}
Ok(df)
}
/// Write DataFrame to a CSV file
///
/// # Arguments
/// * `path` - Path to the output CSV file
/// * `has_header` - Whether to write a header row
///
/// # Returns
/// * `Result<()>` - Ok if successful
pub fn to_csv<P: AsRef<Path>>(&self, path: P, has_header: bool) -> Result<()> {
let file = File::create(path.as_ref()).map_err(|e| Error::Io(e))?;
let mut wtr = Writer::from_writer(file);
// Write header row
if has_header {
wtr.write_record(&self.column_names)
.map_err(|e| Error::Csv(e))?;
}
// Exit if there are no rows
if self.row_count == 0 {
wtr.flush().map_err(|e| Error::Io(e))?;
return Ok(());
}
// Write each row
for i in 0..self.row_count {
let mut row = Vec::new();
for col_idx in 0..self.columns.len() {
let value = match &self.columns[col_idx] {
Column::Int64(col) => {
if let Ok(Some(val)) = col.get(i) {
val.to_string()
} else {
String::new()
}
}
Column::Float64(col) => {
if let Ok(Some(val)) = col.get(i) {
val.to_string()
} else {
String::new()
}
}
Column::String(col) => {
if let Ok(Some(val)) = col.get(i) {
val.to_string()
} else {
String::new()
}
}
Column::Boolean(col) => {
if let Ok(Some(val)) = col.get(i) {
val.to_string()
} else {
String::new()
}
}
};
row.push(value);
}
wtr.write_record(&row).map_err(|e| Error::Csv(e))?;
}
wtr.flush().map_err(|e| Error::Io(e))?;
Ok(())
}
/// Write DataFrame to a Parquet file
///
/// # Arguments
/// * `path` - Path to the output Parquet file
/// * `compression` - Compression method (optional, Snappy is used if None)
///
/// # Returns
/// * `Result<()>` - Ok if successful
#[cfg(feature = "parquet")]
pub fn to_parquet<P: AsRef<Path>>(
&self,
path: P,
compression: Option<ParquetCompression>,
) -> Result<()> {
// Write even if there are no rows, as an empty DataFrame
// Create Arrow schema
let schema_fields: Vec<Field> = self
.column_names
.iter()
.enumerate()
.map(|(idx, col_name)| match &self.columns[idx] {
Column::Int64(_) => Field::new(col_name, DataType::Int64, true),
Column::Float64(_) => Field::new(col_name, DataType::Float64, true),
Column::Boolean(_) => Field::new(col_name, DataType::Boolean, true),
Column::String(_) => Field::new(col_name, DataType::Utf8, true),
})
.collect();
let schema = Schema::new(schema_fields);
let schema_ref = Arc::new(schema);
// Convert column data to Arrow arrays
let arrays: Vec<ArrayRef> = self
.column_names
.iter()
.enumerate()
.map(|(idx, _)| match &self.columns[idx] {
Column::Int64(col) => {
let values: Vec<i64> = (0..self.row_count)
.map(|i| match col.get(i) {
Ok(Some(v)) => v,
_ => 0,
})
.collect();
Arc::new(Int64Array::from(values)) as ArrayRef
}
Column::Float64(col) => {
let values: Vec<f64> = (0..self.row_count)
.map(|i| match col.get(i) {
Ok(Some(v)) => v,
_ => f64::NAN,
})
.collect();
Arc::new(Float64Array::from(values)) as ArrayRef
}
Column::Boolean(col) => {
let values: Vec<bool> = (0..self.row_count)
.map(|i| match col.get(i) {
Ok(Some(v)) => v,
_ => false,
})
.collect();
Arc::new(BooleanArray::from(values)) as ArrayRef
}
Column::String(col) => {
let values: Vec<String> = (0..self.row_count)
.map(|i| {
if let Ok(Some(v)) = col.get(i) {
v.to_string()
} else {
String::new()
}
})
.collect();
Arc::new(StringArray::from(values)) as ArrayRef
}
})
.collect();
// Create record batch
let batch = RecordBatch::try_new(schema_ref.clone(), arrays)
.map_err(|e| Error::Cast(format!("Failed to create record batch: {}", e)))?;
// Set compression options
let compression_type = compression.unwrap_or(ParquetCompression::Snappy);
let props = WriterProperties::builder()
.set_compression(Compression::from(compression_type))
.build();
// Create file
let file = File::create(path.as_ref()).map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to create Parquet file: {}",
e
)))
})?;
// Create Arrow writer and write data
let mut writer = ArrowWriter::try_new(file, schema_ref, Some(props)).map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to create Parquet writer: {}",
e
)))
})?;
// Write record batch
writer.write(&batch).map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to write record batch: {}",
e
)))
})?;
// Close the file
writer.close().map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to close Parquet file: {}",
e
)))
})?;
Ok(())
}
/// Read DataFrame from a Parquet file
///
/// # Arguments
/// * `path` - Path to the Parquet file
///
/// # Returns
/// * `Result<Self>` - The loaded DataFrame
#[cfg(feature = "parquet")]
pub fn from_parquet<P: AsRef<Path>>(path: P) -> Result<Self> {
// Open file
let file = File::open(path.as_ref()).map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to open Parquet file: {}",
e
)))
})?;
// Create Arrow's Parquet reader
let builder = ParquetRecordBatchReaderBuilder::try_new(file).map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to parse Parquet file: {}",
e
)))
})?;
// Get schema information (clone it)
let schema = builder.schema().clone();
// Create record batch reader
let reader = builder.build().map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to read Parquet file: {}",
e
)))
})?;
// Read all record batches
let mut all_batches = Vec::new();
for batch_result in reader {
let batch = batch_result.map_err(|e| {
Error::Io(crate::error::io_error(format!(
"Failed to read record batch: {}",
e
)))
})?;
all_batches.push(batch);
}
// Return an empty DataFrame if there are no record batches
if all_batches.is_empty() {
return Ok(Self::new());
}
// Convert to DataFrame
let mut df = Self::new();
// Get column information from schema
for (col_idx, field) in schema.fields().iter().enumerate() {
let col_name = field.name().clone();
let col_type = field.data_type();
// Collect column data from all batches
match col_type {
DataType::Int64 => {
let mut values = Vec::new();
for batch in &all_batches {
let array = batch
.column(col_idx)
.as_any()
.downcast_ref::<Int64Array>()
.ok_or_else(|| {
Error::Cast(format!(
"Could not convert column '{}' to Int64Array",
col_name
))
})?;
for i in 0..array.len() {
if array.is_null(i) {
values.push(0); // Use 0 as default value for NULL
} else {
values.push(array.value(i));
}
}
}
df.add_column(col_name, Column::Int64(Int64Column::new(values)))?;
}
DataType::Float64 => {
let mut values = Vec::new();
for batch in &all_batches {
let array = batch
.column(col_idx)
.as_any()
.downcast_ref::<Float64Array>()
.ok_or_else(|| {
Error::Cast(format!(
"Could not convert column '{}' to Float64Array",
col_name
))
})?;
for i in 0..array.len() {
if array.is_null(i) {
values.push(f64::NAN); // Use NaN for NULL values
} else {
values.push(array.value(i));
}
}
}
df.add_column(col_name, Column::Float64(Float64Column::new(values)))?;
}
DataType::Boolean => {
let mut values = Vec::new();
for batch in &all_batches {
let array = batch
.column(col_idx)
.as_any()
.downcast_ref::<BooleanArray>()
.ok_or_else(|| {
Error::Cast(format!(
"Could not convert column '{}' to BooleanArray",
col_name
))
})?;
for i in 0..array.len() {
if array.is_null(i) {
values.push(false); // Use false as default value for NULL
} else {
values.push(array.value(i));
}
}
}
df.add_column(col_name, Column::Boolean(BooleanColumn::new(values)))?;
}
DataType::Utf8 | DataType::LargeUtf8 => {
let mut values = Vec::new();
for batch in &all_batches {
let array = batch
.column(col_idx)
.as_any()
.downcast_ref::<StringArray>()
.ok_or_else(|| {
Error::Cast(format!(
"Could not convert column '{}' to StringArray",
col_name
))
})?;
for i in 0..array.len() {
if array.is_null(i) {
values.push("".to_string()); // Use empty string for NULL values
} else {
values.push(array.value(i).to_string());
}
}
}
df.add_column(col_name, Column::String(StringColumn::new(values)))?;
}
_ => {
// Treat unsupported data types as strings
let mut values = Vec::new();
for batch in &all_batches {
let array = batch.column(col_idx);
for i in 0..array.len() {
if array.is_null(i) {
values.push("".to_string());
} else {
// Cannot access value method directly, so downcast to StringArray first
if let Some(str_array) =
array.as_any().downcast_ref::<StringArray>()
{
values.push(str_array.value(i).to_string());
} else {
values.push(format!("{:?}", array));
}
}
}
}
df.add_column(col_name, Column::String(StringColumn::new(values)))?;
}
}
}
Ok(df)
}
/// Read DataFrame from an Excel file (.xlsx)
///
/// # Arguments
/// * `path` - Path to the Excel file
/// * `sheet_name` - Name of the sheet to read (if None, reads the first sheet)
/// * `header` - Whether the file has a header row
/// * `skip_rows` - Number of rows to skip before starting to read
/// * `use_cols` - List of column names or indices to read (if None, reads all columns)
///
/// # Returns
/// * `Result<Self>` - The loaded DataFrame
#[cfg(feature = "excel")]
pub fn from_excel<P: AsRef<Path>>(
path: P,
sheet_name: Option<&str>,
header: bool,
skip_rows: usize,
use_cols: Option<&[&str]>,
) -> Result<Self> {
crate::io::xlsx::read_split_dataframe(path, sheet_name, header, skip_rows, use_cols)
}
/// Write DataFrame to an Excel file (.xlsx)
///
/// # Arguments
/// * `path` - Path to the output Excel file
/// * `sheet_name` - Sheet name (if None, "Sheet1" is used)
/// * `index` - Whether to include index
///
/// # Returns
/// * `Result<()>` - Ok if successful
#[cfg(feature = "excel")]
pub fn to_excel<P: AsRef<Path>>(
&self,
path: P,
sheet_name: Option<&str>,
index: bool,
) -> Result<()> {
crate::io::xlsx::write_split_dataframe(self, path, sheet_name, index)
}
}