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
use jni::errors::{Result, Error};
use jni::objects::{JList, JObject, JString, JValue};
use jni::sys::{jboolean, jbooleanArray, jchar, jobject};
use jni::JNIEnv;
use crate::convert::unchecked::{FromJavaValue, IntoJavaValue};
use crate::convert::{JavaValue, Signature};
pub use robusta_codegen::{TryIntoJavaValue, TryFromJavaValue};
pub trait TryIntoJavaValue<'env>: Signature {
type Target: JavaValue<'env>;
const SIG_TYPE: &'static str = <Self as Signature>::SIG_TYPE;
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target>;
}
pub trait TryFromJavaValue<'env: 'borrow, 'borrow>
where
Self: Sized + Signature, {
type Source: JavaValue<'env>;
const SIG_TYPE: &'static str = <Self as Signature>::SIG_TYPE;
fn try_from(s: Self::Source, env: &'borrow JNIEnv<'env>) -> Result<Self>;
}
impl<'env, T> TryIntoJavaValue<'env> for T
where
T: JavaValue<'env> + Signature,
{
type Target = T;
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target> {
Ok(IntoJavaValue::into(self, env))
}
}
impl<'env: 'borrow, 'borrow, T> TryFromJavaValue<'env, 'borrow> for T
where
T: JavaValue<'env> + Signature,
{
type Source = T;
fn try_from(s: Self::Source, env: &'borrow JNIEnv<'env>) -> Result<Self> {
Ok(FromJavaValue::from(s, env))
}
}
impl<'env> TryIntoJavaValue<'env> for String {
type Target = JString<'env>;
const SIG_TYPE: &'static str = "Ljava/lang/String;";
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target> {
env.new_string(self)
}
}
impl<'env: 'borrow, 'borrow> TryFromJavaValue<'env, 'borrow> for String {
type Source = JString<'env>;
fn try_from(s: Self::Source, env: &'borrow JNIEnv<'env>) -> Result<Self> {
env.get_string(s).map(Into::into)
}
}
impl<'env> TryIntoJavaValue<'env> for bool {
type Target = jboolean;
fn try_into(self, _env: &JNIEnv<'env>) -> Result<Self::Target> {
Ok(IntoJavaValue::into(self, _env))
}
}
impl<'env: 'borrow, 'borrow> TryFromJavaValue<'env, 'borrow> for bool {
type Source = jboolean;
fn try_from(s: Self::Source, _env: &JNIEnv<'env>) -> Result<Self> {
Ok(FromJavaValue::from(s, _env))
}
}
impl<'env> TryIntoJavaValue<'env> for char {
type Target = jchar;
fn try_into(self, _env: &JNIEnv<'env>) -> Result<Self::Target> {
Ok(IntoJavaValue::into(self, _env))
}
}
impl<'env: 'borrow, 'borrow> TryFromJavaValue<'env, 'borrow> for char {
type Source = jchar;
fn try_from(s: Self::Source, _env: &JNIEnv<'env>) -> Result<Self> {
let res = std::char::decode_utf16(std::iter::once(s))
.next();
match res {
Some(Ok(c)) => Ok(c),
Some(Err(_)) | None => Err(Error::WrongJValueType("char", "jchar"))
}
}
}
impl Signature for Box<[bool]> {
const SIG_TYPE: &'static str = "[Z";
}
impl<'env> TryIntoJavaValue<'env> for Box<[bool]> {
type Target = jbooleanArray;
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target> {
let len = self.len();
let buf: Vec<_> = self.iter().map(|&b| Into::into(b)).collect();
let raw = env.new_boolean_array(len as i32)?;
env.set_boolean_array_region(raw, 0, &buf)?;
Ok(raw)
}
}
impl<'env: 'borrow, 'borrow> TryFromJavaValue<'env, 'borrow> for Box<[bool]> {
type Source = jbooleanArray;
fn try_from(s: Self::Source, env: &'borrow JNIEnv<'env>) -> Result<Self> {
let len = env.get_array_length(s)?;
let mut buf = Vec::with_capacity(len as usize).into_boxed_slice();
env.get_boolean_array_region(s, 0, &mut *buf)?;
buf.iter()
.map(|&b| TryFromJavaValue::try_from(b, &env))
.collect()
}
}
impl<'env, T> TryIntoJavaValue<'env> for Vec<T>
where
T: TryIntoJavaValue<'env>,
{
type Target = jobject;
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target> {
let obj = env.new_object(
"java/util/ArrayList",
"(I)V",
&[JValue::Int(self.len() as i32)],
)?;
let list = JList::from_env(&env, obj)?;
let _: Result<Vec<_>> = self
.into_iter()
.map::<Result<_>, _>(|el| {
Ok(JavaValue::autobox(
TryIntoJavaValue::try_into(el, &env)?,
&env,
))
})
.map(|el| Ok(list.add(el?)))
.collect();
Ok(list.into_inner())
}
}
impl<'env: 'borrow, 'borrow, T, U> TryFromJavaValue<'env, 'borrow> for Vec<T>
where
T: TryFromJavaValue<'env, 'borrow, Source = U>,
U: JavaValue<'env>,
{
type Source = JObject<'env>;
fn try_from(s: Self::Source, env: &'borrow JNIEnv<'env>) -> Result<Self> {
let list = JList::from_env(env, s)?;
list.iter()?
.map(|el| T::try_from(U::unbox(el, env), env))
.collect()
}
}
impl<'env, T> TryIntoJavaValue<'env> for jni::errors::Result<T>
where
T: TryIntoJavaValue<'env>
{
type Target = <T as TryIntoJavaValue<'env>>::Target;
fn try_into(self, env: &JNIEnv<'env>) -> Result<Self::Target> {
self.and_then(|s| TryIntoJavaValue::try_into(s, env))
}
}