// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. use crate::engine::AsyncEngineContextProvider; use super::*; macro_rules! impl_frontend { ($type:ident) => { impl $type { pub fn new() -> Arc { Arc::new(Self { inner: Frontend::default(), }) } } #[async_trait] impl Source for $type { async fn on_next(&self, data: In, token: private::Token) -> Result<(), Error> { self.inner.on_next(data, token).await } fn set_edge(&self, edge: Edge, token: private::Token) -> Result<(), PipelineError> { self.inner.set_edge(edge, token) } } #[async_trait] impl Sink for $type { async fn on_data(&self, data: Out, token: private::Token) -> Result<(), Error> { self.inner.on_data(data, token).await } } #[async_trait] impl AsyncEngine for $type { async fn generate(&self, request: In) -> Result { self.inner.generate(request).await } } }; } impl_frontend!(ServiceFrontend); impl_frontend!(SegmentSource); #[cfg(test)] mod tests { use super::*; use crate::pipeline::{ManyOut, PipelineErrorExt, SingleIn}; #[tokio::test] async fn test_pipeline_source_no_edge() { let source = Frontend::, ManyOut<()>>::default(); let stream = source .generate(().into()) .await .unwrap_err() .try_into_pipeline_error() .unwrap(); match stream { PipelineError::NoEdge => (), _ => panic!("Expected NoEdge error"), } } }