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
use alloc::{borrow::Cow, string::String};

/// Delete an ending backslash in a string except for '\\\\'.
///
/// ```
/// assert_eq!("path", slash_formatter::delete_end_backslash("path\\"));
/// ```
#[inline]
pub fn delete_end_backslash<S: ?Sized + AsRef<str>>(s: &S) -> &str {
    let s = s.as_ref();

    let length = s.len();

    if length > 1 && s.ends_with('\\') {
        unsafe { s.get_unchecked(..length - 1) }
    } else {
        s
    }
}

/// Delete an ending backslash in a string except for '\\\\'.
///
/// ```
/// let mut s = String::from("path\\");
///
/// slash_formatter::delete_end_backslash_in_place(&mut s);
///
/// assert_eq!("path", s);
/// ```
#[inline]
pub fn delete_end_backslash_in_place(s: &mut String) {
    let length = s.len();

    if length > 1 && s.ends_with('\\') {
        unsafe {
            s.as_mut_vec().set_len(length - 1);
        }
    }
}

/// Delete a starting backslash in a string except for '\\\\'.
///
/// ```
/// assert_eq!("path", slash_formatter::delete_start_backslash("\\path"));
/// ```
#[inline]
pub fn delete_start_backslash<S: ?Sized + AsRef<str>>(s: &S) -> &str {
    let s = s.as_ref();

    let length = s.len();

    if length > 1 && s.starts_with('\\') {
        unsafe { s.get_unchecked(1..) }
    } else {
        s
    }
}

/// Delete a starting backslash in a string except for '\\\\'.
///
/// ```
/// let mut s = String::from("\\path");
///
/// slash_formatter::delete_start_backslash_in_place(&mut s);
///
/// assert_eq!("path", s);
/// ```
#[inline]
pub fn delete_start_backslash_in_place(s: &mut String) {
    let length = s.len();

    if length > 1 && s.starts_with('\\') {
        s.remove(0);
    }
}

/// Add a starting backslash into a string.
///
/// ```
/// assert_eq!("\\path", slash_formatter::add_start_backslash("path"));
/// ```
#[inline]
pub fn add_start_backslash<S: ?Sized + AsRef<str>>(s: &S) -> Cow<str> {
    let s = s.as_ref();

    if s.starts_with('\\') {
        Cow::from(s)
    } else {
        Cow::from(format!("\\{}", s))
    }
}

/// Add a starting backslash into a string.
///
/// ```
/// let mut s = String::from("path");
///
/// slash_formatter::add_start_backslash_in_place(&mut s);
///
/// assert_eq!("\\path", s);
/// ```
#[inline]
pub fn add_start_backslash_in_place(s: &mut String) {
    if !s.starts_with('\\') {
        s.insert(0, '\\');
    }
}

/// Add an ending backslash into a string.
///
/// ```
/// assert_eq!("path\\", slash_formatter::add_end_backslash("path"));
/// ```
#[inline]
pub fn add_end_backslash<S: ?Sized + AsRef<str>>(s: &S) -> Cow<str> {
    let s = s.as_ref();

    if s.ends_with('\\') {
        Cow::from(s)
    } else {
        Cow::from(format!("{}\\", s))
    }
}

/// Add an ending backslash into a string.
///
/// ```
/// let mut s = String::from("path");
///
/// slash_formatter::add_end_backslash_in_place(&mut s);
///
/// assert_eq!("path\\", s);
/// ```
#[inline]
pub fn add_end_backslash_in_place(s: &mut String) {
    if !s.ends_with('\\') {
        s.push('\\');
    }
}

/// Concatenate two strings with a backslash.
///
/// ```
/// assert_eq!(
///     "path\\to",
///     slash_formatter::concat_with_backslash("path", "to\\")
/// );
/// ```
#[inline]
pub fn concat_with_backslash<S1: Into<String>, S2: AsRef<str>>(s1: S1, s2: S2) -> String {
    let mut s1 = s1.into();

    concat_with_backslash_in_place(&mut s1, s2);

    s1
}

/// Concatenate two strings with a backslash.
///
/// ```
/// let mut s = String::from("path");
///
/// slash_formatter::concat_with_backslash_in_place(&mut s, "to\\");
///
/// assert_eq!("path\\to", s);
/// ```
#[inline]
pub fn concat_with_backslash_in_place<S2: AsRef<str>>(s1: &mut String, s2: S2) {
    add_end_backslash_in_place(s1);
    s1.push_str(delete_start_backslash(s2.as_ref()));
    delete_end_backslash_in_place(s1);
}

/**
Concatenate multiple strings with backslashes.

```
assert_eq!("path\\to\\file", slash_formatter::backslash!("path", "to\\", "\\file\\"));

let s = String::from("path");

let s = slash_formatter::backslash!(s, "to\\", "\\file\\");

assert_eq!("path\\to\\file", s);
```
*/
#[macro_export]
macro_rules! backslash {
    () => {
        '\\'
    };
    ($s:expr $(, $sc:expr)* $(,)*) => {
        {
            let mut s = $s.to_owned();

            $(
                $crate::concat_with_backslash_in_place(&mut s, $sc);
            )*

            s
        }
    };
}

/**
Concatenate multiple strings with backslashes.

```
let mut s = String::from("path");

slash_formatter::backslash_in_place!(&mut s, "to\\", "\\file\\");

assert_eq!("path\\to\\file", s);
```
*/
#[macro_export]
macro_rules! backslash_in_place {
    () => {
        '\\'
    };
    ($s:expr $(, $sc:expr)* $(,)*) => {
        $(
            $crate::concat_with_backslash_in_place($s, $sc);
        )*
    };
}

concat_with::concat_impl! {
    #[macro_export]
    /// Concatenates literals into a static string slice separated by a backslash. Prefixes and suffixes can also be added.
    ///
    /// ```rust
    /// assert_eq!("test\\10\\b\\true", slash_formatter::concat_with_backslash!("test", 10, 'b', true));
    /// ```
    concat_with_backslash => "\\"
}