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
use std::borrow::Cow;
use std::ffi::{c_void, CStr};
use std::mem::transmute;
use std::ops::{Deref, DerefMut};
use std::{fmt, slice};

use crate::raw::{METHOD_ATTRIBUTE_ABSTRACT, METHOD_ATTRIBUTE_STATIC, METHOD_ATTRIBUTE_VIRTUAL};
use crate::{
    raw, Arguments, Il2CppClass, Il2CppException, Il2CppObject, Il2CppType, ParameterInfo,
    Returned, ThisArgument, WrapRaw,
};

#[cfg(feature = "unity2019")]
type ParameterInfoSlice<'a> = &'a [ParameterInfo];
#[cfg(feature = "unity2018")]
type ParameterInfoSlice<'a> = &'a [&'static ParameterInfo];

/// Information about a C# method
#[repr(transparent)]
pub struct MethodInfo(raw::MethodInfo);

unsafe impl Send for MethodInfo {}
unsafe impl Sync for MethodInfo {}

impl MethodInfo {
    /// Invoke this method, type checking against its signature with the
    /// provided instance, arguments and return type
    pub fn invoke<T, A, R, const N: usize>(
        &self,
        this: T,
        args: A,
    ) -> Result<R, &mut Il2CppException>
    where
        T: ThisArgument,
        A: Arguments<N>,
        R: Returned,
    {
        assert!(T::matches(self));
        assert!(A::matches(self));
        assert!(R::matches(self.return_ty()));

        unsafe { self.invoke_unchecked(this, args) }
    }

    /// Invoke this method with the given instance and arguments and converting
    /// the result to the specified type, without type checking
    ///
    /// # Safety
    /// To be safe, the provided types have to match the method signature
    pub unsafe fn invoke_unchecked<T, A, R, const N: usize>(
        &self,
        mut this: T,
        mut args: A,
    ) -> Result<R, &mut Il2CppException>
    where
        T: ThisArgument,
        A: Arguments<N>,
        R: Returned,
    {
        match self.invoke_raw(this.invokable(), args.invokable().as_mut()) {
            Ok(r) => Ok(R::from_object(transmute(r))),
            Err(e) => Err(Il2CppException::wrap_mut(e)),
        }
    }

    /// Invokes this method with the given raw instance and arguments, without
    /// performing any checks
    ///
    /// # Safety
    /// To be safe, the provided instance and arguments have to match the method
    /// signature
    pub unsafe fn invoke_raw<'ok, 'err>(
        &self,
        this: *mut c_void,
        args: &mut [*mut c_void],
    ) -> Result<Option<&'ok mut raw::Il2CppObject>, &'err mut raw::Il2CppException> {
        let mut exception = None;
        let r = raw::runtime_invoke(self.raw(), this, args.as_mut_ptr(), &mut exception);
        match exception {
            None => Ok(r),
            Some(e) => Err(e),
        }
    }

    /// [`Il2CppReflectionMethod`] which represents the method
    pub fn reflection_object(&self) -> &Il2CppReflectionMethod {
        unsafe { Il2CppReflectionMethod::wrap_mut(raw::method_get_object(self.raw(), None)) }
    }

    /// Name of the method
    pub fn name(&self) -> Cow<'_, str> {
        let name = self.raw().name;
        assert!(!name.is_null());
        unsafe { CStr::from_ptr(name) }.to_string_lossy()
    }

    /// Class the method is from
    pub fn class(&self) -> &Il2CppClass {
        unsafe { Il2CppClass::wrap_ptr(self.raw().klass) }.unwrap()
    }

    /// Return type of the method
    pub fn return_ty(&self) -> &Il2CppType {
        unsafe { Il2CppType::wrap_ptr(self.raw().return_type).unwrap() }
    }

    /// Parameters the method takes
    pub fn parameters(&self) -> ParameterInfoSlice<'_> {
        let parameters = self.raw().parameters;
        if !parameters.is_null() {
            unsafe { slice::from_raw_parts(parameters.cast(), self.raw().parameters_count as _) }
        } else {
            &[]
        }
    }

    /// Whether the method is static
    pub fn is_static(&self) -> bool {
        self.raw().flags as u32 & METHOD_ATTRIBUTE_STATIC != 0
    }

    /// Whether the method is abstract
    pub fn is_abstract(&self) -> bool {
        self.raw().flags as u32 & METHOD_ATTRIBUTE_ABSTRACT != 0
    }

    /// Whether the method is virtual
    pub fn is_virtual(&self) -> bool {
        self.raw().flags as u32 & METHOD_ATTRIBUTE_VIRTUAL != 0
    }

    /// Whether the method is generic
    pub fn is_generic(&self) -> bool {
        unsafe { raw::method_is_generic(self.raw()) }
    }
}

unsafe impl WrapRaw for MethodInfo {
    type Raw = raw::MethodInfo;
}

impl fmt::Debug for MethodInfo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("MethodInfo")
            .field("class", self.class())
            .field("name", &self.name())
            .field("parameters", &self.parameters())
            .field("static", &self.is_static())
            .field("abstract", &self.is_abstract())
            .field("virtual", &self.is_virtual())
            .finish()
    }
}

impl fmt::Display for MethodInfo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let params = self.parameters();

        if self.is_static() {
            f.write_str("static ")?;
        }
        if self.is_abstract() {
            f.write_str("abstract ")?;
        }
        if self.is_virtual() {
            f.write_str("virtual ")?;
        }

        if params.is_empty() {
            write!(f, "{} {}()", self.return_ty(), self.name())
        } else {
            let n = params.len() - 1;

            write!(f, "{} {}(", self.return_ty(), self.name())?;
            for p in &params[..n] {
                write!(f, "{}, ", p)?;
            }
            write!(f, "{})", params[n])
        }
    }
}

/// Object used for reflection of methods
pub struct Il2CppReflectionMethod(raw::Il2CppReflectionMethod);

impl Il2CppReflectionMethod {
    /// [`MethodInfo`] which this object represents
    pub fn method_info(&self) -> &MethodInfo {
        unsafe { MethodInfo::wrap(raw::method_get_from_reflection(self.raw())) }
    }
}

impl Deref for Il2CppReflectionMethod {
    type Target = Il2CppObject;

    fn deref(&self) -> &Self::Target {
        unsafe { Il2CppObject::wrap(&self.raw().object) }
    }
}

impl DerefMut for Il2CppReflectionMethod {
    fn deref_mut(&mut self) -> &mut Self::Target {
        unsafe { Il2CppObject::wrap_mut(&mut self.raw_mut().object) }
    }
}

impl fmt::Debug for Il2CppReflectionMethod {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Il2CppReflectionMethod")
            .field("method_info", self.method_info())
            .finish()
    }
}

unsafe impl WrapRaw for Il2CppReflectionMethod {
    type Raw = raw::Il2CppReflectionMethod;
}