forked from katzen-cafe/iowo
Compare commits
2 commits
4bc84451e0
...
ecc466d01d
Author | SHA1 | Date | |
---|---|---|---|
ecc466d01d | |||
062138337c |
4 changed files with 34 additions and 39 deletions
|
@ -60,38 +60,11 @@ mod dev {
|
||||||
use clap::Subcommand;
|
use clap::Subcommand;
|
||||||
|
|
||||||
#[derive(Subcommand)]
|
#[derive(Subcommand)]
|
||||||
pub(crate) enum DevCommands {
|
pub(crate) enum DevCommands {}
|
||||||
Enums { test_str: String },
|
|
||||||
Add { num0: i32, num1: i32 },
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DevCommands {
|
impl DevCommands {
|
||||||
pub fn run(self) {
|
pub fn run(self) {
|
||||||
match self {
|
println!("There are currently no dev commands.");
|
||||||
DevCommands::Enums { test_str } => {
|
|
||||||
use prowocessing::experimental::enum_based::PipelineBuilder;
|
|
||||||
|
|
||||||
let upr = PipelineBuilder::new()
|
|
||||||
.insert(prowocessing::experimental::enum_based::Instruction::Uppercase)
|
|
||||||
.build();
|
|
||||||
let lwr = PipelineBuilder::new()
|
|
||||||
.insert(prowocessing::experimental::enum_based::Instruction::Lowercase)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
println!("Upr: {}", upr.run(test_str.clone()));
|
|
||||||
println!("Lwr: {}", lwr.run(test_str.clone()));
|
|
||||||
}
|
|
||||||
DevCommands::Add { num0, num1 } => {
|
|
||||||
use prowocessing::experimental::trait_based::pipeline::PipelineBuilder;
|
|
||||||
|
|
||||||
let pipe = PipelineBuilder::new().add(1).stringify().build();
|
|
||||||
println!(
|
|
||||||
"{:?}",
|
|
||||||
pipe.run(vec![&num0.into(), &num1.into()].into())
|
|
||||||
.into_inner()[0]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ use std::{borrow::ToOwned, convert::Into};
|
||||||
use super::raw::Data;
|
use super::raw::Data;
|
||||||
|
|
||||||
/// Newtype struct with borrowed types for pipeline/element inputs, so that doesn't force a move or clone
|
/// Newtype struct with borrowed types for pipeline/element inputs, so that doesn't force a move or clone
|
||||||
|
#[derive(PartialEq, Eq, Debug)]
|
||||||
pub struct Inputs<'a>(pub Vec<&'a Data>);
|
pub struct Inputs<'a>(pub Vec<&'a Data>);
|
||||||
|
|
||||||
impl<'a> From<Vec<&'a Data>> for Inputs<'a> {
|
impl<'a> From<Vec<&'a Data>> for Inputs<'a> {
|
||||||
|
@ -26,7 +27,8 @@ impl<'a> From<&'a Outputs> for Inputs<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Used for pipeline/element outputs
|
/// Used for pipeline/element outputs
|
||||||
pub struct Outputs(Vec<Data>);
|
#[derive(PartialEq, Eq, Debug)]
|
||||||
|
pub struct Outputs(pub Vec<Data>);
|
||||||
|
|
||||||
impl Outputs {
|
impl Outputs {
|
||||||
/// consume self and return inner value(s)
|
/// consume self and return inner value(s)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//! Dynamic data storage and transfer types for use in [`io`]
|
//! Dynamic data storage and transfer types for use in [`io`]
|
||||||
|
|
||||||
// Dynamic data type
|
// Dynamic data type
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub enum Data {
|
pub enum Data {
|
||||||
String(String),
|
String(String),
|
||||||
Int(i32),
|
Int(i32),
|
||||||
|
|
|
@ -8,13 +8,33 @@
|
||||||
/// Gonna first try string processing...
|
/// Gonna first try string processing...
|
||||||
pub mod experimental;
|
pub mod experimental;
|
||||||
|
|
||||||
#[test]
|
#[cfg(test)]
|
||||||
fn test_enums() {
|
mod tests {
|
||||||
use crate::experimental::enum_based::{Instruction, PipelineBuilder};
|
use crate::experimental::{
|
||||||
let builder = PipelineBuilder::new().insert(Instruction::Uppercase);
|
enum_based,
|
||||||
let upr = builder.build();
|
trait_based::{self, data::io::Outputs},
|
||||||
let upr_lowr = builder.insert(Instruction::Lowercase).build();
|
};
|
||||||
|
|
||||||
assert_eq!(upr.run(String::from("Test")), String::from("TEST"));
|
#[test]
|
||||||
assert_eq!(upr_lowr.run(String::from("Test")), String::from("test"));
|
fn test_enums() {
|
||||||
|
let builder = enum_based::PipelineBuilder::new().insert(enum_based::Instruction::Uppercase);
|
||||||
|
let upr = builder.build();
|
||||||
|
let upr_lowr = builder.insert(enum_based::Instruction::Lowercase).build();
|
||||||
|
|
||||||
|
assert_eq!(upr.run(String::from("Test")), String::from("TEST"));
|
||||||
|
assert_eq!(upr_lowr.run(String::from("Test")), String::from("test"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn add() {
|
||||||
|
let pipe = trait_based::pipeline::PipelineBuilder::new()
|
||||||
|
.add(0)
|
||||||
|
.stringify()
|
||||||
|
.build();
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
pipe.run(vec![&2.into(), &3.into()].into()),
|
||||||
|
Outputs(vec![String::from("5").into()])
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue