Created
October 26, 2015 12:05
-
-
Save cloudwu/f9bd2a5f7c22b90cfd2b to your computer and use it in GitHub Desktop.
user defined loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local M = {} | |
function M.test(...) | |
print(...) | |
end | |
return M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local package = package | |
local debug = debug | |
local function load_env(filename) | |
local f,err = loadfile(filename) | |
if f == nil then | |
return err | |
end | |
return function() | |
return function(env) | |
if env then | |
debug.setupvalue(f, 1, env) | |
end | |
return f(filename) | |
end | |
end | |
end | |
local function searcher_env(name) | |
local filename, err = package.searchpath(name, package.upath) | |
if filename == nil then | |
return err | |
else | |
return load_env(filename) | |
end | |
end | |
table.insert(package.searchers, searcher_env) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "requirenv" | |
package.upath = "./?.user.lua" | |
local myprint = print | |
local env = { | |
print = function (...) | |
myprint("hook", ...) | |
end | |
} | |
local s = require "mymod"(env) | |
s.test "hello world" -- hook hello world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment