golem-rust 2.0.0-rc1

Golem Rust tooling library that facilitates writing Golem backends in Rust
Documentation
// Copyright 2024-2026 Golem Cloud
//
// 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.

pub async fn call_compensation_function<In, Out, Err>(
    f: impl CompensationFunction<In, Out, Err>,
    result: impl TupleOrUnit<Out>,
    input: impl TupleOrUnit<In>,
) -> Result<(), Err> {
    f.call(result, input).await
}

pub trait TupleOrUnit<T> {
    fn into(self) -> T;
}

#[allow(async_fn_in_trait)]
pub trait CompensationFunction<In, Out, Err> {
    async fn call(
        self,
        result: impl TupleOrUnit<Out>,
        input: impl TupleOrUnit<In>,
    ) -> Result<(), Err>;
}

impl<F, Err> CompensationFunction<(), (), (Err,)> for F
where
    F: FnOnce() -> Result<(), Err>,
{
    async fn call(
        self,
        _result: impl TupleOrUnit<()>,
        _input: impl TupleOrUnit<()>,
    ) -> Result<(), (Err,)> {
        self().map_err(|e| (e,))?;
        Ok(())
    }
}

impl<F, Out, Err> CompensationFunction<(), (Out,), (Err,)> for F
where
    F: FnOnce(Out) -> Result<(), Err>,
{
    async fn call(
        self,
        out: impl TupleOrUnit<(Out,)>,
        _input: impl TupleOrUnit<()>,
    ) -> Result<(), (Err,)> {
        let (out,) = out.into();
        self(out).map_err(|err| (err,))
    }
}

impl<T> TupleOrUnit<()> for T {
    fn into(self) {}
}

macro_rules! compensation_function {
    ($($ty:ident),*) => {
        impl<F, $($ty),*, Out, Err> CompensationFunction<($($ty),*,), (Out,), (Err,)> for F
        where
            F: FnOnce(Out, $($ty),*) -> Result<(), Err>,
        {
            async fn call(
                self,
                out: impl TupleOrUnit<(Out,)>,
                input: impl TupleOrUnit<($($ty),*,)>,
            ) -> Result<(), (Err,)> {
                #[allow(non_snake_case)]
                let ( $($ty,)+ ) = input.into();
                let (out,) = out.into();
                self(out, $($ty),*).map_err(|err| (err,))
            }
        }
    }
}

macro_rules! tuple_or_unit {
    ($($ty:ident),*) => {
        impl<$($ty),*> TupleOrUnit<($($ty,)*)> for ($($ty,)*) {
            fn into(self) -> ($($ty,)*) {
                self
            }
        }
    }
}

macro_rules! generate_for_tuples {
    ($name:ident) => {
        $name!(T1);
        $name!(T1, T2);
        $name!(T1, T2, T3);
        $name!(T1, T2, T3, T4);
        $name!(T1, T2, T3, T4, T5);
        $name!(T1, T2, T3, T4, T5, T6);
        $name!(T1, T2, T3, T4, T5, T6, T7);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13);
        $name!(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14);
        $name!(
            T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15
        );
        $name!(
            T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16
        );
    };
}

generate_for_tuples!(tuple_or_unit);
generate_for_tuples!(compensation_function);