lua/linit.c

69 lines
1.7 KiB
C
Raw Normal View History

/*
2014-02-06 21:32:33 +04:00
** $Id: linit.c,v 1.32 2011/04/08 19:17:36 roberto Exp roberto $
2011-01-26 19:30:02 +03:00
** Initialization of libraries for lua.c and other clients
** See Copyright Notice in lua.h
*/
2004-07-09 18:29:29 +04:00
2011-01-26 19:30:02 +03:00
/*
2009-09-05 16:39:29 +04:00
** If you embed Lua in your program and need to open the standard
** libraries, call luaL_openlibs in your program. If you need a
** different set of libraries, copy this file to your project and edit
** it to suit your needs.
2011-01-26 19:30:02 +03:00
*/
2009-09-05 16:39:29 +04:00
2004-07-09 18:29:29 +04:00
#define linit_c
#define LUA_LIB
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
/*
2009-09-05 16:39:29 +04:00
** these libs are loaded by lua.c and are readily available to any Lua
** program
*/
static const luaL_Reg loadedlibs[] = {
2008-01-02 19:16:28 +03:00
{"_G", luaopen_base},
{LUA_LOADLIBNAME, luaopen_package},
{LUA_COLIBNAME, luaopen_coroutine},
2004-07-09 18:29:29 +04:00
{LUA_TABLIBNAME, luaopen_table},
{LUA_IOLIBNAME, luaopen_io},
2004-07-09 19:47:48 +04:00
{LUA_OSLIBNAME, luaopen_os},
2004-07-09 18:29:29 +04:00
{LUA_STRLIBNAME, luaopen_string},
2014-02-06 21:32:33 +04:00
{LUA_UTF8LIBNAME, luaopen_utf8},
{LUA_BITLIBNAME, luaopen_bit32},
2004-07-09 18:29:29 +04:00
{LUA_MATHLIBNAME, luaopen_math},
{LUA_DBLIBNAME, luaopen_debug},
{NULL, NULL}
};
/*
2009-05-01 17:37:11 +04:00
** these libs are preloaded and must be required before used
*/
static const luaL_Reg preloadedlibs[] = {
2004-07-09 18:29:29 +04:00
{NULL, NULL}
};
LUALIB_API void luaL_openlibs (lua_State *L) {
2009-09-05 16:39:29 +04:00
const luaL_Reg *lib;
/* call open functions from 'loadedlibs' and set results to global table */
2009-09-05 16:39:29 +04:00
for (lib = loadedlibs; lib->func; lib++) {
luaL_requiref(L, lib->name, lib->func, 1);
lua_pop(L, 1); /* remove lib */
2004-07-09 18:29:29 +04:00
}
/* add open functions from 'preloadedlibs' into 'package.preload' table */
2011-04-08 23:17:36 +04:00
luaL_getsubtable(L, LUA_REGISTRYINDEX, "_PRELOAD");
2009-09-05 16:39:29 +04:00
for (lib = preloadedlibs; lib->func; lib++) {
lua_pushcfunction(L, lib->func);
lua_setfield(L, -2, lib->name);
}
lua_pop(L, 1); /* remove _PRELOAD table */
2004-07-09 18:29:29 +04:00
}