datu 0.3.4

datu - a data file utility
Documentation
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
//! [`PipelineBuilder`] and planning validation for CLI and REPL pipelines.

use std::path::Path;

use indicatif::ProgressBar;

use super::run::Pipeline;
use crate::Error;
use crate::FileType;
use crate::Result;
use crate::cli::DisplayOutputFormat;
use crate::errors::PipelinePlanningError;
use crate::pipeline::dataframe::DataFramePipeline;
use crate::pipeline::dataframe::DataFrameSink;
use crate::pipeline::record_batch::RecordBatchPipeline;
use crate::pipeline::record_batch::RecordBatchSink;
use crate::pipeline::spec::ColumnSpec;
use crate::pipeline::spec::DisplaySlice;
use crate::pipeline::spec::SelectItem;
use crate::pipeline::spec::SelectSpec;
use crate::resolve_file_type;

/// Fluent builder for a [`Pipeline`] (file conversion or stdout display: head/tail/sample, schema, or row count).
pub struct PipelineBuilder {
    read: Option<String>,
    select: Option<SelectSpec>,
    head: Option<usize>,
    tail: Option<usize>,
    sample: Option<usize>,
    display_row_count: bool,
    write: Option<String>,
    schema: bool,
    input_type_override: Option<FileType>,
    output_type_override: Option<FileType>,
    csv_has_header: Option<bool>,
    sparse: bool,
    json_pretty: bool,
    progress: Option<ProgressBar>,
    display_output_format: Option<DisplayOutputFormat>,
    display_csv_headers: Option<bool>,
}

impl Default for PipelineBuilder {
    fn default() -> Self {
        Self {
            read: None,
            select: None,
            head: None,
            tail: None,
            sample: None,
            display_row_count: false,
            write: None,
            schema: false,
            input_type_override: None,
            output_type_override: None,
            csv_has_header: None,
            sparse: true,
            json_pretty: false,
            progress: None,
            display_output_format: None,
            display_csv_headers: None,
        }
    }
}

impl PipelineBuilder {
    /// Returns a builder with default options (no paths set).
    pub fn new() -> Self {
        Self::default()
    }
}

impl PipelineBuilder {
    /// Sets the input file path (required before [`build`](PipelineBuilder::build)).
    pub fn read(&mut self, path: &str) -> &mut Self {
        self.read = Some(path.to_string());
        self
    }
    /// Sets column selection as exact name matches.
    pub fn select(&mut self, columns: &[&str]) -> &mut Self {
        self.select = Some(SelectSpec {
            columns: columns
                .iter()
                .map(|c| SelectItem::Column(ColumnSpec::Exact(c.to_string())))
                .collect(),
            group_by: None,
        });
        self
    }

    /// Sets column selection from a pre-built spec (e.g. from CLI conversion).
    pub fn select_spec(&mut self, spec: SelectSpec) -> &mut Self {
        self.select = Some(spec);
        self
    }
    /// Sets the output path for conversion (mutually exclusive with display-only mode).
    pub fn write<P: AsRef<Path>>(&mut self, path: P) -> &mut Self {
        self.write = Some(path.as_ref().to_string_lossy().to_string());
        self
    }
    /// Keeps the first `n` rows (with write or stdout display).
    pub fn head(&mut self, n: usize) -> &mut Self {
        self.head = Some(n);
        self
    }
    /// Keeps the last `n` rows (with write or stdout display).
    pub fn tail(&mut self, n: usize) -> &mut Self {
        self.tail = Some(n);
        self
    }
    /// Random sample of `n` rows (with write or stdout display).
    pub fn sample(&mut self, n: usize) -> &mut Self {
        self.sample = Some(n);
        self
    }
    /// Display pipeline: print total row count for the read path (and optional [`select`](PipelineBuilder::select_spec)).
    pub fn row_count(&mut self) -> &mut Self {
        self.display_row_count = true;
        self
    }
    /// Display pipeline: print schema for the read path (and optional column selection).
    pub fn schema(&mut self) -> &mut Self {
        self.schema = true;
        self
    }

    /// Override input format (e.g. from CLI `-I`); otherwise inferred from the read path extension.
    pub fn input_type(&mut self, file_type: Option<FileType>) -> &mut Self {
        self.input_type_override = file_type;
        self
    }

    /// Override output format (e.g. from CLI `-O`); otherwise inferred from the write path extension.
    pub fn output_type(&mut self, file_type: Option<FileType>) -> &mut Self {
        self.output_type_override = file_type;
        self
    }

