Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
loadlib.c File Reference
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"

Go to the source code of this file.

Macros

#define loadlib_c
 
#define LUA_LIB
 
#define LUA_POF   "luaopen_"
 
#define LUA_OFSEP   "_"
 
#define LIBPREFIX   "LOADLIB: "
 
#define POF   LUA_POF
 
#define LIB_FAIL   "open"
 
#define ERRLIB   1
 
#define ERRFUNC   2
 
#define setprogdir(L)   ((void)0)
 
#define LIB_FAIL   "absent"
 
#define DLMSG   "dynamic libraries not enabled; check your Lua installation"
 
#define sentinel   ((void *)&sentinel_)
 
#define AUXMARK   "\1"
 

Functions

static void ll_unloadlib (void *lib)
 
static void * ll_load (lua_State *L, const char *path)
 
static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym)
 
static void ** ll_register (lua_State *L, const char *path)
 
static int gctm (lua_State *L)
 
static int ll_loadfunc (lua_State *L, const char *path, const char *sym)
 
static int ll_loadlib (lua_State *L)
 
static int readable (const char *filename)
 
static const char * pushnexttemplate (lua_State *L, const char *path)
 
static const char * findfile (lua_State *L, const char *name, const char *pname)
 
static void loaderror (lua_State *L, const char *filename)
 
static int loader_Lua (lua_State *L)
 
static const char * mkfuncname (lua_State *L, const char *modname)
 
static int loader_C (lua_State *L)
 
static int loader_Croot (lua_State *L)
 
static int loader_preload (lua_State *L)
 
static int ll_require (lua_State *L)
 
static void setfenv (lua_State *L)
 
static void dooptions (lua_State *L, int n)
 
static void modinit (lua_State *L, const char *modname)
 
static int ll_module (lua_State *L)
 
static int ll_seeall (lua_State *L)
 
static void setpath (lua_State *L, const char *fieldname, const char *envname, const char *def)
 
LUALIB_API int luaopen_package (lua_State *L)
 

Variables

static const int sentinel_ = 0
 
static const luaL_Reg pk_funcs []
 
static const luaL_Reg ll_funcs []
 
static const lua_CFunction loaders []
 

Macro Definition Documentation

◆ AUXMARK

#define AUXMARK   "\1"

Definition at line 590 of file lua-5.1.5/src/loadlib.c.

Referenced by setpath().

◆ DLMSG

#define DLMSG   "dynamic libraries not enabled; check your Lua installation"

Definition at line 236 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_load(), and ll_sym().

◆ ERRFUNC

#define ERRFUNC   2

Definition at line 40 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_loadfunc(), and loader_Croot().

◆ ERRLIB

#define ERRLIB   1

Definition at line 39 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_loadfunc(), and ll_loadlib().

◆ LIB_FAIL [1/2]

#define LIB_FAIL   "open"

Definition at line 35 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_loadlib().

◆ LIB_FAIL [2/2]

#define LIB_FAIL   "absent"

Definition at line 35 of file lua-5.1.5/src/loadlib.c.

◆ LIBPREFIX

#define LIBPREFIX   "LOADLIB: "

Definition at line 32 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_register().

◆ loadlib_c

#define loadlib_c

Definition at line 16 of file lua-5.1.5/src/loadlib.c.

◆ LUA_LIB

#define LUA_LIB

Definition at line 17 of file lua-5.1.5/src/loadlib.c.

◆ LUA_OFSEP

#define LUA_OFSEP   "_"

Definition at line 29 of file lua-5.1.5/src/loadlib.c.

Referenced by mkfuncname().

◆ LUA_POF

#define LUA_POF   "luaopen_"

Definition at line 26 of file lua-5.1.5/src/loadlib.c.

◆ POF

#define POF   LUA_POF

Definition at line 34 of file lua-5.1.5/src/loadlib.c.

Referenced by mkfuncname().

◆ sentinel

#define sentinel   ((void *)&sentinel_)

Definition at line 448 of file lua-5.1.5/src/loadlib.c.

Referenced by ll_require().

◆ setprogdir

