mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Allow specifying an acceptable range for number options
This commit is contained in:
parent
a8b0c56f65
commit
924064a30a
3 changed files with 16 additions and 2 deletions
1
CHANGES
1
CHANGES
|
@ -41,6 +41,7 @@ TRUNK
|
||||||
### Module API
|
### Module API
|
||||||
|
|
||||||
- Config interface API can require that string values be picked from a provided set
|
- Config interface API can require that string values be picked from a provided set
|
||||||
|
- Acceptable interval can be specified for number options
|
||||||
|
|
||||||
## Changes
|
## Changes
|
||||||
|
|
||||||
|
|
|
@ -18,5 +18,6 @@ return {
|
||||||
|
|
||||||
-- new moduleapi methods
|
-- new moduleapi methods
|
||||||
"getopt-enum";
|
"getopt-enum";
|
||||||
|
"getopt-interval";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -232,12 +232,24 @@ function api:get_option_string(name, default_value)
|
||||||
return tostring(value);
|
return tostring(value);
|
||||||
end
|
end
|
||||||
|
|
||||||
function api:get_option_number(name, ...)
|
function api:get_option_number(name, default_value, min, max)
|
||||||
local value = self:get_option_scalar(name, ...);
|
local value = self:get_option_scalar(name, default_value);
|
||||||
local ret = tonumber(value);
|
local ret = tonumber(value);
|
||||||
if value ~= nil and ret == nil then
|
if value ~= nil and ret == nil then
|
||||||
self:log("error", "Config option '%s' not understood, expecting a number", name);
|
self:log("error", "Config option '%s' not understood, expecting a number", name);
|
||||||
end
|
end
|
||||||
|
if ret == default_value then
|
||||||
|
-- skip interval checks for default or nil
|
||||||
|
return ret;
|
||||||
|
end
|
||||||
|
if min and ret < min then
|
||||||
|
self:log("warn", "Config option '%s' out of bounds %g < %g", name, ret, min);
|
||||||
|
return min;
|
||||||
|
end
|
||||||
|
if max and ret > max then
|
||||||
|
self:log("warn", "Config option '%s' out of bounds %g > %g", name, ret, max);
|
||||||
|
return max;
|
||||||
|
end
|
||||||
return ret;
|
return ret;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue