PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/lua/import.lua

#
Lua | 28 lines | 15 code | 5 blank | 8 comment | 2 complexity | 56ed2e6d14ce814a177a3ad3545f2d9d MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. -- import
  2. -- the lua 5.0 loading mechanism is rather poor & relies upon the loadlib() fn
  3. -- the lua 5.1 loading mechanism is simplicity itself
  4. -- for now we need a bridge which will use the correct verion
  5. function import_5_0(name)
  6. -- imports the file into the program
  7. -- for a module 'example'
  8. -- this must load 'example.dll' or 'example.so'
  9. -- and look for the fn 'luaopen_example()'
  10. if rawget(_G,name)~=nil then return end -- module appears to be loaded
  11. local lib=loadlib(name..'.dll','luaopen_'..name) or loadlib(name..'.so','luaopen_'..name)
  12. assert(lib,"error loading module:"..name)
  13. lib() -- execute the function: initalising the lib
  14. assert(rawget(_G,name)~=nil,"no module table found")
  15. end
  16. function import_5_1(name)
  17. require(name)
  18. end
  19. if string.sub(_VERSION,1,7)=='Lua 5.0' then
  20. import=import_5_0
  21. else
  22. import=import_5_1
  23. end