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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
// Copyright (c) 2023 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
//
// This program and the accompanying materials are made available under the
// terms of the Apache Software License 2.0 which is available at
// https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
// which is available at https://opensource.org/licenses/MIT.
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Relocatable (inter-process shared memory compatible) string implementations.
//!
//! The [`FixedSizeByteString`](crate::byte_string::FixedSizeByteString) has a fixed capacity defined at compile time.
//!
//! # Example
//!
//! ```
//! use iceoryx2_bb_container::byte_string::*;
//!
//! const STRING_CAPACITY: usize = 123;
//!
//! let mut some_string = FixedSizeByteString::<STRING_CAPACITY>::new();
//! some_string.push_bytes(b"hello").unwrap();
//! some_string.push('!' as u8).unwrap();
//! some_string.push('!' as u8).unwrap();
//!
//! println!("removed byte {}", some_string.remove(0));
//! ```

use std::{
    cmp::Ordering,
    fmt::{Debug, Display},
    hash::Hash,
    mem::MaybeUninit,
    ops::{Deref, DerefMut},
};

use iceoryx2_bb_log::{fail, fatal_panic};

/// Returns the length of a string
///
/// # Safety
///
///  * The string must be '\0' (null) terminated.
///
pub unsafe fn strlen(ptr: *mut core::ffi::c_char) -> usize {
    const NULL_TERMINATION: core::ffi::c_char = 0;
    for i in 0..isize::MAX {
        if *ptr.offset(i) == NULL_TERMINATION {
            return i as usize;
        }
    }

    unreachable!()
}

/// Error which can occur when a [`FixedSizeByteString`] is modified.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum FixedSizeByteStringModificationError {
    InsertWouldExceedCapacity,
}

impl std::fmt::Display for FixedSizeByteStringModificationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        std::write!(f, "{}::{:?}", std::stringify!(Self), self)
    }
}

impl std::error::Error for FixedSizeByteStringModificationError {}

/// Relocatable string with compile time fixed size capacity.
#[derive(Clone, Copy)]
#[repr(C)]
pub struct FixedSizeByteString<const CAPACITY: usize> {
    len: usize,
    data: [MaybeUninit<u8>; CAPACITY],
    _terminator: u8,
}

unsafe impl<const CAPACITY: usize> Send for FixedSizeByteString<CAPACITY> {}

impl<const CAPACITY: usize, const CAPACITY_OTHER: usize>
    PartialOrd<FixedSizeByteString<CAPACITY_OTHER>> for FixedSizeByteString<CAPACITY>
{
    fn partial_cmp(&self, other: &FixedSizeByteString<CAPACITY_OTHER>) -> Option<Ordering> {
        self.data[..self.len]
            .iter()
            .zip(other.data[..other.len].iter())
            .map(|(lhs, rhs)| unsafe { lhs.assume_init_read().cmp(rhs.assume_init_ref()) })
            .find(|&ord| ord != Ordering::Equal)
            .or(Some(self.len.cmp(&other.len)))
    }
}

impl<const CAPACITY: usize> Ord for FixedSizeByteString<CAPACITY> {
    fn cmp(&self, other: &Self) -> Ordering {
        self.partial_cmp(other).unwrap()
    }
}

impl<const CAPACITY: usize> Hash for FixedSizeByteString<CAPACITY> {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        state.write(self.as_bytes())
    }
}

impl<const CAPACITY: usize> Deref for FixedSizeByteString<CAPACITY> {
    type Target = [u8];

    fn deref(&self) -> &Self::Target {
        self.as_bytes()
    }
}

impl<const CAPACITY: usize> DerefMut for FixedSizeByteString<CAPACITY> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        self.as_mut_bytes()
    }
}

impl<const CAPACITY: usize, const OTHER_CAPACITY: usize>
    PartialEq<FixedSizeByteString<OTHER_CAPACITY>> for FixedSizeByteString<CAPACITY>
{
    fn eq(&self, other: &FixedSizeByteString<OTHER_CAPACITY>) -> bool {
        *self.as_bytes() == *other.as_bytes()
    }
}