    /// When reading CSV: whether the first row is a header (`None` means default true).
    pub fn csv_has_header(&mut self, has_header: Option<bool>) -> &mut Self {
        self.csv_has_header = has_header;
        self
    }

    /// For JSON/YAML and similar writers: omit null keys when true.
    pub fn sparse(&mut self, sparse: bool) -> &mut Self {
        self.sparse = sparse;
        self
    }

    /// When writing JSON: pretty-print when true.
    pub fn json_pretty(&mut self, json_pretty: bool) -> &mut Self {
        self.json_pretty = json_pretty;
        self
    }

    /// Optional progress bar updated while writing from collected batches.
    pub fn progress(&mut self, progress: Option<ProgressBar>) -> &mut Self {
        self.progress = progress;
        self
    }

    /// When building a display pipeline (no `write`): stdout format (defaults to CSV if unset).
    pub fn display_format(&mut self, format: DisplayOutputFormat) -> &mut Self {
        self.display_output_format = Some(format);
        self
    }

    /// When building a display pipeline (no `write`): whether CSV output includes a header row
    /// (defaults to true if unset).
    pub fn display_csv_headers(&mut self, headers: bool) -> &mut Self {
        self.display_csv_headers = Some(headers);
        self
    }

    /// Builds a write pipeline from the builder's configuration.
    fn build_write_pipeline(
        &self,
        input_path: &str,
        output_path: &str,
        select: Option<SelectSpec>,
    ) -> Result<Pipeline> {
        ensure_at_most_one_of_head_tail_sample(self.head, self.tail, self.sample)?;
        let input_file_type = resolve_file_type(self.input_type_override, input_path)?;
        let output_file_type = resolve_file_type(self.output_type_override, output_path)?;

        if !input_file_type.supports_pipeline_conversion_input() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedInputFileType(input_file_type.to_string()),
            ));
        }
        if !output_file_type.supports_pipeline_conversion_output() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedOutputFileType(output_file_type.to_string()),
            ));
        }

        reject_orc_with_aggregates(input_file_type, &select)?;

        let slice = slice_from_head_tail_sample(self.head, self.tail, self.sample);
        Ok(dispatch_pipeline(
            input_path.to_string(),
            input_file_type,
            select,
            slice,
            self.sparse,
            self.csv_has_header,
            UnifiedSink::Write {
                output_path: output_path.to_string(),
                output_file_type,
                json_pretty: self.json_pretty,
                progress: self.progress.clone(),
            },
        ))
    }

    fn build_schema_display_pipeline(
        &self,
        input_path: &str,
        select: Option<SelectSpec>,
    ) -> Result<Pipeline> {
        let input_file_type = resolve_file_type(self.input_type_override, input_path)?;
        if !input_file_type.supports_pipeline_display_input() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedInputFileType(input_file_type.to_string()),
            ));
        }

        let output_format = self
            .display_output_format
            .unwrap_or(DisplayOutputFormat::Csv);
        let sparse = self.sparse;
        let input_path = input_path.to_string();
        let csv_has_header = self.csv_has_header;

        reject_orc_with_aggregates(input_file_type, &select)?;

        Ok(dispatch_pipeline(
            input_path,
            input_file_type,
            select,
            None,
            sparse,
            csv_has_header,
            UnifiedSink::Schema {
                output_format,
                sparse,
            },
        ))
    }

    fn build_row_count_display_pipeline(
        &self,
        input_path: &str,
        select: Option<SelectSpec>,
    ) -> Result<Pipeline> {
        let input_file_type = resolve_file_type(self.input_type_override, input_path)?;
        if !input_file_type.supports_pipeline_display_input() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedInputFileType(input_file_type.to_string()),
            ));
        }

        let input_path = input_path.to_string();
        let csv_has_header = self.csv_has_header;
        let sparse = self.sparse;

        reject_orc_with_aggregates(input_file_type, &select)?;

        Ok(dispatch_pipeline(
            input_path,
            input_file_type,
            select,
            None,
            sparse,
            csv_has_header,
            UnifiedSink::Count,
        ))
    }

    /// Builds a display pipeline from the builder's configuration.
    fn build_display_pipeline(
        &self,
        input_path: &str,
        select: Option<SelectSpec>,
    ) -> Result<Pipeline> {
        let slice =
            slice_from_head_tail_sample(self.head, self.tail, self.sample).ok_or_else(|| {
                Error::PipelinePlanningError(PipelinePlanningError::MissingRequiredStage(
                    "head(n), tail(n), or sample(n)".to_string(),
                ))
            })?;
        let input_file_type = resolve_file_type(self.input_type_override, input_path)?;
        if !input_file_type.supports_pipeline_display_input() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedInputFileType(input_file_type.to_string()),
            ));
        }

        let output_format = self
            .display_output_format
            .unwrap_or(DisplayOutputFormat::Csv);
        let csv_stdout_headers = self.display_csv_headers.unwrap_or(true);

        let input_path = input_path.to_string();
        let csv_has_header = self.csv_has_header;
        let sparse = self.sparse;

        reject_orc_with_aggregates(input_file_type, &select)?;

        Ok(dispatch_pipeline(
            input_path,
            input_file_type,
            select,
            Some(slice),
            sparse,
            csv_has_header,
            UnifiedSink::Display {
                output_format,
                csv_stdout_headers,
            },
        ))
    }

    /// Display pipeline: global aggregate `select(sum(...), avg(...), min(...), max(...), ...)` with full result (one row) to stdout.
    fn build_aggregate_display_pipeline(
        &self,
        input_path: &str,
        select: Option<SelectSpec>,
    ) -> Result<Pipeline> {
        let input_file_type = resolve_file_type(self.input_type_override, input_path)?;
        if !input_file_type.supports_pipeline_display_input() {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::UnsupportedInputFileType(input_file_type.to_string()),
            ));
        }
        if input_file_type == FileType::Orc
            && select.as_ref().is_some_and(SelectSpec::has_aggregates)
        {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::AggregatesNotSupportedForOrc,
            ));
        }
        let output_format = self
            .display_output_format
            .unwrap_or(DisplayOutputFormat::Csv);
        let csv_stdout_headers = self.display_csv_headers.unwrap_or(true);
        let input_path = input_path.to_string();
        let csv_has_header = self.csv_has_header;
        let sparse = self.sparse;
        Ok(Pipeline::DataFrame(DataFramePipeline {
            input_path,
            input_file_type,
            select,
            slice: None,
            csv_has_header,
            sparse,
            sink: DataFrameSink::Display {
                output_format,
                csv_stdout_headers,
            },
        }))
    }

    /// Consumes configuration and returns a [`Pipeline`] or a planning error.
    pub fn build(&mut self) -> Result<Pipeline> {
        let input_path = self.read.as_ref().ok_or_else(|| {
            Error::PipelinePlanningError(PipelinePlanningError::MissingRequiredStage(
                "read(path)".to_string(),
            ))
        })?;

        if self.write.is_some() && (self.schema || self.display_row_count) {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::ConflictingOptions(
                    "schema and row count are not supported with write(path)".to_string(),
                ),
            ));
        }

        ensure_display_stage_exclusivity(
            self.head,
            self.tail,
            self.sample,
            self.schema,
            self.display_row_count,
        )?;

        let select = self.select.clone();
        if let Some(spec) = &select
            && spec.is_empty()
        {
            return Err(Error::PipelinePlanningError(
                PipelinePlanningError::SelectEmpty,
            ));
        }

        if let Some(output_path) = &self.write {
            self.build_write_pipeline(input_path, output_path, select)
        } else if self.schema {
            self.build_schema_display_pipeline(input_path, select)
        } else if self.display_row_count {
            self.build_row_count_display_pipeline(input_path, select)
        } else if self.head.is_none()
            && self.tail.is_none()
            && self.sample.is_none()
            && select.as_ref().is_some_and(|spec| {
                spec.is_aggregate_only() || (spec.has_group_by() && !spec.is_empty())
            })
        {
            self.build_aggregate_display_pipeline(input_path, select)
        } else {
            self.build_display_pipeline(input_path, select)
        }
    }
}