#define setprogdir ( L)    ((void)0)

Definition at line 42 of file lua-5.1.5/src/loadlib.c.

Referenced by setpath().

Function Documentation

◆ dooptions()

static void dooptions ( lua_State * L,
int n )
static

Definition at line 519 of file lua-5.1.5/src/loadlib.c.

519 {
520 int i;
521 for (i = 2; i <= n; i++) {
522 lua_pushvalue(L, i); /* get option (a function) */
523 lua_pushvalue(L, -2); /* module */
524 lua_call(L, 1, 0);
525 }
526}
LUA_API void lua_pushvalue(lua_State *L, int idx)
#define lua_call(L, n, r)

References lua_call, and lua_pushvalue().

Referenced by ll_module().

◆ findfile()

static const char * findfile ( lua_State * L,
const char * name,
const char * pname )
static

Definition at line 351 of file lua-5.1.5/src/loadlib.c.

352 {
353 const char *path;
354 name = luaL_gsub(L, name, ".", LUA_DIRSEP);
356 path = lua_tostring(L, -1);
357 if (path == NULL)
358 luaL_error(L, LUA_QL("package.%s") " must be a string", pname);
359 lua_pushliteral(L, ""); /* error accumulator */
360 while ((path = pushnexttemplate(L, path)) != NULL) {
361 const char *filename;
362 filename = luaL_gsub(L, lua_tostring(L, -1), LUA_PATH_MARK, name);
363 lua_remove(L, -2); /* remove path template */
364 if (readable(filename)) /* does file exist and is readable? */
365 return filename; /* return that file name */
366 lua_pushfstring(L, "\n\tno file " LUA_QS, filename);
367 lua_remove(L, -2); /* remove file name */
368 lua_concat(L, 2); /* add entry to possible error message */
369 }
370 return NULL; /* not found */
371}
#define NULL
Definition gmacros.h:924
const char * name
Definition lsqlite3.c:2154
LUA_API void lua_concat(lua_State *L, int n)
LUA_API const char * lua_pushfstring(lua_State *L, const char *fmt,...)
LUA_API void lua_getfield(lua_State *L, int idx, const char *k)
LUALIB_API int luaL_error(lua_State *L, const char *fmt,...)
LUALIB_API const char * luaL_gsub(lua_State *L, const char *s, const char *p, const char *r)
static const char * pushnexttemplate(lua_State *L, const char *path)
static int readable(const char *filename)
#define lua_pushliteral(L, s)
#define LUA_ENVIRONINDEX
#define lua_tostring(L, i)
#define LUA_QS
#define LUA_DIRSEP
#define LUA_PATH_MARK
#define LUA_QL(x)
#define lua_remove(L, idx)

References lua_concat(), LUA_DIRSEP, LUA_ENVIRONINDEX, lua_getfield(), LUA_PATH_MARK, lua_pushfstring(), lua_pushliteral, LUA_QL, LUA_QS, lua_remove, lua_tostring, luaL_error(), luaL_gsub(), name, NULL, pushnexttemplate(), and readable().

Referenced by loader_C(), loader_Croot(), and loader_Lua().

◆ gctm()

static int gctm ( lua_State * L)
static

Definition at line 286 of file lua-5.1.5/src/loadlib.c.

286 {
287 void **lib = (void **)luaL_checkudata(L, 1, "_LOADLIB");
288 if (*lib) ll_unloadlib(*lib);
289 *lib = NULL; /* mark library as closed */
290 return 0;
291}
LUALIB_API void * luaL_checkudata(lua_State *L, int ud, const char *tname)
static void ll_unloadlib(void *lib)

References ll_unloadlib(), luaL_checkudata(), and NULL.

Referenced by luaopen_package().

◆ ll_load()

static void * ll_load ( lua_State * L,
const char * path )
static

Definition at line 244 of file lua-5.1.5/src/loadlib.c.

244 {
245 (void)path; /* to avoid warnings */
247 return NULL;
248}
#define DLMSG

References DLMSG, lua_pushliteral, and NULL.

Referenced by ll_loadfunc().

◆ ll_loadfunc()

