forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.rs
More file actions
160 lines (141 loc) · 4.87 KB
/
Copy pathcontext.rs
File metadata and controls
160 lines (141 loc) · 4.87 KB
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
// 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.
use std::path::PathBuf;
use std::{collections::HashSet, sync::Arc};
use rand::distributions::Alphanumeric;
use rand::Rng;
use pyo3::exceptions::PyValueError;
use pyo3::prelude::*;
use datafusion::arrow::record_batch::RecordBatch;
use datafusion::datasource::MemTable;
use datafusion::execution::context::ExecutionContext as _ExecutionContext;
use datafusion::prelude::CsvReadOptions;
use crate::dataframe;
use crate::errors;
use crate::functions;
use crate::to_rust;
use crate::types::PyDataType;
/// `ExecutionContext` is able to plan and execute DataFusion plans.
/// It has a powerful optimizer, a physical planner for local execution, and a
/// multi-threaded execution engine to perform the execution.
#[pyclass(unsendable)]
pub(crate) struct ExecutionContext {
ctx: _ExecutionContext,
}
#[pymethods]
impl ExecutionContext {
#[new]
fn new() -> Self {
ExecutionContext {
ctx: _ExecutionContext::new(),
}
}
/// Returns a DataFrame whose plan corresponds to the SQL statement.
fn sql(&mut self, query: &str) -> PyResult<dataframe::DataFrame> {
let df = self
.ctx
.sql(query)
.map_err(|e| -> errors::DataFusionError { e.into() })?;
Ok(dataframe::DataFrame::new(
self.ctx.state.clone(),
df.to_logical_plan(),
))
}
fn create_dataframe(
&mut self,
partitions: Vec<Vec<PyObject>>,
py: Python,
) -> PyResult<dataframe::DataFrame> {
let partitions: Vec<Vec<RecordBatch>> = partitions
.iter()
.map(|batches| {
batches
.iter()
.map(|batch| to_rust::to_rust_batch(batch.as_ref(py)))
.collect()
})
.collect::<PyResult<_>>()?;
let table =
errors::wrap(MemTable::try_new(partitions[0][0].schema(), partitions))?;
// generate a random (unique) name for this table
let name = rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(10)
.collect::<String>();
errors::wrap(self.ctx.register_table(&*name, Arc::new(table)))?;
Ok(dataframe::DataFrame::new(
self.ctx.state.clone(),
errors::wrap(self.ctx.table(&*name))?.to_logical_plan(),
))
}
fn register_parquet(&mut self, name: &str, path: &str) -> PyResult<()> {
errors::wrap(self.ctx.register_parquet(name, path))?;
Ok(())
}
#[args(
schema = "None",
has_header = "true",
delimiter = "\",\"",
schema_infer_max_records = "1000",
file_extension = "\".csv\""
)]
fn register_csv(
&mut self,
name: &str,
path: PathBuf,
schema: Option<&PyAny>,
has_header: bool,
delimiter: &str,
schema_infer_max_records: usize,
file_extension: &str,
) -> PyResult<()> {
let path = path
.to_str()
.ok_or(PyValueError::new_err("Unable to convert path to a string"))?;
let schema = match schema {
Some(s) => Some(to_rust::to_rust_schema(s)?),
None => None,
};
let delimiter = delimiter.as_bytes();
if delimiter.len() != 1 {
return Err(PyValueError::new_err(
"Delimiter must be a single character",
));
}
let mut options = CsvReadOptions::new()
.has_header(has_header)
.delimiter(delimiter[0])
.schema_infer_max_records(schema_infer_max_records)
.file_extension(file_extension);
options.schema = schema.as_ref();
errors::wrap(self.ctx.register_csv(name, path, options))?;
Ok(())
}
fn register_udf(
&mut self,
name: &str,
func: PyObject,
args_types: Vec<PyDataType>,
return_type: PyDataType,
) {
let function = functions::create_udf(func, args_types, return_type, name);
self.ctx.register_udf(function.function);
}
fn tables(&self) -> HashSet<String> {
self.ctx.tables().unwrap()
}
}