/// Sink description shared by dataframe and record-batch sinks (isomorphic variants) for dispatch.
enum UnifiedSink {
    Write {
        output_path: String,
        output_file_type: FileType,
        json_pretty: bool,
        progress: Option<ProgressBar>,
    },
    Display {
        output_format: DisplayOutputFormat,
        csv_stdout_headers: bool,
    },
    Schema {
        output_format: DisplayOutputFormat,
        sparse: bool,
    },
    Count,
}

fn dispatch_pipeline(
    input_path: String,
    input_file_type: FileType,
    select: Option<SelectSpec>,
    slice: Option<DisplaySlice>,
    sparse: bool,
    csv_has_header: Option<bool>,
    sink: UnifiedSink,
) -> Pipeline {
    if input_file_type == FileType::Orc {
        Pipeline::RecordBatch(RecordBatchPipeline {
            input_path,
            input_file_type,
            select,
            slice,
            sparse,
            sink: unified_to_record_batch_sink(sink),
        })
    } else {
        Pipeline::DataFrame(DataFramePipeline {
            input_path,
            input_file_type,
            select,
            slice,
            csv_has_header,
            sparse,
            sink: unified_to_dataframe_sink(sink),
        })
    }
}

fn unified_to_dataframe_sink(sink: UnifiedSink) -> DataFrameSink {
    match sink {
        UnifiedSink::Write {
            output_path,
            output_file_type,
            json_pretty,
            progress,
        } => DataFrameSink::Write {
            output_path,
            output_file_type,
            json_pretty,
            progress,
        },
        UnifiedSink::Display {
            output_format,
            csv_stdout_headers,
        } => DataFrameSink::Display {
            output_format,
            csv_stdout_headers,
        },
        UnifiedSink::Schema {
            output_format,
            sparse,
        } => DataFrameSink::Schema {
            output_format,
            sparse,
        },
        UnifiedSink::Count => DataFrameSink::Count,
    }
}

