Check if empty string came from global instance.
This commit is contained in:
parent
c4a00f5269
commit
e963a7251c
@ -43,6 +43,7 @@ Enhancements
|
|||||||
|
|
||||||
* `SmartString` now uses `LazyCompact` instead of `Compact` to minimize allocations.
|
* `SmartString` now uses `LazyCompact` instead of `Compact` to minimize allocations.
|
||||||
* Added `pop` for strings.
|
* Added `pop` for strings.
|
||||||
|
* Added `ImmutableString::ptr_eq` to test if two strings point to the same allocation.
|
||||||
|
|
||||||
### `Scope` API
|
### `Scope` API
|
||||||
|
|
||||||
|
@ -3044,24 +3044,23 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Check a result to ensure that the data size is within allowable limit.
|
/// Check a result to ensure that the data size is within allowable limit.
|
||||||
fn check_return_value(&self, result: RhaiResult) -> RhaiResult {
|
fn check_return_value(&self, mut result: RhaiResult) -> RhaiResult {
|
||||||
match result {
|
if let Ok(ref mut r) = result {
|
||||||
// Concentrate all empty strings into one instance to save memory
|
// Concentrate all empty strings into one instance to save memory
|
||||||
#[cfg(feature = "no_closure")]
|
if let Dynamic(crate::dynamic::Union::Str(s, _, _)) = r {
|
||||||
Ok(r) if r.as_str_ref().map_or(false, &str::is_empty) => {
|
if s.is_empty() {
|
||||||
Ok(self.const_empty_string().into())
|
if !s.ptr_eq(&self.constants.empty_string) {
|
||||||
|
*s = self.const_empty_string();
|
||||||
}
|
}
|
||||||
// Concentrate all empty strings into one instance to save memory
|
return result;
|
||||||
#[cfg(not(feature = "no_closure"))]
|
|
||||||
Ok(r) if !r.is_shared() && r.as_str_ref().map_or(false, &str::is_empty) => {
|
|
||||||
Ok(self.const_empty_string().into())
|
|
||||||
}
|
}
|
||||||
// Check data sizes
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "unchecked"))]
|
#[cfg(not(feature = "unchecked"))]
|
||||||
Ok(r) => self.check_data_size(&r).map(|_| r),
|
self.check_data_size(&r)?;
|
||||||
// Return all other results
|
|
||||||
_ => result,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "unchecked")]
|
#[cfg(feature = "unchecked")]
|
||||||
|
@ -538,4 +538,27 @@ impl ImmutableString {
|
|||||||
pub(crate) fn make_mut(&mut self) -> &mut SmartString {
|
pub(crate) fn make_mut(&mut self) -> &mut SmartString {
|
||||||
shared_make_mut(&mut self.0)
|
shared_make_mut(&mut self.0)
|
||||||
}
|
}
|
||||||
|
/// Returns `true` if the two [`ImmutableString`]'s point to the same allocation.
|
||||||
|
///
|
||||||
|
/// # Example
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// use rhai::ImmutableString;
|
||||||
|
///
|
||||||
|
/// let s1: ImmutableString = "hello".into();
|
||||||
|
/// let s2 = s1.clone();
|
||||||
|
/// let s3: ImmutableString = "hello".into();
|
||||||
|
///
|
||||||
|
/// assert_eq!(s1, s2);
|
||||||
|
/// assert_eq!(s1, s3);
|
||||||
|
/// assert_eq!(s2, s3);
|
||||||
|
///
|
||||||
|
/// assert!(s1.ptr_eq(&s2));
|
||||||
|
/// assert!(!s1.ptr_eq(&s3));
|
||||||
|
/// assert!(!s2.ptr_eq(&s3));
|
||||||
|
/// ```
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn ptr_eq(&self, other: &Self) -> bool {
|
||||||
|
Shared::ptr_eq(&self.0, &other.0)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user