impl<const CAPACITY: usize> Eq for FixedSizeByteString<CAPACITY> {}

impl<const CAPACITY: usize> PartialEq<&[u8]> for FixedSizeByteString<CAPACITY> {
    fn eq(&self, other: &&[u8]) -> bool {
        *self.as_bytes() == **other
    }
}

impl<const CAPACITY: usize, const OTHER_CAPACITY: usize> PartialEq<[u8; OTHER_CAPACITY]>
    for FixedSizeByteString<CAPACITY>
{
    fn eq(&self, other: &[u8; OTHER_CAPACITY]) -> bool {
        *self.as_bytes() == *other
    }
}

impl<const CAPACITY: usize, const OTHER_CAPACITY: usize> PartialEq<&[u8; OTHER_CAPACITY]>
    for FixedSizeByteString<CAPACITY>
{
    fn eq(&self, other: &&[u8; OTHER_CAPACITY]) -> bool {
        *self.as_bytes() == **other
    }
}

impl<const CAPACITY: usize> Debug for FixedSizeByteString<CAPACITY> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "FixedSizeByteString<{}> {{ len: {}, data: \"{}\" }}",
            CAPACITY,
            self.len,
            as_escaped_string(self.as_bytes())
        )
    }
}

impl<const CAPACITY: usize> Display for FixedSizeByteString<CAPACITY> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", as_escaped_string(self.as_bytes()))
    }
}

impl<const CAPACITY: usize, const BYTE_CAPACITY: usize> From<&[u8; BYTE_CAPACITY]>
    for FixedSizeByteString<CAPACITY>
{
    fn from(value: &[u8; BYTE_CAPACITY]) -> Self {
        if CAPACITY < BYTE_CAPACITY {
            fatal_panic!(from "FixedSizeByteString::from<[u8; ..]>()", "The byte array does not fit into the FixedSizeByteString");
        }

        let mut new_self = Self::new();
        new_self.push_bytes(value).unwrap();
        new_self
    }
}

impl<const CAPACITY: usize> Default for FixedSizeByteString<CAPACITY> {
    fn default() -> Self {
        Self::new()
    }
}

/// Adds escape characters to the string so that it can be used for console output.
pub fn as_escaped_string(bytes: &[u8]) -> String {
    String::from_utf8(
        bytes
            .iter()
            .flat_map(|c| match *c {
                b'\t' => vec![b'\\', b't'].into_iter(),
                b'\r' => vec![b'\\', b'r'].into_iter(),
                b'\n' => vec![b'\\', b'n'].into_iter(),
                b'\x20'..=b'\x7e' => vec![*c].into_iter(),
                _ => {
                    let hex_digits: &[u8; 16] = b"0123456789abcdef";
                    vec![
                        b'\\',
                        b'x',
                        hex_digits[(c >> 4) as usize],
                        hex_digits[(c & 0xf) as usize],
                    ]
                    .into_iter()
                }
            })
            .collect::<Vec<u8>>(),
    )
    .unwrap()
}

impl<const CAPACITY: usize> FixedSizeByteString<CAPACITY> {
    /// Creates a new and empty [`FixedSizeByteString`]
    pub const fn new() -> Self {
        let mut new_self = Self {
            len: 0,
            data: unsafe { MaybeUninit::uninit().assume_init() },
            _terminator: 0,
        };
        new_self.data[0] = MaybeUninit::new(0);
        new_self
    }

    /// Creates a new [`FixedSizeByteString`]. The user has to ensure that the string can hold the
    /// bytes.
    ///
    /// # Safety
    ///
    ///  * `bytes` len must be smaller or equal than [`FixedSizeByteString::capacity()`]
    ///
    pub unsafe fn new_unchecked(bytes: &[u8]) -> Self {
        if CAPACITY < bytes.len() {
            panic!("Insufficient capacity to store bytes.");
        }

        Self::from_bytes_truncated(bytes)
    }

