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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
use proc_macro::TokenStream;
use proc_macro2::{Span, TokenStream as TokenStream2};
use quote::quote;
use syn::parse::{Parse, ParseStream};
use syn::punctuated::Punctuated;
use syn::token::Brace;
use syn::{
    AngleBracketedGenericArguments, Block, Error, GenericArgument, Ident, LitStr, Path,
    PathArguments, Result, Token, Type, TypeGroup, TypeParen, TypePath,
};

pub struct Input {
    path: Path,
    ty: Type,
    namespace: String,
    class: String,
    rust_generics: Vec<Type>,
    cs_generics: Vec<Type>,
    class_getter: Option<Block>,
}

enum NamespaceAndClass {
    Ident(Punctuated<Ident, Token![.]>),
    Literal { namespace: LitStr, class: LitStr },
}

impl Parse for Input {
    fn parse(input: ParseStream<'_>) -> Result<Self> {
        input.parse::<Token![in]>()?;
        let path = input.parse()?;
        input.parse::<Token![for]>()?;

        let mut ty = input.parse()?;

        input.parse::<Token![=>]>()?;

        let namespace_and_class = if input.peek(Ident) {
            NamespaceAndClass::Ident(Punctuated::parse_separated_nonempty(input)?)
        } else {
            let namespace = input.parse()?;
            input.parse::<Token![.]>()?;
            let class = input.parse()?;
            NamespaceAndClass::Literal { namespace, class }
        };

        let generics: Option<AngleBracketedGenericArguments> = if input.peek(Token![<]) {
            Some(input.parse()?)
        } else {
            None
        };

        let class_getter = if input.peek(Brace) {
            Some(input.parse()?)
        } else {
            None
        };

        let rust_generics = extract_generics(&mut ty)
            .map(collect_generics)
            .transpose()?
            .unwrap_or_default();
        let cs_generics = generics
            .map(collect_generics)
            .transpose()?
            .unwrap_or_default();

        if rust_generics.len() != cs_generics.len() {
            return Err(Error::new(
                Span::call_site(),
                "mismatched Rust and C# generics",
            ));
        }

        if let Some(g) = cs_generics.iter().find(|g| !rust_generics.contains(g)) {
            return Err(Error::new_spanned(g, "mismatched Rust and C# generics"));
        }

        let (namespace, class) = match namespace_and_class {
            NamespaceAndClass::Ident(punctuated) => {
                let namespace_and_class: Vec<Ident> = punctuated.into_iter().collect();
                let (class, namespace) = namespace_and_class
                    .split_last()
                    .ok_or_else(|| Error::new(Span::call_site(), "no C# class specified"))?;
                let namespace = namespace
                    .iter()
                    .map(Ident::to_string)
                    .collect::<Vec<_>>()
                    .join(".");
                let class = match cs_generics.len() {
                    0 => class.to_string(),
                    n => format!("{}`{}", class, n),
                };
                (namespace, class)
            }
            NamespaceAndClass::Literal { namespace, class } => (namespace.value(), class.value()),
        };

        Ok(Self {
            path,
            ty,
            namespace,
            class,
            rust_generics,
            cs_generics,
            class_getter,
        })
    }
}

#[derive(Clone, Copy)]
pub enum Semantics {
    Reference,
    Value,
}

pub fn expand(input: &Input, semantics: Semantics) -> TokenStream {
    let header = input.impl_header();

    let held = match semantics {
        Semantics::Reference => quote! {
            type Held<'a> = ::std::option::Option<&'a mut Self>;
            type HeldRaw = *mut Self;
        },
        Semantics::Value => quote! {
            type Held<'a> = Self;
            type HeldRaw = Self;
        },
    };

    let namespace_and_class = input.namespace_and_class();
    let class_getter = input.class_getter();

    let match_fns = match semantics {
        Semantics::Reference => input.reference_match_fns(),
        Semantics::Value => input.value_match_fns(),
    };

    let extras = match semantics {
        Semantics::Reference => None,
        Semantics::Value => Some(input.value_extras()),
    };

    TokenStream::from(quote! {
        #header {
            #held
            #namespace_and_class
            #class_getter
            #match_fns
        }
        #extras
    })
}