static int ll_loadfunc ( lua_State * L,
const char * path,
const char * sym )
static

Definition at line 294 of file lua-5.1.5/src/loadlib.c.

294 {
295 void **reg = ll_register(L, path);
296 if (*reg == NULL) *reg = ll_load(L, path);
297 if (*reg == NULL)
298 return ERRLIB; /* unable to load library */
299 else {
300 lua_CFunction f = ll_sym(L, *reg, sym);
301 if (f == NULL)
302 return ERRFUNC; /* unable to find function */
303 lua_pushcfunction(L, f);
304 return 0; /* return function */
305 }
306}
#define ERRLIB
#define ERRFUNC
static lua_CFunction ll_sym(lua_State *L, void *lib, const char *sym)
static void * ll_load(lua_State *L, const char *path)
static void ** ll_register(lua_State *L, const char *path)
#define lua_pushcfunction(L, f)
int(* lua_CFunction)(lua_State *L)

References ERRFUNC, ERRLIB, ll_load(), ll_register(), ll_sym(), lua_pushcfunction, and NULL.

Referenced by ll_loadlib(), loader_C(), and loader_Croot().

◆ ll_loadlib()

static int ll_loadlib ( lua_State * L)
static

Definition at line 309 of file lua-5.1.5/src/loadlib.c.

309 {
310 const char *path = luaL_checkstring(L, 1);
311 const char *init = luaL_checkstring(L, 2);
312 int stat = ll_loadfunc(L, path, init);
313 if (stat == 0) /* no errors? */
314 return 1; /* return the loaded function */
315 else { /* error; error message is on stack top */
316 lua_pushnil(L);
317 lua_insert(L, -2);
318 lua_pushstring(L, (stat == ERRLIB) ? LIB_FAIL : "init");
319 return 3; /* return nil, error message, and where */
320 }
321}
LUA_API void lua_pushstring(lua_State *L, const char *s)
LUA_API void lua_pushnil(lua_State *L)
#define luaL_checkstring(L, n)
static int ll_loadfunc(lua_State *L, const char *path, const char *sym)
#define LIB_FAIL
#define lua_insert(L, idx)

References ERRLIB, LIB_FAIL, ll_loadfunc(), lua_insert, lua_pushnil(), lua_pushstring(), and luaL_checkstring.

◆ ll_module()

static int ll_module ( lua_State * L)
static

Definition at line 544 of file lua-5.1.5/src/loadlib.c.

544 {
545 const char *modname = luaL_checkstring(L, 1);
546 int loaded = lua_gettop(L) + 1; /* index of _LOADED table */
547 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED");
548 lua_getfield(L, loaded, modname); /* get _LOADED[modname] */
549 if (!lua_istable(L, -1)) { /* not found? */
550 lua_pop(L, 1); /* remove previous result */
551 /* try global variable (and create one if it does not exist) */
552 if (luaL_findtable(L, LUA_GLOBALSINDEX, modname, 1) != NULL)
553 return luaL_error(L, "name conflict for module " LUA_QS, modname);
554 lua_pushvalue(L, -1);
555 lua_setfield(L, loaded, modname); /* _LOADED[modname] = new table */
556 }
557 /* check whether table already has a _NAME field */
558 lua_getfield(L, -1, "_NAME");
559 if (!lua_isnil(L, -1)) /* is table an initialized module? */
560 lua_pop(L, 1);
561 else { /* no; initialize it */
562 lua_pop(L, 1);
563 modinit(L, modname);
564 }
565 lua_pushvalue(L, -1);
566 setfenv(L);
567 dooptions(L, loaded - 1);
568 return 0;
569}
LUA_API void lua_setfield(lua_State *L, int idx, const char *k)
LUA_API int lua_gettop(lua_State *L)
LUALIB_API const char * luaL_findtable(lua_State *L, int idx, const char *fname, int szhint)
static void modinit(lua_State *L, const char *modname)
static void setfenv(lua_State *L)
static void dooptions(lua_State *L, int n)
#define lua_istable(L, n)
#define LUA_REGISTRYINDEX
#define lua_isnil(L, n)
#define lua_pop(L, n)
#define LUA_GLOBALSINDEX

