debian-watch 0.4.9

parser for Debian watch files
Documentation
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
//! Functions for parsing and applying version and URL mangling expressions.
//!
//! Debian watch files use sed-style expressions for transforming versions and URLs.

use regex::Regex;

/// Error type for mangling expression parsing
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum MangleError {
    /// Not a substitution or translation expression
    NotMangleExpr(String),
    /// Invalid substitution expression
    InvalidSubstExpr(String),
    /// Invalid translation expression
    InvalidTranslExpr(String),
    /// Regex compilation error
    RegexError(String),
}

impl std::fmt::Display for MangleError {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            MangleError::NotMangleExpr(s) => {
                write!(f, "not a substitution or translation expression: {}", s)
            }
            MangleError::InvalidSubstExpr(s) => write!(f, "invalid substitution expression: {}", s),
            MangleError::InvalidTranslExpr(s) => write!(f, "invalid translation expression: {}", s),
            MangleError::RegexError(s) => write!(f, "regex error: {}", s),
        }
    }
}

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

/// Type of mangling expression
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum MangleExprKind {
    /// Substitution (s/pattern/replacement/flags)
    Subst,
    /// Translation (tr/pattern/replacement/flags or y/pattern/replacement/flags)
    Transl,
}

/// A parsed mangling expression
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct MangleExpr {
    /// The kind of expression
    pub kind: MangleExprKind,
    /// The pattern to match
    pub pattern: String,
    /// The replacement string
    pub replacement: String,
    /// Optional flags
    pub flags: Option<String>,
}

/// Parse a mangling expression
///
/// # Examples
///
/// ```
/// use debian_watch::mangle::parse_mangle_expr;
///
/// let expr = parse_mangle_expr("s/foo/bar/g").unwrap();
/// assert_eq!(expr.pattern, "foo");
/// assert_eq!(expr.replacement, "bar");
/// assert_eq!(expr.flags.as_deref(), Some("g"));
/// ```
pub fn parse_mangle_expr(vm: &str) -> Result<MangleExpr, MangleError> {
    if vm.starts_with('s') {
        parse_subst_expr(vm)
    } else if vm.starts_with("tr") {
        parse_transl_expr(vm)
    } else if vm.starts_with('y') {
        parse_transl_expr(vm)
    } else {
        Err(MangleError::NotMangleExpr(vm.to_string()))
    }
}

/// Parse a substitution expression (s/pattern/replacement/flags)
///
/// # Examples
///
/// ```
/// use debian_watch::mangle::parse_subst_expr;
///
/// let expr = parse_subst_expr("s/foo/bar/g").unwrap();
/// assert_eq!(expr.pattern, "foo");
/// assert_eq!(expr.replacement, "bar");
/// assert_eq!(expr.flags.as_deref(), Some("g"));
///
/// let expr = parse_subst_expr("s|foo|bar|").unwrap();
/// assert_eq!(expr.pattern, "foo");
/// assert_eq!(expr.replacement, "bar");
/// ```
pub fn parse_subst_expr(vm: &str) -> Result<MangleExpr, MangleError> {
    if !vm.starts_with('s') {
        return Err(MangleError::InvalidSubstExpr(
            "not a substitution expression".to_string(),
        ));
    }

    if vm.len() < 2 {
        return Err(MangleError::InvalidSubstExpr(
            "expression too short".to_string(),
        ));
    }

    let delimiter = vm.chars().nth(1).unwrap();
    let rest = &vm[2..];

    // Split by unescaped delimiter
    let parts = split_by_unescaped_delimiter(rest, delimiter);

    if parts.len() < 2 {
        return Err(MangleError::InvalidSubstExpr(
            "not enough parts".to_string(),
        ));
    }

    let pattern = parts[0].clone();
    let replacement = parts[1].clone();
    let flags = if parts.len() > 2 && !parts[2].is_empty() {
        Some(parts[2].clone())
    } else {
        None
    };

    Ok(MangleExpr {
        kind: MangleExprKind::Subst,
        pattern,
        replacement,
        flags,
    })
}

/// Parse a translation expression (tr/pattern/replacement/flags or y/pattern/replacement/flags)
///
/// # Examples
///
/// ```
/// use debian_watch::mangle::parse_transl_expr;
///
/// let expr = parse_transl_expr("tr/a-z/A-Z/").unwrap();
/// assert_eq!(expr.pattern, "a-z");
/// assert_eq!(expr.replacement, "A-Z");
/// ```
pub fn parse_transl_expr(vm: &str) -> Result<MangleExpr, MangleError> {
    let rest = if vm.starts_with("tr") {
        &vm[2..]
    } else if vm.starts_with('y') {
        &vm[1..]
    } else {
        return Err(MangleError::InvalidTranslExpr(
            "not a translation expression".to_string(),
        ));
    };

    if rest.is_empty() {
        return Err(MangleError::InvalidTranslExpr(
            "expression too short".to_string(),
        ));
    }

    let delimiter = rest.chars().next().unwrap();
    let rest = &rest[1..];

    // Split by unescaped delimiter
    let parts = split_by_unescaped_delimiter(rest, delimiter);

    if parts.len() < 2 {
        return Err(MangleError::InvalidTranslExpr(
            "not enough parts".to_string(),
        ));
    }

    let pattern = parts[0].clone();
    let replacement = parts[1].clone();
    let flags = if parts.len() > 2 && !parts[2].is_empty() {
        Some(parts[2].clone())
    } else {
        None
    };

    Ok(MangleExpr {
        kind: MangleExprKind::Transl,
        pattern,
        replacement,
        flags,
    })
}

