use-python-version 0.0.1

Python version and implementation primitives for RustUse
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
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

use core::{fmt, str::FromStr};
use std::error::Error;

/// Python major version component.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct PythonMajorVersion(u16);

impl PythonMajorVersion {
    /// Creates a non-zero Python major version component.
    ///
    /// # Errors
    ///
    /// Returns [`PythonVersionParseError::InvalidVersion`] when `value` is zero.
    pub const fn new(value: u16) -> Result<Self, PythonVersionParseError> {
        if value == 0 {
            Err(PythonVersionParseError::InvalidVersion)
        } else {
            Ok(Self(value))
        }
    }

    /// Returns the numeric component.
    #[must_use]
    pub const fn get(self) -> u16 {
        self.0
    }
}

/// Python minor version component.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct PythonMinorVersion(u16);

impl PythonMinorVersion {
    /// Creates a Python minor version component.
    #[must_use]
    pub const fn new(value: u16) -> Self {
        Self(value)
    }

    /// Returns the numeric component.
    #[must_use]
    pub const fn get(self) -> u16 {
        self.0
    }
}

/// Python patch version component.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct PythonPatchVersion(u16);

impl PythonPatchVersion {
    /// Creates a Python patch version component.
    #[must_use]
    pub const fn new(value: u16) -> Self {
        Self(value)
    }

    /// Returns the numeric component.
    #[must_use]
    pub const fn get(self) -> u16 {
        self.0
    }
}

/// Lightweight Python version metadata.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct PythonVersion {
    major: PythonMajorVersion,
    minor: Option<PythonMinorVersion>,
    patch: Option<PythonPatchVersion>,
    suffix: Option<String>,
}

impl PythonVersion {
    /// Creates Python version metadata.
    ///
    /// # Errors
    ///
    /// Returns [`PythonVersionParseError::InvalidVersion`] when the major version is zero or
    /// a patch component is present without a minor component.
    pub fn new(
        major: u16,
        minor: Option<u16>,
        patch: Option<u16>,
    ) -> Result<Self, PythonVersionParseError> {
        if minor.is_none() && patch.is_some() {
            return Err(PythonVersionParseError::InvalidVersion);
        }

        Ok(Self {
            major: PythonMajorVersion::new(major)?,
            minor: minor.map(PythonMinorVersion::new),
            patch: patch.map(PythonPatchVersion::new),
            suffix: None,
        })
    }

    /// Returns the major version number.
    #[must_use]
    pub const fn major(&self) -> u16 {
        self.major.get()
    }

    /// Returns the optional minor version number.
    #[must_use]
    pub const fn minor(&self) -> Option<u16> {
        match self.minor {
            Some(value) => Some(value.get()),
            None => None,
        }
    }

    /// Returns the optional patch version number.
    #[must_use]
    pub const fn patch(&self) -> Option<u16> {
        match self.patch {
            Some(value) => Some(value.get()),
            None => None,
        }
    }

    /// Returns whether this version is in the Python 3 family.
    #[must_use]
    pub const fn is_python3(&self) -> bool {
        self.major() == 3
    }

    /// Returns whether the parsed suffix looks like a prerelease marker.
    #[must_use]
    pub fn is_prerelease_like(&self) -> bool {
        self.suffix.as_deref().is_some_and(|suffix| {
            suffix
                .chars()
                .any(|character| character.is_ascii_alphabetic())
        })
    }

    /// Returns the parsed non-numeric suffix when one was present.
    #[must_use]
    pub fn suffix(&self) -> Option<&str> {
        self.suffix.as_deref()
    }
}

impl fmt::Display for PythonVersion {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(formatter, "{}", self.major())?;
        if let Some(minor) = self.minor() {
            write!(formatter, ".{minor}")?;
        }
        if let Some(patch) = self.patch() {
            write!(formatter, ".{patch}")?;
        }
        if let Some(suffix) = self.suffix() {
            formatter.write_str(suffix)?;
        }
        Ok(())
    }
}

