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
use std::convert::TryFrom;
use std::mem;
use crate::convert::{FromMrb, RustBackedValue, TryFromMrb};
use crate::extn::core::matchdata::MatchData;
use crate::sys;
use crate::value::Value;
use crate::Mrb;
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum Error {
Fatal,
IndexType,
LengthType,
NoGroup(String),
NoMatch,
}
#[derive(Debug, Clone)]
pub enum Args {
Index(i64),
Name(String),
StartLen(i64, usize),
}
impl Args {
const ARGSPEC: &'static [u8] = b"o|o?\0";
pub unsafe fn extract(interp: &Mrb, num_captures: usize) -> Result<Self, Error> {
let num_captures = i64::try_from(num_captures).map_err(|_| Error::Fatal)?;
let mut first = <mem::MaybeUninit<sys::mrb_value>>::uninit();
let mut second = <mem::MaybeUninit<sys::mrb_value>>::uninit();
let mut has_second = <mem::MaybeUninit<sys::mrb_bool>>::uninit();
sys::mrb_get_args(
interp.borrow().mrb,
Self::ARGSPEC.as_ptr() as *const i8,
first.as_mut_ptr(),
second.as_mut_ptr(),
has_second.as_mut_ptr(),
);
let first = first.assume_init();
let second = second.assume_init();
let has_length = has_second.assume_init() != 0;
if has_length {
let start = i64::try_from_mrb(&interp, Value::new(interp, first))
.map_err(|_| Error::IndexType)?;
let len = usize::try_from_mrb(&interp, Value::new(interp, second))
.map_err(|_| Error::LengthType)?;
Ok(Args::StartLen(start, len))
} else if let Ok(index) = i64::try_from_mrb(interp, Value::new(interp, first)) {
Ok(Args::Index(index))
} else if let Ok(name) = String::try_from_mrb(interp, Value::new(interp, first)) {
Ok(Args::Name(name))
} else if let Some(args) = Self::is_range(interp, first, num_captures)? {
Ok(args)
} else {
Err(Error::IndexType)
}
}
unsafe fn is_range(
interp: &Mrb,
first: sys::mrb_value,
num_captures: i64,
) -> Result<Option<Self>, Error> {
let mut start = <mem::MaybeUninit<sys::mrb_int>>::uninit();
let mut len = <mem::MaybeUninit<sys::mrb_int>>::uninit();
let check_range = sys::mrb_range_beg_len(
interp.borrow().mrb,
first,
start.as_mut_ptr(),
len.as_mut_ptr(),
num_captures + 1,
0_u8,
);
let start = start.assume_init();
let len = len.assume_init();
if check_range == sys::mrb_range_beg_len::MRB_RANGE_OK {
let len = usize::try_from(len).map_err(|_| Error::LengthType)?;
Ok(Some(Args::StartLen(start, len)))
} else {
Ok(None)
}
}
}
pub fn method(interp: &Mrb, args: Args, 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)?;
match args {
Args::Index(index) => {
if index < 0 {
let index = usize::try_from(-index).map_err(|_| Error::Fatal)?;
match captures.len().checked_sub(index) {
Some(0) | None => Ok(Value::from_mrb(interp, None::<Value>)),
Some(index) => Ok(Value::from_mrb(interp, captures.at(index))),
}
} else {
let index = usize::try_from(index).map_err(|_| Error::Fatal)?;
Ok(Value::from_mrb(interp, captures.at(index)))
}
}
Args::Name(name) => {
let index = regex
.capture_names()
.find_map(|capture| {
if capture.0 == name {
Some(capture.1)
} else {
None
}
})
.ok_or_else(|| Error::NoGroup(name))?;
let group = index
.iter()
.filter_map(|index| {
usize::try_from(*index)
.ok()
.and_then(|index| captures.at(index))
})
.last();
Ok(Value::from_mrb(interp, group))
}
Args::StartLen(start, len) => {
let start = if start < 0 {
let start = usize::try_from(-start).map_err(|_| Error::Fatal)?;
captures.len().checked_sub(start).ok_or(Error::Fatal)?
} else {
usize::try_from(start).map_err(|_| Error::Fatal)?
};
let mut matches = vec![];
for index in start..(start + len) {
matches.push(captures.at(index));
}
Ok(Value::from_mrb(interp, matches))
}
}
}