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
use crate::{Version, VersionError};
use alloc::{string::ToString, vec::Vec};
use core::{
fmt::{Display, Formatter},
ops::{Add, RangeInclusive},
str::FromStr,
};
mod convert;
#[cfg(feature = "schemars")]
mod json_schema;
#[cfg(feature = "serde")]
mod ser_der;
#[repr(C, align(8))]
#[derive(Clone, Debug, Default, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct VersionRequire {
/// >1.0; <2.0
pub constraints: Vec<VersionConstraint>,
}
#[repr(C, align(8))]
#[derive(Copy, Clone, Debug, Default, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct VersionConstraint {
pub comparator: VersionComparator,
pub year: Option<u32>,
pub major: Option<u32>,
pub minor: Option<u32>,
pub patch: Option<u32>,
}
#[doc = include_str!("VersionComparator.md")]
#[repr(C, align(8))]
#[derive(Copy, Clone, Debug, Default, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub enum VersionComparator {
/// ```text
/// =YEAR
/// =YEAR.MAJOR
/// =YEAR.MAJOR.MINOR
/// =YEAR.MAJOR.MINOR.PATCH
/// ```
Exact,
/// ```text
/// >YEAR
/// >YEAR.MAJOR
/// >YEAR.MAJOR.MINOR
/// >YEAR.MAJOR.MINOR.PATCH
/// ```
Greater,
/// ```text
/// >=YEAR
/// >=YEAR.MAJOR
/// >=YEAR.MAJOR.MINOR
/// >=YEAR.MAJOR.MINOR.PATCH
/// ```
GreaterEqual,
/// ```text
/// <YEAR
/// <YEAR.MAJOR
/// <YEAR.MAJOR.MINOR
/// <YEAR.MAJOR.MINOR.PATCH
/// ```
Less,
/// ```text
/// <=YEAR
/// <=YEAR.MAJOR
/// <=YEAR.MAJOR.MINOR
/// <=YEAR.MAJOR.MINOR.PATCH
/// ```
LessEqual,
/// ```text
/// ~YEAR
/// ~YEAR.MAJOR
/// ~YEAR.MAJOR.MINOR
/// ~YEAR.MAJOR.MINOR.PATCH
/// ```
Tilde,
/// ```text
/// ^YEAR
/// ^YEAR.MAJOR
/// ^YEAR.MAJOR.MINOR.*
/// ^YEAR.MAJOR.MINOR.PATCH
/// ```
Caret,
/// ```text
/// *
/// YEAR.*
/// YEAR.MAJOR.*
/// YEAR.MAJOR.MINOR.*
/// ```
#[default]
Wildcard,
}
impl VersionConstraint {
/// Get the upper bound of the range
pub fn upper(&self) -> Option<Version> {
Some(*self.comparator.range(self.year, self.major, self.minor, self.patch)?.start())
}
/// Get the lower bound of the range
pub fn lower(&self) -> Option<Version> {
Some(*self.comparator.range(self.year, self.major, self.minor, self.patch)?.end())
}
/// Check if the constraint is unlimited
pub fn unlimited(&self) -> bool {
self.year.is_none() && self.major.is_none() && self.minor.is_none() && self.patch.is_none()
}
}
impl VersionComparator {
pub fn range(&self, year: Option<u32>, major: Option<u32>, minor: Option<u32>, patch: Option<u32>) -> Option<RangeInclusive<Version>> {
match self {
Self::Exact | Self::Wildcard => {
match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// 1.2.3.4 -> [1.2.3.4, 1.2.3.4]
Some(patch) => Some(Version::new(year, major, minor, patch)..=Version::new(year, major, minor, patch)),
// 1.2.3.* -> [1.2.3.0, 1.2.3.MAX]
None => Some(Version::new(year, major, minor, 0)..=Version::new(year, major, minor, u32::MAX)),
}
}
// 1.2.*.* -> [1.2.0.0, 1.2.MAX.MAX]
None => Some(Version::new(year, major, 0, 0)..=Version::new(year, major, u32::MAX, u32::MAX)),
}
}
// 1.*.*.* -> [1.0.0.0, 1.MAX.MAX.MAX]
None => Some(Version::new(year, 0, 0, 0)..=Version::new(year, u32::MAX, u32::MAX, u32::MAX)),
}
}
// *.*.*.* -> [0.0.0.0, MAX.MAX.MAX.MAX]
None => Some(Version::new(0, 0, 0, 0)..=Version::new(u32::MAX, u32::MAX, u32::MAX, u32::MAX)),
}
}
Self::Greater => {
match year {
Some(u32::MAX) => None,
Some(year) => {
match major {
Some(u32::MAX) => None,
Some(major) => {
match minor {
Some(u32::MAX) => None,
Some(minor) => {
match patch {
// > 1.2.3.4 -> [1.2.3.5, MAX]
Some(u32::MAX) => None,
Some(patch) => Some(Version::new(year, major, minor, unsafe { patch.add(1) })..=Version::MAX),
// > 1.2.3 -> [1.2.4.0, MAX]
None => Some(Version::new(year, major, unsafe { minor.add(1) }, 0)..=Version::MAX),
}
}
// > 1.2 -> [1.3.0.0, MAX]
None => Some(Version::new(year, unsafe { major.add(1) }, 0, 0)..=Version::MAX),
}
}
// > 1 -> [2.0.0.0, MAX]
None => Some(Version::new(unsafe { year.add(1) }, 0, 0, 0)..=Version::MAX),
}
}
// > * -> impossible
None => None,
}
}
Self::GreaterEqual => {
match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// ⩾ 1.2.3.4 -> [1.2.3.4, MAX]
Some(patch) => Some(Version::new(year, major, minor, patch)..=Version::MAX),
// ⩾ 1.2.3 -> [1.2.4.0, MAX]
None => Some(Version::new(year, major, minor, 0)..=Version::MAX),
}
}
// ⩾ 1.2 -> [1.3.0.0, MAX]
None => Some(Version::new(year, major, 0, 0)..=Version::MAX),
}
}
// ⩾ 1 -> [2.0.0.0, MAX]
None => Some(Version::new(year, 0, 0, 0)..=Version::MAX),
}
}
// ⩾ * -> [MAX, MAX]
None => Some(Version::MAX..=Version::MAX),
}
}
Self::Less => {
let upper = match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// < 1.2.3.0 -> [MIN, 1.2.2.MAX]
// < 1.2.3.4 -> [MIN, 1.2.3.3]
Some(patch) => Version::new(year, major, minor, patch),
// < 1.2.0 -> [MIN, 1.1.MAX.MAX]
// < 1.2.3 -> [MIN, 1.2.2.MAX]
None => Version::new(year, major, minor, 0),
}
}
// < 1.0 -> [MIN, 0.MAX.MAX.MAX]
// < 1.2 -> [MIN, 1.1.MAX.MAX]
None => Version::new(year, major, 0, 0),
}
}
// < 0 -> impossible
// < 1 -> [MIN, 0.0.0.0]
None => Version::new(year, 0, 0, 0),
}
}
// < * -> impossible
None => Version::new(0, 0, 0, 0),
};
let sub1 = u128::from(upper).checked_sub(1)?;
Some(Version::MIN..=Version::from(sub1))
}
Self::LessEqual => {
match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// ⩽ 1.2.3.4 -> [MIN, 1.2.3.4]
Some(patch) => Some(Version::MIN..=Version::new(year, major, minor, patch)),
// ⩽ 1.2.3 -> [MIN, 1.2.3.0]
None => Some(Version::MIN..=Version::new(year, major, minor, 0)),
}
}
// ⩽ 1.2 -> [MIN, 1.2.0.0]
None => Some(Version::MIN..=Version::new(year, major, 0, 0)),
}
}
// ⩽ 1 -> [MIN, 1.0.0.0]
None => Some(Version::MIN..=Version::new(year, 0, 0, 0)),
}
}
// ⩽ * -> [MIN, MIN]
None => Some(Version::MIN..=Version::MIN),
}
}
// patch updates only mode
Self::Tilde => {
todo!()
}
// compatibility updates only mode
Self::Caret => {
todo!()
}
}
}
pub fn upper(&self, year: Option<u32>, major: Option<u32>, minor: Option<u32>, patch: Option<u32>) -> Version {
match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// 1.2.3.4 -> [1.2.3.4, 1.2.3.4]
Some(patch) => Version::new(year, major, minor, patch),
// 1.2.3.* -> [1.2.3.0, 1.2.3.MAX]
None => Version::new(year, major, minor, u32::MAX),
}
}
// 1.2.*.* -> [1.2.0.0, 1.2.MAX.MAX]
None => Version::new(year, major, u32::MAX, u32::MAX),
}
}
// 1.*.*.* -> [1.0.0.0, 1.MAX.MAX.MAX]
None => Version::new(year, u32::MAX, u32::MAX, u32::MAX),
}
}
// *.*.*.* -> [0.0.0.0, MAX.MAX.MAX.MAX]
None => Version::new(u32::MAX, u32::MAX, u32::MAX, u32::MAX),
}
}
pub fn lower(&self, year: Option<u32>, major: Option<u32>, minor: Option<u32>, patch: Option<u32>) -> Version {
match year {
Some(year) => {
match major {
Some(major) => {
match minor {
Some(minor) => {
match patch {
// 1.2.3.4 -> [1.2.3.4, 1.2.3.4]
Some(patch) => Version::new(year, major, minor, patch),
// 1.2.3.* -> [1.2.3.0, 1.2.3.MAX]
None => Version::new(year, major, minor, 0),
}
}
// 1.2.*.* -> [1.2.0.0, 1.2.MAX.MAX]
None => Version::new(year, major, 0, 0),
}
}
// 1.*.*.* -> [1.0.0.0, 1.MAX.MAX.MAX]
None => Version::new(year, 0, 0, 0),
}
}
// *.*.*.* -> [0.0.0.0, MAX.MAX.MAX.MAX]
None => Version::new(0, 0, 0, 0),
}
}
}
impl Display for VersionComparator {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self {
Self::Exact => f.write_str("="),
Self::Greater => f.write_str(">"),
Self::GreaterEqual => f.write_str(">="),
Self::Less => f.write_str("<"),
Self::LessEqual => f.write_str("<="),
Self::Tilde => f.write_str("~"),
Self::Caret => f.write_str("^"),
Self::Wildcard => f.write_str("*"),
}
}
}
impl Display for VersionRequire {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
todo!()
}
}
impl Display for VersionConstraint {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
todo!()
}
}