References dooptions(), lua_getfield(), lua_gettop(), LUA_GLOBALSINDEX, lua_isnil, lua_istable, lua_pop, lua_pushvalue(), LUA_QS, LUA_REGISTRYINDEX, lua_setfield(), luaL_checkstring, luaL_error(), luaL_findtable(), modinit(), NULL, and setfenv().

◆ ll_register()

static void ** ll_register ( lua_State * L,
const char * path )
static

Definition at line 262 of file lua-5.1.5/src/loadlib.c.

262 {
263 void **plib;
264 lua_pushfstring(L, "%s%s", LIBPREFIX, path);
265 lua_gettable(L, LUA_REGISTRYINDEX); /* check library in registry? */
266 if (!lua_isnil(L, -1)) /* is there an entry? */
267 plib = (void **)lua_touserdata(L, -1);
268 else { /* no entry yet; create one */
269 lua_pop(L, 1);
270 plib = (void **)lua_newuserdata(L, sizeof(const void *));
271 *plib = NULL;
272 luaL_getmetatable(L, "_LOADLIB");
273 lua_setmetatable(L, -2);
274 lua_pushfstring(L, "%s%s", LIBPREFIX, path);
275 lua_pushvalue(L, -2);
277 }
278 return plib;
279}
LUA_API int lua_setmetatable(lua_State *L, int objindex)
LUA_API void lua_settable(lua_State *L, int idx)
LUA_API void lua_gettable(lua_State *L, int idx)
LUA_API void * lua_touserdata(lua_State *L, int idx)
#define luaL_getmetatable(L, n)
#define LIBPREFIX
#define lua_newuserdata(L, s)

References LIBPREFIX, lua_gettable(), lua_isnil, lua_newuserdata, lua_pop, lua_pushfstring(), lua_pushvalue(), LUA_REGISTRYINDEX, lua_setmetatable(), lua_settable(), lua_touserdata(), luaL_getmetatable, and NULL.

Referenced by ll_loadfunc().

◆ ll_require()

static int ll_require ( lua_State * L)
static

Definition at line 451 of file lua-5.1.5/src/loadlib.c.

451 {
452 const char *name = luaL_checkstring(L, 1);
453 int i;
454 lua_settop(L, 1); /* _LOADED table will be at index 2 */
455 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED");
456 lua_getfield(L, 2, name);
457 if (lua_toboolean(L, -1)) { /* is it there? */
458 if (lua_touserdata(L, -1) == sentinel) /* check loops */
459 luaL_error(L, "loop or previous error loading module " LUA_QS, name);
460 return 1; /* package is already loaded */
461 }
462 /* else must load it; iterate over available loaders */
463 lua_getfield(L, LUA_ENVIRONINDEX, "loaders");
464 if (!lua_istable(L, -1))
465 luaL_error(L, LUA_QL("package.loaders") " must be a table");
466 lua_pushliteral(L, ""); /* error message accumulator */
467 for (i=1; ; i++) {
468 lua_rawgeti(L, -2, i); /* get a loader */
469 if (lua_isnil(L, -1))
470 luaL_error(L, "module " LUA_QS " not found:%s",
471 name, lua_tostring(L, -2));
473 lua_call(L, 1, 1); /* call it */
474 if (lua_isfunction(L, -1)) /* did it find module? */
475 break; /* module loaded successfully */
476 else if (lua_isstring(L, -1)) /* loader returned error message? */
477 lua_concat(L, 2); /* accumulate it */
478 else
479 lua_pop(L, 1);
480 }
482 lua_setfield(L, 2, name); /* _LOADED[name] = sentinel */
483 lua_pushstring(L, name); /* pass name as argument to module */
484 lua_call(L, 1, 1); /* run loaded module */
485 if (!lua_isnil(L, -1)) /* non-nil return? */
486 lua_setfield(L, 2, name); /* _LOADED[name] = returned value */
487 lua_getfield(L, 2, name);
488 if (lua_touserdata(L, -1) == sentinel) { /* module did not set a value? */
489 lua_pushboolean(L, 1); /* use true as result */
490 lua_pushvalue(L, -1); /* extra copy to be returned */
491 lua_setfield(L, 2, name); /* _LOADED[name] = true */
492 }
493 return 1;
494}
LUA_API int lua_toboolean(lua_State *L, int idx)
LUA_API void lua_pushboolean(lua_State *L, int b)
LUA_API void lua_pushlightuserdata(lua_State *L, void *p)
LUA_API int lua_isstring(lua_State *L, int idx)
LUA_API void lua_settop(lua_State *L, int idx)
LUA_API void lua_rawgeti(lua_State *L, int idx, int n)
#define sentinel
#define lua_isfunction(L, n)