fn unified_to_record_batch_sink(sink: UnifiedSink) -> RecordBatchSink {
    match sink {
        UnifiedSink::Write {
            output_path,
            output_file_type,
            json_pretty,
            progress,
        } => RecordBatchSink::Write {
            output_path,
            output_file_type,
            json_pretty,
            progress,
        },
        UnifiedSink::Display {
            output_format,
            csv_stdout_headers,
        } => RecordBatchSink::Display {
            output_format,
            csv_stdout_headers,
        },
        UnifiedSink::Schema {
            output_format,
            sparse,
        } => RecordBatchSink::Schema {
            output_format,
            sparse,
        },
        UnifiedSink::Count => RecordBatchSink::Count,
    }
}

fn reject_orc_with_aggregates(
    input_file_type: FileType,
    select: &Option<SelectSpec>,
) -> Result<()> {
    if input_file_type == FileType::Orc && select.as_ref().is_some_and(SelectSpec::has_aggregates) {
        return Err(Error::PipelinePlanningError(
            PipelinePlanningError::AggregatesNotSupportedForOrc,
        ));
    }
    Ok(())
}

fn slice_from_head_tail_sample(
    head: Option<usize>,
    tail: Option<usize>,
    sample: Option<usize>,
) -> Option<DisplaySlice> {
    sample
        .map(DisplaySlice::Sample)
        .or_else(|| tail.map(DisplaySlice::Tail))
        .or_else(|| head.map(DisplaySlice::Head))
}

fn ensure_at_most_one_of_head_tail_sample(
    head: Option<usize>,
    tail: Option<usize>,
    sample: Option<usize>,
) -> Result<()> {
    let slice_count =
        usize::from(head.is_some()) + usize::from(tail.is_some()) + usize::from(sample.is_some());
    if slice_count > 1 {
        return Err(Error::PipelinePlanningError(
            PipelinePlanningError::ConflictingOptions(
                "only one of head(n), tail(n), or sample(n) may be set".to_string(),
            ),
        ));
    }
    Ok(())
}

/// Ensures slice operations (head/tail/sample) are not combined with each other or with
/// `schema` / row-count display, and that at most one of schema vs row-count is set.
fn ensure_display_stage_exclusivity(
    head: Option<usize>,
    tail: Option<usize>,
    sample: Option<usize>,
    schema: bool,
    display_row_count: bool,
) -> Result<()> {
    ensure_at_most_one_of_head_tail_sample(head, tail, sample)?;
    let has_slice = head.is_some() || tail.is_some() || sample.is_some();
    let meta_stages = usize::from(schema) + usize::from(display_row_count);
    if meta_stages > 1 {
        return Err(Error::PipelinePlanningError(
            PipelinePlanningError::ConflictingOptions(
                "only one of schema(), head(n), tail(n), sample(n), or row count may be set"
                    .to_string(),
            ),
        ));
    }
    if has_slice && meta_stages > 0 {
        return Err(Error::PipelinePlanningError(
            PipelinePlanningError::ConflictingOptions(
                "schema and row count cannot be combined with head(n), tail(n), or sample(n)"
                    .to_string(),
            ),
        ));
    }
    Ok(())
}