diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-12-30 12:55:58 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-12-30 12:55:58 +0000 |
commit | 464121c5b7092f2521d21be390b01173e28fbd00 (patch) | |
tree | d7b050c876cd829fd602928010a3e8db8b9d4b78 /util | |
parent | 2d28fb93b4a1cf562cd5eb314279e0bb7e349499 (diff) | |
download | prosody-464121c5b7092f2521d21be390b01173e28fbd00.tar.gz prosody-464121c5b7092f2521d21be390b01173e28fbd00.zip |
util.error: Add new util library for structured errors
Diffstat (limited to 'util')
-rw-r--r-- | util/error.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/util/error.lua b/util/error.lua new file mode 100644 index 00000000..ed61793f --- /dev/null +++ b/util/error.lua @@ -0,0 +1,40 @@ +local error_mt = { __name = "error" }; + +function error_mt:__tostring() + return ("error<%s:%s:%s>"):format(self.type, self.condition, self.text); +end + +local function is_err(e) + return getmetatable(e) == error_mt; +end + +local function new(e, context, registry) + local template = (registry and registry[e]) or e or {}; + return setmetatable({ + type = template.type or "cancel"; + condition = template.condition or "undefined-condition"; + text = template.text; + + context = context or template.context or { _error_id = e }; + }, error_mt); +end + +local function coerce(ok, err, ...) + if ok or is_err(err) then + return ok, err, ...; + end + + local new_err = setmetatable({ + native = err; + + type = "cancel"; + condition = "undefined-condition"; + }, error_mt); + return ok, new_err, ...; +end + +return { + new = new; + coerce = coerce; + is_err = is_err; +} |