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

Go to the source code of this file.

Data Structures

struct  LoadF
 
struct  LoadS
 

Macros

#define lauxlib_c
 
#define LUA_LIB
 
#define FREELIST_REF   0 /* free list of references */
 
#define abs_index(L, i)
 
#define bufflen(B)   ((B)->p - (B)->buffer)
 
#define bufffree(B)   ((size_t)(LUAL_BUFFERSIZE - bufflen(B)))
 
#define LIMIT   (LUA_MINSTACK/2)
 

Typedefs

typedef struct LoadF LoadF
 
typedef struct LoadS LoadS
 

Functions

LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg)
 
LUALIB_API int luaL_typerror (lua_State *L, int narg, const char *tname)
 
static void tag_error (lua_State *L, int narg, int tag)
 
LUALIB_API void luaL_where (lua_State *L, int level)
 
LUALIB_API int luaL_error (lua_State *L, const char *fmt,...)
 
LUALIB_API int luaL_checkoption (lua_State *L, int narg, const char *def, const char *const lst[])
 
LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname)
 
LUALIB_API void * luaL_checkudata (lua_State *L, int ud, const char *tname)
 
LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes)
 
LUALIB_API void luaL_checktype (lua_State *L, int narg, int t)
 
LUALIB_API void luaL_checkany (lua_State *L, int narg)
 
LUALIB_API const char * luaL_checklstring (lua_State *L, int narg, size_t *len)
 
LUALIB_API const char * luaL_optlstring (lua_State *L, int narg, const char *def, size_t *len)
 
LUALIB_API lua_Number luaL_checknumber (lua_State *L, int narg)
 
LUALIB_API lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number def)
 
LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int narg)
 
LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int narg, lua_Integer def)
 
LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *event)
 
LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event)
 
LUALIB_API void luaL_register (lua_State *L, const char *libname, const luaL_Reg *l)
 
static int libsize (const luaL_Reg *l)
 
LUALIB_API void luaI_openlib (lua_State *L, const char *libname, const luaL_Reg *l, int nup)
 
LUALIB_API const char * luaL_gsub (lua_State *L, const char *s, const char *p, const char *r)
 
LUALIB_API const char * luaL_findtable (lua_State *L, int idx, const char *fname, int szhint)
 
static int emptybuffer (luaL_Buffer *B)
 
static void adjuststack (luaL_Buffer *B)
 
LUALIB_API char * luaL_prepbuffer (luaL_Buffer *B)
 
LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l)
 
LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s)
 
LUALIB_API void luaL_pushresult (luaL_Buffer *B)
 
LUALIB_API void luaL_addvalue (luaL_Buffer *B)
 
LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B)
 
LUALIB_API int luaL_ref (lua_State *L, int t)
 
LUALIB_API void luaL_unref (lua_State *L, int t, int ref)
 
static const char * getF (lua_State *L, void *ud, size_t *size)
 
static int errfile (lua_State *L, const char *what, int fnameindex)
 
LUALIB_API int luaL_loadfile (lua_State *L, const char *filename)
 
static const char * getS (lua_State *L, void *ud, size_t *size)
 
LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size, const char *name)
 
LUALIB_API int luaL_loadstring (lua_State *L, const char *s)
 
static void * l_alloc (void *ud, void *ptr, size_t osize, size_t nsize)
 
static int panic (lua_State *L)
 
LUALIB_API lua_StateluaL_newstate (void)
 

Macro Definition Documentation

◆ abs_index

#define abs_index ( L,
i )
Value:
((i) > 0 || (i) <= LUA_REGISTRYINDEX ? (i) : \
lua_gettop(L) + (i) + 1)
LUA_API int lua_gettop(lua_State *L)
#define LUA_REGISTRYINDEX

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

32#define abs_index(L, i) ((i) > 0 || (i) <= LUA_REGISTRYINDEX ? (i) : \
33 lua_gettop(L) + (i) + 1)

Referenced by luaL_callmeta(), luaL_ref(), and luaL_unref().

◆ bufffree

#define bufffree ( B)    ((size_t)(LUAL_BUFFERSIZE - bufflen(B)))

Definition at line 393 of file lua-5.1.5/src/lauxlib.c.

Referenced by luaL_addvalue().

◆ bufflen

#define bufflen ( B)    ((B)->p - (B)->buffer)

Definition at line 392 of file lua-5.1.5/src/lauxlib.c.

Referenced by emptybuffer(), luaO_chunkid(), and luaO_chunkid().

◆ FREELIST_REF

#define FREELIST_REF   0 /* free list of references */

Definition at line 28 of file lua-5.1.5/src/lauxlib.c.

Referenced by luaL_ref(), and luaL_unref().

◆ lauxlib_c

#define lauxlib_c

Definition at line 20 of file lua-5.1.5/src/lauxlib.c.

◆ LIMIT

#define LIMIT   (LUA_MINSTACK/2)

Definition at line 395 of file lua-5.1.5/src/lauxlib.c.

Referenced by adjuststack().

◆ LUA_LIB

#define LUA_LIB

Definition at line 21 of file lua-5.1.5/src/lauxlib.c.

Typedef Documentation

◆ LoadF

typedef struct LoadF LoadF

◆ LoadS

typedef struct LoadS LoadS

Function Documentation

◆ adjuststack()

static void adjuststack ( luaL_Buffer * B)
static

