|
@@ -1,616 +0,0 @@
|
|
|
-
|
|
|
-
|
|
|
-using System;
|
|
|
-using System.Globalization;
|
|
|
-using System.Runtime.Serialization;
|
|
|
-using System.Security.Permissions;
|
|
|
-using System.Text;
|
|
|
-using System.Text.RegularExpressions;
|
|
|
-
|
|
|
-namespace BepInEx.Core
|
|
|
-{
|
|
|
- internal static class IntExtensions
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static int Digits(this int n)
|
|
|
- {
|
|
|
- if (n < 10)
|
|
|
- return 1;
|
|
|
- if (n < 100)
|
|
|
- return 2;
|
|
|
- if (n < 1_000)
|
|
|
- return 3;
|
|
|
- if (n < 10_000)
|
|
|
- return 4;
|
|
|
- if (n < 100_000)
|
|
|
- return 5;
|
|
|
- if (n < 1_000_000)
|
|
|
- return 6;
|
|
|
- if (n < 10_000_000)
|
|
|
- return 7;
|
|
|
- if (n < 100_000_000)
|
|
|
- return 8;
|
|
|
- if (n < 1_000_000_000)
|
|
|
- return 9;
|
|
|
- return 10;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- [Serializable]
|
|
|
- public sealed class SemVersion : IComparable<SemVersion>, IComparable, ISerializable
|
|
|
- {
|
|
|
- private static readonly Regex ParseEx =
|
|
|
- new Regex(@"^(?<major>\d+)" +
|
|
|
- @"(?>\.(?<minor>\d+))?" +
|
|
|
- @"(?>\.(?<patch>\d+))?" +
|
|
|
- @"(?>\-(?<pre>[0-9A-Za-z\-\.]+))?" +
|
|
|
- @"(?>\+(?<build>[0-9A-Za-z\-\.]+))?$",
|
|
|
- RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.ExplicitCapture,
|
|
|
- TimeSpan.FromSeconds(0.5));
|
|
|
-
|
|
|
-#pragma warning disable CA1801 // Parameter unused
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private SemVersion(SerializationInfo info, StreamingContext context)
|
|
|
-#pragma warning restore CA1801 // Parameter unused
|
|
|
- {
|
|
|
- if (info == null)
|
|
|
- throw new ArgumentNullException(nameof(info));
|
|
|
- var semVersion = Parse(info.GetString("SemVersion"));
|
|
|
- Major = semVersion.Major;
|
|
|
- Minor = semVersion.Minor;
|
|
|
- Patch = semVersion.Patch;
|
|
|
- Prerelease = semVersion.Prerelease;
|
|
|
- Build = semVersion.Build;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public SemVersion(int major, int minor = 0, int patch = 0, string prerelease = "", string build = "")
|
|
|
- {
|
|
|
- Major = major;
|
|
|
- Minor = minor;
|
|
|
- Patch = patch;
|
|
|
-
|
|
|
- Prerelease = prerelease ?? "";
|
|
|
- Build = build ?? "";
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public SemVersion(Version version)
|
|
|
- {
|
|
|
- if (version == null)
|
|
|
- throw new ArgumentNullException(nameof(version));
|
|
|
-
|
|
|
- Major = version.Major;
|
|
|
- Minor = version.Minor;
|
|
|
-
|
|
|
- if (version.Revision >= 0)
|
|
|
- Patch = version.Revision;
|
|
|
-
|
|
|
- Prerelease = "";
|
|
|
-
|
|
|
- Build = version.Build > 0 ? version.Build.ToString(CultureInfo.InvariantCulture) : "";
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static SemVersion Parse(string version, bool strict = false)
|
|
|
- {
|
|
|
- var match = ParseEx.Match(version);
|
|
|
- if (!match.Success)
|
|
|
- throw new ArgumentException($"Invalid version '{version}'.", nameof(version));
|
|
|
-
|
|
|
- var major = int.Parse(match.Groups["major"].Value, CultureInfo.InvariantCulture);
|
|
|
-
|
|
|
- var minorMatch = match.Groups["minor"];
|
|
|
- int minor = 0;
|
|
|
- if (minorMatch.Success)
|
|
|
- minor = int.Parse(minorMatch.Value, CultureInfo.InvariantCulture);
|
|
|
- else if (strict)
|
|
|
- throw new InvalidOperationException("Invalid version (no minor version given in strict mode)");
|
|
|
-
|
|
|
- var patchMatch = match.Groups["patch"];
|
|
|
- int patch = 0;
|
|
|
- if (patchMatch.Success)
|
|
|
- patch = int.Parse(patchMatch.Value, CultureInfo.InvariantCulture);
|
|
|
- else if (strict)
|
|
|
- throw new InvalidOperationException("Invalid version (no patch version given in strict mode)");
|
|
|
-
|
|
|
- var prerelease = match.Groups["pre"].Value;
|
|
|
- var build = match.Groups["build"].Value;
|
|
|
-
|
|
|
- return new SemVersion(major, minor, patch, prerelease, build);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool TryParse(string version, out SemVersion semver, bool strict = false)
|
|
|
- {
|
|
|
- semver = null;
|
|
|
- if (version is null)
|
|
|
- return false;
|
|
|
-
|
|
|
- var match = ParseEx.Match(version);
|
|
|
- if (!match.Success)
|
|
|
- return false;
|
|
|
-
|
|
|
- if (!int.TryParse(match.Groups["major"].Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out var major))
|
|
|
- return false;
|
|
|
-
|
|
|
- var minorMatch = match.Groups["minor"];
|
|
|
- int minor = 0;
|
|
|
- if (minorMatch.Success)
|
|
|
- {
|
|
|
- if (!int.TryParse(minorMatch.Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out minor))
|
|
|
- return false;
|
|
|
- }
|
|
|
- else if (strict)
|
|
|
- return false;
|
|
|
-
|
|
|
- var patchMatch = match.Groups["patch"];
|
|
|
- int patch = 0;
|
|
|
- if (patchMatch.Success)
|
|
|
- {
|
|
|
- if (!int.TryParse(patchMatch.Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out patch))
|
|
|
- return false;
|
|
|
- }
|
|
|
- else if (strict)
|
|
|
- return false;
|
|
|
-
|
|
|
- var prerelease = match.Groups["pre"].Value;
|
|
|
- var build = match.Groups["build"].Value;
|
|
|
-
|
|
|
- semver = new SemVersion(major, minor, patch, prerelease, build);
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool Equals(SemVersion versionA, SemVersion versionB)
|
|
|
- {
|
|
|
- if (ReferenceEquals(versionA, versionB))
|
|
|
- return true;
|
|
|
- if (versionA is null || versionB is null)
|
|
|
- return false;
|
|
|
- return versionA.Equals(versionB);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static int Compare(SemVersion versionA, SemVersion versionB)
|
|
|
- {
|
|
|
- if (ReferenceEquals(versionA, versionB))
|
|
|
- return 0;
|
|
|
- if (versionA is null)
|
|
|
- return -1;
|
|
|
- if (versionB is null)
|
|
|
- return 1;
|
|
|
- return versionA.CompareTo(versionB);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public SemVersion Change(int? major = null, int? minor = null, int? patch = null,
|
|
|
- string prerelease = null, string build = null)
|
|
|
- {
|
|
|
- return new SemVersion(
|
|
|
- major ?? Major,
|
|
|
- minor ?? Minor,
|
|
|
- patch ?? Patch,
|
|
|
- prerelease ?? Prerelease,
|
|
|
- build ?? Build);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int Major { get; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int Minor { get; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int Patch { get; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public string Prerelease { get; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public string Build { get; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public override string ToString()
|
|
|
- {
|
|
|
-
|
|
|
- var estimatedLength = 4 + Major.Digits() + Minor.Digits() + Patch.Digits()
|
|
|
- + Prerelease.Length + Build.Length;
|
|
|
- var version = new StringBuilder(estimatedLength);
|
|
|
- version.Append(Major);
|
|
|
- version.Append('.');
|
|
|
- version.Append(Minor);
|
|
|
- version.Append('.');
|
|
|
- version.Append(Patch);
|
|
|
- if (Prerelease.Length > 0)
|
|
|
- {
|
|
|
- version.Append('-');
|
|
|
- version.Append(Prerelease);
|
|
|
- }
|
|
|
-
|
|
|
- if (Build.Length > 0)
|
|
|
- {
|
|
|
- version.Append('+');
|
|
|
- version.Append(Build);
|
|
|
- }
|
|
|
-
|
|
|
- return version.ToString();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int CompareTo(object obj)
|
|
|
- {
|
|
|
- return CompareTo((SemVersion)obj);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int CompareTo(SemVersion other)
|
|
|
- {
|
|
|
- var r = CompareByPrecedence(other);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
-
|
|
|
-#pragma warning disable CA1062 // Validate arguments of public methods
|
|
|
-
|
|
|
- return CompareComponent(Build, other.Build);
|
|
|
-#pragma warning restore CA1062 // Validate arguments of public methods
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public bool PrecedenceMatches(SemVersion other)
|
|
|
- {
|
|
|
- return CompareByPrecedence(other) == 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public int CompareByPrecedence(SemVersion other)
|
|
|
- {
|
|
|
- if (other is null)
|
|
|
- return 1;
|
|
|
-
|
|
|
- var r = Major.CompareTo(other.Major);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
-
|
|
|
- r = Minor.CompareTo(other.Minor);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
-
|
|
|
- r = Patch.CompareTo(other.Patch);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
-
|
|
|
- return CompareComponent(Prerelease, other.Prerelease, true);
|
|
|
- }
|
|
|
-
|
|
|
- private static int CompareComponent(string a, string b, bool nonemptyIsLower = false)
|
|
|
- {
|
|
|
- var aEmpty = string.IsNullOrEmpty(a);
|
|
|
- var bEmpty = string.IsNullOrEmpty(b);
|
|
|
- if (aEmpty && bEmpty)
|
|
|
- return 0;
|
|
|
-
|
|
|
- if (aEmpty)
|
|
|
- return nonemptyIsLower ? 1 : -1;
|
|
|
- if (bEmpty)
|
|
|
- return nonemptyIsLower ? -1 : 1;
|
|
|
-
|
|
|
- var aComps = a.Split('.');
|
|
|
- var bComps = b.Split('.');
|
|
|
-
|
|
|
- var minLen = Math.Min(aComps.Length, bComps.Length);
|
|
|
- for (int i = 0; i < minLen; i++)
|
|
|
- {
|
|
|
- var ac = aComps[i];
|
|
|
- var bc = bComps[i];
|
|
|
- var aIsNum = int.TryParse(ac, out var aNum);
|
|
|
- var bIsNum = int.TryParse(bc, out var bNum);
|
|
|
- int r;
|
|
|
- if (aIsNum && bIsNum)
|
|
|
- {
|
|
|
- r = aNum.CompareTo(bNum);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- if (aIsNum)
|
|
|
- return -1;
|
|
|
- if (bIsNum)
|
|
|
- return 1;
|
|
|
- r = string.CompareOrdinal(ac, bc);
|
|
|
- if (r != 0)
|
|
|
- return r;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return aComps.Length.CompareTo(bComps.Length);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public override bool Equals(object obj)
|
|
|
- {
|
|
|
- if (obj is null)
|
|
|
- return false;
|
|
|
-
|
|
|
- if (ReferenceEquals(this, obj))
|
|
|
- return true;
|
|
|
-
|
|
|
- var other = (SemVersion)obj;
|
|
|
-
|
|
|
- return Major == other.Major
|
|
|
- && Minor == other.Minor
|
|
|
- && Patch == other.Patch
|
|
|
- && string.Equals(Prerelease, other.Prerelease, StringComparison.Ordinal)
|
|
|
- && string.Equals(Build, other.Build, StringComparison.Ordinal);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public override int GetHashCode()
|
|
|
- {
|
|
|
- unchecked
|
|
|
- {
|
|
|
-
|
|
|
- int result = Major.GetHashCode();
|
|
|
- result = result * 31 + Minor.GetHashCode();
|
|
|
- result = result * 31 + Patch.GetHashCode();
|
|
|
- result = result * 31 + Prerelease.GetHashCode();
|
|
|
- result = result * 31 + Build.GetHashCode();
|
|
|
- return result;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)]
|
|
|
- public void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
|
- {
|
|
|
- if (info == null)
|
|
|
- throw new ArgumentNullException(nameof(info));
|
|
|
- info.AddValue("SemVersion", ToString());
|
|
|
- }
|
|
|
-
|
|
|
-#pragma warning disable CA2225 // Operator overloads have named alternates
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static implicit operator SemVersion(string version)
|
|
|
-#pragma warning restore CA2225 // Operator overloads have named alternates
|
|
|
- {
|
|
|
- return Parse(version);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator ==(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return Equals(left, right);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator !=(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return !Equals(left, right);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator >(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return Compare(left, right) > 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator >=(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return Equals(left, right) || Compare(left, right) > 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator <(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return Compare(left, right) < 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public static bool operator <=(SemVersion left, SemVersion right)
|
|
|
- {
|
|
|
- return Equals(left, right) || Compare(left, right) < 0;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|