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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//! Options related to how csv files should be written
use std::str::FromStr;
use arrow::csv::WriterBuilder;
use crate::{
config::ConfigOptions,
error::{DataFusionError, Result},
parsers::CompressionTypeVariant,
};
use super::StatementOptions;
/// Options for writing CSV files
#[derive(Clone, Debug)]
pub struct CsvWriterOptions {
/// Struct from the arrow crate which contains all csv writing related settings
pub writer_options: WriterBuilder,
/// Compression to apply after ArrowWriter serializes RecordBatches.
/// This compression is applied by DataFusion not the ArrowWriter itself.
pub compression: CompressionTypeVariant,
/// Indicates whether WriterBuilder.has_header() is set to true.
/// This is duplicative as WriterBuilder also stores this information.
/// However, WriterBuilder does not allow public read access to the
/// has_header parameter.
pub has_header: bool,
// TODO: expose a way to read has_header in arrow create
// https://github.com/apache/arrow-rs/issues/4735
}
impl CsvWriterOptions {
pub fn new(
writer_options: WriterBuilder,
compression: CompressionTypeVariant,
) -> Self {
Self {
writer_options,
compression,
has_header: true,
}
}
}
impl TryFrom<(&ConfigOptions, &StatementOptions)> for CsvWriterOptions {
type Error = DataFusionError;
fn try_from(value: (&ConfigOptions, &StatementOptions)) -> Result<Self> {
let _configs = value.0;
let statement_options = value.1;
let mut has_header = true;
let mut builder = WriterBuilder::default();
let mut compression = CompressionTypeVariant::UNCOMPRESSED;
for (option, value) in &statement_options.options {
builder = match option.to_lowercase().as_str(){
"header" => {
has_header = value.parse()
.map_err(|_| DataFusionError::Configuration(format!("Unable to parse {value} as bool as required for {option}!")))?;
builder.has_headers(has_header)
},
"date_format" => builder.with_date_format(value.to_owned()),
"datetime_format" => builder.with_datetime_format(value.to_owned()),
"timestamp_format" => builder.with_timestamp_format(value.to_owned()),
"time_format" => builder.with_time_format(value.to_owned()),
"rfc3339" => {
let value_bool = value.parse()
.map_err(|_| DataFusionError::Configuration(format!("Unable to parse {value} as bool as required for {option}!")))?;
if value_bool{
builder.with_rfc3339()
} else{
builder
}
},
"null_value" => builder.with_null(value.to_owned()),
"compression" => {
compression = CompressionTypeVariant::from_str(value.replace('\'', "").as_str())?;
builder
},
"delimeter" => {
// Ignore string literal single quotes passed from sql parsing
let value = value.replace('\'', "");
let chars: Vec<char> = value.chars().collect();
if chars.len()>1{
return Err(DataFusionError::Configuration(format!(
"CSV Delimeter Option must be a single char, got: {}", value
)))
}
builder.with_delimiter(chars[0].try_into().map_err(|_| {
DataFusionError::Internal(
"Unable to convert CSV delimiter into u8".into(),
)
})?)
},
_ => return Err(DataFusionError::Configuration(format!("Found unsupported option {option} with value {value} for CSV format!")))
}
}
Ok(CsvWriterOptions {
has_header,
writer_options: builder,
compression,
})
}
}