References lua_call, lua_concat(), LUA_ENVIRONINDEX, lua_getfield(), lua_isfunction, lua_isnil, lua_isstring(), lua_istable, lua_pop, lua_pushboolean(), lua_pushlightuserdata(), lua_pushliteral, lua_pushstring(), lua_pushvalue(), LUA_QL, LUA_QS, lua_rawgeti(), LUA_REGISTRYINDEX, lua_setfield(), lua_settop(), lua_toboolean(), lua_tostring, lua_touserdata(), luaL_checkstring, luaL_error(), name, and sentinel.

◆ ll_seeall()

static int ll_seeall ( lua_State * L)
static

Definition at line 572 of file lua-5.1.5/src/loadlib.c.

572 {
574 if (!lua_getmetatable(L, 1)) {
575 lua_createtable(L, 0, 1); /* create new metatable */
576 lua_pushvalue(L, -1);
577 lua_setmetatable(L, 1);
578 }
580 lua_setfield(L, -2, "__index"); /* mt.__index = _G */
581 return 0;
582}
LUA_API int lua_getmetatable(lua_State *L, int objindex)
LUA_API void lua_createtable(lua_State *L, int narray, int nrec)
LUALIB_API void luaL_checktype(lua_State *L, int narg, int t)
#define LUA_TTABLE

References lua_createtable(), lua_getmetatable(), LUA_GLOBALSINDEX, lua_pushvalue(), lua_setfield(), lua_setmetatable(), LUA_TTABLE, and luaL_checktype().

◆ ll_sym()

static lua_CFunction ll_sym ( lua_State * L,
void * lib,
const char * sym )
static

Definition at line 251 of file lua-5.1.5/src/loadlib.c.

251 {
252 (void)lib; (void)sym; /* to avoid warnings */
254 return NULL;
255}

References DLMSG, lua_pushliteral, and NULL.

Referenced by ll_loadfunc().

◆ ll_unloadlib()

static void ll_unloadlib ( void * lib)
static

Definition at line 239 of file lua-5.1.5/src/loadlib.c.

239 {
240 (void)lib; /* to avoid warnings */
241}

Referenced by gctm().

◆ loader_C()

static int loader_C ( lua_State * L)
static

Definition at line 402 of file lua-5.1.5/src/loadlib.c.

402 {
403 const char *funcname;
404 const char *name = luaL_checkstring(L, 1);
405 const char *filename = findfile(L, name, "cpath");
406 if (filename == NULL) return 1; /* library not found in this path */
408 if (ll_loadfunc(L, filename, funcname) != 0)
409 loaderror(L, filename);
410 return 1; /* library loaded successfully */
411}
static void loaderror(lua_State *L, const char *filename)
static const char * findfile(lua_State *L, const char *name, const char *pname)
static const char * mkfuncname(lua_State *L, const char *modname)
static int funcname(LexState *ls, expdesc *v)

References findfile(), funcname(), ll_loadfunc(), loaderror(), luaL_checkstring, mkfuncname(), name, and NULL.

◆ loader_Croot()

static int loader_Croot ( lua_State * L)
static

Definition at line 414 of file lua-5.1.5/src/loadlib.c.

