util.human.io: Add parse_duration() method to parse a duration string

Similar logic occurs throughout various modules in the codebase. We might even
want a module:get_option_duration()??
This commit is contained in:
Matthew Wild 2023-04-07 14:14:53 +01:00
parent 2fa6a01018
commit 7dc9f9ab2a
2 changed files with 30 additions and 0 deletions

View file

@ -197,6 +197,17 @@ local function new_table(col_specs, max_width)
end, max_width;
end
local day = 86400;
local multipliers = {
d = day, w = day * 7, m = 31 * day, mo = 31 * day, y = 365.2425 * day;
s = 1, mi = 60, h = 3600
};
local function parse_duration(duration_string)
local n, m = duration_string:lower():match("(%d+)%s*([dwmy]?.?)");
if not n then return nil; end
return tonumber(n) * ( multipliers[m] or 1 );
end
return {
getchar = getchar;
getline = getline;
@ -210,4 +221,5 @@ return {
term_width = term_width;
ellipsis = ellipsis;
table = new_table;
parse_duration = parse_duration;
};