impl FromStr for PythonVersion {
    type Err = PythonVersionParseError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        parse_python_version(input)
    }
}

/// Python version family label.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum PythonVersionFamily {
    Python2,
    Python3,
}

impl PythonVersionFamily {
    /// Returns the lowercase family label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Python2 => "python2",
            Self::Python3 => "python3",
        }
    }
}

impl fmt::Display for PythonVersionFamily {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for PythonVersionFamily {
    type Err = PythonVersionParseError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "python2" | "py2" | "2" => Ok(Self::Python2),
            "python3" | "py3" | "3" => Ok(Self::Python3),
            _ => Err(PythonVersionParseError::UnknownLabel),
        }
    }
}

/// Python implementation label.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum PythonImplementation {
    CPython,
    PyPy,
    MicroPython,
    GraalPy,
    RustPython,
}

impl PythonImplementation {
    /// Returns the normalized implementation label.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::CPython => "cpython",
            Self::PyPy => "pypy",
            Self::MicroPython => "micropython",
            Self::GraalPy => "graalpy",
            Self::RustPython => "rustpython",
        }
    }
}

impl fmt::Display for PythonImplementation {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(self.as_str())
    }
}

impl FromStr for PythonImplementation {
    type Err = PythonVersionParseError;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match normalized_label(input)?.as_str() {
            "cpython" | "cp" => Ok(Self::CPython),
            "pypy" | "pp" => Ok(Self::PyPy),
            "micropython" => Ok(Self::MicroPython),
            "graalpy" => Ok(Self::GraalPy),
            "rustpython" => Ok(Self::RustPython),
            _ => Err(PythonVersionParseError::UnknownLabel),
        }
    }
}

macro_rules! tag_newtype {
    ($name:ident) => {
        #[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
        pub struct $name(String);

        impl $name {
            /// Creates non-empty Python tag metadata.
            ///
            /// # Errors
            ///
            /// Returns [`PythonVersionParseError::Empty`] when `input` is empty after trimming.
            pub fn new(input: &str) -> Result<Self, PythonVersionParseError> {
                let trimmed = input.trim();
                if trimmed.is_empty() {
                    Err(PythonVersionParseError::Empty)
                } else {
                    Ok(Self(trimmed.to_string()))
                }
            }

            /// Returns the stored tag text.
            #[must_use]
            pub fn as_str(&self) -> &str {
                &self.0
            }
        }

        impl fmt::Display for $name {
            fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
                formatter.write_str(self.as_str())
            }
        }

        impl FromStr for $name {
            type Err = PythonVersionParseError;

            fn from_str(input: &str) -> Result<Self, Self::Err> {
                Self::new(input)
            }
        }

        impl TryFrom<&str> for $name {
            type Error = PythonVersionParseError;

            fn try_from(value: &str) -> Result<Self, Self::Error> {
                Self::new(value)
            }
        }
    };
}

tag_newtype!(PythonCompatibilityTag);
tag_newtype!(PythonAbiTag);
tag_newtype!(PythonPlatformTag);

/// Error returned while parsing Python version metadata.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum PythonVersionParseError {
    Empty,
    InvalidVersion,
    UnknownLabel,
}

impl fmt::Display for PythonVersionParseError {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Empty => formatter.write_str("Python version metadata cannot be empty"),
            Self::InvalidVersion => formatter.write_str("invalid Python version"),
            Self::UnknownLabel => formatter.write_str("unknown Python version metadata label"),
        }
    }
}

impl Error for PythonVersionParseError {}