Definition at line 410 of file lua-5.1.5/src/lauxlib.c.

410 {
411 if (B->lvl > 1) {
412 lua_State *L = B->L;
413 int toget = 1; /* number of levels to concat */
414 size_t toplen = lua_strlen(L, -1);
415 do {
416 size_t l = lua_strlen(L, -(toget+1));
417 if (B->lvl - toget + 1 >= LIMIT || toplen > l) {
418 toplen += l;
419 toget++;
420 }
421 else break;
422 } while (toget < B->lvl);
423 lua_concat(L, toget);
424 B->lvl = B->lvl - toget + 1;
425 }
426}
LUA_API void lua_concat(lua_State *L, int n)
#define LIMIT
#define lua_strlen(L, i)

References luaL_Buffer::L, LIMIT, lua_concat(), lua_strlen, and luaL_Buffer::lvl.

Referenced by luaL_addvalue(), and luaL_prepbuffer().

◆ emptybuffer()

static int emptybuffer ( luaL_Buffer * B)
static

Definition at line 398 of file lua-5.1.5/src/lauxlib.c.

398 {
399 size_t l = bufflen(B);
400 if (l == 0) return 0; /* put nothing on stack */
401 else {
402 lua_pushlstring(B->L, B->buffer, l);
403 B->p = B->buffer;
404 B->lvl++;
405 return 1;
406 }
407}
LUA_API void lua_pushlstring(lua_State *L, const char *s, size_t len)
#define bufflen(B)
char buffer[LUAL_BUFFERSIZE]

References luaL_Buffer::buffer, bufflen, luaL_Buffer::L, lua_pushlstring(), luaL_Buffer::lvl, and luaL_Buffer::p.

Referenced by luaL_addvalue(), luaL_prepbuffer(), and luaL_pushresult().

◆ errfile()

static int errfile ( lua_State * L,
const char * what,
int fnameindex )
static

Definition at line 543 of file lua-5.1.5/src/lauxlib.c.

543 {
544 const char *serr = strerror(errno);
545 const char *filename = lua_tostring(L, fnameindex) + 1;
546 lua_pushfstring(L, "cannot %s %s: %s", what, filename, serr);
547 lua_remove(L, fnameindex);
548 return LUA_ERRFILE;
549}
LUA_API const char * lua_pushfstring(lua_State *L, const char *fmt,...)
#define LUA_ERRFILE
#define lua_tostring(L, i)
#define lua_remove(L, idx)

References LUA_ERRFILE, lua_pushfstring(), lua_remove, and lua_tostring.

Referenced by luaL_loadfile().

◆ getF()

static const char * getF ( lua_State * L,
void * ud,
size_t * size )
static

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

529 {
530 LoadF *lf = (LoadF *)ud;
531 (void)L;
532 if (lf->extraline) {
533 lf->extraline = 0;
534 *size = 1;
535 return "\n";
536 }
537 if (feof(lf->f)) return NULL;
538 *size = fread(lf->buff, 1, sizeof(lf->buff), lf->f);
539 return (*size > 0) ? lf->buff : NULL;
540}
#define NULL
Definition gmacros.h:924
size_t fread(void *, size_t, size_t, FILE *)
char buff[LUAL_BUFFERSIZE]

References LoadF::buff, LoadF::extraline, LoadF::f, fread(), and NULL.

Referenced by luaL_loadfile().

◆ getS()

static const char * getS ( lua_State * L,
void * ud,
size_t * size )
static

Definition at line 599 of file lua-5.1.5/src/lauxlib.c.

599 {
600 LoadS *ls = (LoadS *)ud;
601 (void)L;
602 if (ls->size == 0) return NULL;
603 *size = ls->size;
604 ls->size = 0;
605 return ls->s;
606}
const char * s

References NULL, LoadS::s, and LoadS::size.

Referenced by luaL_loadbuffer().

◆ l_alloc()

static void * l_alloc ( void * ud,
void * ptr,
size_t osize,
size_t nsize )
static

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

627 {
628 (void)ud;
629 (void)osize;
630 if (nsize == 0) {
631 free(ptr);
632 return NULL;
633 }
634 else
635 return realloc(ptr, nsize);
636}
#define realloc
Definition civetweb.c:1541
#define free
Definition civetweb.c:1542

References free, NULL, and realloc.

Referenced by luaL_newstate().

◆ libsize()

static int libsize ( const luaL_Reg * l)
static

Definition at line 235 of file lua-5.1.5/src/lauxlib.c.

235 {
236 int size = 0;
237 for (; l->name; l++) size++;
238 return size;
239}
const char * name

References luaL_Reg::name.

Referenced by luaI_openlib().

◆ luaI_openlib()

LUALIB_API void luaI_openlib ( lua_State * L,
const char * libname,
const luaL_Reg * l,
int nup )

Definition at line 242 of file lua-5.1.5/src/lauxlib.c.