/// Split a string by an unescaped delimiter
fn split_by_unescaped_delimiter(s: &str, delimiter: char) -> Vec<String> {
    let mut parts = Vec::new();
    let mut current = String::new();
    let mut escaped = false;

    for c in s.chars() {
        if escaped {
            current.push(c);
            escaped = false;
        } else if c == '\\' {
            current.push(c);
            escaped = true;
        } else if c == delimiter {
            parts.push(current.clone());
            current.clear();
        } else {
            current.push(c);
        }
    }

    // Don't forget the last part
    parts.push(current);

    parts
}

/// Apply a mangling expression to a string
///
/// # Examples
///
/// ```
/// use debian_watch::mangle::apply_mangle;
///
/// let result = apply_mangle("s/foo/bar/", "foo baz foo").unwrap();
/// assert_eq!(result, "bar baz foo");
///
/// let result = apply_mangle("s/foo/bar/g", "foo baz foo").unwrap();
/// assert_eq!(result, "bar baz bar");
/// ```
pub fn apply_mangle(vm: &str, orig: &str) -> Result<String, MangleError> {
    let expr = parse_mangle_expr(vm)?;

    match expr.kind {
        MangleExprKind::Subst => {
            let re =
                Regex::new(&expr.pattern).map_err(|e| MangleError::RegexError(e.to_string()))?;

            // Check if 'g' flag is present for global replacement
            let global = expr.flags.as_ref().is_some_and(|f| f.contains('g'));

            if global {
                Ok(re.replace_all(orig, expr.replacement.as_str()).to_string())
            } else {
                Ok(re.replace(orig, expr.replacement.as_str()).to_string())
            }
        }
        MangleExprKind::Transl => {
            // Translation: character-by-character replacement
            apply_translation(&expr.pattern, &expr.replacement, orig)
        }
    }
}

/// Apply a mangling expression with template variable substitution
///
/// This first substitutes template variables like @PACKAGE@ and @COMPONENT@ in the
/// mangle expression itself, then applies the mangle to the input string.
///
/// # Examples
///
/// ```
/// use debian_watch::mangle::apply_mangle_with_subst;
///
/// let result = apply_mangle_with_subst(
///     "s/@PACKAGE@/bar/",
///     "foo baz foo",
///     || "foo".to_string(),
///     || String::new()
/// ).unwrap();
/// assert_eq!(result, "bar baz foo");
/// ```
pub fn apply_mangle_with_subst(
    vm: &str,
    orig: &str,
    package: impl FnOnce() -> String,
    component: impl FnOnce() -> String,
) -> Result<String, MangleError> {
    // Apply template substitution to the mangle expression
    let substituted_vm = crate::subst::subst(vm, package, component);

    // Apply the mangle expression
    apply_mangle(&substituted_vm, orig)
}

/// Apply character-by-character translation
fn apply_translation(pattern: &str, replacement: &str, orig: &str) -> Result<String, MangleError> {
    // Expand ranges like a-z
    let from_chars = expand_char_range(pattern);
    let to_chars = expand_char_range(replacement);

    if from_chars.len() != to_chars.len() {
        return Err(MangleError::InvalidTranslExpr(
            "pattern and replacement must have same length".to_string(),
        ));
    }

    let mut result = String::new();
    for c in orig.chars() {
        if let Some(pos) = from_chars.iter().position(|&fc| fc == c) {
            result.push(to_chars[pos]);
        } else {
            result.push(c);
        }
    }

    Ok(result)
}

