1 /* 2 ** $Id: linit.c,v 1.39.1.1 2017/04/19 17:20:42 roberto Exp $ 3 ** Initialization of libraries for lua.c and other clients 4 ** See Copyright Notice in lua.h 5 */ 6 7 8 #define linit_c 9 #define LUA_LIB 10 11 /* 12 ** If you embed Lua in your program and need to open the standard 13 ** libraries, call luaL_openlibs in your program. If you need a 14 ** different set of libraries, copy this file to your project and edit 15 ** it to suit your needs. 16 ** 17 ** You can also *preload* libraries, so that a later 'require' can 18 ** open the library, which is already linked to the application. 19 ** For that, do the following code: 20 ** 21 ** luaL_getsubtable(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE); 22 ** lua_pushcfunction(L, luaopen_modname); 23 ** lua_setfield(L, -2, modname); 24 ** lua_pop(L, 1); // remove PRELOAD table 25 */ 26 27 #include "lprefix.h" 28 29 30 #include <stddef.h> 31 32 #include "lua.h" 33 34 #include "lualib.h" 35 #include "lauxlib.h" 36 #include "lfs.h" 37 #include "lposix.h" 38 #include "lfbsd.h" 39 #include "lua_ucl.h" 40 41 /* 42 ** these libs are loaded by lua.c and are readily available to any Lua 43 ** program 44 */ 45 static const luaL_Reg loadedlibs[] = { 46 {"_G", luaopen_base}, 47 {LUA_LOADLIBNAME, luaopen_package}, 48 {LUA_COLIBNAME, luaopen_coroutine}, 49 {LUA_TABLIBNAME, luaopen_table}, 50 {LUA_IOLIBNAME, luaopen_io}, 51 {LUA_OSLIBNAME, luaopen_os}, 52 {LUA_STRLIBNAME, luaopen_string}, 53 {LUA_MATHLIBNAME, luaopen_math}, 54 {LUA_UTF8LIBNAME, luaopen_utf8}, 55 {LUA_DBLIBNAME, luaopen_debug}, 56 #if defined(LUA_COMPAT_BITLIB) 57 {LUA_BITLIBNAME, luaopen_bit32}, 58 #endif 59 /* FreeBSD Extensions */ 60 {"lfs", luaopen_lfs}, 61 {"posix.sys.stat", luaopen_posix_sys_stat}, 62 {"posix.unistd", luaopen_posix_unistd}, 63 {"ucl", luaopen_ucl}, 64 {"fbsd", luaopen_fbsd}, 65 {NULL, NULL} 66 }; 67 68 69 LUALIB_API void luaL_openlibs (lua_State *L) { 70 const luaL_Reg *lib; 71 /* "require" functions from 'loadedlibs' and set results to global table */ 72 for (lib = loadedlibs; lib->func; lib++) { 73 luaL_requiref(L, lib->name, lib->func, 1); 74 lua_pop(L, 1); /* remove lib */ 75 } 76 } 77 78