1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
use proc_macro::TokenStream;
use quote::quote;
use syn::{parse, parse_macro_input};
mod declare_interface_args;
mod dependency_type;
mod factory_type_alias;
mod injectable_impl;
mod injectable_macro_args;
mod libs;
use declare_interface_args::DeclareInterfaceArgs;
use injectable_impl::InjectableImpl;
use injectable_macro_args::InjectableMacroArgs;
use libs::intertrait_macros::gen_caster::generate_caster;
/// Makes a struct injectable. Thereby usable with `DIContainer`.
///
/// # Arguments
/// * (Optional) A interface trait the struct implements.
///
/// # Panics
/// If the attributed item is not a impl.
///
/// # Important
/// If the interface trait argument is excluded, you should either manually
/// declare the interface with the `declare_interface` macro or use
/// the `di_container_bind` macro to create a DI container binding.
#[proc_macro_attribute]
pub fn injectable(args_stream: TokenStream, impl_stream: TokenStream) -> TokenStream
{
let should_declare_interface = !args_stream.is_empty();
let injectable_impl: InjectableImpl = parse(impl_stream).unwrap();
let expanded_injectable_impl = injectable_impl.expand();
let maybe_decl_interface = if should_declare_interface {
let InjectableMacroArgs { interface } = parse_macro_input!(args_stream);
let self_type = &injectable_impl.self_type;
quote! {
syrette::declare_interface!(#self_type -> #interface);
}
} else {
quote! {}
};
quote! {
#expanded_injectable_impl
#maybe_decl_interface
}
.into()
}
/// Makes a type alias usable as a factory interface.
///
/// # Panics
/// If the attributed item is not a type alias.
#[proc_macro_attribute]
pub fn factory(_: TokenStream, type_alias_stream: TokenStream) -> TokenStream
{
let factory_type_alias::FactoryTypeAlias {
type_alias,
factory_interface,
arg_types,
return_type,
} = parse(type_alias_stream).unwrap();
quote! {
#type_alias
syrette::declare_interface!(
syrette::castable_factory::CastableFactory<
#arg_types,
#return_type
> -> #factory_interface
);
syrette::declare_interface!(
syrette::castable_factory::CastableFactory<
#arg_types,
#return_type
> -> syrette::interfaces::any_factory::AnyFactory
);
}
.into()
}
/// Declares the interface trait of a implementation.
///
/// # Arguments
/// {Implementation} -> {Interface}
///
#[proc_macro]
pub fn declare_interface(input: TokenStream) -> TokenStream
{
let DeclareInterfaceArgs {
implementation,
interface,
} = parse_macro_input!(input);
generate_caster(&implementation, &interface).into()
}
|