@ -1,23 +1,23 @@
#![ allow(unused_imports) ]
use std ::{
error ,
fmt ::{
self ,
Write ,
} ,
sync ::{
Arc ,
Mutex ,
}
fmt ,
borrow ::Cow ,
} ;
pub type Groups = Vec < String > ;
pub type FrozenVec < T > = Box < [ T ] > ;
pub type FrozenString = Box < str > ;
// NOTE: Currently unused, as we use `to_utf8_lossy()` for PCRE2 `byte`-matching (XXX: Should we change?)
// TODO: to return some kind of `Either<&'s str, impl bytes::Buf + 's>` type, which would use `str` on non-PCRE, but opaque `bytes::Buf` on PCRE?)
pub type FrozenBytes = FrozenVec < u8 > ;
pub type Groups < String = FrozenString > = FrozenVec < Option < String > > ;
#[ derive(Debug, Clone) ]
pub struct Regex
{
#[ cfg(feature= " perl " ) ]
internal : Arc < Mutex < pcre ::Pcre > > ,
internal : pcre2::bytes ::Regex ,
#[ cfg(not(feature = " perl " )) ]
internal : regex ::Regex ,
}
@ -50,24 +50,18 @@ impl Regex {
pub fn compile ( string : impl AsRef < str > ) -> Result < Self , Error >
{
#[ cfg(feature = " perl " ) ]
return Ok ( Self { internal : Arc::new ( Mutex ::new ( pcre ::Pcre ::compile ( string . as_ref ( ) ) ? ) ) } ) ;
return Ok ( Self { internal : pcre2::bytes ::RegexBuilder ::new ( ) . build ( string . as_ref ( ) ) ? } ) ;
#[ cfg(not(feature = " perl " )) ]
return Ok ( Self { internal : regex ::Regex ::new ( string . as_ref ( ) ) ? } ) ;
}
pub fn exec ( & self , string : impl AsRef < str > ) -> Result < Option < Groups > , Error >
pub fn exec < ' s > ( & self , string : & ' s str ) -> Result < Option < Groups < Cow < ' s , str > > > , Error >
{
#[ cfg(feature = " perl " ) ]
return {
let mut re = self . internal . lock ( ) . unwrap ( ) ;
Ok ( match re . exec ( string . as_ref ( ) ) {
Ok ( match self . internal . captures ( string . as_ref ( ) ) ? {
Some ( m ) = > {
let len = m . string_count ( ) ;
let mut output = Vec ::with_capacity ( len ) ;
for i in 0 .. len {
output . push ( m . group ( i ) . to_owned ( ) ) ;
}
Some ( output )
Some ( ( 0 .. m . len ( ) ) . map ( move | i | m . get ( i ) . map ( | x | String ::from_utf8_lossy ( x . as_bytes ( ) ) ) ) . collect ( ) )
} ,
None = > None ,
} )
@ -76,14 +70,7 @@ impl Regex {
return {
Ok ( match self . internal . captures ( string . as_ref ( ) ) {
Some ( m ) = > {
let mut output = Vec ::with_capacity ( m . len ( ) ) ;
for i in 0 .. m . len ( ) {
let ma = m . get ( i ) . unwrap ( ) ;
let mut op = String ::with_capacity ( ma . range ( ) . len ( ) ) ;
write! ( op , "{}" , ma . as_str ( ) ) ? ;
output . push ( op ) ;
}
Some ( output )
Some ( ( 0 .. m . len ( ) ) . map ( move | i | m . get ( i ) . map ( | x | Cow ::Borrowed ( x . as_str ( ) ) ) ) . collect ( ) )
} ,
None = > None ,
} )
@ -99,7 +86,7 @@ impl From<fmt::Error> for Error
}
}
#[ cfg(not(feature = " perl " )) ]
//#[cfg(not(feature = "perl"))]
impl From < regex ::Error > for Error
{
fn from ( er : regex ::Error ) -> Self
@ -109,9 +96,9 @@ impl From<regex::Error> for Error
}
#[ cfg(feature = " perl " ) ]
impl From < pcre ::Compilation Error> for Error
impl From < pcre 2 :: Error> for Error
{
fn from ( er : pcre ::Compilation Error) -> Self
fn from ( er : pcre 2 :: Error) -> Self
{
Self ::Compile ( format! ( "{}" , er ) )
}