use super::{string_rebuild_argument_map_bare, string_rebuild_argument_map_indexed};
use crate::{
Bare, BareValueDomain, Explain, IndexDomain, Indexed, Labeled, Operand, QueryResult,
capabilities::StringValue,
execution::EvaluationCache,
operations::{
Apply, ArgumentSource, ElementKernel, ElementPipeline, Keyed, Operation, OperationContext,
Prepare, Unaligned,
},
optimizer::{Estimate, OperationInputs, OptimizerHints, PlanIdentity, PlanInputs, Stats},
registry::{describe::ArgumentRetention, operation_manifest},
traits::StripSuffix,
};
use graphrecords_core::GraphRecord;
#[derive(Clone, Explain, Operation, OperationInputs, OptimizerHints, PlanIdentity, PlanInputs)]
#[operation(scope = Element)]
#[explain(label = "StripSuffix")]
#[plan(optimizer_hints(empty = if_all))]
pub struct StripSuffixOperation<A> {
#[argument]
suffix: A,
}
impl<A: Prepare> Prepare for StripSuffixOperation<A> {
type Prepared<'a>
= A::Prepared<'a>
where
Self: 'a;
fn prepare<'a>(
&'a self,
graphrecord: &'a GraphRecord,
cache: &'a EvaluationCache<'a>,
) -> QueryResult<Self::Prepared<'a>> {
self.suffix.prepare(graphrecord, cache)
}
}
impl<I, V, A> ElementKernel<Indexed<I, V>> for StripSuffixOperation<A>
where
I: IndexDomain,
V: StringValue,
A: ArgumentSource<Keyed<I>>,
A::ValueDomain: StringValue,
{
type Emission = A::Retention;
type OutShape = Indexed<I, V>;
fn pipeline<'a>(
_graphrecord: &'a GraphRecord,
prepared: Self::Prepared<'a>,
) -> QueryResult<ElementPipeline<'a, Indexed<I, V>, Self>> {
Ok(string_rebuild_argument_map_indexed::<I, V, A>(
prepared,
Self::LABEL,
|_, value, suffix| {
let value = match value.strip_suffix(&suffix) {
Some(stripped) => stripped.to_string(),
None => value,
};
Ok(value)
},
))
}
fn estimate(&self, input: Estimate, _stats: &Stats) -> Estimate {
input.with_unknown_distinct()
}
}
impl<V, A> ElementKernel<Bare<V>> for StripSuffixOperation<A>
where
V: StringValue + BareValueDomain,
A: ArgumentSource<Unaligned>,
A::ValueDomain: StringValue,
{
type Emission = A::Retention;
type OutShape = Bare<V>;
fn pipeline<'a>(
_graphrecord: &'a GraphRecord,
prepared: Self::Prepared<'a>,
) -> QueryResult<ElementPipeline<'a, Bare<V>, Self>> {
Ok(string_rebuild_argument_map_bare::<V, A>(
prepared,
Self::LABEL,
|_, value, suffix| {
let value = match value.strip_suffix(&suffix) {
Some(stripped) => stripped.to_string(),
None => value,
};
Ok(value)
},
))
}
fn estimate(&self, input: Estimate, _stats: &Stats) -> Estimate {
input.with_unknown_distinct()
}
}
impl<O, A> StripSuffix<A> for O
where
StripSuffixOperation<A>: Operation,
O: Apply<StripSuffixOperation<A>>,
{
type ReturnOperand = O::Output;
fn strip_suffix(&self, suffix: A) -> Self::ReturnOperand {
Self::ReturnOperand::new(OperationContext::new(
self.clone(),
StripSuffixOperation { suffix },
))
}
}
operation_manifest! {
StripSuffixOperation<A> {
method: StripSuffix<A>::strip_suffix;
scope: element;
kernel {
parameters: <I: IndexDomain, V: StringValue>;
argument: A: ArgumentSource<Keyed<I>> where A::ValueDomain: StringValue;
input: Indexed<I, V>;
output: Indexed<I, V>;
emission: ArgumentRetention;
}
kernel {
parameters: <V: StringValue + BareValueDomain>;
argument: A: ArgumentSource<Unaligned> where A::ValueDomain: StringValue;
input: Bare<V>;
output: Bare<V>;
emission: ArgumentRetention;
}
}
}