impl Input {
    fn type_trait(&self) -> TokenStream2 {
        let path = &self.path;
        quote!(#path :: Type)
    }

    fn class_ty(&self) -> TokenStream2 {
        let path = &self.path;
        quote!(#path :: Il2CppClass)
    }

    fn type_ty(&self) -> TokenStream2 {
        let path = &self.path;
        quote!(#path :: Il2CppType)
    }

    fn impl_header(&self) -> TokenStream2 {
        let type_trait = self.type_trait();
        let ty = &self.ty;
        let generics = &self.rust_generics;
        quote!(unsafe impl<#(#generics: #type_trait),*> #type_trait for #ty<#(#generics),*>)
    }

    fn namespace_and_class(&self) -> TokenStream2 {
        let namespace = &self.namespace;
        let class = &self.class;
        quote! {
            const NAMESPACE: &'static str = #namespace;
            const CLASS_NAME: &'static str = #class;
        }
    }

    fn class_getter(&self) -> Option<TokenStream2> {
        let class_ty = self.class_ty();

        if let Some(getter) = &self.class_getter {
            return Some(quote! {
                fn class() -> &'static #class_ty #getter
            });
        }

        if self.cs_generics.is_empty() {
            return None;
        }

        let namespace = &self.namespace;
        let class = &self.class;
        let generics = &self.cs_generics;

        Some(quote! {
            fn class() -> &'static #class_ty {
                static CLASS: ::std::sync::OnceLock<&'static #class_ty> = ::std::sync::OnceLock::new();
                CLASS.get_or_init(|| {
                    #class_ty::find(#namespace, #class).unwrap()
                        .make_generic::<(#(#generics),*)>()
                        .unwrap()
                        .unwrap()
                })
            }
        })
    }

    fn reference_match_fns(&self) -> TokenStream2 {
        let type_trait = self.type_trait();
        let type_ty = self.type_ty();

        quote! {
            fn matches_reference_argument(ty: &#type_ty) -> bool {
                ty.class().is_assignable_from(<Self as #type_trait>::class())
            }
            fn matches_value_argument(_: &#type_ty) -> bool {
                false
            }
            fn matches_reference_parameter(ty: &#type_ty) -> bool {
                <Self as #type_trait>::class().is_assignable_from(ty.class())
            }
            fn matches_value_parameter(_: &#type_ty) -> bool {
                false
            }
        }
    }

    fn value_match_fns(&self) -> TokenStream2 {
        let type_trait = self.type_trait();
        let type_ty = self.type_ty();

        quote! {
            fn matches_value_argument(ty: &#type_ty) -> bool {
                !ty.is_ref() && ty.class().is_assignable_from(<Self as #type_trait>::class())
            }
            fn matches_reference_argument(ty: &#type_ty) -> bool {
                ty.is_ref() && ty.class().is_assignable_from(<Self as #type_trait>::class())
            }
            fn matches_value_parameter(ty: &#type_ty) -> bool {
                !ty.is_ref() && <Self as #type_trait>::class().is_assignable_from(ty.class())
            }
            fn matches_reference_parameter(ty: &#type_ty) -> bool {
                ty.is_ref() && <Self as #type_trait>::class().is_assignable_from(ty.class())
            }
        }
    }

    fn value_extras(&self) -> TokenStream2 {
        let ty = &self.ty;
        let type_trait = self.type_trait();
        let generics = &self.rust_generics;
        let path = &self.path;

        let impl_ = quote!(impl<#(#generics: #type_trait),*>);
        let type_ = quote!(#ty<#(#generics),*>);

        quote! {
            unsafe #impl_ #path::Argument for #type_ {
                type Type = Self;

                fn matches(ty: &#path::Il2CppType) -> bool {
                    <Self as #type_trait>::matches_value_argument(ty)
                }

                fn invokable(&mut self) -> *mut ::std::ffi::c_void {
                    self as *mut Self as *mut ::std::ffi::c_void
                }
            }

            unsafe #impl_ #path::Parameter for #type_ {
                type Actual = Self;

                fn matches(ty: &#path::Il2CppType) -> bool {
                    <Self as #type_trait>::matches_value_parameter(ty)
                }

                fn from_actual(actual: Self::Actual) -> Self {
                    actual
                }
                fn into_actual(self) -> Self::Actual {
                    self
                }
            }

            unsafe #impl_ #path::Returned for #type_ {
                type Type = Self;

                fn matches(ty: &#path::Il2CppType) -> bool {
                    <Self as #type_trait>::matches_returned(ty)
                }

                fn from_object(object: Option<&mut #path::Il2CppObject>) -> Self {
                    unsafe { #path::raw::unbox(#path::WrapRaw::raw(object.unwrap())) }
                }
            }

            unsafe #impl_ #path::Return for #type_ {
                type Actual = Self;

                fn matches(ty: &#path::Il2CppType) -> bool {
                    <Self as #type_trait>::matches_return(ty)
                }

                fn into_actual(self) -> Self::Actual {
                    self
                }
                fn from_actual(actual: Self::Actual) -> Self {
                    actual
                }
            }
        }
    }
}

fn extract_generics(ty: &mut Type) -> Option<AngleBracketedGenericArguments> {
    match ty {
        Type::Path(TypePath {
            path: Path { segments, .. },
            ..
        }) => segments.last_mut().and_then(|ps| match &mut ps.arguments {
            PathArguments::AngleBracketed(args) => {
                let args = args.clone();
                ps.arguments = PathArguments::None;
                Some(args)
            }
            _ => None,
        }),
        Type::Group(TypeGroup { box elem, .. }) | Type::Paren(TypeParen { box elem, .. }) => {
            extract_generics(elem)
        }
        _ => None,
    }
}

fn collect_generics(generics: AngleBracketedGenericArguments) -> Result<Vec<Type>> {
    let mut g = Vec::new();
    for param in generics.args {
        match param {
            GenericArgument::Type(t) => g.push(t),
            _ => return Err(Error::new_spanned(param, "unsupported generic parameter")),
        }
    }
    Ok(g)
}