mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-21 14:53:44 +01:00
Add file.with_open
to ensure :close()
is called
This commit is contained in:
parent
14de9219b7
commit
91a4ee521f
16
file.lua
16
file.lua
@ -1,6 +1,6 @@
|
||||
local dir_delim = ...
|
||||
-- Localize globals
|
||||
local io, minetest, modlib, string = io, minetest, modlib, string
|
||||
local assert, io, minetest, modlib, string, pcall = assert, io, minetest, modlib, string, pcall
|
||||
|
||||
-- Set environment
|
||||
local _ENV = {}
|
||||
@ -24,6 +24,20 @@ end
|
||||
|
||||
-- concat_path is set by init.lua to avoid code duplication
|
||||
|
||||
-- Lua 5.4 has `<close>` for this, but we're restricted to 5.1,
|
||||
-- so we need to roll our own `try f = io.open(...); return func(f) finally f:close() end`.
|
||||
function with_open(filename, mode, func --[[function(file), called with `file = io.open(filename, mode)`]])
|
||||
local file = assert(io.open(filename, mode or "r"))
|
||||
-- Throw away the stacktrace. The alternative would be to use `xpcall`
|
||||
-- to bake the stack trace into the error string using `debug.traceback`.
|
||||
-- Lua will have prepended `<source>:<line>:` already however.
|
||||
return (function(status, ...)
|
||||
file:close()
|
||||
assert(status, ...)
|
||||
return ...
|
||||
end)(pcall(func, file))
|
||||
end
|
||||
|
||||
function read(filename)
|
||||
local file, err = io.open(filename, "r")
|
||||
if file == nil then return nil, err end
|
||||
|
Loading…
Reference in New Issue
Block a user