lx/
string.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

// UNSAFETY: Transmuting to implement from_bytes.
#![expect(unsafe_code)]

use std::borrow;
use std::fmt::Write;
use std::fmt::{self};
use std::ops;
use std::str;

/// An owned string that may or may not be valid utf-8.
///
/// This is analogous to `OsString` on Linux, but behaves the same on all platforms.
#[derive(Clone, Hash, PartialEq, Eq, Default)]
pub struct LxString {
    bytes: Vec<u8>,
}

impl LxString {
    /// Creates an empty `LxString`.
    pub fn new() -> Self {
        Self { bytes: Vec::new() }
    }

    /// Creates a `LxString` from a byte vector.
    pub fn from_vec(vec: Vec<u8>) -> Self {
        Self { bytes: vec }
    }

    /// Creates a `LxString` with the specified capacity.
    pub fn with_capacity(capacity: usize) -> Self {
        Self {
            bytes: Vec::with_capacity(capacity),
        }
    }

    /// Yields the underlying byte vector of this `LxString`.
    pub fn into_vec(self) -> Vec<u8> {
        self.bytes
    }

    /// Converts the `LxString` into a `String` if it contains valid Unicode data.
    pub fn into_string(self) -> Result<String, Self> {
        String::from_utf8(self.bytes).map_err(|e| Self {
            bytes: e.into_bytes(),
        })
    }

    /// Converts to an `LxStr` slice.
    pub fn as_lx_str(&self) -> &LxStr {
        self
    }

    /// Returns the capacity of the `LxString`.
    pub fn capacity(&self) -> usize {
        self.bytes.capacity()
    }

    /// Clears the contents of the `LxString`.
    pub fn clear(&mut self) {
        self.bytes.clear()
    }

    /// Extends the string with the given `&OsStr` slice.
    pub fn push(&mut self, s: &impl AsRef<LxStr>) {
        self.bytes.extend_from_slice(&s.as_ref().bytes)
    }

    /// Reserves capacity for at least `additional` more capacity to be inserted in the given
    /// `OsString`.
    pub fn reserve(&mut self, additional: usize) {
        self.bytes.reserve(additional);
    }

    /// Reserves the minimum capacity for exactly additional more capacity to be inserted in the given `LxString`. Does nothing if
    /// the capacity is already sufficient.
    pub fn reserve_exact(&mut self, additional: usize) {
        self.bytes.reserve_exact(additional);
    }

    /// Shrinks the capacity of the `LxString` to match its length.
    pub fn shrink_to_fit(&mut self) {
        self.bytes.shrink_to_fit()
    }
}

impl ops::Deref for LxString {
    type Target = LxStr;

    fn deref(&self) -> &Self::Target {
        LxStr::from_bytes(&self.bytes)
    }
}

impl borrow::Borrow<LxStr> for LxString {
    fn borrow(&self) -> &LxStr {
        self
    }
}

impl<T> From<&T> for LxString
where
    T: ?Sized + AsRef<LxStr>,
{
    fn from(s: &T) -> Self {
        s.as_ref().to_lx_string()
    }
}

impl From<String> for LxString {
    fn from(s: String) -> Self {
        LxString::from_vec(s.into())
    }
}

impl PartialEq<LxString> for &str {
    fn eq(&self, other: &LxString) -> bool {
        **self == **other
    }
}

impl PartialEq<LxString> for str {
    fn eq(&self, other: &LxString) -> bool {
        &**other == self
    }
}

impl PartialEq<str> for LxString {
    fn eq(&self, other: &str) -> bool {
        &**self == other
    }
}

impl PartialEq<&str> for LxString {
    fn eq(&self, other: &&str) -> bool {
        **self == **other
    }
}

impl fmt::Debug for LxString {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Debug::fmt(&**self, f)
    }
}

/// A borrowed reference to a string that may or may not be valid utf-8.
///
/// This is analogous to `OsStr` on Linux, but behaves the same on all platforms.
#[derive(PartialEq, Eq, Hash)]
#[repr(transparent)]
pub struct LxStr {
    bytes: [u8],
}

impl LxStr {
    /// Coerces into an `LxStr` slice.
    pub fn new<T: AsRef<LxStr> + ?Sized>(s: &T) -> &LxStr {
        s.as_ref()
    }

    /// Creates an `LxStr` from a byte slice.
    pub fn from_bytes(slice: &[u8]) -> &LxStr {
        // SAFETY: &LxStr has the same repr as &[u8], and doesn't add any
        // additional invariants
        unsafe { std::mem::transmute(slice) }
    }

    /// Gets the underlying byte view of the `LxStr` slice.
    pub fn as_bytes(&self) -> &[u8] {
        &self.bytes
    }

    /// Copies the slice into an owned `LxString`.
    pub fn to_lx_string(&self) -> LxString {
        LxString::from_vec(self.bytes.into())
    }

    /// Returns the length of this `LxStr`.
    pub fn len(&self) -> usize {
        self.bytes.len()
    }

    /// Checks whether the `LxStr` is empty.
    pub fn is_empty(&self) -> bool {
        self.bytes.is_empty()
    }

    /// Yields a `&str` slice if the `LxStr` is valid Unicode.
    pub fn to_str(&self) -> Option<&str> {
        str::from_utf8(&self.bytes).ok()
    }

