use std::any::type_name;
use std::collections::HashMap;
use std::sync::Arc;
use crate::storage::utils::parse_uri;
use anyhow::Result;
use serde::{Deserialize, Serialize};
use url::Url;
pub mod internal;
pub mod read;
pub mod table;
pub mod utils;
pub const HUDI_CONF_DIR: &str = "HUDI_CONF_DIR";
pub trait ConfigParser: AsRef<str> {
type Output;
fn default_value(&self) -> Option<Self::Output>;
fn is_required(&self) -> bool {
false
}
fn validate(&self, configs: &HashMap<String, String>) -> Result<()> {
match self.parse_value(configs) {
Ok(_) => Ok(()),
Err(e) => {
if !self.is_required() && e.to_string().ends_with("not found") {
Ok(())
} else {
Err(e)
}
}
}
}
fn parse_value(&self, configs: &HashMap<String, String>) -> Result<Self::Output>;
fn parse_value_or_default(&self, configs: &HashMap<String, String>) -> Self::Output {
self.parse_value(configs).unwrap_or_else(|_| {
self.default_value()
.unwrap_or_else(|| panic!("No default value for config '{}'", self.as_ref()))
})
}
}
#[derive(Clone, Debug)]
pub enum HudiConfigValue {
Boolean(bool),
Integer(isize),
UInteger(usize),
String(String),
List(Vec<String>),
}
impl HudiConfigValue {
pub fn to<T: 'static + std::fmt::Debug + From<HudiConfigValue>>(self) -> T {
T::from(self)
}
pub fn to_url(self) -> Result<Url> {
match self {
HudiConfigValue::String(v) => parse_uri(&v),
_ => panic!(
"Cannot cast {:?} to {}",
type_name::<Self>(),
type_name::<Url>()
),
}
}
}
impl From<HudiConfigValue> for bool {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Boolean(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for isize {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Integer(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for usize {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::UInteger(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for String {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::Boolean(v) => v.to_string(),
HudiConfigValue::Integer(v) => v.to_string(),
HudiConfigValue::UInteger(v) => v.to_string(),
HudiConfigValue::String(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
impl From<HudiConfigValue> for Vec<String> {
fn from(value: HudiConfigValue) -> Self {
match value {
HudiConfigValue::List(v) => v,
_ => panic!("Cannot cast {:?} to {}", value, type_name::<Self>()),
}
}
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct HudiConfigs {
raw_options: Arc<HashMap<String, String>>,
}
impl HudiConfigs {
pub fn new<I, K, V>(options: I) -> Self
where
I: IntoIterator<Item = (K, V)>,
K: AsRef<str>,
V: Into<String>,
{
let raw_options = options
.into_iter()
.map(|(k, v)| (k.as_ref().into(), v.into()))
.collect();
Self {
raw_options: Arc::new(raw_options),
}
}
pub fn empty() -> Self {
Self {
raw_options: Arc::new(HashMap::new()),
}
}
pub fn as_options(&self) -> HashMap<String, String> {
self.raw_options.as_ref().clone()
}
pub fn validate(&self, parser: impl ConfigParser<Output = HudiConfigValue>) -> Result<()> {
parser.validate(&self.raw_options)
}
pub fn contains(&self, key: impl AsRef<str>) -> bool {
self.raw_options.contains_key(key.as_ref())
}
pub fn get(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> Result<HudiConfigValue> {
parser.parse_value(&self.raw_options)
}
pub fn get_or_default(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> HudiConfigValue {
parser.parse_value_or_default(&self.raw_options)
}
pub fn try_get(
&self,
parser: impl ConfigParser<Output = HudiConfigValue>,
) -> Option<HudiConfigValue> {
let res = parser.parse_value(&self.raw_options);
match res {
Ok(v) => Some(v),
Err(_) => parser.default_value(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_new_using_hashmap() {
let mut options = HashMap::new();
options.insert("key1".to_string(), "value1".to_string());
options.insert("key2".to_string(), "value2".to_string());
let config = HudiConfigs::new(options.clone());
assert_eq!(*config.raw_options, options);
}
#[test]
fn test_new() {
let options = vec![("key1", "value1"), ("key2", "value2")];
let config = HudiConfigs::new(options);
let expected: HashMap<String, String> = vec![
("key1".to_string(), "value1".to_string()),
("key2".to_string(), "value2".to_string()),
]
.into_iter()
.collect();
assert_eq!(*config.raw_options, expected);
}
#[test]
fn test_empty() {
let config = HudiConfigs::empty();
assert!(config.raw_options.is_empty());
}
#[test]
fn test_as_options() {
let mut options = HashMap::new();
options.insert("key1".to_string(), "value1".to_string());
options.insert("key2".to_string(), "value2".to_string());
let config = HudiConfigs::new(options.clone());
let result = config.as_options();
assert_eq!(result, options);
}
}