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
use crate::convert::{FromMrb, RustBackedValue};
use crate::extn::core::matchdata::MatchData;
use crate::value::Value;
use crate::Mrb;
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum Error {
Fatal,
NoMatch,
}
pub fn method(interp: &Mrb, value: &Value) -> Result<Value, Error> {
let data = unsafe { MatchData::try_from_ruby(interp, value) }.map_err(|_| Error::Fatal)?;
let borrow = data.borrow();
let regex = (*borrow.regexp.regex).as_ref().ok_or(Error::Fatal)?;
let match_against = &borrow.string[borrow.region.start..borrow.region.end];
let captures = regex.captures(match_against).ok_or(Error::NoMatch)?;
let mut iter = captures.iter();
iter.next();
let vec = iter.collect::<Vec<_>>();
Ok(Value::from_mrb(&interp, vec))
}