/// Expand character ranges like a-z to actual characters
fn expand_char_range(s: &str) -> Vec<char> {
    let mut result = Vec::new();
    let chars: Vec<char> = s.chars().collect();
    let mut i = 0;

    while i < chars.len() {
        if i + 2 < chars.len() && chars[i + 1] == '-' {
            // Range found
            let start = chars[i];
            let end = chars[i + 2];
            for c in (start as u32)..=(end as u32) {
                if let Some(ch) = char::from_u32(c) {
                    result.push(ch);
                }
            }
            i += 3;
        } else {
            result.push(chars[i]);
            i += 1;
        }
    }

    result
}

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

    #[test]
    fn test_parse_subst_expr() {
        let expr = parse_subst_expr("s/foo/bar/g").unwrap();
        assert_eq!(expr.pattern, "foo");
        assert_eq!(expr.replacement, "bar");
        assert_eq!(expr.flags.as_deref(), Some("g"));

        let expr = parse_subst_expr("s|foo|bar|").unwrap();
        assert_eq!(expr.pattern, "foo");
        assert_eq!(expr.replacement, "bar");
        assert_eq!(expr.flags, None);

        let expr = parse_subst_expr("s#a/b#c/d#").unwrap();
        assert_eq!(expr.pattern, "a/b");
        assert_eq!(expr.replacement, "c/d");
    }

    #[test]
    fn test_parse_transl_expr() {
        let expr = parse_transl_expr("tr/a-z/A-Z/").unwrap();
        assert_eq!(expr.pattern, "a-z");
        assert_eq!(expr.replacement, "A-Z");

        let expr = parse_transl_expr("y/abc/xyz/").unwrap();
        assert_eq!(expr.pattern, "abc");
        assert_eq!(expr.replacement, "xyz");
    }

    #[test]
    fn test_apply_mangle_subst() {
        let result = apply_mangle("s/foo/bar/", "foo baz foo").unwrap();
        assert_eq!(result, "bar baz foo");

        let result = apply_mangle("s/foo/bar/g", "foo baz foo").unwrap();
        assert_eq!(result, "bar baz bar");

        // Test with regex
        let result = apply_mangle("s/[0-9]+/X/g", "a1b2c3").unwrap();
        assert_eq!(result, "aXbXcX");
    }

    #[test]
    fn test_apply_mangle_transl() {
        let result = apply_mangle("tr/a-z/A-Z/", "hello").unwrap();
        assert_eq!(result, "HELLO");

        let result = apply_mangle("y/abc/xyz/", "aabbcc").unwrap();
        assert_eq!(result, "xxyyzz");
    }

    #[test]
    fn test_expand_char_range() {
        let result = expand_char_range("a-z");
        assert_eq!(result.len(), 26);
        assert_eq!(result[0], 'a');
        assert_eq!(result[25], 'z');

        let result = expand_char_range("a-c");
        assert_eq!(result, vec!['a', 'b', 'c']);

        let result = expand_char_range("abc");
        assert_eq!(result, vec!['a', 'b', 'c']);
    }

    #[test]
    fn test_split_by_unescaped_delimiter() {
        let result = split_by_unescaped_delimiter("foo/bar/baz", '/');
        assert_eq!(result, vec!["foo", "bar", "baz"]);

        let result = split_by_unescaped_delimiter("foo\\/bar/baz", '/');
        assert_eq!(result, vec!["foo\\/bar", "baz"]);
    }

    #[test]
    fn test_real_world_examples() {
        // Example from Python code: dversionmangle=s/\+ds//
        let result = apply_mangle(r"s/\+ds//", "1.0+ds").unwrap();
        assert_eq!(result, "1.0");

        // Example: filenamemangle
        let result = apply_mangle(
            r"s/.+\/v?(\d\S+)\.tar\.gz/syncthing-gtk-$1.tar.gz/",
            "https://github.com/syncthing/syncthing-gtk/archive/v0.9.4.tar.gz",
        )
        .unwrap();
        assert_eq!(result, "syncthing-gtk-0.9.4.tar.gz");
    }

    #[test]
    fn test_apply_mangle_with_subst_package() {
        // Template substitution happens in the mangle expression, so @PACKAGE@
        // becomes "mypackage" in the pattern, then it matches against the input
        let result = apply_mangle_with_subst(
            "s/@PACKAGE@/replaced/",
            "foo mypackage bar",
            || "mypackage".to_string(),
            || String::new(),
        )
        .unwrap();
        assert_eq!(result, "foo replaced bar");
    }

    #[test]
    fn test_apply_mangle_with_subst_component() {
        // Template substitution happens in the mangle expression, so @COMPONENT@
        // becomes "upstream" in the pattern, then it matches against the input
        let result = apply_mangle_with_subst(
            "s/@COMPONENT@/replaced/g",
            "upstream foo upstream",
            || unreachable!(),
            || "upstream".to_string(),
        )
        .unwrap();
        assert_eq!(result, "replaced foo replaced");
    }

    #[test]
    fn test_apply_mangle_with_subst_filenamemangle() {
        // Example: filenamemangle with @PACKAGE@ template
        let result = apply_mangle_with_subst(
            r"s/.+\/v?(\d\S+)\.tar\.gz/@PACKAGE@-$1.tar.gz/",
            "https://github.com/example/repo/archive/v0.9.4.tar.gz",
            || "myapp".to_string(),
            || String::new(),
        )
        .unwrap();
        assert_eq!(result, "myapp-0.9.4.tar.gz");
    }

    #[test]
    fn test_apply_mangle_with_subst_no_templates() {
        // Ensure it still works when no templates are present
        let result = apply_mangle_with_subst(
            "s/foo/bar/g",
            "foo baz foo",
            || unreachable!(),
            || unreachable!(),
        )
        .unwrap();
        assert_eq!(result, "bar baz bar");
    }
}