243 {
244 if (libname) {
245 int size = libsize(l);
246 /* check whether lib already exists */
247 luaL_findtable(L, LUA_REGISTRYINDEX, "_LOADED", 1);
248 lua_getfield(L, -1, libname); /* get _LOADED[libname] */
249 if (!lua_istable(L, -1)) { /* not found? */
250 lua_pop(L, 1); /* remove previous result */
251 /* try global variable (and create one if it does not exist) */
252 if (luaL_findtable(L, LUA_GLOBALSINDEX, libname, size) != NULL)
253 luaL_error(L, "name conflict for module " LUA_QS, libname);
254 lua_pushvalue(L, -1);
255 lua_setfield(L, -3, libname); /* _LOADED[libname] = new table */
256 }
257 lua_remove(L, -2); /* remove _LOADED table */
258 lua_insert(L, -(nup+1)); /* move library table to below upvalues */
259 }
260 for (; l->name; l++) {
261 int i;
262 for (i=0; i<nup; i++) /* copy upvalues to the top */
263 lua_pushvalue(L, -nup);
264 lua_pushcclosure(L, l->func, nup);
265 lua_setfield(L, -(nup+2), l->name);
266 }
267 lua_pop(L, nup); /* remove upvalues */
268}
LUA_API void lua_pushcclosure(lua_State *L, lua_CFunction fn, int n)
LUA_API void lua_setfield(lua_State *L, int idx, const char *k)
LUA_API void lua_pushvalue(lua_State *L, int idx)
LUA_API void lua_getfield(lua_State *L, int idx, const char *k)
LUALIB_API const char * luaL_findtable(lua_State *L, int idx, const char *fname, int szhint)
LUALIB_API int luaL_error(lua_State *L, const char *fmt,...)
static int libsize(const luaL_Reg *l)
#define lua_istable(L, n)
#define lua_pop(L, n)
#define LUA_GLOBALSINDEX
#define LUA_QS
#define lua_insert(L, idx)
lua_CFunction func

References luaL_Reg::func, libsize(), lua_getfield(), LUA_GLOBALSINDEX, lua_insert, lua_istable, lua_pop, lua_pushcclosure(), lua_pushvalue(), LUA_QS, LUA_REGISTRYINDEX, lua_remove, lua_setfield(), luaL_error(), luaL_findtable(), luaL_Reg::name, and NULL.

◆ luaL_addlstring()

LUALIB_API void luaL_addlstring ( luaL_Buffer * B,
const char * s,
size_t l )

◆ luaL_addstring()

LUALIB_API void luaL_addstring ( luaL_Buffer * B,
const char * s )

Definition at line 442 of file lua-5.1.5/src/lauxlib.c.

442 {
443 luaL_addlstring(B, s, strlen(s));
444}
LUALIB_API void luaL_addlstring(luaL_Buffer *B, const char *s, size_t l)

References luaL_addlstring(), and s.

Referenced by addquoted(), addquoted(), addquoted(), findloader(), luaL_gsub(), pusherrornotfound(), setpath(), and Xml_str().

◆ luaL_addvalue()

LUALIB_API void luaL_addvalue ( luaL_Buffer * B)

Definition at line 454 of file lua-5.1.5/src/lauxlib.c.

454 {
455 lua_State *L = B->L;
456 size_t vl;
457 const char *s = lua_tolstring(L, -1, &vl);
458 if (vl <= bufffree(B)) { /* fit into buffer? */
459 memcpy(B->p, s, vl); /* put it there */
460 B->p += vl;
461 lua_pop(L, 1); /* remove from stack */
462 }
463 else {
464 if (emptybuffer(B))
465 lua_insert(L, -2); /* put buffer before new value */
466 B->lvl++; /* add new value into B stack */
467 adjuststack(B);
468 }
469}
LUA_API const char * lua_tolstring(lua_State *L, int idx, size_t *len)
static int emptybuffer(luaL_Buffer *B)
static void adjuststack(luaL_Buffer *B)
#define bufffree(B)

References adjuststack(), bufffree, emptybuffer(), luaL_Buffer::L, lua_insert, lua_pop, lua_tolstring(), luaL_Buffer::lvl, luaL_Buffer::p, and s.

Referenced by add_s(), add_s(), add_s(), add_s(), add_value(), add_value(), add_value(), add_value(), addfield(), addfield(), addfield(), addfield(), addliteral(), addliteral(), findloader(), findloader(), findloader(), searchpath(), searchpath(), str_format(), str_format(), str_format(), str_format(), utfchar(), utfchar(), and Xml_str().

◆ luaL_argerror()

LUALIB_API int luaL_argerror ( lua_State * L,
int narg,
const char * extramsg )

Definition at line 43 of file lua-5.1.5/src/lauxlib.c.

43 {
44 lua_Debug ar;
45 if (!lua_getstack(L, 0, &ar)) /* no stack frame? */
46 return luaL_error(L, "bad argument #%d (%s)", narg, extramsg);
47 lua_getinfo(L, "n", &ar);
48 if (strcmp(ar.namewhat, "method") == 0) {
49 narg--; /* do not count `self' */
50 if (narg == 0) /* error is in the self argument itself? */
51 return luaL_error(L, "calling " LUA_QS " on bad self (%s)",
52 ar.name, extramsg);
53 }
54 if (ar.name == NULL)
55 ar.name = "?";
56 return luaL_error(L, "bad argument #%d to " LUA_QS " (%s)",
57 narg, ar.name, extramsg);
58}
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)
const char * name
const char * namewhat

References lua_getinfo(), lua_getstack(), LUA_QS, luaL_error(), lua_Debug::name, lua_Debug::namewhat, and NULL.

