Skip to main content

suno_core/
naming.rs

1//! Pure naming and relative path rendering for [`Clip`] values.
2
3use std::collections::{BTreeMap, BTreeSet};
4use std::fmt;
5use std::path::PathBuf;
6use std::str::FromStr;
7
8use serde::{Deserialize, Serialize};
9use unicode_normalization::UnicodeNormalization as _;
10
11use crate::Clip;
12use crate::error::{Error, Result};
13use crate::lineage::LineageContext;
14
15/// The default relative path template.
16///
17/// Supported placeholders are `{creator}`, `{handle}`, `{album}`, `{title}`,
18/// `{id}`, `{id8}` (first 8 characters of the clip id), and `{root_id8}`
19/// (first 8 of the resolved lineage root id). Empty path segments are dropped
20/// after rendering.
21///
22/// The default embeds `[{id8}]` in the file name so same-title clips never
23/// collide, and folders under `{album}`, which resolves to the lineage root's
24/// title (else the clip's own title).
25pub const DEFAULT_TEMPLATE: &str = "{creator}/{album}/{creator}-{title} [{id8}]";
26const DEFAULT_MAX_COMPONENT_LEN: usize = 80;
27
28const MIN_BASE_CHARS_WITH_SUFFIX: usize = 1;
29
30#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Serialize, Deserialize)]
31#[serde(rename_all = "lowercase")]
32pub enum CharacterSet {
33    #[default]
34    Unicode,
35    Ascii,
36}
37
38impl FromStr for CharacterSet {
39    type Err = Error;
40
41    fn from_str(s: &str) -> Result<Self> {
42        match s.to_ascii_lowercase().as_str() {
43            "unicode" => Ok(Self::Unicode),
44            "ascii" => Ok(Self::Ascii),
45            other => Err(Error::Config(format!(
46                "unknown character_set '{other}'; expected 'unicode' or 'ascii'"
47            ))),
48        }
49    }
50}
51
52impl fmt::Display for CharacterSet {
53    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
54        match self {
55            Self::Unicode => f.write_str("unicode"),
56            Self::Ascii => f.write_str("ascii"),
57        }
58    }
59}
60
61#[derive(Debug, Clone, PartialEq, Eq)]
62pub struct NamingConfig {
63    pub template: String,
64    pub character_set: CharacterSet,
65    pub max_component_len: usize,
66}
67
68impl Default for NamingConfig {
69    fn default() -> Self {
70        Self {
71            template: DEFAULT_TEMPLATE.to_string(),
72            character_set: CharacterSet::Unicode,
73            max_component_len: DEFAULT_MAX_COMPONENT_LEN,
74        }
75    }
76}
77
78#[derive(Debug, Clone, Copy)]
79pub struct NamingRequest<'a> {
80    pub clip: &'a Clip,
81    pub lineage: &'a LineageContext,
82}
83
84#[derive(Debug, Clone, PartialEq, Eq)]
85pub struct RenderedName {
86    pub relative_path: PathBuf,
87    pub base_name: String,
88}
89
90pub fn render_clip_name(request: NamingRequest<'_>, config: &NamingConfig) -> RenderedName {
91    let album = album_component(request, config);
92    render_with_album(request, config, &album)
93}
94
95pub fn render_clip_names(
96    requests: &[NamingRequest<'_>],
97    config: &NamingConfig,
98    colliding_albums: &BTreeSet<String>,
99) -> Vec<RenderedName> {
100    let albums = disambiguated_albums(requests, config, colliding_albums);
101    let mut rendered = requests
102        .iter()
103        .zip(&albums)
104        .map(|(request, album)| render_with_album(*request, config, album))
105        .collect::<Vec<_>>();
106
107    // Two passes to keep distinct clips from landing on one path.  The first
108    // pass keys on the exact rendered string; the second on the filesystem-
109    // canonical form (NFC + lowercase) so that paths differing only by case or
110    // Unicode normalisation (NFD vs NFC) are caught too — they would collide on
111    // case-insensitive or NFC-normalising filesystems (Windows, macOS default).
112    for apply_canonical in [false, true] {
113        let mut collisions = BTreeMap::<String, Vec<usize>>::new();
114        for (index, name) in rendered.iter().enumerate() {
115            let key = if apply_canonical {
116                canonical_path_key(&name.relative_path.to_string_lossy())
117            } else {
118                name.relative_path.to_string_lossy().into_owned()
119            };
120            collisions.entry(key).or_default().push(index);
121        }
122        for indexes in collisions.into_values().filter(|v| v.len() > 1) {
123            for index in indexes {
124                let suffix = &requests[index].clip.id;
125                rendered[index] = with_suffix(
126                    rendered[index].clone(),
127                    suffix,
128                    config.character_set,
129                    config.max_component_len,
130                );
131            }
132        }
133    }
134
135    rendered
136}
137
138/// Filesystem-canonical key: NFC-normalise then lowercase, so paths that differ
139/// only by case or by NFC/NFD encoding hash to the same bucket.
140fn canonical_path_key(path: &str) -> String {
141    path.nfc().flat_map(char::to_lowercase).collect()
142}
143
144/// The album path component for every request, with a clip whose root title
145/// collides across distinct roots disambiguated by `[{root_id8}]`.
146///
147/// Distinct roots must never share an album folder (two different upload roots
148/// titled "Break Through" exist). `colliding_albums` is the authoritative set
149/// of such shared root titles, computed once from the whole lineage store, so
150/// the decision is stable across runs and independent of which clips appear in
151/// this batch. A clip whose resolved album is in that set always gets its
152/// root's short id appended; every other clip keeps the bare album and groups
153/// with its same-root siblings.
154fn disambiguated_albums(
155    requests: &[NamingRequest<'_>],
156    config: &NamingConfig,
157    colliding_albums: &BTreeSet<String>,
158) -> Vec<String> {
159    requests
160        .iter()
161        .map(|request| album_for(*request, config, colliding_albums))
162        .collect()
163}
164
165/// The (possibly disambiguated) album component for one request.
166fn album_for(
167    request: NamingRequest<'_>,
168    config: &NamingConfig,
169    colliding_albums: &BTreeSet<String>,
170) -> String {
171    let raw_album = request.lineage.album(&title_name(request.clip));
172    let album = sanitise_component(&raw_album, config.character_set, config.max_component_len);
173    if colliding_albums.contains(raw_album.trim()) {
174        let suffix = truncate_chars(&request.lineage.root_id, 8);
175        append_suffix(
176            &album,
177            &suffix,
178            config.character_set,
179            config.max_component_len,
180        )
181    } else {
182        album
183    }
184}
185
186/// The sanitised album component: the resolved lineage album (root title, else
187/// the clip's own title).
188fn album_component(request: NamingRequest<'_>, config: &NamingConfig) -> String {
189    let album = request.lineage.album(&title_name(request.clip));
190    sanitise_component(&album, config.character_set, config.max_component_len)
191}
192
193/// Render one clip's path with an already-resolved album component.
194fn render_with_album(
195    request: NamingRequest<'_>,
196    config: &NamingConfig,
197    album: &str,
198) -> RenderedName {
199    let clip = request.clip;
200    let creator = sanitise_component(
201        &creator_name(clip),
202        config.character_set,
203        config.max_component_len,
204    );
205    let handle = sanitise_component(&clip.handle, config.character_set, config.max_component_len);
206    let title = sanitise_component(
207        &title_name(clip),
208        config.character_set,
209        config.max_component_len,
210    );
211    let id = sanitise_component(&clip.id, CharacterSet::Ascii, config.max_component_len);
212    let id8 = sanitise_component(
213        &truncate_chars(&clip.id, 8),
214        CharacterSet::Ascii,
215        config.max_component_len,
216    );
217    let root_id8 = sanitise_component(
218        &truncate_chars(&request.lineage.root_id, 8),
219        CharacterSet::Ascii,
220        config.max_component_len,
221    );
222    let substitutions = SegmentSubstitutions {
223        creator: &creator,
224        handle: &handle,
225        album,
226        title: &title,
227        root_id8: &root_id8,
228        id8: &id8,
229        id: &id,
230    };
231    let mut components = config
232        .template
233        .split('/')
234        .filter_map(|segment| {
235            let rendered = substitute_segment(segment, substitutions);
236            let sanitised = sanitise_segment(
237                &rendered,
238                config.character_set,
239                config.max_component_len,
240                [id8.as_str(), root_id8.as_str()],
241            );
242            (!sanitised.is_empty()).then_some(sanitised)
243        })
244        .collect::<Vec<_>>();
245
246    if components.is_empty() {
247        components.push(title.clone());
248    }
249
250    let mut base_name = components
251        .pop()
252        .filter(|value| !value.is_empty())
253        .unwrap_or_else(|| title.clone());
254    // Guarantee a non-empty file name even when every token sanitises away.
255    if base_name.is_empty() {
256        base_name = append_suffix(
257            &base_name,
258            &clip.id,
259            config.character_set,
260            config.max_component_len,
261        );
262    }
263
264    let mut relative_path = PathBuf::new();
265    for component in components {
266        relative_path.push(component);
267    }
268
269    relative_path.push(&base_name);
270    RenderedName {
271        relative_path,
272        base_name,
273    }
274}
275
276#[derive(Clone, Copy)]
277struct SegmentSubstitutions<'a> {
278    creator: &'a str,
279    handle: &'a str,
280    album: &'a str,
281    title: &'a str,
282    root_id8: &'a str,
283    id8: &'a str,
284    id: &'a str,
285}
286
287fn substitute_segment(segment: &str, substitutions: SegmentSubstitutions<'_>) -> String {
288    let mut rendered = String::with_capacity(segment.len());
289    let mut remainder = segment;
290    while let Some(start) = remainder.find('{') {
291        rendered.push_str(&remainder[..start]);
292        remainder = &remainder[start..];
293        if let Some((token_len, value)) = placeholder_match(remainder, substitutions) {
294            rendered.push_str(value);
295            remainder = &remainder[token_len..];
296        } else {
297            rendered.push('{');
298            remainder = &remainder[1..];
299        }
300    }
301    rendered.push_str(remainder);
302    rendered
303}
304
305fn placeholder_match<'a>(
306    segment: &str,
307    substitutions: SegmentSubstitutions<'a>,
308) -> Option<(usize, &'a str)> {
309    if segment.starts_with("{creator}") {
310        Some(("{creator}".len(), substitutions.creator))
311    } else if segment.starts_with("{handle}") {
312        Some(("{handle}".len(), substitutions.handle))
313    } else if segment.starts_with("{album}") {
314        Some(("{album}".len(), substitutions.album))
315    } else if segment.starts_with("{title}") {
316        Some(("{title}".len(), substitutions.title))
317    } else if segment.starts_with("{root_id8}") {
318        Some(("{root_id8}".len(), substitutions.root_id8))
319    } else if segment.starts_with("{id8}") {
320        Some(("{id8}".len(), substitutions.id8))
321    } else if segment.starts_with("{id}") {
322        Some(("{id}".len(), substitutions.id))
323    } else {
324        None
325    }
326}
327
328fn with_suffix(
329    mut rendered: RenderedName,
330    suffix: &str,
331    character_set: CharacterSet,
332    max_component_len: usize,
333) -> RenderedName {
334    rendered.base_name = append_suffix(
335        &rendered.base_name,
336        suffix,
337        character_set,
338        max_component_len,
339    );
340    rendered.relative_path.set_file_name(&rendered.base_name);
341    rendered
342}
343
344fn creator_name(clip: &Clip) -> String {
345    non_blank(&clip.display_name)
346        .or_else(|| non_blank(&clip.handle))
347        .unwrap_or("Unknown Creator")
348        .to_string()
349}
350
351fn title_name(clip: &Clip) -> String {
352    let title = clip.title.trim();
353    if title.is_empty() || title.eq_ignore_ascii_case("untitled") {
354        "Untitled".to_string()
355    } else {
356        title.to_string()
357    }
358}
359
360fn append_suffix(
361    base: &str,
362    suffix: &str,
363    character_set: CharacterSet,
364    max_component_len: usize,
365) -> String {
366    let suffix_pattern = format!(" [{suffix}]");
367    if base.ends_with(&suffix_pattern) {
368        return sanitise_component(base, character_set, max_component_len);
369    }
370
371    let max_len =
372        max_component_len.max(suffix_pattern.chars().count() + MIN_BASE_CHARS_WITH_SUFFIX);
373    let allowed = max_len.saturating_sub(suffix_pattern.chars().count());
374    // Sanitise the base before measuring it. The character set can expand a
375    // character (ascii turns `ß` into `ss`), so budgeting the cut on the raw
376    // length could let the sanitised prefix grow back over the room reserved for
377    // the suffix and slice through it again (#120).
378    let base = sanitise_component(base, character_set, max_len);
379    let truncated = truncate_chars(base.trim_end(), allowed);
380    let combined = format!("{truncated}{suffix_pattern}");
381    sanitise_component(&combined, character_set, max_len)
382}
383
384/// Sanitise a rendered template segment, preserving a trailing ` [id]`
385/// disambiguator (the `[{id8}]` or `[{root_id8}]` the template embeds) when the
386/// segment would otherwise be truncated through it. Only the title portion is
387/// shortened, so two long-titled siblings keep their distinguishing id and the
388/// closing bracket is never left unbalanced (#120). A segment that does not end
389/// in a disambiguator is sanitised exactly as before.
390fn sanitise_segment(
391    rendered: &str,
392    character_set: CharacterSet,
393    max_component_len: usize,
394    disambiguators: [&str; 2],
395) -> String {
396    for suffix in disambiguators {
397        if suffix.is_empty() {
398            continue;
399        }
400        let pattern = format!(" [{suffix}]");
401        if let Some(prefix) = rendered.strip_suffix(&pattern) {
402            return append_suffix(prefix, suffix, character_set, max_component_len);
403        }
404    }
405    sanitise_component(rendered, character_set, max_component_len)
406}
407
408/// Sanitise a free-form playlist name into a single safe path component.
409///
410/// Applies the same Unicode filtering and length cap as clip path components
411/// (default [`CharacterSet::Unicode`], [`DEFAULT_MAX_COMPONENT_LEN`]), so a
412/// playlist file name obeys the same filesystem rules as the rest of the
413/// library. An empty or fully-stripped name falls back to `playlist` so the
414/// caller always has a non-empty stem to append `.m3u8` to.
415pub fn sanitise_name(name: &str) -> String {
416    let cleaned = sanitise_component(name, CharacterSet::Unicode, DEFAULT_MAX_COMPONENT_LEN);
417    if cleaned.is_empty() {
418        "playlist".to_string()
419    } else {
420        cleaned
421    }
422}
423
424/// The `.stems` sub-folder that sits beside a song's audio file.
425///
426/// `base` is the song's extensionless relative path (the same value the audio
427/// and its sidecars are built from), so the folder is `{base}.stems`. It cannot
428/// collide with the audio file (`{base}.<ext>`) or any `{base}.<sidecar>`
429/// because the `.stems` suffix is distinct, mirroring the sidecar convention.
430pub fn stems_folder(base: &str) -> String {
431    format!("{base}.stems")
432}
433
434/// The relative path of one stem file inside a song's [`stems_folder`].
435///
436/// Named base+label+disambiguation rather than label-only, because Auto Split
437/// can mislabel stems and Advanced Split yields ~100 instruments, so blank or
438/// duplicate labels are expected. The file is
439/// `{song file name} - {label} [{stem id8}].{ext}`; the ` - {label}` piece is
440/// dropped when the label sanitises to empty, and the `[{stem id8}]`
441/// disambiguator (the first 8 characters of the stable stem id) keeps blank or
442/// duplicate labels collision-free. Every component is run through the same
443/// [`sanitise_component`] filter as the rest of the library, honouring
444/// `character_set`.
445pub fn stem_file_path(
446    base: &str,
447    label: &str,
448    stem_id: &str,
449    ext: &str,
450    character_set: CharacterSet,
451) -> String {
452    let folder = stems_folder(base);
453    // The song's own file-name stem (the last path component of `base`), reused
454    // so a stem stays identifiable even when viewed outside its `.stems` folder.
455    let song_stem = base.rsplit('/').next().unwrap_or(base);
456    let label = sanitise_component(label, character_set, DEFAULT_MAX_COMPONENT_LEN);
457    let id8 = sanitise_component(
458        &truncate_chars(stem_id, 8),
459        CharacterSet::Ascii,
460        DEFAULT_MAX_COMPONENT_LEN,
461    );
462
463    let mut name = song_stem.to_string();
464    if !label.is_empty() {
465        name.push_str(" - ");
466        name.push_str(&label);
467    }
468    if !id8.is_empty() {
469        name.push_str(" [");
470        name.push_str(&id8);
471        name.push(']');
472    }
473    // A degenerate base (empty song stem, blank label, empty id) must still
474    // yield a usable name rather than a hidden dotfile.
475    if name.trim().is_empty() {
476        name = "stem".to_string();
477    }
478    format!("{folder}/{name}.{}", sanitise_ext(ext))
479}
480
481/// Reduce a candidate extension to a safe lowercase alphanumeric token,
482/// defaulting to `mp3` when it is empty or fully stripped. The caller passes the
483/// resolved stem format's extension (`wav` or `mp3`); stems are stored RAW.
484fn sanitise_ext(ext: &str) -> String {
485    let cleaned: String = ext
486        .trim_start_matches('.')
487        .chars()
488        .filter(|c| c.is_ascii_alphanumeric())
489        .flat_map(char::to_lowercase)
490        .take(8)
491        .collect();
492    if cleaned.is_empty() {
493        "mp3".to_string()
494    } else {
495        cleaned
496    }
497}
498
499fn sanitise_component(
500    value: &str,
501    character_set: CharacterSet,
502    max_component_len: usize,
503) -> String {
504    // Single pass: map each char to its charset-safe form while collapsing runs
505    // of whitespace to one space and dropping leading/trailing whitespace. This
506    // fuses the old filter / split_whitespace / collect / join steps, which
507    // allocated several intermediate strings and a vector, into one buffer.
508    let mut collapsed = String::with_capacity(value.len());
509    let mut pending_space = false;
510    let push = |out: char, buf: &mut String, pending: &mut bool| {
511        if out.is_whitespace() {
512            *pending = !buf.is_empty();
513        } else {
514            if *pending {
515                buf.push(' ');
516            }
517            *pending = false;
518            buf.push(out);
519        }
520    };
521    match character_set {
522        CharacterSet::Unicode => {
523            for ch in value.chars() {
524                push(unicode_char(ch), &mut collapsed, &mut pending_space);
525            }
526        }
527        CharacterSet::Ascii => {
528            for ch in value.chars() {
529                for out in ascii_chars(ch) {
530                    push(out, &mut collapsed, &mut pending_space);
531                }
532            }
533        }
534    }
535
536    let trimmed = collapsed.trim_matches([' ', '.']);
537    if trimmed.is_empty() {
538        return String::new();
539    }
540
541    // Keep at most `max` characters, then trim any space or dot the cut exposed.
542    // Slicing at the char boundary avoids the extra String the old
543    // truncate-then-trim-then-to_string sequence built.
544    let max = max_component_len.max(1);
545    let end = trimmed
546        .char_indices()
547        .nth(max)
548        .map_or(trimmed.len(), |(index, _)| index);
549    let result = trimmed[..end].trim_matches([' ', '.']);
550    if result.is_empty() {
551        return String::new();
552    }
553    if result == "." || result == ".." {
554        return "item".to_string();
555    }
556    let mut result = result.to_string();
557    if !result.ends_with('_') && is_reserved_name(&result) {
558        result.push('_');
559    }
560    result
561}
562
563fn unicode_char(ch: char) -> char {
564    if matches!(
565        ch,
566        '<' | '>' | ':' | '"' | '/' | '\\' | '|' | '?' | '*' | '\0'
567    ) || ch.is_control()
568    {
569        ' '
570    } else {
571        ch
572    }
573}
574
575fn ascii_chars(ch: char) -> Vec<char> {
576    if ch.is_ascii() {
577        return vec![unicode_char(ch)];
578    }
579
580    match ch {
581        'À' | 'Á' | 'Â' | 'Ã' | 'Ä' | 'Å' => vec!['A'],
582        'à' | 'á' | 'â' | 'ã' | 'ä' | 'å' => vec!['a'],
583        'Ç' => vec!['C'],
584        'ç' => vec!['c'],
585        'È' | 'É' | 'Ê' | 'Ë' => vec!['E'],
586        'è' | 'é' | 'ê' | 'ë' => vec!['e'],
587        'Ì' | 'Í' | 'Î' | 'Ï' => vec!['I'],
588        'ì' | 'í' | 'î' | 'ï' => vec!['i'],
589        'Ñ' => vec!['N'],
590        'ñ' => vec!['n'],
591        'Ò' | 'Ó' | 'Ô' | 'Õ' | 'Ö' | 'Ø' => vec!['O'],
592        'ò' | 'ó' | 'ô' | 'õ' | 'ö' | 'ø' => vec!['o'],
593        'Ù' | 'Ú' | 'Û' | 'Ü' => vec!['U'],
594        'ù' | 'ú' | 'û' | 'ü' => vec!['u'],
595        'Ý' | 'Ÿ' => vec!['Y'],
596        'ý' | 'ÿ' => vec!['y'],
597        'Æ' => vec!['A', 'E'],
598        'æ' => vec!['a', 'e'],
599        'Œ' => vec!['O', 'E'],
600        'œ' => vec!['o', 'e'],
601        'ß' => vec!['s', 's'],
602        _ => vec![' '],
603    }
604}
605
606fn truncate_chars(value: &str, max_len: usize) -> String {
607    value.chars().take(max_len).collect()
608}
609
610fn non_blank(value: &str) -> Option<&str> {
611    let trimmed = value.trim();
612    (!trimmed.is_empty()).then_some(trimmed)
613}
614
615fn is_reserved_name(value: &str) -> bool {
616    let stem = value.split('.').next().unwrap_or(value);
617    // Every reserved device name is 3 (CON/PRN/AUX/NUL) or 4 (COMx/LPTx) ASCII
618    // bytes, so anything else cannot match without allocating an uppercased copy.
619    if !matches!(stem.len(), 3 | 4) {
620        return false;
621    }
622    const RESERVED: [&str; 22] = [
623        "CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8",
624        "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",
625    ];
626    RESERVED.iter().any(|name| name.eq_ignore_ascii_case(stem))
627}
628
629#[cfg(test)]
630mod tests {
631    use super::*;
632    use crate::lineage::{EdgeType, ResolveStatus};
633    use std::collections::{BTreeMap, BTreeSet};
634    use std::path::Path;
635
636    fn test_clip(id: &str, title: &str) -> Clip {
637        Clip {
638            id: id.to_string(),
639            title: title.to_string(),
640            display_name: "München".to_string(),
641            handle: "munchen".to_string(),
642            ..Clip::default()
643        }
644    }
645
646    fn render_own(clip: &Clip, config: &NamingConfig) -> RenderedName {
647        let lineage = LineageContext::own_root(clip);
648        render_clip_name(
649            NamingRequest {
650                clip,
651                lineage: &lineage,
652            },
653            config,
654        )
655    }
656
657    fn render_all_own(
658        clips: &[Clip],
659        config: &NamingConfig,
660        colliding: &BTreeSet<String>,
661    ) -> Vec<RenderedName> {
662        let lineages: Vec<LineageContext> = clips.iter().map(LineageContext::own_root).collect();
663        let requests: Vec<NamingRequest> = clips
664            .iter()
665            .zip(&lineages)
666            .map(|(clip, lineage)| NamingRequest { clip, lineage })
667            .collect();
668        render_clip_names(&requests, config, colliding)
669    }
670
671    #[test]
672    fn unicode_names_are_preserved_and_ascii_falls_back() {
673        let clip = test_clip("abc12345", "Beyoncé/東京");
674
675        let unicode = render_own(&clip, &NamingConfig::default());
676        assert_eq!(
677            unicode.relative_path,
678            Path::new("München/Beyoncé 東京/München-Beyoncé 東京 [abc12345]")
679        );
680
681        let ascii = render_own(
682            &clip,
683            &NamingConfig {
684                character_set: CharacterSet::Ascii,
685                ..NamingConfig::default()
686            },
687        );
688        assert_eq!(
689            ascii.relative_path,
690            Path::new("Munchen/Beyonce/Munchen-Beyonce [abc12345]")
691        );
692    }
693
694    #[test]
695    fn reserved_and_hostile_names_are_sanitised() {
696        let clip = Clip {
697            id: "deadbeef".to_string(),
698            title: "CON<>:\"/\\|?*.".to_string(),
699            display_name: "AUX".to_string(),
700            ..Clip::default()
701        };
702
703        let rendered = render_own(&clip, &NamingConfig::default());
704        assert!(
705            rendered.relative_path.starts_with("AUX_/CON_"),
706            "path was {}",
707            rendered.relative_path.display()
708        );
709        assert!(rendered.base_name.contains("[deadbeef]"));
710    }
711
712    #[test]
713    fn default_template_always_embeds_id8() {
714        let clip = test_clip("abcdef1234567890", "Any Title");
715        let rendered = render_own(&clip, &NamingConfig::default());
716        assert!(
717            rendered.base_name.contains("[abcdef12]"),
718            "base_name was {}",
719            rendered.base_name
720        );
721    }
722
723    #[test]
724    fn custom_template_replaces_all_known_placeholders_once() {
725        let clip = Clip {
726            id: "abcdef12-full".to_string(),
727            title: "Song".to_string(),
728            display_name: "Creator".to_string(),
729            handle: "handle".to_string(),
730            ..Clip::default()
731        };
732        let lineage = LineageContext {
733            root_id: "rootxyz9-extra".to_string(),
734            root_title: "Album".to_string(),
735            root_date: String::new(),
736            parent_id: "rootxyz9-extra".to_string(),
737            edge_type: Some(EdgeType::Cover),
738            status: ResolveStatus::Resolved,
739        };
740        let config = NamingConfig {
741            template: "{creator}-{handle}-{album}-{title}-{root_id8}-{id8}-{id}-{unknown}"
742                .to_string(),
743            ..NamingConfig::default()
744        };
745
746        let rendered = render_clip_name(
747            NamingRequest {
748                clip: &clip,
749                lineage: &lineage,
750            },
751            &config,
752        );
753
754        assert_eq!(
755            rendered.relative_path.to_string_lossy(),
756            "Creator-handle-Album-Song-rootxyz9-abcdef12-abcdef12-full-{unknown}"
757        );
758    }
759
760    #[test]
761    fn blank_titles_use_a_stable_suffix() {
762        let clip = test_clip("12345678-clip", "   ");
763
764        let rendered = render_own(&clip, &NamingConfig::default());
765        assert_eq!(rendered.base_name, "München-Untitled [12345678]");
766        assert_eq!(
767            rendered.relative_path,
768            Path::new("München/Untitled/München-Untitled [12345678]")
769        );
770    }
771
772    #[test]
773    fn very_long_titles_are_trimmed() {
774        let clip = test_clip("abcdef12", &"a".repeat(120));
775        let rendered = render_own(
776            &clip,
777            &NamingConfig {
778                max_component_len: 24,
779                ..NamingConfig::default()
780            },
781        );
782
783        for component in rendered.relative_path.components() {
784            let text = component.as_os_str().to_string_lossy();
785            assert!(
786                text.chars().count() <= 24,
787                "component {text:?} exceeds 24 chars"
788            );
789        }
790        // The trailing [id8] must survive the truncation intact (#120).
791        assert!(
792            rendered.base_name.ends_with(" [abcdef12]"),
793            "id8 disambiguator was sliced; base_name was {:?}",
794            rendered.base_name
795        );
796    }
797
798    #[test]
799    fn long_names_keep_the_full_id8_disambiguator() {
800        // A creator+title long enough to overflow the cap keeps the whole
801        // trailing [id8]: the title is shortened, not the id, so the name stays
802        // complete and the bracket stays balanced (#120).
803        let clip = test_clip("1234abcd-tail", &"a".repeat(120));
804        let config = NamingConfig {
805            max_component_len: 40,
806            ..NamingConfig::default()
807        };
808        let rendered = render_own(&clip, &config);
809
810        assert!(
811            rendered.base_name.ends_with(" [1234abcd]"),
812            "base_name must end with the full disambiguator, was {:?}",
813            rendered.base_name
814        );
815        assert_eq!(rendered.base_name.chars().count(), 40);
816    }
817
818    #[test]
819    fn long_titled_siblings_stay_distinct_with_balanced_brackets() {
820        // Two same-(long-)titled clips sharing a root must remain distinct: only
821        // the title is shortened, so their [id8] suffixes differ and neither name
822        // ends up with an unbalanced bracket (#120).
823        let lineage = LineageContext {
824            root_id: "root-42".to_string(),
825            root_title: "Origin".to_string(),
826            root_date: String::new(),
827            parent_id: "root-42".to_string(),
828            edge_type: Some(EdgeType::Cover),
829            status: ResolveStatus::Resolved,
830        };
831        let title = "z".repeat(200);
832        let first = test_clip("aaaa1111-x", &title);
833        let second = test_clip("bbbb2222-y", &title);
834        let requests = [
835            NamingRequest {
836                clip: &first,
837                lineage: &lineage,
838            },
839            NamingRequest {
840                clip: &second,
841                lineage: &lineage,
842            },
843        ];
844
845        let names = render_clip_names(&requests, &NamingConfig::default(), &BTreeSet::new());
846
847        assert!(names[0].base_name.ends_with(" [aaaa1111]"));
848        assert!(names[1].base_name.ends_with(" [bbbb2222]"));
849        assert_ne!(names[0].relative_path, names[1].relative_path);
850        for name in &names {
851            assert!(name.base_name.chars().count() <= 80);
852            assert_eq!(name.base_name.matches('[').count(), 1, "unbalanced '['");
853            assert_eq!(name.base_name.matches(']').count(), 1, "unbalanced ']'");
854        }
855    }
856
857    #[test]
858    fn long_colliding_album_keeps_its_root_id8() {
859        // The album [root_id8] disambiguator is preserved when a long album title
860        // must be truncated, mirroring the file-name fix (#120).
861        let long = "Break Through ".repeat(20);
862        let title = long.trim().to_string();
863        let clip = Clip {
864            id: "aaaa1111-x".to_string(),
865            title: title.clone(),
866            display_name: "München".to_string(),
867            ..Clip::default()
868        };
869        let colliding: BTreeSet<String> = [title].into_iter().collect();
870        let names = render_all_own(&[clip], &NamingConfig::default(), &colliding);
871
872        let album = names[0]
873            .relative_path
874            .components()
875            .nth(1)
876            .map(|component| component.as_os_str().to_string_lossy().into_owned())
877            .unwrap_or_default();
878        assert!(album.ends_with(" [aaaa1111]"), "album was {album:?}");
879        assert!(album.chars().count() <= 80);
880    }
881
882    #[test]
883    fn ascii_expanding_chars_do_not_slice_the_disambiguator() {
884        // A literal expanding character (`ß` -> `ss` under ascii) in a custom
885        // template, right before the trailing ` [{id8}]`, must not grow back over
886        // the suffix and slice it: the base is sized after expansion (#120).
887        let clip = test_clip("1234abcd", "Title");
888        let config = NamingConfig {
889            template: format!("{}{{title}} [{{id8}}]", "ß".repeat(80)),
890            character_set: CharacterSet::Ascii,
891            max_component_len: 40,
892        };
893        let rendered = render_own(&clip, &config);
894
895        assert!(
896            rendered.base_name.ends_with(" [1234abcd]"),
897            "expansion sliced the id8; base_name was {:?}",
898            rendered.base_name
899        );
900        assert!(rendered.base_name.chars().count() <= 40);
901    }
902
903    #[test]
904    fn same_title_siblings_stay_distinct_via_id8() {
905        // Two clips sharing a root (same album folder) and the same title must
906        // still land on distinct files; the default template's {id8} does that.
907        let lineage = LineageContext {
908            root_id: "root-9".to_string(),
909            root_title: "Origin".to_string(),
910            root_date: String::new(),
911            parent_id: "root-9".to_string(),
912            edge_type: Some(EdgeType::Cover),
913            status: ResolveStatus::Resolved,
914        };
915        let first = test_clip("11111111-alpha", "Shared");
916        let second = test_clip("22222222-beta", "Shared");
917        let requests = [
918            NamingRequest {
919                clip: &first,
920                lineage: &lineage,
921            },
922            NamingRequest {
923                clip: &second,
924                lineage: &lineage,
925            },
926        ];
927
928        let names = render_clip_names(&requests, &NamingConfig::default(), &BTreeSet::new());
929
930        assert_eq!(
931            names[0].relative_path,
932            Path::new("München/Origin/München-Shared [11111111]")
933        );
934        assert_eq!(
935            names[1].relative_path,
936            Path::new("München/Origin/München-Shared [22222222]")
937        );
938    }
939
940    #[test]
941    fn id8_prefix_collision_falls_back_to_full_id() {
942        // Custom template without {id8} so identical titles collide and the
943        // filename fallback (full id) has to keep them distinct.
944        let config = NamingConfig {
945            template: "{creator}/{title}".to_string(),
946            ..NamingConfig::default()
947        };
948        let first = test_clip("abcd1234-first", "Untitled");
949        let second = test_clip("abcd1234-second", "Untitled");
950
951        let names = render_all_own(&[first.clone(), second.clone()], &config, &BTreeSet::new());
952        let swapped = render_all_own(&[second.clone(), first.clone()], &config, &BTreeSet::new());
953
954        assert_ne!(
955            names[0].relative_path.to_string_lossy(),
956            names[1].relative_path.to_string_lossy()
957        );
958
959        let ordered = |rendered: &[RenderedName], clips: &[Clip]| {
960            clips
961                .iter()
962                .zip(rendered)
963                .map(|(clip, name)| {
964                    (
965                        clip.id.clone(),
966                        name.relative_path.to_string_lossy().into_owned(),
967                    )
968                })
969                .collect::<BTreeMap<_, _>>()
970        };
971        assert_eq!(
972            ordered(&names, &[first.clone(), second.clone()]),
973            ordered(&swapped, &[second, first])
974        );
975    }
976
977    #[test]
978    fn album_is_root_title_for_a_remix() {
979        let clip = Clip {
980            id: "child".to_string(),
981            title: "Remix".to_string(),
982            display_name: "München".to_string(),
983            ..Clip::default()
984        };
985        let lineage = LineageContext {
986            root_id: "root-1".to_string(),
987            root_title: "Original".to_string(),
988            root_date: String::new(),
989            parent_id: "root-1".to_string(),
990            edge_type: Some(EdgeType::Cover),
991            status: ResolveStatus::Resolved,
992        };
993
994        let rendered = render_clip_name(
995            NamingRequest {
996                clip: &clip,
997                lineage: &lineage,
998            },
999            &NamingConfig::default(),
1000        );
1001        assert_eq!(
1002            rendered.relative_path,
1003            Path::new("München/Original/München-Remix [child]")
1004        );
1005    }
1006
1007    #[test]
1008    fn album_is_own_title_for_a_root() {
1009        let clip = Clip {
1010            id: "root-1".to_string(),
1011            title: "Original".to_string(),
1012            display_name: "München".to_string(),
1013            ..Clip::default()
1014        };
1015
1016        let rendered = render_own(&clip, &NamingConfig::default());
1017        assert_eq!(
1018            rendered.relative_path,
1019            Path::new("München/Original/München-Original [root-1]")
1020        );
1021    }
1022
1023    #[test]
1024    fn shared_album_title_from_distinct_roots_is_disambiguated() {
1025        let first = Clip {
1026            id: "aaaa1111-x".to_string(),
1027            title: "Break Through".to_string(),
1028            display_name: "München".to_string(),
1029            ..Clip::default()
1030        };
1031        let second = Clip {
1032            id: "bbbb2222-y".to_string(),
1033            title: "Break Through".to_string(),
1034            display_name: "München".to_string(),
1035            ..Clip::default()
1036        };
1037
1038        // The colliding set is authoritative (store-driven), so disambiguation
1039        // does not depend on both roots appearing in the same batch.
1040        let colliding: BTreeSet<String> = ["Break Through".to_string()].into_iter().collect();
1041        let names = render_all_own(
1042            &[first.clone(), second.clone()],
1043            &NamingConfig::default(),
1044            &colliding,
1045        );
1046        let swapped = render_all_own(
1047            &[second.clone(), first.clone()],
1048            &NamingConfig::default(),
1049            &colliding,
1050        );
1051
1052        let album_of = |rendered: &RenderedName| {
1053            rendered
1054                .relative_path
1055                .components()
1056                .nth(1)
1057                .map(|component| component.as_os_str().to_string_lossy().into_owned())
1058                .unwrap_or_default()
1059        };
1060
1061        assert_eq!(album_of(&names[0]), "Break Through [aaaa1111]");
1062        assert_eq!(album_of(&names[1]), "Break Through [bbbb2222]");
1063        // Deterministic regardless of input order.
1064        assert_eq!(album_of(&swapped[0]), "Break Through [bbbb2222]");
1065        assert_eq!(album_of(&swapped[1]), "Break Through [aaaa1111]");
1066
1067        // The MEDIUM fix: a narrowed run showing only one of the two roots
1068        // still gets the suffixed folder, so folders never oscillate.
1069        let alone = render_all_own(
1070            std::slice::from_ref(&first),
1071            &NamingConfig::default(),
1072            &colliding,
1073        );
1074        assert_eq!(album_of(&alone[0]), "Break Through [aaaa1111]");
1075    }
1076
1077    #[test]
1078    fn unique_root_title_stays_a_bare_album() {
1079        // A title absent from the colliding set keeps its bare folder even when
1080        // the batch happens to hold a same-titled sibling of the same root.
1081        let clip = Clip {
1082            id: "solo-1".to_string(),
1083            title: "Solo".to_string(),
1084            display_name: "München".to_string(),
1085            ..Clip::default()
1086        };
1087        let names = render_all_own(&[clip], &NamingConfig::default(), &BTreeSet::new());
1088        assert_eq!(
1089            names[0].relative_path,
1090            Path::new("München/Solo/München-Solo [solo-1]")
1091        );
1092    }
1093
1094    #[test]
1095    fn sanitise_name_strips_separators_and_falls_back_when_empty() {
1096        assert_eq!(sanitise_name("Road/Trip: 2024"), "Road Trip 2024");
1097        assert_eq!(sanitise_name(""), "playlist");
1098        // A name made only of illegal characters strips to nothing, so the
1099        // caller still gets a usable, non-empty stem.
1100        assert_eq!(sanitise_name("///"), "playlist");
1101    }
1102
1103    #[test]
1104    fn stems_folder_is_a_sibling_suffix_of_the_song_base() {
1105        assert_eq!(
1106            stems_folder("Creator/Album/Creator-Song [abcd1234]"),
1107            "Creator/Album/Creator-Song [abcd1234].stems"
1108        );
1109    }
1110
1111    #[test]
1112    fn stem_file_path_combines_song_stem_label_and_disambiguator() {
1113        let path = stem_file_path(
1114            "Creator/Album/Creator-Song [abcd1234]",
1115            "Vocals",
1116            "stem-vocals-9f8e7d6c",
1117            "mp3",
1118            CharacterSet::Unicode,
1119        );
1120        assert_eq!(
1121            path,
1122            "Creator/Album/Creator-Song [abcd1234].stems/Creator-Song [abcd1234] - Vocals [stem-voc].mp3"
1123        );
1124    }
1125
1126    #[test]
1127    fn stem_file_path_disambiguates_blank_and_duplicate_labels_by_id() {
1128        // Two stems with the SAME (blank) label must not collide: the stem-id
1129        // disambiguator keeps them distinct even with no usable label.
1130        let a = stem_file_path("song", "", "id-aaaaaaaa", "wav", CharacterSet::Unicode);
1131        let b = stem_file_path("song", "", "id-bbbbbbbb", "wav", CharacterSet::Unicode);
1132        assert_eq!(a, "song.stems/song [id-aaaaa].wav");
1133        assert_eq!(b, "song.stems/song [id-bbbbb].wav");
1134        assert_ne!(a, b);
1135    }
1136
1137    #[test]
1138    fn stem_file_path_sanitises_label_and_extension_and_honours_ascii() {
1139        // Illegal path characters in the label are stripped, the extension is
1140        // reduced to a safe lowercase token, and ASCII folding applies.
1141        let path = stem_file_path(
1142            "song",
1143            "Lead/Vocal: Æ",
1144            "STEMID12",
1145            ".FLAC",
1146            CharacterSet::Ascii,
1147        );
1148        assert_eq!(path, "song.stems/song - Lead Vocal AE [STEMID12].flac");
1149        // A junk extension falls back to mp3 (defensive; callers pass wav/mp3).
1150        let fallback = stem_file_path("s", "Bass", "x", "??", CharacterSet::Unicode);
1151        assert_eq!(fallback, "s.stems/s - Bass [x].mp3");
1152    }
1153
1154    #[test]
1155    fn case_only_path_difference_is_a_canonical_collision() {
1156        // A custom template without {id8}: clips whose titles differ only in
1157        // case produce different exact paths but the same canonical path and
1158        // must be disambiguated to avoid clobbering on case-insensitive FSes.
1159        let config = NamingConfig {
1160            template: "{creator}/{title}".to_string(),
1161            ..NamingConfig::default()
1162        };
1163        let first = test_clip("aaaa1111-x", "sunrise");
1164        let second = test_clip("bbbb2222-y", "SUNRISE");
1165
1166        let names = render_all_own(&[first, second], &config, &BTreeSet::new());
1167
1168        assert_ne!(
1169            names[0].relative_path.to_string_lossy(),
1170            names[1].relative_path.to_string_lossy(),
1171            "canonical collision was not disambiguated"
1172        );
1173    }
1174
1175    #[test]
1176    fn nfc_nfd_path_difference_is_a_canonical_collision() {
1177        // The same character encoded as NFC vs NFD produces different byte
1178        // strings but the same file on NFC-normalising filesystems (macOS APFS).
1179        let config = NamingConfig {
1180            template: "{creator}/{title}".to_string(),
1181            ..NamingConfig::default()
1182        };
1183        // "é" as NFC (U+00E9) vs NFD (e + U+0301).
1184        let nfc_title = "\u{00e9}toile";
1185        let nfd_title = "e\u{0301}toile";
1186        let first = test_clip("aaaa1111-x", nfc_title);
1187        let second = test_clip("bbbb2222-y", nfd_title);
1188
1189        let names = render_all_own(&[first, second], &config, &BTreeSet::new());
1190
1191        assert_ne!(
1192            names[0].relative_path.to_string_lossy(),
1193            names[1].relative_path.to_string_lossy(),
1194            "NFC/NFD canonical collision was not disambiguated"
1195        );
1196    }
1197
1198    #[test]
1199    fn genuinely_distinct_paths_are_never_wrongly_disambiguated() {
1200        // Clips with distinct titles (not even canonically equivalent) must not
1201        // receive unnecessary suffixes — the canonical check must not produce
1202        // false positives.
1203        let config = NamingConfig {
1204            template: "{creator}/{title}".to_string(),
1205            ..NamingConfig::default()
1206        };
1207        let first = test_clip("aaaa1111-x", "Alpha");
1208        let second = test_clip("bbbb2222-y", "Beta");
1209
1210        let names = render_all_own(&[first, second], &config, &BTreeSet::new());
1211
1212        assert_eq!(
1213            names[0].relative_path,
1214            Path::new("München/Alpha"),
1215            "distinct path was wrongly suffixed"
1216        );
1217        assert_eq!(
1218            names[1].relative_path,
1219            Path::new("München/Beta"),
1220            "distinct path was wrongly suffixed"
1221        );
1222    }
1223}