    /// Creates a new [`FixedSizeByteString`] from a byte slice
    pub fn from_bytes(bytes: &[u8]) -> Result<Self, FixedSizeByteStringModificationError> {
        let mut new_self = Self::new();
        fail!(from "FixedSizeByteString", when new_self.push_bytes(bytes),
                with FixedSizeByteStringModificationError::InsertWouldExceedCapacity,
                "Unbale to create from \"{}\" since it would exceed the capacity of {}.",
                as_escaped_string(bytes), CAPACITY);

        Ok(new_self)
    }

    /// Creates a new [`FixedSizeByteString`] from a byte slice. If the byte slice does not fit
    /// into the [`FixedSizeByteString`] it will be truncated.
    pub fn from_bytes_truncated(bytes: &[u8]) -> Self {
        let mut new_self = Self::new();
        new_self.len = std::cmp::min(bytes.len(), CAPACITY);
        for (i, byte) in bytes.iter().enumerate().take(new_self.len) {
            new_self.data[i].write(*byte);
        }

        if new_self.len < CAPACITY {
            new_self.data[new_self.len].write(0);
        }

        new_self
    }

    /// Creates a new byte string from a given null-terminated string
    ///
    /// # Safety
    ///
    ///  * `ptr` must point to a valid memory position
    ///  * `ptr` must be '\0' (null) terminated
    ///
    pub unsafe fn from_c_str(
        ptr: *mut core::ffi::c_char,
    ) -> Result<Self, FixedSizeByteStringModificationError> {
        let string_length = strlen(ptr);
        if CAPACITY < string_length {
            return Err(FixedSizeByteStringModificationError::InsertWouldExceedCapacity);
        }

        let mut new_self = Self::new();
        std::ptr::copy_nonoverlapping(
            ptr,
            new_self.as_mut_bytes().as_mut_ptr() as *mut core::ffi::c_char,
            string_length,
        );
        new_self.len = string_length;

        Ok(new_self)
    }

    /// Returns a slice to the underlying bytes
    pub const fn as_bytes(&self) -> &[u8] {
        unsafe { std::slice::from_raw_parts(self.data[0].as_ptr(), self.len) }
    }

    /// Returns a null-terminated slice to the underlying bytes
    pub const fn as_bytes_with_nul(&self) -> &[u8] {
        unsafe { std::slice::from_raw_parts(self.data[0].as_ptr(), self.len + 1) }
    }

    /// Returns a zero terminated slice of the underlying bytes
    pub const fn as_c_str(&self) -> *const core::ffi::c_char {
        self.data[0].as_ptr() as *const core::ffi::c_char
    }

    /// Returns a mutable slice to the underlying bytes
    pub fn as_mut_bytes(&mut self) -> &mut [u8] {
        unsafe { std::slice::from_raw_parts_mut(self.data[0].as_mut_ptr(), self.len) }
    }

    /// Returns the capacity of the string
    pub const fn capacity(&self) -> usize {
        CAPACITY
    }

    /// Returns the length of the string
    pub const fn len(&self) -> usize {
        self.len
    }

    /// Removes all bytes from the string and set the len to zero
    pub fn clear(&mut self) {
        self.len = 0;
        self.data[0].write(0);
    }

    /// True if the string is empty, otherwise false
    pub const fn is_empty(&self) -> bool {
        self.len == 0
    }

    /// True if the string is full, otherwise false.
    pub const fn is_full(&self) -> bool {
        self.len == CAPACITY
    }

