-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlogical.rs
440 lines (381 loc) · 13.1 KB
/
logical.rs
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
use savvy_ffi::{R_NaInt, LGLSXP, LOGICAL, SET_LOGICAL_ELT, SEXP};
use super::{impl_common_sexp_ops, impl_common_sexp_ops_owned, utils::assert_len, Sexp};
use crate::protect::{self, local_protect};
/// An external SEXP of a logical vector.
pub struct LogicalSexp(pub SEXP);
/// A newly-created SEXP of a logical vector.
pub struct OwnedLogicalSexp {
inner: SEXP,
token: SEXP,
len: usize,
raw: *mut i32,
}
// implement inner(), len(), empty(), and name()
impl_common_sexp_ops!(LogicalSexp);
impl_common_sexp_ops_owned!(OwnedLogicalSexp);
impl LogicalSexp {
/// Returns the internal representation, **`&[i32]`, not `&[bool]`**. This
/// is an expert-only function which might be found useful when you really
/// need to distinguish NAs.
///
/// # Examples
///
/// ```
/// # use savvy::NotAvailableValue;
/// # let mut lgl_sexp = savvy::OwnedLogicalSexp::try_from_slice([true, false, true])?;
/// # lgl_sexp.set_na(2)?;
/// # let lgl_sexp = lgl_sexp.as_read_only();
/// // `lgl_sexp` is c(TRUE, FALSE, NA).
/// // Note that logical's NA is the same value as integer.
/// assert_eq!(lgl_sexp.as_slice_raw(), &[1, 0, <i32>::na()]);
/// ```
pub fn as_slice_raw(&self) -> &[i32] {
unsafe { std::slice::from_raw_parts(LOGICAL(self.0), self.len()) }
}
/// Returns an iterator over the underlying data of the SEXP.
///
/// # Examples
///
/// ```
/// # let lgl_sexp = savvy::OwnedLogicalSexp::try_from_slice([true, true, false])?.as_read_only();
/// // `lgl_sexp` is c(TRUE, TRUE, FALSE)
/// let mut iter = lgl_sexp.iter();
/// assert_eq!(iter.next(), Some(true));
/// assert_eq!(iter.collect::<Vec<bool>>(), vec![true, false]);
/// ```
pub fn iter(&self) -> LogicalSexpIter {
LogicalSexpIter {
iter_raw: self.as_slice_raw().iter(),
}
}
/// Copies the underlying data of the SEXP into a new `Vec`.
///
/// # Examples
///
/// ```
/// # let lgl_sexp = savvy::OwnedLogicalSexp::try_from_slice([true, true, false])?.as_read_only();
/// // `lgl_sexp` is c(TRUE, TRUE, FALSE)
/// assert_eq!(lgl_sexp.to_vec(), vec![true, true, false]);
/// ```
pub fn to_vec(&self) -> Vec<bool> {
self.iter().collect()
}
}
impl OwnedLogicalSexp {
/// Returns the read-only version of the wrapper. This is mainly for testing
/// purposes.
pub fn as_read_only(&self) -> LogicalSexp {
LogicalSexp(self.inner)
}
/// Returns the internal representation, `&[i32]`, not `&[bool]`. This is an
/// expert-only function which might be found useful when you really need to
/// distinguish NAs.
pub fn as_slice_raw(&self) -> &[i32] {
unsafe { std::slice::from_raw_parts(self.raw, self.len()) }
}
/// Returns an iterator over the underlying data of the SEXP.
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// let lgl_sexp = OwnedLogicalSexp::try_from_slice([true, true, false])?;
/// // `lgl_sexp` is c(TRUE, TRUE, FALSE)
/// let mut iter = lgl_sexp.iter();
/// assert_eq!(iter.next(), Some(true));
/// assert_eq!(iter.collect::<Vec<bool>>(), vec![true, false]);
/// ```
pub fn iter(&self) -> LogicalSexpIter {
LogicalSexpIter {
iter_raw: self.as_slice_raw().iter(),
}
}
/// Copies the underlying data of the SEXP into a new `Vec`.
pub fn to_vec(&self) -> Vec<bool> {
self.iter().collect()
}
/// Set the value of the `i`-th element. `i` starts from `0`.
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// let mut lgl_sexp = OwnedLogicalSexp::new(3)?;
/// lgl_sexp.set_elt(2, true)?;
/// assert_eq!(lgl_sexp.to_vec(), vec![false, false, true]);
/// ```
pub fn set_elt(&mut self, i: usize, v: bool) -> crate::error::Result<()> {
super::utils::assert_len(self.len, i)?;
unsafe { self.set_elt_unchecked(i, v as _) };
Ok(())
}
// Set the value of the `i`-th element.
// Safety: the user has to assure bounds are checked.
#[inline]
unsafe fn set_elt_unchecked(&mut self, i: usize, v: i32) {
unsafe { SET_LOGICAL_ELT(self.inner, i as _, v) };
}
/// Set the `i`-th element to NA. `i` starts from `0`.
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
/// use savvy::NotAvailableValue;
///
/// let mut lgl_sexp = OwnedLogicalSexp::new(3)?;
/// lgl_sexp.set_na(2)?;
/// assert_eq!(lgl_sexp.as_read_only().as_slice_raw(), &[0, 0, <i32>::na()]);
/// ```
pub fn set_na(&mut self, i: usize) -> crate::error::Result<()> {
super::utils::assert_len(self.len, i)?;
unsafe { self.set_elt_unchecked(i, R_NaInt) };
Ok(())
}
fn new_inner(len: usize, init: bool) -> crate::error::Result<Self> {
let inner = crate::alloc_vector(LGLSXP, len as _)?;
// Fill the vector with default values
if init {
unsafe {
std::ptr::write_bytes(LOGICAL(inner), 0, len);
}
}
Self::new_from_raw_sexp(inner, len)
}
/// Constructs a new, initialized logical vector.
///
/// ```
/// let x = savvy::OwnedLogicalSexp::new(3)?;
/// assert_eq!(x.to_vec(), vec![false, false, false]);
/// ```
pub fn new(len: usize) -> crate::error::Result<Self> {
Self::new_inner(len, true)
}
/// Constructs a new, **uninitialized** logical vector.
///
/// This is an expert-only version of `new()`, which can be found useful
/// when you want to skip initialization and you are confident that the
/// vector will be filled with values later.
///
/// For example, you can use this in `TryFrom` implementation.
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// struct Pair {
/// x: bool,
/// y: bool
/// }
///
/// impl TryFrom<Pair> for OwnedLogicalSexp {
/// type Error = savvy::Error;
///
/// fn try_from(value: Pair) -> savvy::Result<Self> {
/// let mut out = unsafe { OwnedLogicalSexp::new_without_init(2)? };
/// out.set_elt(0, value.x)?;
/// out.set_elt(1, value.y)?;
///
/// Ok(out)
/// }
/// }
///
/// let pair = Pair { x: true, y: false };
/// let lgl_sexp = <OwnedLogicalSexp>::try_from(pair)?;
/// assert_eq!(lgl_sexp.to_vec(), vec![true, false]);
/// ```
///
/// # Safety
///
/// As the memory is uninitialized, all elements must be filled values
/// before return.
pub unsafe fn new_without_init(len: usize) -> crate::error::Result<Self> {
Self::new_inner(len, false)
}
fn new_from_raw_sexp(inner: SEXP, len: usize) -> crate::error::Result<Self> {
let token = protect::insert_to_preserved_list(inner);
let raw = unsafe { LOGICAL(inner) };
Ok(Self {
inner,
token,
len,
raw,
})
}
/// Constructs a new logical vector from an iterator.
///
/// Note that, if you already have a slice or vec, you can also use
/// [`try_from_slice`][1].
///
/// [1]: `Self::try_from_slice()`
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// let iter = [true, false, true, false].into_iter().filter(|x| *x);
/// let lgl_sexp = OwnedLogicalSexp::try_from_iter(iter)?;
/// assert_eq!(lgl_sexp.to_vec(), vec![true, true]);
/// ```
pub fn try_from_iter<I>(iter: I) -> crate::error::Result<Self>
where
I: IntoIterator<Item = bool>,
{
let iter = iter.into_iter();
match iter.size_hint() {
(_, Some(upper)) => {
// If the maximum length is known, use it at frist. But, the
// iterator's length might be shorter than the reported one
// (e.g. `(0..10).filter(|x| x % 2 == 0)`), so it needs to be
// truncated to the actual length at last.
let inner = crate::alloc_vector(LGLSXP, upper as _)?;
local_protect(inner);
let raw = unsafe { LOGICAL(inner) };
let mut last_index = 0;
for (i, v) in iter.enumerate() {
// The upper bound of size_hint() is just for optimization
// and what we should not trust.
assert_len(upper, i)?;
unsafe { *(raw.add(i)) = v as _ };
last_index = i;
}
let new_len = last_index + 1;
if new_len == upper {
// If the length is the same as expected, use it as it is.
Self::new_from_raw_sexp(inner, upper)
} else {
// If the length is shorter than expected, re-allocate a new
// SEXP and copy the values into it.
let out = unsafe { Self::new_without_init(new_len)? };
let dst = unsafe { std::slice::from_raw_parts_mut(out.raw, new_len) };
// `raw` is longer than new_len, but the elements over new_len are ignored
let src = unsafe { std::slice::from_raw_parts(raw, new_len) };
dst.copy_from_slice(src);
Ok(out)
}
}
(_, None) => {
// When the length is not known at all, collect() it first.
let v: Vec<I::Item> = iter.collect();
v.try_into()
}
}
}
/// Constructs a new logical vector from a slice or vec.
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// let lgl_sexp = OwnedLogicalSexp::try_from_slice([false, true, true])?;
/// assert_eq!(lgl_sexp.to_vec(), vec![false, true, true]);
/// ```
pub fn try_from_slice<S>(x: S) -> crate::error::Result<Self>
where
S: AsRef<[bool]>,
{
let x_slice = x.as_ref();
let mut out = unsafe { Self::new_without_init(x_slice.len())? };
for (i, v) in x_slice.iter().enumerate() {
// Safety: slice and OwnedLogicalSexp have the same length.
unsafe { out.set_elt_unchecked(i, *v as _) };
}
Ok(out)
}
/// Constructs a new logical vector from a scalar value.
///
/// # Examples
///
/// ```
/// use savvy::OwnedLogicalSexp;
///
/// let lgl_sexp = OwnedLogicalSexp::try_from_scalar(true)?;
/// assert_eq!(lgl_sexp.to_vec(), vec![true]);
/// ```
pub fn try_from_scalar(value: bool) -> crate::error::Result<Self> {
let sexp = unsafe { crate::unwind_protect(|| savvy_ffi::Rf_ScalarLogical(value as i32))? };
Self::new_from_raw_sexp(sexp, 1)
}
}
impl Drop for OwnedLogicalSexp {
fn drop(&mut self) {
protect::release_from_preserved_list(self.token);
}
}
// conversions from/to LogicalSexp ***************
impl TryFrom<Sexp> for LogicalSexp {
type Error = crate::error::Error;
fn try_from(value: Sexp) -> crate::error::Result<Self> {
value.assert_logical()?;
Ok(Self(value.0))
}
}
impl From<LogicalSexp> for Sexp {
fn from(value: LogicalSexp) -> Self {
Self(value.inner())
}
}
impl From<LogicalSexp> for crate::error::Result<Sexp> {
fn from(value: LogicalSexp) -> Self {
Ok(<Sexp>::from(value))
}
}
// conversions from/to OwnedLogicalSexp ***************
impl TryFrom<&[bool]> for OwnedLogicalSexp {
type Error = crate::error::Error;
fn try_from(value: &[bool]) -> crate::error::Result<Self> {
Self::try_from_slice(value)
}
}
impl TryFrom<Vec<bool>> for OwnedLogicalSexp {
type Error = crate::error::Error;
fn try_from(value: Vec<bool>) -> crate::error::Result<Self> {
Self::try_from_slice(value)
}
}
impl TryFrom<bool> for OwnedLogicalSexp {
type Error = crate::error::Error;
fn try_from(value: bool) -> crate::error::Result<Self> {
Self::try_from_scalar(value)
}
}
macro_rules! impl_try_from_rust_reals {
($ty: ty) => {
impl TryFrom<$ty> for Sexp {
type Error = crate::error::Error;
fn try_from(value: $ty) -> crate::error::Result<Self> {
<OwnedLogicalSexp>::try_from(value).map(|x| x.into())
}
}
};
}
impl_try_from_rust_reals!(&[bool]);
impl_try_from_rust_reals!(Vec<bool>);
impl_try_from_rust_reals!(bool);
impl From<OwnedLogicalSexp> for Sexp {
fn from(value: OwnedLogicalSexp) -> Self {
Self(value.inner())
}
}
impl From<OwnedLogicalSexp> for crate::error::Result<Sexp> {
fn from(value: OwnedLogicalSexp) -> Self {
Ok(<Sexp>::from(value))
}
}
// Index for OwnedLogicalSexp ***************
pub struct LogicalSexpIter<'a> {
iter_raw: std::slice::Iter<'a, i32>,
}
impl<'a> Iterator for LogicalSexpIter<'a> {
type Item = bool;
fn next(&mut self) -> Option<Self::Item> {
self.iter_raw.next().map(|x| *x == 1)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter_raw.size_hint()
}
}
impl<'a> ExactSizeIterator for LogicalSexpIter<'a> {}