414 {
415 const char *funcname;
416 const char *filename;
417 const char *name = luaL_checkstring(L, 1);
418 const char *p = strchr(name, '.');
419 int stat;
420 if (p == NULL) return 0; /* is root */
421 lua_pushlstring(L, name, p - name);
422 filename = findfile(L, lua_tostring(L, -1), "cpath");
423 if (filename == NULL) return 1; /* root not found */
425 if ((stat = ll_loadfunc(L, filename, funcname)) != 0) {
426 if (stat != ERRFUNC) loaderror(L, filename); /* real error */
427 lua_pushfstring(L, "\n\tno module " LUA_QS " in file " LUA_QS,
428 name, filename);
429 return 1; /* function not found */
430 }
431 return 1;
432}
LUA_API void lua_pushlstring(lua_State *L, const char *s, size_t len)

References ERRFUNC, findfile(), funcname(), ll_loadfunc(), loaderror(), lua_pushfstring(), lua_pushlstring(), LUA_QS, lua_tostring, luaL_checkstring, mkfuncname(), name, and NULL.

◆ loader_Lua()

static int loader_Lua ( lua_State * L)
static

Definition at line 380 of file lua-5.1.5/src/loadlib.c.

380 {
381 const char *filename;
382 const char *name = luaL_checkstring(L, 1);
383 filename = findfile(L, name, "path");
384 if (filename == NULL) return 1; /* library not found in this path */
385 if (luaL_loadfile(L, filename) != 0)
386 loaderror(L, filename);
387 return 1; /* library loaded successfully */
388}
#define luaL_loadfile(L, f)

References findfile(), loaderror(), luaL_checkstring, luaL_loadfile, name, and NULL.

◆ loader_preload()

static int loader_preload ( lua_State * L)
static

Definition at line 435 of file lua-5.1.5/src/loadlib.c.

435 {
436 const char *name = luaL_checkstring(L, 1);
437 lua_getfield(L, LUA_ENVIRONINDEX, "preload");
438 if (!lua_istable(L, -1))
439 luaL_error(L, LUA_QL("package.preload") " must be a table");
440 lua_getfield(L, -1, name);
441 if (lua_isnil(L, -1)) /* not found? */
442 lua_pushfstring(L, "\n\tno field package.preload['%s']", name);
443 return 1;
444}

References LUA_ENVIRONINDEX, lua_getfield(), lua_isnil, lua_istable, lua_pushfstring(), LUA_QL, luaL_checkstring, luaL_error(), and name.

◆ loaderror()

static void loaderror ( lua_State * L,
const char * filename )
static

Definition at line 374 of file lua-5.1.5/src/loadlib.c.

374 {
375 luaL_error(L, "error loading module " LUA_QS " from file " LUA_QS ":\n\t%s",
376 lua_tostring(L, 1), filename, lua_tostring(L, -1));
377}

References LUA_QS, lua_tostring, and luaL_error().

Referenced by loader_C(), loader_Croot(), and loader_Lua().

◆ luaopen_package()

LUALIB_API int luaopen_package ( lua_State * L)

Definition at line 627 of file lua-5.1.5/src/loadlib.c.

