Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/windows-strings/src/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  hstring_builder.rs

  Sprache: Rust
 

use super::*;

/// An [HSTRING] builder that supports preallocating the `HSTRING` to avoid extra allocations and copies.
///
/// This is similar to the `WindowsPreallocateStringBuffer` function but implemented directly in Rust for efficiency.
/// It is implemented as a separate type since [HSTRING] values are immutable.
pub struct HStringBuilder(*mut HStringHeader);

impl HStringBuilder {
    /// Creates a preallocated `HSTRING` value.
    pub fn new(len: usize) -> Result<Self> {
        let header = HStringHeader::alloc(len.try_into()?)?;

        if len > 0 {
            unsafe { core::ptr::write_bytes((*header).data, 0, len) };
        }

        Ok(Self(header))
    }

    /// Shortens the string by removing any trailing 0 characters.
    pub fn trim_end(&mut self) {
        if let Some(header) = self.as_header_mut() {
            while header.len > 0
                && unsafe { header.data.offset(header.len as isize - 1).read() == 0 }
            {
                header.len -= 1;
            }

            if header.len == 0 {
                unsafe {
                    HStringHeader::free(self.0);
                }
                self.0 = core::ptr::null_mut();
            }
        }
    }

    fn as_header(&self) -> Option<&HStringHeader> {
        unsafe { self.0.as_ref() }
    }

    fn as_header_mut(&mut self) -> Option<&mut HStringHeader> {
        unsafe { self.0.as_mut() }
    }
}

impl From<HStringBuilder> for HSTRING {
    fn from(value: HStringBuilder) -> Self {
        if let Some(header) = value.as_header() {
            unsafe { header.data.offset(header.len as isize).write(0) };
            let result = Self(value.0);
            core::mem::forget(value);
            result
        } else {
            Self::new()
        }
    }
}

impl core::ops::Deref for HStringBuilder {
    type Target = [u16];

    fn deref(&self) -> &[u16] {
        if let Some(header) = self.as_header() {
            unsafe { core::slice::from_raw_parts(header.data, header.len as usize) }
        } else {
            &[]
        }
    }
}

impl core::ops::DerefMut for HStringBuilder {
    fn deref_mut(&mut self) -> &mut [u16] {
        if let Some(header) = self.as_header() {
            unsafe { core::slice::from_raw_parts_mut(header.data, header.len as usize) }
        } else {
            &mut []
        }
    }
}

impl Drop for HStringBuilder {
    fn drop(&mut self) {
        unsafe {
            HStringHeader::free(self.0);
        }
    }
}

Messung V0.5 in Prozent
C=94 H=75 G=84

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-19) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.