mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 01:15:43 +03:00
Units utils
Consolidates all the bytes and hertz units logic in one place.
This commit is contained in:
55
ui/app/utils/units.js
Normal file
55
ui/app/utils/units.js
Normal file
@@ -0,0 +1,55 @@
|
||||
export const BYTES_UNITS = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB'];
|
||||
export const HERTZ_UNITS = ['Hz', 'KHz', 'MHz', 'GHz', 'THz', 'PHz'];
|
||||
|
||||
const locale = window.navigator.locale || 'en';
|
||||
const decimalFormatter = new Intl.NumberFormat(locale, {
|
||||
maximumFractionDigits: 2,
|
||||
});
|
||||
const roundFormatter = new Intl.NumberFormat(locale, {
|
||||
maximumFractionDigits: 0,
|
||||
});
|
||||
|
||||
const unitReducer = (number = 0, interval, units, maxUnit) => {
|
||||
if (maxUnit && units.indexOf(maxUnit) !== -1) {
|
||||
units = units.slice(0, units.indexOf(maxUnit) + 1);
|
||||
}
|
||||
let unitIndex = 0;
|
||||
while (number >= interval && unitIndex < units.length - 1) {
|
||||
number /= interval;
|
||||
unitIndex++;
|
||||
}
|
||||
|
||||
return [number, units[unitIndex]];
|
||||
};
|
||||
|
||||
export function reduceBytes(bytes = 0, maxUnitSize) {
|
||||
return unitReducer(bytes, 1024, BYTES_UNITS, maxUnitSize);
|
||||
}
|
||||
|
||||
export function reduceHertz(hertz, maxUnitSize) {
|
||||
return unitReducer(hertz, 1000, HERTZ_UNITS, maxUnitSize);
|
||||
}
|
||||
|
||||
// General purpose formatters meant to reduce units as much
|
||||
// as possible.
|
||||
export function formatBytes(bytes) {
|
||||
const [number, unit] = reduceBytes(bytes);
|
||||
return `${decimalFormatter.format(number)} ${unit}`;
|
||||
}
|
||||
|
||||
export function formatHertz(hertz) {
|
||||
const [number, unit] = reduceHertz(hertz);
|
||||
return `${decimalFormatter.format(number)} ${unit}`;
|
||||
}
|
||||
|
||||
// Specialized formatters meant to reduce units to the resolution
|
||||
// the scheduler and job specs operate at.
|
||||
export function formatScheduledBytes(bytes) {
|
||||
const [number, unit] = reduceBytes(bytes, 'MiB');
|
||||
return `${roundFormatter.format(number)} ${unit}`;
|
||||
}
|
||||
|
||||
export function formatScheduledHertz(hertz) {
|
||||
const [number, unit] = reduceHertz(hertz, 'MHz');
|
||||
return `${roundFormatter.format(number)} ${unit}`;
|
||||
}
|
||||
119
ui/tests/unit/utils/units-test.js
Normal file
119
ui/tests/unit/utils/units-test.js
Normal file
@@ -0,0 +1,119 @@
|
||||
import { module, test } from 'qunit';
|
||||
import * as units from 'nomad-ui/utils/units';
|
||||
|
||||
function table(fn, cases) {
|
||||
cases.forEach(testCase => {
|
||||
test(testCase.name || testCase.out, function(assert) {
|
||||
assert.deepEqual(fn.apply(null, testCase.in), testCase.out);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
module('Unit | Util | units#formatBytes', function() {
|
||||
table.call(this, units.formatBytes, [
|
||||
{ in: [null], out: '0 Bytes', name: 'formats null as 0 bytes' },
|
||||
{ in: [undefined], out: '0 Bytes', name: 'formats undefined as 0 bytes' },
|
||||
{ in: [0], out: '0 Bytes', name: 'formats x < 1024 as bytes' },
|
||||
{ in: [100], out: '100 Bytes' },
|
||||
{ in: [1023], out: '1,023 Bytes' },
|
||||
{ in: [1024], out: '1 KiB', name: 'formats 1024 <= x < 1024^2 as KiB' },
|
||||
{ in: [1024 ** 2 - 1024 * 0.01], out: '1,023.99 KiB' },
|
||||
{ in: [1024 ** 2], out: '1 MiB', name: 'formats 1024^2 <= x < 1024^3 as MiB' },
|
||||
{ in: [1024 ** 2 * 1.016], out: '1.02 MiB' },
|
||||
{ in: [1024 ** 3], out: '1 GiB', name: 'formats 1024^3 <= x < 1024^4 as GiB' },
|
||||
{ in: [1024 ** 3 * 512.5], out: '512.5 GiB' },
|
||||
{ in: [1024 ** 4], out: '1 TiB', name: 'formats 1024^4 <= x < 1024^5 as TiB' },
|
||||
{ in: [1024 ** 4 * 2.1234], out: '2.12 TiB' },
|
||||
{ in: [1024 ** 5], out: '1 PiB', name: 'formats x > 1024^5 as PiB' },
|
||||
{ in: [1024 ** 5 * 4000], out: '4,000 PiB' },
|
||||
]);
|
||||
});
|
||||
|
||||
module('Unit | Util | units#formatScheduledBytes', function() {
|
||||
table.call(this, units.formatScheduledBytes, [
|
||||
{ in: [null], out: '0 Bytes', name: 'formats null as 0 bytes' },
|
||||
{ in: [undefined], out: '0 Bytes', name: 'formats undefined as 0 bytes' },
|
||||
{ in: [0], out: '0 Bytes', name: 'formats x < 1024 as bytes' },
|
||||
{
|
||||
in: [1024 ** 3],
|
||||
out: '1,024 MiB',
|
||||
name: 'max unit is MiB, just like Nomad expects in job specs',
|
||||
},
|
||||
{
|
||||
in: [1024 ** 3 + 1024 ** 2 * 0.6],
|
||||
out: '1,025 MiB',
|
||||
name: 'MiBs are rounded to whole numbers',
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
module('Unit | Util | units#formatHertz', function() {
|
||||
table.call(this, units.formatHertz, [
|
||||
{ in: [null], out: '0 Hz', name: 'formats null as 0 Hz' },
|
||||
{ in: [undefined], out: '0 Hz', name: 'formats undefined as 0 Hz' },
|
||||
{ in: [0], out: '0 Hz', name: 'formats x < 1000 as Hz' },
|
||||
{ in: [999], out: '999 Hz' },
|
||||
{ in: [1000], out: '1 KHz', name: 'formats 1000 <= x < 1000^2 as KHz' },
|
||||
{ in: [1000 ** 2 - 10], out: '999.99 KHz' },
|
||||
{ in: [1000 ** 2], out: '1 MHz', name: 'formats 1000^2 <= x < 1000^3 as MHz' },
|
||||
{ in: [1000 ** 2 * 5.234], out: '5.23 MHz' },
|
||||
{ in: [1000 ** 3], out: '1 GHz', name: 'formats 1000^3 <= x < 1000^4 as GHz' },
|
||||
{ in: [1000 ** 3 * 500.238], out: '500.24 GHz' },
|
||||
{ in: [1000 ** 4], out: '1 THz', name: 'formats 1000^4 <= x < 1000^5 as THz' },
|
||||
{ in: [1000 ** 4 * 12], out: '12 THz' },
|
||||
{ in: [1000 ** 5], out: '1 PHz', name: 'formats x > 1000^5 as PHz' },
|
||||
{ in: [1000 ** 5 * 34567.89], out: '34,567.89 PHz' },
|
||||
]);
|
||||
});
|
||||
|
||||
module('Unit | Util | units#formatScheduledHertz', function() {
|
||||
table.call(this, units.formatScheduledHertz, [
|
||||
{ in: [null], out: '0 Hz', name: 'formats null as 0 Hz' },
|
||||
{ in: [undefined], out: '0 Hz', name: 'formats undefined as 0 Hz' },
|
||||
{ in: [0], out: '0 Hz', name: 'formats x < 1024 as Hz' },
|
||||
{
|
||||
in: [1000 ** 3],
|
||||
out: '1,000 MHz',
|
||||
name: 'max unit is MHz, just like Nomad expects in job specs',
|
||||
},
|
||||
{
|
||||
in: [1000 ** 3 + 1000 ** 2 * 0.6],
|
||||
out: '1,001 MHz',
|
||||
name: 'MHz are rounded to whole numbers',
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
module('Unit | Util | units#reduceBytes', function() {
|
||||
table.call(this, units.reduceBytes, [
|
||||
{ in: [], out: [0, 'Bytes'], name: 'No args behavior results in valid output' },
|
||||
{ in: [1024 ** 6], out: [1024, 'PiB'], name: 'Max default unit is PiB' },
|
||||
{
|
||||
in: [1024 ** 6 * 1.12345],
|
||||
out: [1024 * 1.12345, 'PiB'],
|
||||
name: 'Returned numbers are not formatted',
|
||||
},
|
||||
{
|
||||
in: [1024 ** 2 * 2, 'KiB'],
|
||||
out: [2048, 'KiB'],
|
||||
name: 'Reduction ends when the specified max unit is reached',
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
module('Unit | Util | units#reduceHertz', function() {
|
||||
table.call(this, units.reduceHertz, [
|
||||
{ in: [], out: [0, 'Hz'], name: 'No args behavior results in valid output' },
|
||||
{ in: [1000 ** 6], out: [1000, 'PHz'], name: 'Max default unit is PHz' },
|
||||
{
|
||||
in: [1000 ** 6 * 1.12345],
|
||||
out: [1000 * 1.12345, 'PHz'],
|
||||
name: 'Returned numbers are not formatted',
|
||||
},
|
||||
{
|
||||
in: [1000 ** 4 * 2, 'GHz'],
|
||||
out: [2000, 'GHz'],
|
||||
name: 'Reduction ends when the specified max unit is reached',
|
||||
},
|
||||
]);
|
||||
});
|
||||
Reference in New Issue
Block a user