Referenced by addliteral(), addliteral(), b_size(), checkoption(), checkoption(), checkoption(), controloptions(), db_getinfo(), db_getinfo(), db_getinfo(), db_getinfo(), db_getlocal(), db_getlocal(), db_getlocal(), db_getlocal(), db_setlocal(), db_setlocal(), db_setlocal(), db_setlocal(), db_setuservalue(), fileerror(), g_read(), g_read(), g_read(), g_read(), getdetails(), getdetails(), getfunc(), lsqlite_checkbu(), lsqlite_checkcontext(), lsqlite_checkdb(), lsqlite_checkvm(), lsqlite_getvm(), lsqlite_open_ptr(), luaL_checkany(), luaL_checkoption(), luaL_typerror(), str_format(), str_format(), str_format(), str_format(), str_packsize(), and str_unpack().

◆ luaL_buffinit()

◆ luaL_callmeta()

LUALIB_API int luaL_callmeta ( lua_State * L,
int obj,
const char * event )

Definition at line 219 of file lua-5.1.5/src/lauxlib.c.

219 {
220 obj = abs_index(L, obj);
221 if (!luaL_getmetafield(L, obj, event)) /* no metafield? */
222 return 0;
223 lua_pushvalue(L, obj);
224 lua_call(L, 1, 1);
225 return 1;
226}
#define abs_index(L, i)
LUALIB_API int luaL_getmetafield(lua_State *L, int obj, const char *event)
#define lua_call(L, n, r)

References abs_index, lua_call, lua_pushvalue(), and luaL_getmetafield().

Referenced by luaB_tostring(), msghandler(), msghandler(), and traceback().

◆ luaL_checkany()

LUALIB_API void luaL_checkany ( lua_State * L,
int narg )

◆ luaL_checkinteger()

◆ luaL_checklstring()

◆ luaL_checknumber()

LUALIB_API lua_Number luaL_checknumber ( lua_State * L,
int narg )

Definition at line 176 of file lua-5.1.5/src/lauxlib.c.

176 {
177 lua_Number d = lua_tonumber(L, narg);
178 if (d == 0 && !lua_isnumber(L, narg)) /* avoid extra test when d is not 0 */
179 tag_error(L, narg, LUA_TNUMBER);
180 return d;
181}
LUA_NUMBER lua_Number
#define lua_tonumber(L, i)

References lua_isnumber(), LUA_TNUMBER, lua_tonumber, and tag_error().

Referenced by b_pack(), dbvm_bind_parameter_name(), dbvm_get_name(), dbvm_get_type(), lcontext_result(), lcontext_result_double(), luaL_optnumber(), math_abs(), math_abs(), math_abs(), math_abs(), math_acos(), math_acos(), math_acos(), math_acos(), math_asin(), math_asin(), math_asin(), math_asin(), math_atan(), math_atan(), math_atan(), math_atan(), math_atan2(), math_atan2(), math_ceil(), math_ceil(), math_ceil(), math_ceil(), math_cos(), math_cos(), math_cos(), math_cos(), math_cosh(), math_cosh(), math_deg(), math_deg(), math_deg(), math_deg(), math_exp(), math_exp(), math_exp(), math_exp(), math_floor(), math_floor(), math_floor(), math_floor(), math_fmod(), math_fmod(), math_fmod(), math_fmod(), math_frexp(), math_frexp(), math_ldexp(), math_ldexp(), math_log(), math_log(), math_log(), math_log(), math_log10(), math_max(), math_max(), math_min(), math_min(), math_modf(), math_modf(), math_modf(), math_modf(), math_pow(), math_pow(), math_rad(), math_rad(), math_rad(), math_rad(), math_random(), math_randomseed(), math_sin(), math_sin(), math_sin(), math_sin(), math_sinh(), math_sinh(), math_sqrt(), math_sqrt(), math_sqrt(), math_sqrt(), math_tan(), math_tan(), math_tan(), math_tan(), math_tanh(), math_tanh(), os_date(), os_date(), os_difftime(), os_difftime(), putinteger(), str_format(), str_format(), str_format(), str_format(), str_pack(), and str_pack().

◆ luaL_checkoption()

LUALIB_API int luaL_checkoption ( lua_State * L,
int narg,
const char * def,
const char *const lst[] )

Definition at line 99 of file lua-5.1.5/src/lauxlib.c.

100 {
101 const char *name = (def) ? luaL_optstring(L, narg, def) :
102 luaL_checkstring(L, narg);
103 int i;
104 for (i=0; lst[i]; i++)
105 if (strcmp(lst[i], name) == 0)
106 return i;
107 return luaL_argerror(L, narg,
108 lua_pushfstring(L, "invalid option " LUA_QS, name));
109}
const char * name
Definition lsqlite3.c:2154
#define luaL_optstring(L, n, d)
#define luaL_checkstring(L, n)

References lua_pushfstring(), LUA_QS, luaL_argerror(), luaL_checkstring, luaL_optstring, and name.

Referenced by f_seek(), f_seek(), f_seek(), f_seek(), f_setvbuf(), f_setvbuf(), f_setvbuf(), f_setvbuf(), lfs_g_setmode(), luaB_collectgarbage(), luaB_collectgarbage(), luaB_collectgarbage(), luaB_collectgarbage(), os_setlocale(), os_setlocale(), os_setlocale(), and os_setlocale().

◆ luaL_checkstack()

◆ luaL_checktype()

