use pyo3::prelude::*;
use pyo3::types::*;
use datafusion::config::ConfigOptions;
use datafusion_common::ScalarValue;
#[pyclass(name = "Config", module = "datafusion", subclass)]
#[derive(Clone)]
pub(crate) struct PyConfig {
config: ConfigOptions,
}
#[pymethods]
impl PyConfig {
#[new]
fn py_new() -> Self {
Self {
config: ConfigOptions::new(),
}
}
#[staticmethod]
pub fn from_env() -> PyResult<Self> {
Ok(Self {
config: ConfigOptions::from_env()?,
})
}
pub fn get(&mut self, key: &str, py: Python) -> PyResult<PyObject> {
let options = self.config.to_owned();
for entry in options.entries() {
if entry.key == key {
return Ok(entry.value.into_py(py));
}
}
Ok(None::<String>.into_py(py))
}
pub fn set(&mut self, key: &str, value: PyObject, py: Python) -> PyResult<()> {
let scalar_value = py_obj_to_scalar_value(py, value);
self.config
.set(key, scalar_value.to_string().as_str())
.map_err(|e| e.into())
}
pub fn get_all(&mut self, py: Python) -> PyResult<PyObject> {
let dict = PyDict::new(py);
let options = self.config.to_owned();
for entry in options.entries() {
dict.set_item(entry.key, entry.value.clone().into_py(py))?;
}
Ok(dict.into())
}
fn __repr__(&mut self, py: Python) -> PyResult<String> {
let dict = self.get_all(py);
match dict {
Ok(result) => Ok(format!("Config({result})")),
Err(err) => Ok(format!("Error: {:?}", err.to_string())),
}
}
}
fn py_obj_to_scalar_value(py: Python, obj: PyObject) -> ScalarValue {
if let Ok(value) = obj.extract::<bool>(py) {
ScalarValue::Boolean(Some(value))
} else if let Ok(value) = obj.extract::<i64>(py) {
ScalarValue::Int64(Some(value))
} else if let Ok(value) = obj.extract::<u64>(py) {
ScalarValue::UInt64(Some(value))
} else if let Ok(value) = obj.extract::<f64>(py) {
ScalarValue::Float64(Some(value))
} else if let Ok(value) = obj.extract::<String>(py) {
ScalarValue::Utf8(Some(value))
} else {
panic!("Unsupported value type")
}
}