nu_plugin_polars 0.112.2

Nushell dataframe plugin commands based on polars.
use crate::values::{CustomValueSupport, PolarsPluginCustomValue, PolarsPluginType};

use super::NuWhen;
use nu_protocol::{CustomValue, ShellError, Span, Value};
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct NuWhenCustomValue {
    pub id: uuid::Uuid,
    #[serde(skip)]
    pub when: Option<NuWhen>,
}

// CustomValue implementation for NuWhen
#[typetag::serde]
impl CustomValue for NuWhenCustomValue {
    fn clone_value(&self, span: nu_protocol::Span) -> Value {
        Value::custom(Box::new(self.clone()), span)
    }

    fn type_name(&self) -> String {
        PolarsPluginType::NuWhen.type_name().to_string()
    }

    fn to_base_value(&self, span: Span) -> Result<Value, ShellError> {
        Ok(Value::string(
            "NuWhenCustomValue: custom_value_to_base_value should've been called",
            span,
        ))
    }

    fn as_mut_any(&mut self) -> &mut dyn std::any::Any {
        self
    }

    fn as_any(&self) -> &dyn std::any::Any {
        self
    }

    fn notify_plugin_on_drop(&self) -> bool {
        true
    }
}

impl PolarsPluginCustomValue for NuWhenCustomValue {
    type PolarsPluginObjectType = NuWhen;

    fn custom_value_to_base_value(
        &self,
        plugin: &crate::PolarsPlugin,
        _engine: &nu_plugin::EngineInterface,
        span: Span,
    ) -> Result<Value, ShellError> {
        let when = NuWhen::try_from_custom_value(plugin, self)?;
        when.base_value(span)
    }

    fn id(&self) -> &Uuid {
        &self.id
    }

    fn internal(&self) -> &Option<Self::PolarsPluginObjectType> {
        &self.when
    }
}