0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00
denoland-deno/cli/lib/shared.rs

70 lines
1.6 KiB
Rust
Raw Normal View History

2025-01-01 04:12:39 +09:00
// Copyright 2018-2025 the Deno authors. MIT license.
/// This module is shared between build script and the binaries. Use it sparsely.
use thiserror::Error;
#[derive(Debug, Error)]
#[error("Unrecognized release channel: {0}")]
pub struct UnrecognizedReleaseChannelError(pub String);
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum ReleaseChannel {
/// Stable version, eg. 1.45.4, 2.0.0, 2.1.0
2024-08-18 22:24:56 -04:00
#[allow(unused)]
Stable,
/// Pointing to a git hash
2024-08-18 22:24:56 -04:00
#[allow(unused)]
Canary,
/// Long term support release
#[allow(unused)]
Lts,
/// Release candidate, eg. 1.46.0-rc.0, 2.0.0-rc.1
2024-08-18 22:24:56 -04:00
#[allow(unused)]
Rc,
}
impl ReleaseChannel {
2024-08-18 22:24:56 -04:00
#[allow(unused)]
pub fn name(&self) -> &str {
match self {
Self::Stable => "stable",
Self::Canary => "canary",
Self::Rc => "release candidate",
Self::Lts => "long term support",
}
}
// NOTE(bartlomieju): do not ever change these values, tools like `patchver`
// rely on them.
2024-08-18 22:24:56 -04:00
#[allow(unused)]
pub fn serialize(&self) -> String {
match self {
Self::Stable => "stable",
Self::Canary => "canary",
Self::Rc => "rc",
Self::Lts => "lts",
}
.to_string()
}
// NOTE(bartlomieju): do not ever change these values, tools like `patchver`
// rely on them.
2024-08-18 22:24:56 -04:00
#[allow(unused)]
pub fn deserialize(
str_: &str,
) -> Result<Self, UnrecognizedReleaseChannelError> {
Ok(match str_ {
"stable" => Self::Stable,
"canary" => Self::Canary,
"rc" => Self::Rc,
"lts" => Self::Lts,
unknown => {
return Err(UnrecognizedReleaseChannelError(unknown.to_string()))
}
})
}
}