-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstring.rs
431 lines (371 loc) · 12.9 KB
/
string.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
use std::ffi::CStr;
use savvy_ffi::{R_NaString, Rf_xlength, R_CHAR, SET_STRING_ELT, SEXP, STRING_ELT, STRSXP};
use super::na::NotAvailableValue;
use super::utils::{assert_len, str_to_charsxp};
use super::{impl_common_sexp_ops, impl_common_sexp_ops_owned, Sexp};
use crate::protect::{self, local_protect};
/// An external SEXP of a character vector.
pub struct StringSexp(pub SEXP);
/// A newly-created SEXP of a character vector.
pub struct OwnedStringSexp {
inner: SEXP,
token: SEXP,
len: usize,
}
// implement inner(), len(), empty(), and name()
impl_common_sexp_ops!(StringSexp);
impl_common_sexp_ops_owned!(OwnedStringSexp);
impl StringSexp {
/// Returns an iterator over the underlying data of the SEXP.
///
/// # Examples
///
/// ```
/// # let str_sexp = savvy::OwnedStringSexp::try_from_slice(["a", "b", "c"])?.as_read_only();
/// // `str_sexp` is c("a", "b", "c")
/// let mut iter = str_sexp.iter();
/// assert_eq!(iter.next(), Some("a"));
/// assert_eq!(iter.collect::<Vec<&str>>(), vec!["b", "c"]);
/// ```
pub fn iter(&self) -> StringSexpIter {
StringSexpIter {
sexp: &self.0,
i: 0,
len: self.len(),
}
}
/// Copies the underlying data of the SEXP into a new `Vec`.
///
/// # Examples
///
/// ```
/// # let str_sexp = savvy::OwnedStringSexp::try_from_slice(["a", "b", "c"])?.as_read_only();
/// // `str_sexp` is c("a", "b", "c")
/// assert_eq!(str_sexp.to_vec(), vec!["a", "b", "c"]);
/// ```
pub fn to_vec(&self) -> Vec<&'static str> {
self.iter().collect()
}
}
impl OwnedStringSexp {
/// Returns the read-only version of the wrapper. This is mainly for testing
/// purposes.
pub fn as_read_only(&self) -> StringSexp {
StringSexp(self.inner)
}
/// Returns an iterator over the underlying data of the SEXP.
///
/// # Examples
///
/// ```
/// use savvy::OwnedStringSexp;
///
/// let str_sexp = OwnedStringSexp::try_from_slice(["a", "b", "c"])?;
/// let mut iter = str_sexp.iter();
/// assert_eq!(iter.next(), Some("a"));
/// assert_eq!(iter.collect::<Vec<&str>>(), vec!["b", "c"]);
/// ```
pub fn iter(&self) -> StringSexpIter {
StringSexpIter {
sexp: &self.inner,
i: 0,
len: self.len,
}
}
/// Copies the underlying data of the SEXP into a new `Vec`.
pub fn to_vec(&self) -> Vec<&'static str> {
self.iter().collect()
}
/// Set the value of the `i`-th element. `i` starts from `0`.
///
/// # Examples
///
/// ```
/// use savvy::OwnedStringSexp;
///
/// let mut str_sexp = OwnedStringSexp::new(3)?;
/// str_sexp.set_elt(2, "foo")?;
/// assert_eq!(str_sexp.to_vec(), &["", "", "foo"]);
/// ```
pub fn set_elt(&mut self, i: usize, v: &str) -> crate::error::Result<()> {
assert_len(self.len, i)?;
unsafe { self.set_elt_unchecked(i, str_to_charsxp(v)?) };
Ok(())
}
// Set the value of the `i`-th element.
// Safety: the user has to assure bounds are checked.
#[inline]
pub(crate) unsafe fn set_elt_unchecked(&mut self, i: usize, v: SEXP) {
unsafe { SET_STRING_ELT(self.inner, i as _, v) };
}
/// Set the `i`-th element to NA. `i` starts from `0`.
///
/// # Examples
///
/// ```
/// use savvy::OwnedStringSexp;
/// use savvy::NotAvailableValue;
///
/// let mut str_sexp = OwnedStringSexp::new(3)?;
/// str_sexp.set_na(2)?;
/// assert_eq!(str_sexp.to_vec(), vec!["", "", <&str>::na()]);
/// ```
pub fn set_na(&mut self, i: usize) -> crate::error::Result<()> {
assert_len(self.len, i)?;
unsafe { self.set_elt_unchecked(i, R_NaString) };
Ok(())
}
/// Constructs a new string vector.
///
/// ```
/// let x = savvy::OwnedStringSexp::new(3)?;
/// assert_eq!(x.to_vec(), vec!["", "", ""]);
/// ```
pub fn new(len: usize) -> crate::error::Result<Self> {
let inner = crate::alloc_vector(STRSXP, len as _)?;
Self::new_from_raw_sexp(inner, len)
}
fn new_from_raw_sexp(inner: SEXP, len: usize) -> crate::error::Result<Self> {
let token = protect::insert_to_preserved_list(inner);
// Note: `R_allocVector()` initializes character vectors, so we don't
// need to do it by ourselves. R-exts (5.9.2 Allocating storage) says:
//
// > One distinction is that whereas the R functions always initialize
// > the elements of the vector, allocVector only does so for lists,
// > expressions and character vectors (the cases where the elements
// > are themselves R objects).
Ok(Self { inner, token, len })
}
/// Constructs a new real 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::OwnedStringSexp;
///
/// let iter = ["foo", "❤", "bar"].into_iter().filter(|x| x.is_ascii());
/// let str_sexp = OwnedStringSexp::try_from_iter(iter)?;
/// assert_eq!(str_sexp.to_vec(), vec!["foo", "bar"]);
/// ```
pub fn try_from_iter<I, U>(iter: I) -> crate::error::Result<Self>
where
I: IntoIterator<Item = U>,
U: AsRef<str>,
{
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(STRSXP, upper as _)?;
local_protect(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 { SET_STRING_ELT(inner, i as _, str_to_charsxp(v.as_ref())?) };
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 mut out = Self::new(new_len)?;
for i in 0..new_len {
unsafe { out.set_elt_unchecked(i, STRING_ELT(inner, i as _)) };
}
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 string vector from a slice or vec.
///
/// # Examples
///
/// ```
/// use savvy::OwnedStringSexp;
///
/// let str_sexp = OwnedStringSexp::try_from_slice(["foo", "❤", "bar"])?;
/// assert_eq!(str_sexp.to_vec(), vec!["foo", "❤", "bar"]);
/// ```
pub fn try_from_slice<S, U>(x: S) -> crate::error::Result<Self>
where
S: AsRef<[U]>,
U: AsRef<str>,
{
let x_slice = x.as_ref();
let mut out = Self::new(x_slice.len())?;
for (i, v) in x_slice.iter().enumerate() {
// Safety: slice and OwnedStringSexp have the same length.
unsafe { out.set_elt_unchecked(i, str_to_charsxp(v.as_ref())?) };
}
Ok(out)
}
/// Constructs a new string vector from a scalar value.
///
/// # Examples
///
/// ```
/// use savvy::OwnedStringSexp;
///
/// let str_sexp = OwnedStringSexp::try_from_scalar("❤")?;
/// assert_eq!(str_sexp.to_vec(), vec!["❤"]);
/// ```
pub fn try_from_scalar<T: AsRef<str>>(value: T) -> crate::error::Result<Self> {
let sexp = unsafe {
// Note: unlike `new()`, this allocates a STRSXP after creating a
// CHARSXP. So, the `CHARSXP` needs to be protected.
let charsxp = str_to_charsxp(value.as_ref())?;
local_protect(charsxp);
crate::unwind_protect(|| savvy_ffi::Rf_ScalarString(charsxp))?
};
Self::new_from_raw_sexp(sexp, 1)
}
}
impl Drop for OwnedStringSexp {
fn drop(&mut self) {
protect::release_from_preserved_list(self.token);
}
}
// conversions from/to StringSexp ***************
impl TryFrom<Sexp> for StringSexp {
type Error = crate::error::Error;
fn try_from(value: Sexp) -> crate::error::Result<Self> {
value.assert_string()?;
Ok(Self(value.0))
}
}
impl From<StringSexp> for Sexp {
fn from(value: StringSexp) -> Self {
Self(value.inner())
}
}
impl From<StringSexp> for crate::error::Result<Sexp> {
fn from(value: StringSexp) -> Self {
Ok(<Sexp>::from(value))
}
}
// conversions from/to StringSexp ***************
impl<T> TryFrom<&[T]> for OwnedStringSexp
where
T: AsRef<str>, // This works both for &str and String
{
type Error = crate::error::Error;
fn try_from(value: &[T]) -> crate::error::Result<Self> {
Self::try_from_slice(value)
}
}
impl<T> TryFrom<Vec<T>> for OwnedStringSexp
where
T: AsRef<str>, // This works both for &str and String
{
type Error = crate::error::Error;
fn try_from(value: Vec<T>) -> crate::error::Result<Self> {
Self::try_from_slice(value)
}
}
impl TryFrom<&str> for OwnedStringSexp {
type Error = crate::error::Error;
fn try_from(value: &str) -> crate::error::Result<Self> {
Self::try_from_scalar(value)
}
}
impl TryFrom<String> for OwnedStringSexp {
type Error = crate::error::Error;
fn try_from(value: String) -> crate::error::Result<Self> {
Self::try_from_scalar(value)
}
}
impl From<OwnedStringSexp> for Sexp {
fn from(value: OwnedStringSexp) -> Self {
Self(value.inner())
}
}
impl From<OwnedStringSexp> for crate::error::Result<Sexp> {
fn from(value: OwnedStringSexp) -> Self {
Ok(<Sexp>::from(value))
}
}
macro_rules! impl_try_from_rust_strings {
($ty: ty) => {
impl TryFrom<$ty> for Sexp {
type Error = crate::error::Error;
fn try_from(value: $ty) -> crate::error::Result<Self> {
<OwnedStringSexp>::try_from(value).map(|x| x.into())
}
}
};
}
impl_try_from_rust_strings!(&[&str]);
impl_try_from_rust_strings!(&[String]);
impl_try_from_rust_strings!(Vec<&str>);
impl_try_from_rust_strings!(Vec<String>);
impl_try_from_rust_strings!(&str);
impl_try_from_rust_strings!(String);
// Iterator for StringSexp ***************
pub struct StringSexpIter<'a> {
pub sexp: &'a SEXP,
i: usize,
len: usize,
}
impl<'a> Iterator for StringSexpIter<'a> {
// The lifetime here is 'static, not 'a, in the assumption that strings in
// `R_StringHash`, the global `CHARSXP` cache, won't be deleted during the R
// session.
//
// Note that, in order to stick with 'static lifetime, I can't use
// `Rf_translateCharUTF8()` here because it doesn't use `R_StringHash` and
// allocates the string on R's side, which means it's not guaranteed to stay
// during the whole R session.
//
// cf.)
// - https://cran.r-project.org/doc/manuals/r-devel/R-ints.html#The-CHARSXP-cache
// - https://github.com/wch/r-source/blob/023ada039c86bf9b65983a71110c586b5994e18d/src/main/sysutils.c#L1284-L1296
type Item = &'static str;
fn next(&mut self) -> Option<Self::Item> {
let i = self.i;
self.i += 1;
if i >= self.len {
return None;
}
unsafe {
let e = STRING_ELT(*self.sexp, i as _);
// Because `None` means the end of the iterator, we cannot return
// `None` even for missing values.
if e == savvy_ffi::R_NaString {
return Some(Self::Item::na());
}
// I bravely assume all strings are valid UTF-8 and don't use
// `Rf_translateCharUTF8()`!
let ptr = R_CHAR(e) as *const u8;
let e_utf8 = std::slice::from_raw_parts(ptr, Rf_xlength(e) as usize + 1); // +1 for NUL
// Use CStr to check the UTF-8 validity.
Some(
CStr::from_bytes_with_nul_unchecked(e_utf8)
.to_str()
.unwrap_or_default(),
)
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
}
impl<'a> ExactSizeIterator for StringSexpIter<'a> {}