/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
* Copyright (c) 2017, Joyent, Inc.
var assert = require('assert-plus');
function throwInvalidSize(size) {
assert.string(size, 'size');
throw new Error('size "' + size + '" is not a valid volume size');
}
* Returns the number of MiBs (Mebibytes) represented by the string "size". That
* string can have different format suffixes, such as "100GB", "100G", etc.
* If "size" is not a valid size string, an error is thrown.
function parseVolumeSize(size) {
var MIBS_IN_GB = 1024;
var MULTIPLIERS_TABLE = {
g: MIBS_IN_GB,
G: MIBS_IN_GB,
m: 1,
M: 1
};
var multiplierSymbol, multiplier;
var baseValue;
var matches = size.match(/^([1-9]\d*)(g|m|G|M)$/);
if (!matches) {
throwInvalidSize(size);
multiplierSymbol = matches[2];
multiplier = MULTIPLIERS_TABLE[multiplierSymbol];
baseValue = Number(matches[1]);
if (isNaN(baseValue) || multiplier === undefined) {
return baseValue * multiplier;
module.exports = {
parseVolumeSize: parseVolumeSize