    /// Inserts a byte at a provided index. If the index is out of bounds it panics.
    /// If the string has no more capacity left it fails otherwise it succeeds.
    ///
    /// ```
    /// use iceoryx2_bb_container::byte_string::*;
    ///
    /// const STRING_CAPACITY: usize = 123;
    ///
    /// let mut some_string = FixedSizeByteString::<STRING_CAPACITY>::from(b"helo");
    /// some_string.insert(3, 'l' as u8).unwrap();
    /// assert!(some_string == b"hello");
    /// ```
    pub fn insert(
        &mut self,
        idx: usize,
        byte: u8,
    ) -> Result<(), FixedSizeByteStringModificationError> {
        self.insert_bytes(idx, &[byte; 1])
    }

    /// Inserts a byte array at a provided index. If the index is out of bounds it panics.
    /// If the string has no more capacity left it fails otherwise it succeeds.
    ///
    /// ```
    /// use iceoryx2_bb_container::byte_string::*;
    ///
    /// const STRING_CAPACITY: usize = 123;
    ///
    /// let mut some_string = FixedSizeByteString::<STRING_CAPACITY>::from(b"ho");
    /// some_string.insert_bytes(1, b"ell").unwrap();
    /// assert!(some_string == b"hello");
    /// ```
    pub fn insert_bytes(
        &mut self,
        idx: usize,
        bytes: &[u8],
    ) -> Result<(), FixedSizeByteStringModificationError> {
        let msg = "Unable to insert byte string";
        if self.len < idx {
            fatal_panic!(from self, "{} \"{}\" since the index {} is out of bounds.",
                msg, as_escaped_string(bytes) , idx);
        }

        if CAPACITY < self.len + bytes.len() {
            fail!(from self, with FixedSizeByteStringModificationError::InsertWouldExceedCapacity,
                "{} \"{}\" since it would exceed the maximum capacity of {}.",
                msg, as_escaped_string(bytes), CAPACITY);
        }

        unsafe { self.insert_bytes_unchecked(idx, bytes) };

        Ok(())
    }

    /// Inserts a byte array at a provided index.
    ///
    /// # Safety
    ///
    ///  * The 'idx' must by less than [`FixedSizeByteString::len()`].
    ///  * The 'bytes.len()' must be less or equal than [`FixedSizeByteString::capacity()`] -
    ///    [`FixedSizeByteString::len()`]
    ///
    pub unsafe fn insert_bytes_unchecked(&mut self, idx: usize, bytes: &[u8]) {
        unsafe {
            std::ptr::copy(
                self.data[idx].as_ptr(),
                self.data[idx].as_mut_ptr().add(bytes.len()),
                self.len - idx,
            );
        }

        for (i, byte) in bytes.iter().enumerate() {
            self.data[idx + i].write(*byte);
        }

        self.len += bytes.len();
        if self.len < CAPACITY {
            self.data[self.len].write(0);
        }
    }

    /// Removes the last character from the string and returns it. If the string is empty it
    /// returns none.
    /// ```
    /// use iceoryx2_bb_container::byte_string::*;
    ///
    /// const STRING_CAPACITY: usize = 123;
    ///
    /// let mut some_string = FixedSizeByteString::<STRING_CAPACITY>::from(b"hello!");
    /// let char = some_string.pop().unwrap();
    ///
    /// assert!(char == '!' as u8);
    /// assert!(some_string == b"hello");
    /// ```
    pub fn pop(&mut self) -> Option<u8> {
        if self.is_empty() {
            return None;
        }

        Some(self.remove(self.len - 1))
    }

    /// Adds a byte at the end of the string. If there is no more space left it fails, otherwise
    /// it succeeds.
    pub fn push(&mut self, byte: u8) -> Result<(), FixedSizeByteStringModificationError> {
        self.insert(self.len, byte)
    }

    /// Adds a byte array at the end of the string. If there is no more space left it fails, otherwise
    /// it succeeds.
    pub fn push_bytes(&mut self, bytes: &[u8]) -> Result<(), FixedSizeByteStringModificationError> {
        self.insert_bytes(self.len, bytes)
    }