◆ luaL_checkudata()

LUALIB_API void * luaL_checkudata ( lua_State * L,
int ud,
const char * tname )

Definition at line 124 of file lua-5.1.5/src/lauxlib.c.

124 {
125 void *p = lua_touserdata(L, ud);
126 if (p != NULL) { /* value is a userdata? */
127 if (lua_getmetatable(L, ud)) { /* does it have a metatable? */
128 lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get correct metatable */
129 if (lua_rawequal(L, -1, -2)) { /* does it have the correct mt? */
130 lua_pop(L, 2); /* remove both metatables */
131 return p;
132 }
133 }
134 }
135 luaL_typerror(L, ud, tname); /* else error */
136 return NULL; /* to avoid warnings */
137}
LUA_API int lua_getmetatable(lua_State *L, int objindex)
LUA_API void * lua_touserdata(lua_State *L, int idx)
LUA_API int lua_rawequal(lua_State *L, int index1, int index2)
LUALIB_API int luaL_typerror(lua_State *L, int narg, const char *tname)

References lua_getfield(), lua_getmetatable(), lua_pop, lua_rawequal(), LUA_REGISTRYINDEX, lua_touserdata(), luaL_typerror(), and NULL.

Referenced by check_file(), dir_iter(), gctm(), lfs_unlock_dir(), lsqlite_getbu(), lsqlite_getcontext(), lsqlite_getdb(), and lsqlite_getvm().

◆ luaL_error()

LUALIB_API int luaL_error ( lua_State * L,
const char * fmt,
... )

Definition at line 86 of file lua-5.1.5/src/lauxlib.c.

86 {
87 va_list argp;
88 va_start(argp, fmt);
89 luaL_where(L, 1);
90 lua_pushvfstring(L, fmt, argp);
91 va_end(argp);
92 lua_concat(L, 2);
93 return lua_error(L);
94}
LUA_API int lua_error(lua_State *L)
LUA_API const char * lua_pushvfstring(lua_State *L, const char *fmt, va_list argp)
LUALIB_API void luaL_where(lua_State *L, int level)

References lua_concat(), lua_error(), lua_pushvfstring(), and luaL_where().

Referenced by _file_info_(), _file_lock(), add_s(), add_s(), add_s(), add_value(), add_value(), add_value(), add_value(), addfield(), addfield(), addfield(), addfield(), auxresume(), auxsort(), auxsort(), b_unpack(), byteoffset(), byteoffset(), capture_to_close(), capture_to_close(), capture_to_close(), capture_to_close(), check_capture(), check_capture(), check_capture(), check_capture(), check_file(), checkload(), checkload(), checkload(), checkstack(), checkstack(), checkstack(), classend(), classend(), classend(), classend(), codepoint(), codepoint(), controloptions(), db_create_collation(), db_register_function(), db_setfenv(), dbvm_bind_index(), dbvm_bind_values(), dbvm_check_bind_index(), dbvm_check_contents(), dbvm_check_index(), dir_iter_factory(), fieldargs(), findfile(), findfile(), findfile(), findfile(), findloader(), findloader(), findloader(), generic_reader(), generic_reader(), generic_reader(), generic_reader(), get_onecapture(), getfield(), getfield(), getfield(), getfield(), getfunc(), getiofile(), getiofile(), getiofile(), getiofile(), getnumlimit(), getnumlimit(), getoption(), getoption(), gfind_nodef(), io_readline(), io_readline(), io_readline(), io_readline(), iter_aux(), iter_aux(), lcontext_check_aggregate(), lcontext_result(), ll_module(), ll_require(), loader_preload(), loaderror(), lstop(), lstop(), lstop(), lstop(), luaB_assert(), luaB_assert(), luaB_close(), luaB_print(), luaB_print(), luaB_print(), luaB_setfenv(), luaB_setmetatable(), luaB_setmetatable(), luaB_setmetatable(), luaB_setmetatable(), luaB_unpack(), luaI_openlib(), luaL_argerror(), luaL_checkstack(), luaopen_bit32(), make_xml_object(), match(), match(), match(), match(), matchbalance(), matchbalance(), matchbalance(), matchbalance(), math_random(), math_random(), math_random(), math_random(), opencheck(), opencheck(), opencheck(), optsize(), os_date(), os_date(), os_time(), os_time(), os_tmpname(), os_tmpname(), os_tmpname(), os_tmpname(), partition(), partition(), push_onecapture(), push_onecapture(), push_onecapture(), pushargs(), pushargs(), scanformat(), scanformat(), scanformat(), scanformat(), setfenv(), setfield(), setn(), start_capture(), start_capture(), start_capture(), start_capture(), str_byte(), str_byte(), str_byte(), str_byte(), str_dump(), str_dump(), str_dump(), str_dump(), str_format(), str_format(), str_format(), str_format(), str_rep(), str_rep(), str_rep(), tinsert(), tinsert(), tinsert(), tinsert(), tofile(), tofile(), tofile(), tofile(), trymt(), tunpack(), unpack(), unpack(), unpackint(), unpackint(), Xml_eval(), and Xml_load().

◆ luaL_findtable()

LUALIB_API const char * luaL_findtable ( lua_State * L,
int idx,
const char * fname,
int szhint )

Definition at line 357 of file lua-5.1.5/src/lauxlib.c.