fn parse_python_version(input: &str) -> Result<PythonVersion, PythonVersionParseError> {
    let mut text = input.trim();
    if text.is_empty() {
        return Err(PythonVersionParseError::Empty);
    }
    if text.len() >= 6 && text[..6].eq_ignore_ascii_case("python") {
        text = text[6..].trim_start();
    }
    if let Some(stripped) = text.strip_prefix(['v', 'V']) {
        text = stripped;
    }

    let mut parts = text.splitn(3, '.');
    let Some(major_text) = parts.next() else {
        return Err(PythonVersionParseError::InvalidVersion);
    };
    let (major, major_suffix) = parse_component_with_suffix(major_text)?;
    if !major_suffix.is_empty() {
        return PythonVersion::new(major, None, None).map(|mut version| {
            version.suffix = Some(major_suffix.to_string());
            version
        });
    }

    let minor = match parts.next() {
        Some(minor_text) => {
            let (value, suffix) = parse_component_with_suffix(minor_text)?;
            if suffix.is_empty() {
                Some(value)
            } else {
                return PythonVersion::new(major, Some(value), None).map(|mut version| {
                    version.suffix = Some(suffix.to_string());
                    version
                });
            }
        }
        None => None,
    };

    let (patch, suffix) = match parts.next() {
        Some(patch_text) => {
            let (value, suffix) = parse_component_with_suffix(patch_text)?;
            (Some(value), suffix)
        }
        None => (None, ""),
    };

    PythonVersion::new(major, minor, patch).map(|mut version| {
        if !suffix.is_empty() {
            version.suffix = Some(suffix.to_string());
        }
        version
    })
}

fn parse_component_with_suffix(input: &str) -> Result<(u16, &str), PythonVersionParseError> {
    if input.is_empty() {
        return Err(PythonVersionParseError::InvalidVersion);
    }
    let digit_len = input
        .char_indices()
        .take_while(|(_, character)| character.is_ascii_digit())
        .map(|(index, character)| index + character.len_utf8())
        .last()
        .ok_or(PythonVersionParseError::InvalidVersion)?;
    let digits = &input[..digit_len];
    let suffix = &input[digit_len..];
    let value = digits
        .parse::<u16>()
        .map_err(|_| PythonVersionParseError::InvalidVersion)?;
    Ok((value, suffix))
}

fn normalized_label(input: &str) -> Result<String, PythonVersionParseError> {
    let trimmed = input.trim();
    if trimmed.is_empty() {
        Err(PythonVersionParseError::Empty)
    } else {
        Ok(trimmed.to_ascii_lowercase().replace(['-', '_', ' '], ""))
    }
}

#[cfg(test)]
mod tests {
    use super::{
        PythonAbiTag, PythonImplementation, PythonPlatformTag, PythonVersion, PythonVersionFamily,
        PythonVersionParseError,
    };

    #[test]
    fn parses_common_version_shapes() -> Result<(), PythonVersionParseError> {
        let major_only: PythonVersion = "3".parse()?;
        let minor: PythonVersion = "3.11".parse()?;
        let patch: PythonVersion = "Python 3.12.1".parse()?;
        let prefixed: PythonVersion = "v3.13.0".parse()?;

        assert_eq!(major_only.major(), 3);
        assert_eq!(minor.minor(), Some(11));
        assert_eq!(patch.patch(), Some(1));
        assert_eq!(prefixed.to_string(), "3.13.0");
        assert!(prefixed.is_python3());
        Ok(())
    }

    #[test]
    fn parses_prerelease_like_suffixes() -> Result<(), PythonVersionParseError> {
        let version: PythonVersion = "3.14.0rc1".parse()?;

        assert!(version.is_prerelease_like());
        assert_eq!(version.suffix(), Some("rc1"));
        assert_eq!(version.to_string(), "3.14.0rc1");
        Ok(())
    }

    #[test]
    fn models_implementation_and_tags() -> Result<(), PythonVersionParseError> {
        assert_eq!(
            "CPython".parse::<PythonImplementation>()?,
            PythonImplementation::CPython
        );
        assert_eq!(
            "py3".parse::<PythonVersionFamily>()?,
            PythonVersionFamily::Python3
        );
        assert_eq!(PythonVersionFamily::Python2.to_string(), "python2");
        assert_eq!(PythonAbiTag::new("cp312")?.as_str(), "cp312");
        assert_eq!(
            PythonPlatformTag::new("manylinux_x86_64")?.to_string(),
            "manylinux_x86_64"
        );
        Ok(())
    }
}