Skip to content

Commit 1deadc7

Browse files
committed
Initial commit
0 parents  commit 1deadc7

7 files changed

+250
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/luarocks.bat
2+
/lua.bat
3+
/lua_modules
4+
/.luarocks
5+
/*.rock

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# CHANGELOG
2+
## Unreleased
3+
4+
## [1.0.0](../../tree/1.0.0) - 2021-11-30
5+
Release

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2021 Nail' Gafarov
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
16+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
19+
OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Tiny try-catch-finally implementation for Lua
2+
![](https://img.shields.io/github/license/stein197/lua-catchify)
3+
![](https://img.shields.io/github/v/tag/stein197/lua-catchify?label=Version)
4+
![](https://img.shields.io/luarocks/v/stein197/lua-catchify)
5+
6+
Lua does not have a common syntax sugar to wrap the code that will possibly lead to errors. This package provides a very simple way to bring this sugar to Lua.
7+
8+
## Installation
9+
Via LuaRocks:
10+
```
11+
luarocks install catchify
12+
```
13+
Or just download and require `init.lua` file from this repo.
14+
15+
## Usage
16+
The whole concept can be illustrated in a single code piece below:
17+
```lua
18+
local try = require "catchify"
19+
try(function ()
20+
error "Something's wrong!"
21+
end):catch(function (e) -- e will contain error message
22+
print(e) -- > stdin:3: Something's wrong!
23+
end):finally(function () -- Will be executed anyway
24+
print "Finally here!"
25+
end)
26+
```
27+
28+
You can pass a table containing single function instead of a function to make syntax more "curly":
29+
```lua
30+
try {
31+
function ()
32+
error "Something's wrong!"
33+
end
34+
} :catch {
35+
function (e)
36+
print(e)
37+
end
38+
} :finally {
39+
function ()
40+
print "Finally here!"
41+
end
42+
}
43+
```
44+
45+
## Testing
46+
Install luaunit package:
47+
```
48+
luarocks install luaunit
49+
```
50+
Then run from the console:
51+
```
52+
lua test.lua
53+
```

catchify-1.0.0-1.rockspec

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "catchify"
2+
rockspec_format = "3.0"
3+
version = "1.0.0-1"
4+
source = {
5+
url = "git://github.com/stein197/lua-catchify",
6+
tag = "1.0.0",
7+
branch = "main"
8+
}
9+
description = {
10+
summary = "Tiny try-catch-finally implementation for Lua",
11+
detailed = [[
12+
Lua does not have a common syntax sugar to wrap the code that will possibly lead to errors. This package
13+
provides a very simple way to bring this sugar to Lua
14+
]],
15+
homepage = "https://github.com/stein197/lua-catchify",
16+
issues_url = "https://github.com/stein197/lua-catchify/issues",
17+
license = "MIT",
18+
maintainer = "Nail' Gafarov <[email protected]>",
19+
labels = {
20+
"try", "catch", "finally"
21+
}
22+
}
23+
dependencies = {
24+
"lua >= 5.3"
25+
}
26+
build = {
27+
type = "builtin",
28+
modules = {
29+
["catchify"] = "init.lua"
30+
}
31+
}

init.lua

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
local function getcallback(f)
2+
return type(f) == "table" and f[1] or f
3+
end
4+
5+
local metatable = {
6+
__index = {
7+
catch = function (self, f)
8+
if not self.ok then
9+
getcallback(f)(self.rs)
10+
end
11+
return self
12+
end;
13+
14+
finally = function (self, f)
15+
getcallback(f)()
16+
end;
17+
}
18+
}
19+
20+
local function ctor(ok, rs)
21+
return setmetatable({
22+
ok = ok,
23+
rs = rs
24+
}, metatable)
25+
end
26+
27+
return function (f)
28+
return ctor(pcall(getcallback(f)))
29+
end

test.lua

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
local try = require ""
2+
local luaunit = require "luaunit"
3+
4+
TestCatchify = {
5+
6+
["test: Error in try() is being silent"] = function ()
7+
try(
8+
function ()
9+
error "Error"
10+
end
11+
)
12+
try {
13+
function ()
14+
error "Error"
15+
end
16+
}
17+
end;
18+
19+
["test: Error in try() is being processed in catch()"] = function ()
20+
local var1
21+
local var2
22+
try(function ()
23+
error "Error"
24+
end):catch(function (msg)
25+
var1 = msg
26+
end)
27+
try {
28+
function ()
29+
error "Error"
30+
end
31+
} :catch {
32+
function (msg)
33+
var2 = msg
34+
end
35+
}
36+
luaunit.assertStrContains(var1, "Error")
37+
luaunit.assertStrContains(var2, "Error")
38+
end;
39+
40+
["test: No errors in try() won't make catch() execute"] = function ()
41+
local var1
42+
local var2
43+
try(function () end):catch(function (msg)
44+
var1 = msg
45+
end)
46+
try {
47+
function () end
48+
} :catch {
49+
function (msg)
50+
var2 = msg
51+
end
52+
}
53+
luaunit.assertNil(var1)
54+
luaunit.assertNil(var2)
55+
end;
56+
57+
["test: finally() executes after error in try()"] = function ()
58+
local var1
59+
local var2
60+
try(function ()
61+
error "Error"
62+
end):catch(function (msg)
63+
var1 = msg
64+
end):finally(function ()
65+
var1 = "Finally"
66+
end)
67+
try {
68+
function ()
69+
error "Error"
70+
end
71+
} :catch {
72+
function (msg)
73+
var2 = msg
74+
end
75+
} :finally {
76+
function ()
77+
var2 = "Finally"
78+
end
79+
}
80+
luaunit.assertEquals(var1, "Finally")
81+
luaunit.assertEquals(var2, "Finally")
82+
end;
83+
84+
["test: finally() executes after no errors in try()"] = function ()
85+
local var1
86+
local var2
87+
try(function () end):catch(function (msg)
88+
var1 = msg
89+
end):finally(function ()
90+
var1 = "Finally"
91+
end)
92+
try {
93+
function () end
94+
} :catch {
95+
function (msg)
96+
var2 = msg
97+
end
98+
} :finally {
99+
function ()
100+
var2 = "Finally"
101+
end
102+
}
103+
luaunit.assertEquals(var1, "Finally")
104+
luaunit.assertEquals(var2, "Finally")
105+
end;
106+
}
107+
108+
os.exit(luaunit.run())

0 commit comments

Comments
 (0)