358 {
359 const char *e;
360 lua_pushvalue(L, idx);
361 do {
362 e = strchr(fname, '.');
363 if (e == NULL) e = fname + strlen(fname);
364 lua_pushlstring(L, fname, e - fname);
365 lua_rawget(L, -2);
366 if (lua_isnil(L, -1)) { /* no such field? */
367 lua_pop(L, 1); /* remove this nil */
368 lua_createtable(L, 0, (*e == '.' ? 1 : szhint)); /* new table for field */
369 lua_pushlstring(L, fname, e - fname);
370 lua_pushvalue(L, -2);
371 lua_settable(L, -4); /* set new table into field */
372 }
373 else if (!lua_istable(L, -1)) { /* field has a non-table value? */
374 lua_pop(L, 2); /* remove table and value */
375 return fname; /* return problematic part of the name */
376 }
377 lua_remove(L, -2); /* remove previous table */
378 fname = e + 1;
379 } while (*e == '.');
380 return NULL;
381}
LUA_API void lua_rawget(lua_State *L, int idx)
LUA_API void lua_settable(lua_State *L, int idx)
LUA_API void lua_createtable(lua_State *L, int narray, int nrec)
#define lua_isnil(L, n)

References lua_createtable(), lua_isnil, lua_istable, lua_pop, lua_pushlstring(), lua_pushvalue(), lua_rawget(), lua_remove, lua_settable(), and NULL.

Referenced by ll_module(), luaI_openlib(), and luaopen_package().

◆ luaL_getmetafield()

LUALIB_API int luaL_getmetafield ( lua_State * L,
int obj,
const char * event )

Definition at line 203 of file lua-5.1.5/src/lauxlib.c.

203 {
204 if (!lua_getmetatable(L, obj)) /* no metatable? */
205 return 0;
206 lua_pushstring(L, event);
207 lua_rawget(L, -2);
208 if (lua_isnil(L, -1)) {
209 lua_pop(L, 2); /* remove metatable and metafield */
210 return 0;
211 }
212 else {
213 lua_remove(L, -2); /* remove only metatable */
214 return 1;
215 }
216}
LUA_API void lua_pushstring(lua_State *L, const char *s)

References lua_getmetatable(), lua_isnil, lua_pop, lua_pushstring(), lua_rawget(), and lua_remove.

Referenced by luaB_getmetatable(), luaB_getmetatable(), luaB_getmetatable(), luaB_getmetatable(), luaB_pairs(), luaB_setmetatable(), luaB_setmetatable(), luaB_setmetatable(), luaB_setmetatable(), luaL_callmeta(), pairsmeta(), pairsmeta(), and trymt().

◆ luaL_gsub()

LUALIB_API const char * luaL_gsub ( lua_State * L,
const char * s,
const char * p,
const char * r )

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

341 {
342 const char *wild;
343 size_t l = strlen(p);
344 luaL_Buffer b;
345 luaL_buffinit(L, &b);
346 while ((wild = strstr(s, p)) != NULL) {
347 luaL_addlstring(&b, s, wild - s); /* push prefix */
348 luaL_addstring(&b, r); /* push replacement in place of pattern */
349 s = wild + l; /* continue after `p' */
350 }
351 luaL_addstring(&b, s); /* push last suffix */
352 luaL_pushresult(&b);
353 return lua_tostring(L, -1);
354}
LUALIB_API void luaL_buffinit(lua_State *L, luaL_Buffer *B)
LUALIB_API void luaL_pushresult(luaL_Buffer *B)
LUALIB_API void luaL_addstring(luaL_Buffer *B, const char *s)

References lua_tostring, luaL_addlstring(), luaL_addstring(), luaL_buffinit(), luaL_pushresult(), NULL, and s.

Referenced by do_gsub(), findfile(), loadfunc(), loadfunc(), loadfunc(), mkfuncname(), searchpath(), searchpath(), searchpath(), setpath(), setpath(), and setpath().

◆ luaL_loadbuffer()

LUALIB_API int luaL_loadbuffer ( lua_State * L,
const char * buff,
size_t size,
const char * name )

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

610 {
611 LoadS ls;
612 ls.s = buff;
613 ls.size = size;
614 return lua_load(L, getS, &ls, name);
615}
LUA_API int lua_load(lua_State *L, lua_Reader reader, void *data, const char *chunkname)
static const char * getS(lua_State *L, void *ud, size_t *size)

References getS(), lua_load(), name, LoadS::s, and LoadS::size.

◆ luaL_loadfile()

LUALIB_API int luaL_loadfile ( lua_State * L,
const char * filename )

Definition at line 552 of file lua-5.1.5/src/lauxlib.c.

