File size: 1,748 Bytes
19605ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
'use strict';

var multipliers = {
    'b': 1,
    'k': 1024,
    'm': 1024 * 1024,
    'g': 1024 * 1024 * 1024
};

function parsePeriod(period) {
    var result = {
        periodNum: 1,
        periodScope: 'd'
    };

    // Parse `period`.
    if (period) {
        // <number><scope> where scope is:
        //    h   hours (at the start of the hour)
        //    d   days (at the start of the day, i.e. just after midnight)
        //    w   weeks (at the start of Sunday)
        //    m   months (on the first of the month)
        //    y   years (at the start of Jan 1st)
        // with special values 'hourly' (1h), 'daily' (1d), "weekly" (1w),
        // 'monthly' (1m) and 'yearly' (1y)
        var crackedperiod = {
            'hourly': '1h',
            'daily': '1d',
            'weekly': '1w',
            'monthly': '1m',
            'yearly': '1y'
        }[period] || period;
        var m = /^([1-9][0-9]*)([hdwmy]|ms)$/.exec(crackedperiod);
        if (!m) {
            throw new Error('invalid period: "' + period + '"');
        }

        result.periodNum = Number(m[1]);
        result.periodScope = m[2];
    }

    return result;
}

function parseSize(size) {
    // Parse `size`.
    if (typeof (size) === 'string') {
        // <number><scope> where scope is:
        //    b   bytes
        //    k   kilobytes
        //    m   megabytes
        //    g   gigabytes
        var threshold = size;
        var m = /^([1-9][0-9]*)([bkmg])$/.exec(threshold);
        if (!m) {
            throw new Error('invalid threshold: "' + size + '"');
        }

        return Number(m[1]) * multipliers[m[2]];
    } else {
        return size;
    }
}

module.exports = { parseSize: parseSize, parsePeriod: parsePeriod };