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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
use proc_macro2::{Literal, Span, TokenStream};
use quote::quote;
use syn::{parenthesized, parse::Parse, Ident, LitInt, Path, Token};

pub fn curve_discovery_impl(token_stream: TokenStream) -> syn::Result<TokenStream> {
    let parsed: CurveParse = syn::parse2(token_stream)?;

    let meta_pools = parsed.make_meta_pools();
    let plain_pools = parsed.make_plain_pools();

    let tokens = quote! {
        #meta_pools
        #plain_pools
    };

    Ok(tokens)
}

struct CurveParse {
    // required for all
    contract_protocol: Ident,
    abi_crate_path:    Path,
    meta_pool_impls:   u8,
    plain_pool_impls:  u8,
    factory_address:   Literal,
}

impl CurveParse {
    fn make_meta_pools(&self) -> TokenStream {
        let full_contract_protocol =
            Ident::new(&format!("{}MetaPool", self.contract_protocol), Span::call_site());
        let path = &self.abi_crate_path;
        let address = &self.factory_address;

        if self.meta_pool_impls == 1 {
            let decoder_name =
                Ident::new(&format!("{}MetaDiscovery", self.contract_protocol), Span::call_site());
            let end_function_call_path = Ident::new("deploy_metapoolCall", Span::call_site());
            let function_call_path = quote!(#path::#end_function_call_path);

            quote! {
                discovery_impl!(
                    #decoder_name,
                    #function_call_path,
                    #address,
                    |
                        deployed_address: Address,
                        trace_index: u64,
                        call: #end_function_call_path,
                        tracer: Arc<T>
                    | {
                        parse_meta_pool(
                            Protocol::#full_contract_protocol,
                            deployed_address,
                            call._base_pool,
                            call._coin,
                            trace_index,
                            tracer
                        )
                    }
                );
            }
        } else {
            let impls = (0..self.meta_pool_impls)
                .map(|i| {
                    let decoder_name = Ident::new(
                        &format!("{}MetaDiscovery{i}", self.contract_protocol),
                        Span::call_site(),
                    );
                    let end_function_call_path =
                        Ident::new(&format!("deploy_metapool_{i}Call"), Span::call_site());
                    let function_call_path = quote!(#path::#end_function_call_path);

                    quote! {
                        discovery_impl!(
                            #decoder_name,
                            #function_call_path,
                            #address,
                            |
                                deployed_address: Address,
                                trace_index: u64,
                                call: #end_function_call_path,
                                tracer: Arc<T>
                            | {
                                parse_meta_pool(
                                    Protocol::#full_contract_protocol,
                                    deployed_address,
                                    call._base_pool,
                                    call._coin,
                                    trace_index,
                                    tracer
                                )
                            }
                        );
                    }
                })
                .collect::<Vec<_>>();

            quote! {
                #(
                    #impls
                )*
            }
        }
    }

    fn make_plain_pools(&self) -> TokenStream {
        let full_contract_protocol =
            Ident::new(&format!("{}PlainPool", self.contract_protocol), Span::call_site());
        let path = &self.abi_crate_path;
        let address = &self.factory_address;

        if self.plain_pool_impls == 1 {
            let decoder_name =
                Ident::new(&format!("{}PlainDiscovery", self.contract_protocol), Span::call_site());
            let end_function_call_path = Ident::new("deploy_plain_poolCall", Span::call_site());
            let function_call_path = quote!(#path::#end_function_call_path);

            quote! {
                discovery_impl!(
                    #decoder_name,
                    #function_call_path,
                    #address,
                    |
                        deployed_address: Address,
                        trace_index: u64,
                        call: #end_function_call_path,
                        _
                    | {
                        parse_plain_pool(
                            Protocol::#full_contract_protocol,
                            deployed_address,
                            trace_index,
                            call._coins
                        )
                    }
                );
            }
        } else {
            let impls = (0..self.plain_pool_impls)
                .map(|i| {
                    let decoder_name = Ident::new(
                        &format!("{}PlainDiscovery{i}", self.contract_protocol),
                        Span::call_site(),
                    );
                    let end_function_call_path =
                        Ident::new(&format!("deploy_plain_pool_{i}Call"), Span::call_site());
                    let function_call_path = quote!(#path::#end_function_call_path);

                    quote! {
                        discovery_impl!(
                            #decoder_name,
                            #function_call_path,
                            #address,
                            |
                                deployed_address: Address,
                                trace_index: u64,
                                call: #end_function_call_path,
                                _
                            | {
                                parse_plain_pool(
                                    Protocol::#full_contract_protocol,
                                    deployed_address,
                                    trace_index,
                                    call._coins
                                )
                            }
                        );
                    }
                })
                .collect::<Vec<_>>();

            quote! {
                #(
                    #impls
                )*
            }
        }
    }
}

impl Parse for CurveParse {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Self> {
        let contract_protocol: Ident = input
            .parse()
            .map_err(|e| syn::Error::new(e.span(), "Failed to parse decoder name"))?;
        input.parse::<Token![,]>()?;

        let abi_crate_path: Path = input
            .parse()
            .map_err(|e| syn::Error::new(e.span(), "Failed to parse path to function call"))?;
        input.parse::<Token![,]>()?;

        let factory_address = input.parse::<Literal>()?;
        input.parse::<Token![,]>()?;

        let content;
        parenthesized!(content in input);

        let meta_pool_impls: u8 = content.parse::<LitInt>()?.to_string().parse().unwrap();
        content.parse::<Token![,]>()?;

        let plain_pool_impls: u8 = content.parse::<LitInt>()?.to_string().parse().unwrap();

        if !input.is_empty() {
            return Err(syn::Error::new(
                input.span(),
                "There should be no values after the call function",
            ));
        }

        Ok(Self {
            contract_protocol,
            abi_crate_path,
            meta_pool_impls,
            plain_pool_impls,
            factory_address,
        })
    }
}

/*

    CurvecrvUSD,
    crate::raw::pools::impls::CurvecrvUSDFactory,
    addr
    (base, meta, plain)




*/