552 {
553 LoadF lf;
554 int status, readstatus;
555 int c;
556 int fnameindex = lua_gettop(L) + 1; /* index of filename on the stack */
557 lf.extraline = 0;
558 if (filename == NULL) {
559 lua_pushliteral(L, "=stdin");
560 lf.f = stdin;
561 }
562 else {
563 lua_pushfstring(L, "@%s", filename);
564 lf.f = fopen(filename, "r");
565 if (lf.f == NULL) return errfile(L, "open", fnameindex);
566 }
567 c = getc(lf.f);
568 if (c == '#') { /* Unix exec. file? */
569 lf.extraline = 1;
570 while ((c = getc(lf.f)) != EOF && c != '\n') ; /* skip first line */
571 if (c == '\n') c = getc(lf.f);
572 }
573 if (c == LUA_SIGNATURE[0] && filename) { /* binary file? */
574 lf.f = freopen(filename, "rb", lf.f); /* reopen in binary mode */
575 if (lf.f == NULL) return errfile(L, "reopen", fnameindex);
576 /* skip eventual `#!...' */
577 while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ;
578 lf.extraline = 0;
579 }
580 ungetc(c, lf.f);
581 status = lua_load(L, getF, &lf, lua_tostring(L, -1));
582 readstatus = ferror(lf.f);
583 if (filename) fclose(lf.f); /* close file (even in case of errors) */
584 if (readstatus) {
585 lua_settop(L, fnameindex); /* ignore results from `lua_load' */
586 return errfile(L, "read", fnameindex);
587 }
588 lua_remove(L, fnameindex);
589 return status;
590}
LUA_API void lua_settop(lua_State *L, int idx)
static int errfile(lua_State *L, const char *what, int fnameindex)
static const char * getF(lua_State *L, void *ud, size_t *size)
#define lua_pushliteral(L, s)
#define LUA_SIGNATURE

References errfile(), LoadF::extraline, LoadF::f, getF(), lua_gettop(), lua_load(), lua_pushfstring(), lua_pushliteral, lua_remove, lua_settop(), LUA_SIGNATURE, lua_tostring, and NULL.

◆ luaL_loadstring()

LUALIB_API int luaL_loadstring ( lua_State * L,
const char * s )

Definition at line 618 of file lua-5.1.5/src/lauxlib.c.

618 {
619 return luaL_loadbuffer(L, s, strlen(s), s);
620}
#define luaL_loadbuffer(L, s, sz, n)

References luaL_loadbuffer, and s.

◆ luaL_newmetatable()

LUALIB_API int luaL_newmetatable ( lua_State * L,
const char * tname )

Definition at line 112 of file lua-5.1.5/src/lauxlib.c.

112 {
113 lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get registry.name */
114 if (!lua_isnil(L, -1)) /* name already in use? */
115 return 0; /* leave previous value on top, but return 0 */
116 lua_pop(L, 1);
117 lua_newtable(L); /* create metatable */
118 lua_pushvalue(L, -1);
119 lua_setfield(L, LUA_REGISTRYINDEX, tname); /* registry.name = metatable */
120 return 1;
121}
#define lua_newtable(L)

References lua_getfield(), lua_isnil, lua_newtable, lua_pop, lua_pushvalue(), LUA_REGISTRYINDEX, and lua_setfield().

Referenced by create_meta(), createmeta(), createmeta(), createmeta(), createmeta(), dir_create_meta(), lock_create_meta(), luaopen_LuaXML_lib(), and luaopen_package().

◆ luaL_newstate()

LUALIB_API lua_State * luaL_newstate ( void )

Definition at line 647 of file lua-5.1.5/src/lauxlib.c.

647 {
649 if (L) lua_atpanic(L, &panic);
650 return L;
651}
LUA_API lua_CFunction lua_atpanic(lua_State *L, lua_CFunction panicf)
static int panic(lua_State *L)
static void * l_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
LUA_API lua_State * lua_newstate(lua_Alloc f, void *ud)

References l_alloc(), lua_atpanic(), lua_newstate(), NULL, and panic().

Referenced by main(), and main().

◆ luaL_optinteger()

◆ luaL_optlstring()

LUALIB_API const char * luaL_optlstring ( lua_State * L,
int narg,
const char * def,
size_t * len )

Definition at line 165 of file lua-5.1.5/src/lauxlib.c.

166 {
167 if (lua_isnoneornil(L, narg)) {
168 if (len)
169 *len = (def ? strlen(def) : 0);
170 return def;
171 }
172 else return luaL_checklstring(L, narg, len);
173}
LUALIB_API const char * luaL_checklstring(lua_State *L, int narg, size_t *len)
#define lua_isnoneornil(L, n)

References lua_isnoneornil, and luaL_checklstring().

Referenced by os_date(), os_date(), str_rep(), str_rep(), str_rep(), tconcat(), tconcat(), tconcat(), and tconcat().

◆ luaL_optnumber()

LUALIB_API lua_Number luaL_optnumber ( lua_State * L,
int narg,
lua_Number def )

Definition at line 184 of file lua-5.1.5/src/lauxlib.c.

184 {
185 return luaL_opt(L, luaL_checknumber, narg, def);
186}
LUALIB_API lua_Number luaL_checknumber(lua_State *L, int narg)

References luaL_checknumber(), and luaL_opt.

Referenced by f_seek(), file_utime(), math_atan(), math_atan(), os_difftime(), and os_difftime().

◆ luaL_prepbuffer()

LUALIB_API char * luaL_prepbuffer ( luaL_Buffer * B)

Definition at line 429 of file lua-5.1.5/src/lauxlib.c.

429 {
430 if (emptybuffer(B))
431 adjuststack(B);
432 return B->buffer;
433}

References adjuststack(), luaL_Buffer::buffer, and emptybuffer().

◆ luaL_pushresult()

◆ luaL_ref()

LUALIB_API int luaL_ref ( lua_State * L,
int t )

Definition at line 481 of file lua-5.1.5/src/lauxlib.c.

