Skip to content

Commit e8d7afb

Browse files
committed
Fix crash when inspecting a CHRSXP
1 parent e83f36c commit e8d7afb

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

crates/ark/src/variables/variable.rs

+24
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ impl WorkspaceVariableDisplayValue {
9999
CLOSXP => Self::from_closure(value),
100100
ENVSXP => Self::from_env(value),
101101
LANGSXP => Self::from_language(value),
102+
CHARSXP => Self::from_charsxp(value),
102103
_ if r_is_matrix(value) => Self::from_matrix(value)?,
103104
RAWSXP | LGLSXP | INTSXP | REALSXP | STRSXP | CPLXSXP => Self::from_default(value)?,
104105
_ if r_is_s4(value) => Self::from_s4(value)?,
@@ -356,6 +357,10 @@ impl WorkspaceVariableDisplayValue {
356357
Ok(Self::new(display_value, false))
357358
}
358359

360+
fn from_charsxp(_: SEXP) -> Self {
361+
Self::new(String::from("<CHARSXP>"), false)
362+
}
363+
359364
fn from_default(value: SEXP) -> anyhow::Result<Self> {
360365
let formatted = FormattedVector::new(RObject::from(value))?;
361366

@@ -445,6 +450,11 @@ impl WorkspaceVariableDisplayType {
445450
return Self::from_class(value, String::from("S4"));
446451
}
447452

453+
// We can't check attributes of CHARSXP, so we just short-circuit here
454+
if r_typeof(value) == CHARSXP {
455+
return Self::simple(String::from("CHARSXP"));
456+
}
457+
448458
if r_is_simple_vector(value) {
449459
let display_type = match include_length {
450460
true => match r_vec_is_single_dimension_with_single_value(value) {
@@ -2078,4 +2088,18 @@ mod tests {
20782088
assert!(vars[0].display_value.starts_with("<S4 class"),);
20792089
})
20802090
}
2091+
2092+
#[test]
2093+
fn test_charsxp() {
2094+
r_task(|| {
2095+
let env = Environment::new_empty().unwrap();
2096+
let value = harp::parse_eval_base(r#"rlang:::chr_get("foo", 0L)"#).unwrap();
2097+
env.bind("x".into(), &value);
2098+
2099+
let path = vec![];
2100+
let vars = PositronVariable::inspect(env.into(), &path).unwrap();
2101+
assert_eq!(vars.len(), 1);
2102+
assert_eq!(vars[0].display_value, "<CHARSXP>");
2103+
})
2104+
}
20812105
}

crates/harp/src/utils.rs

+5
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,11 @@ pub fn r_is_simple_vector(value: SEXP) -> bool {
158158
///
159159
/// Notably returns `false` for 1D arrays and >=3D arrays.
160160
pub fn r_is_matrix(object: SEXP) -> bool {
161+
// We can't check the `dim` attribute for CHARSXP's
162+
if r_typeof(object) == CHARSXP {
163+
return false;
164+
}
165+
161166
let dim = r_dim(object);
162167

163168
if dim == r_null() {

0 commit comments

Comments
 (0)