artichoke_backend/extn/core/matchdata/trampoline.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
use crate::convert::implicitly_convert_to_int;
use crate::extn::core::array::Array;
use crate::extn::core::matchdata::{Capture, CaptureAt, CaptureExtract, MatchData};
use crate::extn::core::regexp::Regexp;
use crate::extn::core::string::String;
use crate::extn::core::symbol::Symbol;
use crate::extn::prelude::*;
use crate::sys::protect;
pub fn begin(interp: &mut Artichoke, mut value: Value, mut at: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let capture = match interp.try_convert_mut(&mut at)? {
CaptureExtract::GroupIndex(idx) => Capture::GroupIndex(idx),
CaptureExtract::GroupName(name) => Capture::GroupName(name),
CaptureExtract::Symbol(symbol) => Capture::GroupName(symbol.bytes(interp)),
};
let begin = data.begin(capture)?;
match begin.map(i64::try_from) {
Some(Ok(begin)) => Ok(interp.convert(begin)),
Some(Err(_)) => Err(ArgumentError::with_message("input string too long").into()),
None => Ok(Value::nil()),
}
}
pub fn captures(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
if let Some(captures) = data.captures()? {
interp.try_convert_mut(captures)
} else {
Ok(Value::nil())
}
}
pub fn element_reference(
interp: &mut Artichoke,
mut value: Value,
mut elem: Value,
len: Option<Value>,
) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
// ```
// [3.1.2] > class X; def to_str; "x"; end; end
// => :to_str
// [3.1.2] > class Y; def to_int; 1; end; end
// => :to_int
// [3.1.2] > m = /(?<x>abc) ./.match("abc xyz")
// => #<MatchData "abc x" x:"abc">
// [3.1.2] > m["x", 1]
// (irb):23:in `[]': no implicit conversion of String into Integer (TypeError)
// from (irb):23:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// [3.1.2] > m[1, 1]
// => ["abc"]
// [3.1.2] > m[1, -1]
// => nil
// [3.1.2] > m[X.new, X.new]
// (irb):26:in `[]': no implicit conversion of X into Integer (TypeError)
// from (irb):26:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// [3.1.2] > m[Y.new, Y.new]
// => ["abc"]
// ```
if let Some(len) = len {
let start = implicitly_convert_to_int(interp, elem)?;
let len = implicitly_convert_to_int(interp, len)?;
let at = CaptureAt::StartLen(start, len);
let matched = data.capture_at(at)?;
return interp.try_convert_mut(matched);
}
// ```
// [3.1.2] > m = /(?<x>abc) ./.match("abc xyz")
// => #<MatchData "abc x" x:"abc">
// [3.1.2] > m[:x]
// => "abc"
// [3.1.2] > m[:y]
// (irb):29:in `[]': undefined group name reference: y (IndexError)
// from (irb):29:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// ```
if let Ok(symbol) = unsafe { Symbol::unbox_from_value(&mut elem, interp) } {
let at = CaptureAt::GroupName(symbol.bytes(interp));
let matched = data.capture_at(at)?;
return interp.try_convert_mut(matched);
}
// ```
// [3.1.2] > class X; def to_str; "x"; end; end
// => :to_str
// [3.1.2] > m = /(?<x>abc) ./.match("abc xyz")
// => #<MatchData "abc x" x:"abc">
// [3.1.2] > m['x']
// => "abc"
// [3.1.2] > m['y']
// (irb):12:in `[]': undefined group name reference: y (IndexError)
// from (irb):12:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// [3.1.2] > m[1..2]
// => ["abc"]
// [3.1.2] > m[0..2]
// => ["abc x", "abc"]
// [3.1.2] > m[0..-1]
// => ["abc x", "abc"]
// [3.1.2] > m[X.new]
// (irb):17:in `[]': no implicit conversion of X into Integer (TypeError)
// from (irb):17:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// ```
if let Ok(string) = unsafe { String::unbox_from_value(&mut elem, interp) } {
let at = CaptureAt::GroupName(string.as_slice());
let matched = data.capture_at(at)?;
return interp.try_convert_mut(matched);
}
// NOTE(lopopolo): Encapsulation is broken here by reaching into the
// inner regexp.
let captures_len = data.regexp.inner().captures_len(None)?;
let rangelen = i64::try_from(captures_len).map_err(|_| ArgumentError::with_message("input string too long"))?;
let at = match elem.is_range(interp, rangelen)? {
// ```
// [3.1.2] > class X; def to_str; "x"; end; end
// => :to_str
// [3.1.2] > class Y; def to_int; 1; end; end
// => :to_int
// [3.1.2] > m = /(?<x>abc) ./.match("abc xyz")
// => #<MatchData "abc x" x:"abc">
// [3.1.2] > m[0]
// => "abc x"
// [3.1.2] > m[1]
// => "abc"
// [3.1.2] > m[2]
// => nil
// [3.1.2] > m[-1]
// => "abc"
// [3.1.2] > m[-2]
// => nil
// [3.1.2] > m[X.new]
// (irb):17:in `[]': no implicit conversion of X into Integer (TypeError)
// from (irb):17:in `<main>'
// from /usr/local/var/rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `load'
// from /usr/local/var/rbenv/versions/3.1.2/bin/irb:25:in `<main>'
// [3.1.2] > m[Y.new]
// => "abc"
// ```
None => {
let index = implicitly_convert_to_int(interp, elem)?;
CaptureAt::GroupIndex(index)
}
// ```
// [3.1.2] > m = /abc/.match("abc xyz")
// => #<MatchData "abc">
// [3.1.2] > m[-10..-5]
// => nil
// ```
Some(protect::Range::Out) => return Ok(Value::nil()),
// ```
// [3.1.2] > m = /(?<x>abc) ./.match("abc xyz")
// => #<MatchData "abc x" x:"abc">
// [3.1.2] > m[1..2]
// => ["abc"]
// [3.1.2] > m[0..2]
// => ["abc x", "abc"]
// [3.1.2] > m[0..-1]
// => ["abc x", "abc"]
// [3.1.2] > m[-10..-1]
// => nil
// [3.1.2] > m[-10..7]
// => nil
// [3.1.2] > m[-10..-5]
// => nil
// ```
Some(protect::Range::Valid { start, len }) => CaptureAt::StartLen(start, len),
};
let matched = data.capture_at(at)?;
interp.try_convert_mut(matched)
}
pub fn end(interp: &mut Artichoke, mut value: Value, mut at: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let capture = match interp.try_convert_mut(&mut at)? {
CaptureExtract::GroupIndex(idx) => Capture::GroupIndex(idx),
CaptureExtract::GroupName(name) => Capture::GroupName(name),
CaptureExtract::Symbol(symbol) => Capture::GroupName(symbol.bytes(interp)),
};
let end = data.end(capture)?;
match end.map(i64::try_from) {
Some(Ok(end)) => Ok(interp.convert(end)),
Some(Err(_)) => Err(ArgumentError::with_message("input string too long").into()),
None => Ok(Value::nil()),
}
}
pub fn length(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let len = data.len()?;
if let Ok(len) = i64::try_from(len) {
Ok(interp.convert(len))
} else {
Err(ArgumentError::with_message("input string too long").into())
}
}
pub fn named_captures(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let named_captures = data.named_captures()?;
interp.try_convert_mut(named_captures)
}
pub fn names(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let names = data.names();
interp.try_convert_mut(names)
}
pub fn offset(interp: &mut Artichoke, mut value: Value, mut at: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let capture = match interp.try_convert_mut(&mut at)? {
CaptureExtract::GroupIndex(idx) => Capture::GroupIndex(idx),
CaptureExtract::GroupName(name) => Capture::GroupName(name),
CaptureExtract::Symbol(symbol) => Capture::GroupName(symbol.bytes(interp)),
};
if let Some([begin, end]) = data.offset(capture)? {
if let (Ok(begin), Ok(end)) = (i64::try_from(begin), i64::try_from(end)) {
let ary = Array::assoc(interp.convert(begin), interp.convert(end));
Array::alloc_value(ary, interp)
} else {
Err(ArgumentError::with_message("input string too long").into())
}
} else {
let ary = Array::assoc(Value::nil(), Value::nil());
Array::alloc_value(ary, interp)
}
}
pub fn post_match(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let post = data.post();
interp.try_convert_mut(post)
}
pub fn pre_match(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let pre = data.pre();
interp.try_convert_mut(pre)
}
pub fn regexp(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let regexp = data.regexp();
// TODO(GH-614): `MatchData#regexp` needs to return an identical `Regexp` to
// the one used to create the match (same object ID).
//
// The `Regexp::alloc_value` here should be replaced with
// `Regexp::box_into_value`.
//
// See: https://github.com/ruby/spec/pull/727
let regexp = Regexp::alloc_value(regexp.clone(), interp)?;
Ok(regexp)
}
pub fn string(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let mut string = interp.try_convert_mut(data.string())?;
string.freeze(interp)?;
Ok(string)
}
pub fn to_a(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
if let Some(ary) = data.to_a()? {
interp.try_convert_mut(ary)
} else {
Ok(Value::nil())
}
}
pub fn to_s(interp: &mut Artichoke, mut value: Value) -> Result<Value, Error> {
let data = unsafe { MatchData::unbox_from_value(&mut value, interp)? };
let display = data.to_s()?;
interp.try_convert_mut(display)
}