1999-01-08 19:49:32 +03:00
|
|
|
/*
|
2014-05-15 23:28:34 +04:00
|
|
|
** $Id: linit.c,v 1.33 2014/02/06 17:32:33 roberto Exp roberto $
|
2011-01-26 19:30:02 +03:00
|
|
|
** Initialization of libraries for lua.c and other clients
|
1999-01-08 19:49:32 +03:00
|
|
|
** 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"
|
|
|
|
|
|
|
|
|
2007-06-22 20:59:11 +04:00
|
|
|
/*
|
2009-09-05 16:39:29 +04:00
|
|
|
** these libs are loaded by lua.c and are readily available to any Lua
|
|
|
|
** program
|
2007-06-22 20:59:11 +04:00
|
|
|
*/
|
2009-05-01 17:46:35 +04:00
|
|
|
static const luaL_Reg loadedlibs[] = {
|
2008-01-02 19:16:28 +03:00
|
|
|
{"_G", luaopen_base},
|
2005-12-29 19:23:32 +03:00
|
|
|
{LUA_LOADLIBNAME, luaopen_package},
|
2010-06-11 01:30:26 +04:00
|
|
|
{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},
|
|
|
|
{LUA_MATHLIBNAME, luaopen_math},
|
2010-07-02 15:38:13 +04:00
|
|
|
{LUA_DBLIBNAME, luaopen_debug},
|
2014-05-15 23:28:34 +04:00
|
|
|
{LUA_UTF8LIBNAME, luaopen_utf8},
|
|
|
|
#if defined(LUA_COMPAT_BITLIB)
|
|
|
|
{LUA_BITLIBNAME, luaopen_bit32},
|
|
|
|
#endif
|
2007-06-22 20:59:11 +04:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-05-01 17:37:11 +04:00
|
|
|
** these libs are preloaded and must be required before used
|
2007-06-22 20:59:11 +04:00
|
|
|
*/
|
2009-05-01 17:46:35 +04:00
|
|
|
static const luaL_Reg preloadedlibs[] = {
|
2004-07-09 18:29:29 +04:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-13 21:24:20 +04:00
|
|
|
LUALIB_API void luaL_openlibs (lua_State *L) {
|
2009-09-05 16:39:29 +04:00
|
|
|
const luaL_Reg *lib;
|
2010-07-02 15:38:13 +04:00
|
|
|
/* 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++) {
|
2010-07-02 15:38:13 +04:00
|
|
|
luaL_requiref(L, lib->name, lib->func, 1);
|
|
|
|
lua_pop(L, 1); /* remove lib */
|
2004-07-09 18:29:29 +04:00
|
|
|
}
|
2009-05-01 17:46:35 +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++) {
|
2007-06-22 20:59:11 +04:00
|
|
|
lua_pushcfunction(L, lib->func);
|
|
|
|
lua_setfield(L, -2, lib->name);
|
|
|
|
}
|
2010-07-02 15:38:13 +04:00
|
|
|
lua_pop(L, 1); /* remove _PRELOAD table */
|
2004-07-09 18:29:29 +04:00
|
|
|
}
|
1999-01-08 19:49:32 +03:00
|
|
|
|