    /// Removes a character at the provided index and returns it.
    pub fn remove(&mut self, idx: usize) -> u8 {
        if self.len < idx {
            fatal_panic!(from self, "Unable to remove byte at position {} since it is out of bounds.",
                idx);
        }

        let removed_byte = unsafe { *self.data[idx].as_ptr() };

        self.remove_range_impl(idx, 1);

        removed_byte
    }

    /// Removes a range beginning from idx.
    pub fn remove_range(&mut self, idx: usize, len: usize) {
        if self.len < idx + len {
            fatal_panic!(from self, "Unable to remove range from position {} with length {} since it is out of bounds.",
                idx, len);
        }

        self.remove_range_impl(idx, len)
    }

    fn remove_range_impl(&mut self, idx: usize, len: usize) {
        unsafe {
            std::ptr::copy(
                self.data[idx + len].as_ptr(),
                self.data[idx].as_mut_ptr(),
                self.len - (idx + len),
            );
        }

        self.len -= len;
        self.data[self.len].write(0);
    }

    /// Removes all characters where f(c) returns false.
    pub fn retain<F: FnMut(u8) -> bool>(&mut self, f: F) {
        self.retain_impl(f);
    }

    pub(crate) fn retain_impl<F: FnMut(u8) -> bool>(&mut self, mut f: F) -> F {
        let len = self.len;
        for i in 0..len {
            let idx = len - i - 1;
            if f(unsafe { *self.data[idx].as_ptr() }) {
                self.remove(idx);
            }
        }
        f
    }

    /// Finds the first occurrence of a  byte string in the given string. If the byte string was
    /// found the start position of the byte string is returned, otherwise [`None`].
    pub fn find(&self, bytes: &[u8]) -> Option<usize> {
        if self.len() < bytes.len() {
            return None;
        }

        for i in 0..self.len() - bytes.len() + 1 {
            let mut has_found = true;
            for (n, byte) in bytes.iter().enumerate() {
                if unsafe { *self.data[i + n].as_ptr() } != *byte {
                    has_found = false;
                    break;
                }
            }

            if has_found {
                return Some(i);
            }
        }

        None
    }

    /// Finds the last occurrence of a byte string in the given string. If the byte string was
    /// found the start position of the byte string is returned, otherwise [`None`].
    pub fn rfind(&self, bytes: &[u8]) -> Option<usize> {
        if self.len() < bytes.len() {
            return None;
        }

        for i in (0..self.len() - bytes.len() + 1).rev() {
            let mut has_found = true;
            for (n, byte) in bytes.iter().enumerate() {
                if unsafe { *self.data[i + n].as_ptr() } != *byte {
                    has_found = false;
                    break;
                }
            }

            if has_found {
                return Some(i);
            }
        }

        None
    }

    /// Removes a given prefix from the string. If the prefix was not found it returns false,
    /// otherwise the prefix is removed and the function returns true.
    pub fn strip_prefix(&mut self, bytes: &[u8]) -> bool {
        match self.find(bytes) {
            Some(0) => {
                self.remove_range(0, bytes.len());
                true
            }
            _ => false,
        }
    }

    /// Removes a given suffix from the string. If the suffix was not found it returns false,
    /// otherwise the suffix is removed and the function returns true.
    pub fn strip_suffix(&mut self, bytes: &[u8]) -> bool {
        if self.len() < bytes.len() {
            return false;
        }

        let pos = self.len() - bytes.len();
        match self.rfind(bytes) {
            Some(v) => {
                if v != pos {
                    return false;
                }
                self.remove_range(pos, bytes.len());
                true
            }
            None => false,
        }
    }

    /// Truncates the string to new_len.
    pub fn truncate(&mut self, new_len: usize) {
        if self.len() < new_len {
            return;
        }

        self.len = new_len;
        if self.len < CAPACITY {
            self.data[self.len].write(0u8);
        }
    }
}