481 {
482 int ref;
483 t = abs_index(L, t);
484 if (lua_isnil(L, -1)) {
485 lua_pop(L, 1); /* remove from stack */
486 return LUA_REFNIL; /* `nil' has a unique fixed reference */
487 }
488 lua_rawgeti(L, t, FREELIST_REF); /* get first free element */
489 ref = (int)lua_tointeger(L, -1); /* ref = t[FREELIST_REF] */
490 lua_pop(L, 1); /* remove it from stack */
491 if (ref != 0) { /* any free element? */
492 lua_rawgeti(L, t, ref); /* remove it from list */
493 lua_rawseti(L, t, FREELIST_REF); /* (t[FREELIST_REF] = t[ref]) */
494 }
495 else { /* no free elements */
496 ref = (int)lua_objlen(L, t);
497 ref++; /* create new reference */
498 }
499 lua_rawseti(L, t, ref);
500 return ref;
501}
LUA_API void lua_rawseti(lua_State *L, int idx, int n)
LUA_API size_t lua_objlen(lua_State *L, int idx)
LUA_API void lua_rawgeti(lua_State *L, int idx, int n)
#define FREELIST_REF
#define LUA_REFNIL

References abs_index, FREELIST_REF, lua_isnil, lua_objlen(), lua_pop, lua_rawgeti(), lua_rawseti(), LUA_REFNIL, and lua_tointeger.

Referenced by db_busy_handler(), db_commit_hook(), db_create_collation(), db_progress_handler(), db_register_function(), db_rollback_hook(), db_trace(), db_update_hook(), lcontext_set_aggregate_context(), luaopen_lsqlite3(), and luaopen_LuaXML_lib().

◆ luaL_register()

LUALIB_API void luaL_register ( lua_State * L,
const char * libname,
const luaL_Reg * l )

◆ luaL_typerror()

LUALIB_API int luaL_typerror ( lua_State * L,
int narg,
const char * tname )

Definition at line 61 of file lua-5.1.5/src/lauxlib.c.

61 {
62 const char *msg = lua_pushfstring(L, "%s expected, got %s",
63 tname, luaL_typename(L, narg));
64 return luaL_argerror(L, narg, msg);
65}
#define luaL_typename(L, i)

References lua_pushfstring(), luaL_argerror(), and luaL_typename.

Referenced by lsqlite_getbu(), lsqlite_getcontext(), lsqlite_getdb(), luaL_checkudata(), and tag_error().

◆ luaL_unref()

LUALIB_API void luaL_unref ( lua_State * L,
int t,
int ref )

Definition at line 504 of file lua-5.1.5/src/lauxlib.c.

504 {
505 if (ref >= 0) {
506 t = abs_index(L, t);
508 lua_rawseti(L, t, ref); /* t[ref] = t[FREELIST_REF] */
509 lua_pushinteger(L, ref);
510 lua_rawseti(L, t, FREELIST_REF); /* t[FREELIST_REF] = ref */
511 }
512}
LUA_API void lua_pushinteger(lua_State *L, lua_Integer n)

References abs_index, FREELIST_REF, lua_pushinteger(), lua_rawgeti(), and lua_rawseti().

Referenced by cleanupdb(), collfree(), db_busy_handler(), db_busy_timeout(), db_commit_hook(), db_progress_handler(), db_rollback_hook(), db_sql_finalize_function(), db_sql_normal_function(), db_trace(), db_update_hook(), and lcontext_set_aggregate_context().

◆ luaL_where()

LUALIB_API void luaL_where ( lua_State * L,
int level )

Definition at line 73 of file lua-5.1.5/src/lauxlib.c.

73 {
74 lua_Debug ar;
75 if (lua_getstack(L, level, &ar)) { /* check function at level */
76 lua_getinfo(L, "Sl", &ar); /* get info about it */
77 if (ar.currentline > 0) { /* is there info? */
78 lua_pushfstring(L, "%s:%d: ", ar.short_src, ar.currentline);
79 return;
80 }
81 }
82 lua_pushliteral(L, ""); /* else, no information available... */
83}
char short_src[LUA_IDSIZE]

References lua_Debug::currentline, lua_getinfo(), lua_getstack(), lua_pushfstring(), lua_pushliteral, and lua_Debug::short_src.

Referenced by luaB_auxwrap(), luaB_auxwrap(), luaB_auxwrap(), luaB_auxwrap(), luaB_error(), luaB_error(), luaB_error(), luaB_error(), and luaL_error().

◆ panic()

static int panic ( lua_State * L)
static

Definition at line 639 of file lua-5.1.5/src/lauxlib.c.

639 {
640 (void)L; /* to avoid warnings */
641 fprintf(stderr, "PANIC: unprotected error in call to Lua API (%s)\n",
642 lua_tostring(L, -1));
643 return 0;
644}

References lua_tostring.

Referenced by luaD_throw(), and luaL_newstate().

◆ tag_error()

static void tag_error ( lua_State * L,
int narg,
int tag )
static

Definition at line 68 of file lua-5.1.5/src/lauxlib.c.

68 {
69 luaL_typerror(L, narg, lua_typename(L, tag));
70}
LUA_API const char * lua_typename(lua_State *L, int t)

References lua_typename(), and luaL_typerror().

Referenced by luaL_checkinteger(), luaL_checklstring(), luaL_checknumber(), and luaL_checktype().