windows_strings/
hstring_builder.rs

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
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) -> Self {
        let header = HStringHeader::alloc(len.try_into().unwrap());

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

        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();
            }
        }
    }

    /// Allows the `HSTRING` to be constructed from bytes.
    pub fn as_bytes_mut(&mut self) -> &mut [u8] {
        if let Some(header) = self.as_header() {
            unsafe {
                core::slice::from_raw_parts_mut(header.data as *mut _, header.len as usize * 2)
            }
        } else {
            &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);
        }
    }
}