    /// Convert an `LxStr` to a `Cow<str>`.
    ///
    /// Any non-Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`.
    pub fn to_string_lossy(&self) -> borrow::Cow<'_, str> {
        String::from_utf8_lossy(&self.bytes)
    }
}

impl ToOwned for LxStr {
    type Owned = LxString;

    fn to_owned(&self) -> Self::Owned {
        self.to_lx_string()
    }
}

impl AsRef<LxStr> for LxStr {
    fn as_ref(&self) -> &LxStr {
        self
    }
}

impl AsRef<LxStr> for LxString {
    fn as_ref(&self) -> &LxStr {
        self
    }
}

impl AsRef<LxStr> for str {
    fn as_ref(&self) -> &LxStr {
        LxStr::from_bytes(self.as_bytes())
    }
}

impl AsRef<LxStr> for String {
    fn as_ref(&self) -> &LxStr {
        (**self).as_ref()
    }
}

impl PartialEq<LxStr> for str {
    fn eq(&self, other: &LxStr) -> bool {
        LxStr::new(self).eq(other)
    }
}

impl PartialEq<str> for LxStr {
    fn eq(&self, other: &str) -> bool {
        self.eq(LxStr::new(other))
    }
}

impl fmt::Debug for LxStr {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // This isn't quite identical to how Debug works on OsStr, but that requires the use of
        // Utf8Lossy which is not stable.
        let value = self.to_string_lossy();
        f.write_str("\"")?;
        for c in value.chars().flat_map(|c| c.escape_debug()) {
            f.write_char(c)?
        }

        f.write_str("\"")
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn lx_string_new() {
        let s = LxString::new();
        assert_eq!(s.capacity(), 0);
        assert_eq!(s.len(), 0);
        assert!(s.is_empty());
        assert_eq!(s, "");
        assert_ne!(s, "something");
    }

    #[test]
    fn lx_string_capacity() {
        let s = LxString::with_capacity(100);
        assert_eq!(s.capacity(), 100);
        assert_eq!(s.len(), 0);
        assert!(s.is_empty());
        assert_eq!(s, "");
        assert_ne!(s, "something");
    }

    #[test]
    fn lx_string_from() {
        let s = LxString::from("foo");
        assert_eq!(s.capacity(), 3);
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_ne!(s, "something");
        assert_ne!(s, "");

        let s = LxString::from(String::from("foo"));
        assert_eq!(s.capacity(), 3);
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_ne!(s, "something");
        assert_ne!(s, "");
    }

    #[test]
    fn lx_string_from_vec() {
        let s = LxString::from_vec(b"foo".to_vec());
        assert_eq!(s.capacity(), 3);
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_ne!(s, "something");
        assert_ne!(s, "");
        let vec = s.into_vec();
        assert_eq!(vec, b"foo");
    }

    #[test]
    fn lx_string_into_string() {
        let s = LxString::from("foo");
        let s = s.into_string().unwrap();
        assert_eq!(s, "foo");

        let s = LxString::from_vec(vec![b'a', 0xfe, 0xfe]);
        let e = s.into_string().unwrap_err();
        assert_eq!(e, LxString::from_vec(vec![b'a', 0xfe, 0xfe]));
    }

    #[test]
    fn lx_string_debug() {
        let s = LxString::from("foo\\bar");
        let debug = format!("{:?}", s);
        assert_eq!(debug, r#""foo\\bar""#)
    }

    #[test]
    fn lx_str_new() {
        let s = LxStr::new("");
        assert_eq!(s.len(), 0);
        assert!(s.is_empty());
        assert_eq!(s, "");
        assert_ne!(s, "something");

        let s = LxStr::new("foo");
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_eq!(s, LxStr::new("foo"));
        assert_ne!(s, "something");
        assert_ne!(s, "");
    }

    #[test]
    fn lx_str_from_bytes() {
        let s = LxStr::from_bytes(b"foo");
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_ne!(s, "something");
        assert_ne!(s, "");
    }

    #[test]
    fn lx_str_from_lx_string() {
        let s = LxString::from("foo");
        let s = s.as_lx_str();
        assert_eq!(s.len(), 3);
        assert!(!s.is_empty());
        assert_eq!(s, "foo");
        assert_ne!(s, "something");
        assert_ne!(s, "");
    }

    #[test]
    fn lx_str_to_str() {
        let s = LxStr::new("foo");
        let s = s.to_str().unwrap();
        assert_eq!(s, "foo");

        let s = LxStr::from_bytes(&[b'a', 0xfe, 0xfe]);
        assert!(s.to_str().is_none());
    }

    #[test]
    fn lx_str_to_string_lossy() {
        let s = LxStr::new("foo");
        let s = s.to_string_lossy();
        assert!(matches!(s, borrow::Cow::Borrowed(_)));
        assert_eq!(s, "foo");
        let s = LxStr::from_bytes(&[b'a', 0xfe, 0xfe, b'b']);

        let s = s.to_string_lossy();
        assert!(matches!(s, borrow::Cow::Owned(_)));
        assert_eq!(s, "a\u{fffd}\u{fffd}b");
    }

    #[test]
    fn lx_str_debug() {
        let s = LxStr::new("foo\\bar");
        let debug = format!("{:?}", s);
        assert_eq!(debug, r#""foo\\bar""#)
    }
}