How to avoid the repeated execution of setenv in lua script

537 Views Asked by At

I have two running environment in lua script.One is the biggest power and another one is limited.

How to isolate running environment.I use lua5.1 and I also know using setenv function.

But I want to avoid the repeated execution of setenv in every function execution.

Here is an example.

function SpawnSandBox( )

    local SandBoxGlobals = {}

    SandBoxGlobals.print             = print
    SandBoxGlobals.table             = table
    SandBoxGlobals.string             = string     
    SandBoxGlobals.math               = math 
    SandBoxGlobals.assert             = assert 
    SandBoxGlobals.getmetatable    = getmetatable 
    SandBoxGlobals.ipairs             = ipairs 
    SandBoxGlobals.pairs             = pairs 
    SandBoxGlobals.pcall             = pcall 
    SandBoxGlobals.setmetatable    = setmetatable 
    SandBoxGlobals.tostring        = tostring 
    SandBoxGlobals.tonumber        = tonumber 
    SandBoxGlobals.type            = type 
    SandBoxGlobals.unpack             = unpack 
    SandBoxGlobals.collectgarbage     = collectgarbage
    SandBoxGlobals._G                = SandBoxGlobals

    return SandBoxGlobals
end

function ExecuteInSandBox( SandBox, Script )

    local ScriptFunc, CompileError = loadstring( Script )

    if CompileError then
        return CompileError
    end

    setfenv( ScriptFunc, SandBox )

    local Result, RuntimeError = pcall( ScriptFunc )
    if RuntimeError then
        return RuntimeError
    end

    return nil
end


local SandBox = SpawnSandBox( )


print ( "Response=", ExecuteInSandBox( SandBox, "table.foreach( _G, print )" ) )
0

There are 0 best solutions below