627 {
628 int i;
629 /* create new type _LOADLIB */
630 luaL_newmetatable(L, "_LOADLIB");
632 lua_setfield(L, -2, "__gc");
633 /* create `package' table */
635#if defined(LUA_COMPAT_LOADLIB)
636 lua_getfield(L, -1, "loadlib");
637 lua_setfield(L, LUA_GLOBALSINDEX, "loadlib");
638#endif
639 lua_pushvalue(L, -1);
641 /* create `loaders' table */
642 lua_createtable(L, sizeof(loaders)/sizeof(loaders[0]) - 1, 0);
643 /* fill it with pre-defined loaders */
644 for (i=0; loaders[i] != NULL; i++) {
646 lua_rawseti(L, -2, i+1);
647 }
648 lua_setfield(L, -2, "loaders"); /* put it in field `loaders' */
649 setpath(L, "path", LUA_PATH, LUA_PATH_DEFAULT); /* set field `path' */
650 setpath(L, "cpath", LUA_CPATH, LUA_CPATH_DEFAULT); /* set field `cpath' */
651 /* store config information */
654 lua_setfield(L, -2, "config");
655 /* set field `loaded' */
656 luaL_findtable(L, LUA_REGISTRYINDEX, "_LOADED", 2);
657 lua_setfield(L, -2, "loaded");
658 /* set field `preload' */
659 lua_newtable(L);
660 lua_setfield(L, -2, "preload");
662 luaL_register(L, NULL, ll_funcs); /* open lib into global table */
663 lua_pop(L, 1);
664 return 1; /* return 'package' table */
665}
LUA_API void lua_rawseti(lua_State *L, int idx, int n)
LUALIB_API int luaL_newmetatable(lua_State *L, const char *tname)
LUALIB_API void luaL_register(lua_State *L, const char *libname, const luaL_Reg *l)
static const luaL_Reg ll_funcs[]
static int gctm(lua_State *L)
static const lua_CFunction loaders[]
static void setpath(lua_State *L, const char *fieldname, const char *envname, const char *def)
static const luaL_Reg pk_funcs[]
#define lua_newtable(L)
#define LUA_CPATH
#define LUA_EXECDIR
#define LUA_CPATH_DEFAULT
#define LUA_PATH
#define LUA_PATHSEP
#define LUA_IGMARK
#define LUA_PATH_DEFAULT
#define LUA_LOADLIBNAME
#define lua_replace(L, idx)

References gctm(), ll_funcs, loaders, LUA_CPATH, LUA_CPATH_DEFAULT, lua_createtable(), LUA_DIRSEP, LUA_ENVIRONINDEX, LUA_EXECDIR, lua_getfield(), LUA_GLOBALSINDEX, LUA_IGMARK, LUA_LOADLIBNAME, lua_newtable, LUA_PATH, LUA_PATH_DEFAULT, LUA_PATH_MARK, LUA_PATHSEP, lua_pop, lua_pushcfunction, lua_pushliteral, lua_pushvalue(), lua_rawseti(), LUA_REGISTRYINDEX, lua_replace, lua_setfield(), luaL_findtable(), luaL_newmetatable(), luaL_register(), NULL, pk_funcs, and setpath().

◆ mkfuncname()

static const char * mkfuncname ( lua_State * L,
const char * modname )
static

Definition at line 391 of file lua-5.1.5/src/loadlib.c.

391 {
392 const char *funcname;
393 const char *mark = strchr(modname, *LUA_IGMARK);
394 if (mark) modname = mark + 1;
395 funcname = luaL_gsub(L, modname, ".", LUA_OFSEP);
397 lua_remove(L, -2); /* remove 'gsub' result */
398 return funcname;
399}
#define LUA_OFSEP
#define POF

References funcname(), LUA_IGMARK, LUA_OFSEP, lua_pushfstring(), lua_remove, luaL_gsub(), and POF.

Referenced by loader_C(), and loader_Croot().

◆ modinit()

static void modinit ( lua_State * L,
const char * modname )
static

Definition at line 529 of file lua-5.1.5/src/loadlib.c.

529 {
530 const char *dot;
531 lua_pushvalue(L, -1);
532 lua_setfield(L, -2, "_M"); /* module._M = module */
533 lua_pushstring(L, modname);
534 lua_setfield(L, -2, "_NAME");
535 dot = strrchr(modname, '.'); /* look for last dot in module name */
536 if (dot == NULL) dot = modname;
537 else dot++;
538 /* set _PACKAGE as package name (full module name minus last part) */
539 lua_pushlstring(L, modname, dot - modname);
540 lua_setfield(L, -2, "_PACKAGE");
541}

References lua_pushlstring(), lua_pushstring(), lua_pushvalue(), lua_setfield(), and NULL.

Referenced by ll_module().

◆ pushnexttemplate()

static const char * pushnexttemplate ( lua_State * L,
const char * path )
static

Definition at line 340 of file lua-5.1.5/src/loadlib.c.

340 {
341 const char *l;
342 while (*path == *LUA_PATHSEP) path++; /* skip separators */
343 if (*path == '\0') return NULL; /* no more templates */
344 l = strchr(path, *LUA_PATHSEP); /* find next separator */
345 if (l == NULL) l = path + strlen(path);
346 lua_pushlstring(L, path, l - path); /* template */
347 return l;
348}

