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
use crate::{
    descriptors::Desc,
    errors::*,
    objects::{JClass, JMethodID, JStaticMethodID},
    strings::JNIString,
    JNIEnv,
};

unsafe impl<'local, 'other_local, T, U, V> Desc<'local, JMethodID> for (T, U, V)
where
    T: Desc<'local, JClass<'other_local>>,
    U: Into<JNIString>,
    V: Into<JNIString>,
{
    type Output = JMethodID;

    fn lookup(self, env: &mut JNIEnv<'local>) -> Result<Self::Output> {
        env.get_method_id(self.0, self.1, self.2)
    }
}

unsafe impl<'local, 'other_local, T, Signature> Desc<'local, JMethodID> for (T, Signature)
where
    T: Desc<'local, JClass<'other_local>>,
    Signature: Into<JNIString>,
{
    type Output = JMethodID;

    fn lookup(self, env: &mut JNIEnv<'local>) -> Result<Self::Output> {
        Desc::<JMethodID>::lookup((self.0, "<init>", self.1), env)
    }
}

unsafe impl<'local, 'other_local, T, U, V> Desc<'local, JStaticMethodID> for (T, U, V)
where
    T: Desc<'local, JClass<'other_local>>,
    U: Into<JNIString>,
    V: Into<JNIString>,
{
    type Output = JStaticMethodID;

    fn lookup(self, env: &mut JNIEnv<'local>) -> Result<Self::Output> {
        env.get_static_method_id(self.0, self.1, self.2)
    }
}