mirror of
https://github.com/nushell/nushell.git
synced 2025-04-02 20:27:11 +02:00
# Description House keeping. Restructures polars modules as discussed in: https://docs.google.com/spreadsheets/d/1gyA58i_yTXKCJ5DbO_RxBNAlK6S7C1M22ppKwVLZltc/edit?usp=sharing
101 lines
2.7 KiB
Rust
101 lines
2.7 KiB
Rust
use crate::{values::CustomValueSupport, PolarsPlugin};
|
|
|
|
use super::super::super::values::{Column, NuDataFrame};
|
|
use nu_plugin::{EngineInterface, EvaluatedCall, PluginCommand};
|
|
use nu_protocol::{
|
|
Category, Example, LabeledError, PipelineData, ShellError, Signature, Span, Type, Value,
|
|
};
|
|
use polars::prelude::IntoSeries;
|
|
|
|
use std::ops::Not;
|
|
|
|
#[derive(Clone)]
|
|
pub struct NotSeries;
|
|
|
|
impl PluginCommand for NotSeries {
|
|
type Plugin = PolarsPlugin;
|
|
|
|
fn name(&self) -> &str {
|
|
"polars not"
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Inverts boolean mask."
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build(self.name())
|
|
.input_output_type(
|
|
Type::Custom("dataframe".into()),
|
|
Type::Custom("dataframe".into()),
|
|
)
|
|
.category(Category::Custom("dataframe".into()))
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Inverts boolean mask",
|
|
example: "[true false true] | polars into-df | polars not",
|
|
result: Some(
|
|
NuDataFrame::try_from_columns(
|
|
vec![Column::new(
|
|
"0".to_string(),
|
|
vec![
|
|
Value::test_bool(false),
|
|
Value::test_bool(true),
|
|
Value::test_bool(false),
|
|
],
|
|
)],
|
|
None,
|
|
)
|
|
.expect("simple df for test should not fail")
|
|
.into_value(Span::test_data()),
|
|
),
|
|
}]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
plugin: &Self::Plugin,
|
|
engine: &EngineInterface,
|
|
call: &EvaluatedCall,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, LabeledError> {
|
|
let df = NuDataFrame::try_from_pipeline_coerce(plugin, input, call.head)?;
|
|
command(plugin, engine, call, df).map_err(LabeledError::from)
|
|
}
|
|
}
|
|
|
|
fn command(
|
|
plugin: &PolarsPlugin,
|
|
engine: &EngineInterface,
|
|
call: &EvaluatedCall,
|
|
df: NuDataFrame,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let series = df.as_series(call.head)?;
|
|
|
|
let bool = series.bool().map_err(|e| ShellError::GenericError {
|
|
error: "Error inverting mask".into(),
|
|
msg: e.to_string(),
|
|
span: Some(call.head),
|
|
help: None,
|
|
inner: vec![],
|
|
})?;
|
|
|
|
let res = bool.not();
|
|
|
|
let df = NuDataFrame::try_from_series_vec(vec![res.into_series()], call.head)?;
|
|
df.to_pipeline_data(plugin, engine, call.head)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
use crate::test::test_polars_plugin_command;
|
|
|
|
#[test]
|
|
fn test_examples() -> Result<(), ShellError> {
|
|
test_polars_plugin_command(&NotSeries)
|
|
}
|
|
}
|