References LUA_PATHSEP, lua_pushlstring(), and NULL.

Referenced by findfile().

◆ readable()

static int readable ( const char * filename)
static

Definition at line 332 of file lua-5.1.5/src/loadlib.c.

332 {
333 FILE *f = fopen(filename, "r"); /* try to open file */
334 if (f == NULL) return 0; /* open failed */
335 fclose(f);
336 return 1;
337}

References NULL.

Referenced by findfile().

◆ setfenv()

static void setfenv ( lua_State * L)
static

Definition at line 507 of file lua-5.1.5/src/loadlib.c.

507 {
508 lua_Debug ar;
509 if (lua_getstack(L, 1, &ar) == 0 ||
510 lua_getinfo(L, "f", &ar) == 0 || /* get calling function */
511 lua_iscfunction(L, -1))
512 luaL_error(L, LUA_QL("module") " not called from a Lua function");
513 lua_pushvalue(L, -2);
514 lua_setfenv(L, -2);
515 lua_pop(L, 1);
516}
LUA_API int lua_iscfunction(lua_State *L, int idx)
LUA_API int lua_setfenv(lua_State *L, int idx)
LUA_API int lua_getstack(lua_State *L, int level, lua_Debug *ar)
LUA_API int lua_getinfo(lua_State *L, const char *what, lua_Debug *ar)

References lua_getinfo(), lua_getstack(), lua_iscfunction(), lua_pop, lua_pushvalue(), LUA_QL, lua_setfenv(), and luaL_error().

Referenced by ll_module().

◆ setpath()

static void setpath ( lua_State * L,
const char * fieldname,
const char * envname,
const char * def )
static

Definition at line 592 of file lua-5.1.5/src/loadlib.c.

593 {
594 const char *path = getenv(envname);
595 if (path == NULL) /* no environment variable? */
596 lua_pushstring(L, def); /* use default */
597 else {
598 /* replace ";;" by ";AUXMARK;" and then AUXMARK by default path */
599 path = luaL_gsub(L, path, LUA_PATHSEP LUA_PATHSEP,
601 luaL_gsub(L, path, AUXMARK, def);
602 lua_remove(L, -2);
603 }
604 setprogdir(L);
605 lua_setfield(L, -2, fieldname);
606}
#define setprogdir(L)
#define AUXMARK

References AUXMARK, LUA_PATHSEP, lua_pushstring(), lua_remove, lua_setfield(), luaL_gsub(), NULL, and setprogdir.

Referenced by luaopen_package().

Variable Documentation

◆ ll_funcs

const luaL_Reg ll_funcs[]
static
Initial value:
= {
{"module", ll_module},
{"require", ll_require},
}
static int ll_require(lua_State *L)
static int ll_module(lua_State *L)

Definition at line 616 of file lua-5.1.5/src/loadlib.c.

616 {
617 {"module", ll_module},
618 {"require", ll_require},
619 {NULL, NULL}
620};

Referenced by luaopen_package().

◆ loaders

const lua_CFunction loaders[]
static
Initial value:
=
static int loader_Lua(lua_State *L)
static int loader_C(lua_State *L)
static int loader_preload(lua_State *L)
static int loader_Croot(lua_State *L)

Definition at line 623 of file lua-5.1.5/src/loadlib.c.

Referenced by luaopen_package().

◆ pk_funcs

const luaL_Reg pk_funcs[]
static
Initial value:
= {
{"loadlib", ll_loadlib},
{"seeall", ll_seeall},
}
static int ll_seeall(lua_State *L)
static int ll_loadlib(lua_State *L)

Definition at line 609 of file lua-5.1.5/src/loadlib.c.

609 {
610 {"loadlib", ll_loadlib},
611 {"seeall", ll_seeall},
612 {NULL, NULL}
613};

Referenced by luaopen_package().

◆ sentinel_

const int sentinel_ = 0
static

Definition at line 447 of file lua-5.1.5/src/loadlib.c.