81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
|
export class Version {
|
||
|
major: number = 0;
|
||
|
minor: number = 0;
|
||
|
patch: number = 0;
|
||
|
build: number = 0;
|
||
|
timestamp: number = 0;
|
||
|
|
||
|
constructor(major: number, minor: number, patch: number, build: number, timestamp: number) {
|
||
|
this.major = major;
|
||
|
this.minor = minor;
|
||
|
this.patch = patch;
|
||
|
this.build = build;
|
||
|
}
|
||
|
|
||
|
toString(timestamp: boolean = false) {
|
||
|
let result = "";
|
||
|
result += this.major + ".";
|
||
|
result += this.minor + ".";
|
||
|
result += this.patch;
|
||
|
if(this.build > 0)
|
||
|
result += "-" + this.build;
|
||
|
if(timestamp && this.timestamp > 0)
|
||
|
result += " [" + this.timestamp + "]";
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
equals(other: Version) : boolean {
|
||
|
if(other == this) return true;
|
||
|
if(typeof(other) != typeof(this)) return false;
|
||
|
|
||
|
if(other.major != this.major) return false;
|
||
|
if(other.minor != this.minor) return false;
|
||
|
if(other.patch != this.patch) return false;
|
||
|
if(other.build != this.build) return false;
|
||
|
if(other.timestamp != this.timestamp) return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
newer_than(other: Version) : boolean {
|
||
|
if(other.major > this.major) return false;
|
||
|
else if(other.major < this.major) return true;
|
||
|
|
||
|
if(other.minor > this.minor) return false;
|
||
|
else if(other.minor < this.minor) return true;
|
||
|
|
||
|
else if(other.patch < this.patch) return true;
|
||
|
if(other.patch > this.patch) return false;
|
||
|
|
||
|
if(other.build > this.build) return false;
|
||
|
else if(other.build < this.build) return true;
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
in_dev() : boolean {
|
||
|
return this.build == 0 && this.major == 0 && this.minor == 0 && this.patch == 0 && this.timestamp == 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//1.0.0-2 [1000]
|
||
|
export function parse_version(version: string) : Version {
|
||
|
let result: Version = new Version(0, 0, 0, 0, 0);
|
||
|
|
||
|
const roots = version.split(" ");
|
||
|
{
|
||
|
const parts = roots[0].split("-");
|
||
|
const numbers = parts[0].split(".");
|
||
|
|
||
|
if(numbers.length > 0) result.major = parseInt(numbers[0]);
|
||
|
if(numbers.length > 1) result.minor = parseInt(numbers[1]);
|
||
|
if(numbers.length > 2) result.patch = parseInt(numbers[2]);
|
||
|
if(parts.length > 1) result.build = parseInt(parts[1]);
|
||
|
}
|
||
|
if(roots.length > 1 && ((roots[1] = roots[1].trim()).startsWith("[") && roots[1].endsWith("]"))) {
|
||
|
result.timestamp = parseInt(roots[1].substr(1, roots[1].length - 2));
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|