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
use std::fmt;
use std::ops::{Deref, DerefMut};

use crate::{raw, Il2CppObject, Il2CppString, WrapRaw};

/// An il2cpp exception
#[repr(transparent)]
pub struct Il2CppException(raw::Il2CppException);

impl Il2CppException {
    /// Exception message
    pub fn message(&self) -> Option<&Il2CppString> {
        unsafe { Il2CppString::wrap_ptr(self.raw().message) }
    }

    /// Inner exception
    pub fn inner_exception(&self) -> Option<&Self> {
        unsafe { Self::wrap_ptr(self.raw().inner_ex) }
    }

    /// Iterator over the inner exceptions, starting with the exception itself
    pub fn trace(&self) -> Trace<'_> {
        Trace {
            current: Some(self),
        }
    }

    /// Exception source
    pub fn source(&self) -> Option<&Il2CppString> {
        unsafe { Il2CppString::wrap_ptr(self.raw().source) }
    }

    /// Throws the exception
    ///
    /// # Safety
    /// This is implemented as a C++ throw, which is UB when called from Rust.
    /// Therefore this method is UB, and only provided just in case ™️. (in
    /// simpler terms, this method is never safe)
    pub unsafe fn throw(&self) -> ! {
        raw::raise_exception(self.raw())
    }
}

/// Iterator over inner exceptions
#[derive(Debug)]
pub struct Trace<'a> {
    current: Option<&'a Il2CppException>,
}

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

impl<'a> Iterator for Trace<'a> {
    type Item = &'a Il2CppException;

    fn next(&mut self) -> Option<Self::Item> {
        match self.current {
            Some(e) => {
                self.current = e.inner_exception();
                Some(e)
            }
            None => None,
        }
    }
}

impl Deref for Il2CppException {
    type Target = Il2CppObject;

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

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

impl fmt::Display for Il2CppException {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self.message() {
            Some(m) => write!(f, "{}: {}", self.class(), m),
            None => fmt::Display::fmt(self.class(), f),
        }
    }
}

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

impl std::error::Error for Il2CppException {}
impl std::error::Error for &mut Il2CppException {}