blockz_derive 0.2.1

Blockz is an opinionated library that aims to make it a pleasure to develop networked applications in Rust.
Documentation
//! Direct configuration factory.

use quote::quote;

use syn::DeriveInput;

use crate::factory::ReusableFactory;
use crate::paths;

use super::ConfigurationOpts;
use super::DynFactory;
use super::DynFactoryProduct;

/// Factory that builds a Configuration implementation based on DirectConfiguration.
pub(super) struct DirectConfigurationFactory {
    input: DeriveInput,
}

impl DirectConfigurationFactory {
    /// Create a new direct configuration factory.
    pub fn new_dyn(input: DeriveInput, _: &mut ConfigurationOpts) -> DynFactory {
        Box::new(Self { input })
    }
}

impl ReusableFactory for DirectConfigurationFactory {
    type Product = DynFactoryProduct;

    fn build(&mut self) -> Self::Product {
        // gather paths to dependencies
        let blockz = paths::blockz_path();

        // return the implementation
        let type_name = &self.input.ident;
        Ok(quote! {
            #[automatically_derived]
            #[async_trait::async_trait]
            impl #blockz::configuration::Configuration for #type_name {
                type Opts = #type_name;
                type Result = <#blockz::configuration::DirectConfiguration<#type_name> as #blockz::configuration::Configuration>::Result;

                async fn load(opts: Self::Opts) -> Self::Result {
                    <#blockz::configuration::DirectConfiguration<#type_name> as #blockz::configuration::Configuration>::load(opts).await
                }
            }
        })
    }
}