lauxlib.c File Reference

Go to the source code of this file.

Classes

struct  LoadF
struct  LoadS

Defines

#define lauxlib_c
#define LUA_LIB
#define FREELIST_REF   0
#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)

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 atpanic_print (lua_State *L)
LUALIB_API lua_StateluaL_newstate (void)

Define Documentation

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

Definition at line 31 of file lauxlib.c.

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

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

Definition at line 392 of file lauxlib.c.

Referenced by luaL_addvalue().

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

Definition at line 391 of file lauxlib.c.

Referenced by emptybuffer().

#define FREELIST_REF   0

Definition at line 27 of file lauxlib.c.

Referenced by luaL_ref(), and luaL_unref().

#define lauxlib_c

Definition at line 20 of file lauxlib.c.

#define LIMIT   (LUA_MINSTACK/2)

Definition at line 394 of file lauxlib.c.

Referenced by adjuststack().

#define LUA_LIB

Definition at line 21 of file lauxlib.c.


Function Documentation

static void adjuststack ( luaL_Buffer B  )  [static]

Definition at line 409 of file lauxlib.c.

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

Referenced by luaL_addvalue(), and luaL_prepbuffer().

static int atpanic_print ( lua_State L  )  [static]

Definition at line 638 of file lauxlib.c.

References lua_tostring.

Referenced by luaL_newstate().

static int emptybuffer ( luaL_Buffer B  )  [static]
static int errfile ( lua_State L,
const char *  what,
int  fnameindex 
) [static]

Definition at line 542 of file lauxlib.c.

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

Referenced by luaL_loadfile().

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

Definition at line 528 of file lauxlib.c.

References LoadF::buff, LoadF::extraline, and LoadF::f.

Referenced by luaL_loadfile().

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

Definition at line 598 of file lauxlib.c.

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

Referenced by luaL_loadbuffer().

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

Definition at line 626 of file lauxlib.c.

static int libsize ( const luaL_Reg l  )  [static]

Definition at line 234 of file lauxlib.c.

References luaL_Reg::name.

Referenced by luaI_openlib().

LUALIB_API void luaI_openlib ( lua_State L,
const char *  libname,
const luaL_Reg l,
int  nup 
)
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 
)

Definition at line 441 of file lauxlib.c.

References luaL_addlstring().

Referenced by luaL_gsub().

LUALIB_API void luaL_addvalue ( luaL_Buffer B  ) 
LUALIB_API int luaL_argerror ( lua_State L,
int  narg,
const char *  extramsg 
)
LUALIB_API void luaL_buffinit ( lua_State L,
luaL_Buffer B 
)
LUALIB_API int luaL_callmeta ( lua_State L,
int  obj,
const char *  event 
)

Definition at line 218 of file lauxlib.c.

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

Referenced by luaB_tostring().

LUALIB_API void luaL_checkany ( lua_State L,
int  narg 
)
LUALIB_API lua_Integer luaL_checkinteger ( lua_State L,
int  narg 
)

Definition at line 188 of file lauxlib.c.

References d(), lua_isnumber(), LUA_TNUMBER, lua_tointeger(), and tag_error().

Referenced by luaL_optinteger(), and str_sub().

LUALIB_API const char* luaL_checklstring ( lua_State L,
int  narg,
size_t *  len 
)
LUALIB_API lua_Number luaL_checknumber ( lua_State L,
int  narg 
)
LUALIB_API int luaL_checkoption ( lua_State L,
int  narg,
const char *  def,
const char *const   lst[] 
)
LUALIB_API void luaL_checkstack ( lua_State L,
int  space,
const char *  mes 
)

Definition at line 139 of file lauxlib.c.

References lua_checkstack(), and luaL_error().

Referenced by g_read(), generic_reader(), getargs(), push_captures(), sort(), and str_byte().

LUALIB_API void luaL_checktype ( lua_State L,
int  narg,
int  t 
)
LUALIB_API void* luaL_checkudata ( lua_State L,
int  ud,
const char *  tname 
)
LUALIB_API int luaL_error ( lua_State L,
const char *  fmt,
  ... 
)
LUALIB_API const char* luaL_findtable ( lua_State L,
int  idx,
const char *  fname,
int  szhint 
)
LUALIB_API int luaL_getmetafield ( lua_State L,
int  obj,
const char *  event 
)
LUALIB_API const char* luaL_gsub ( lua_State L,
const char *  s,
const char *  p,
const char *  r 
)

Definition at line 339 of file lauxlib.c.

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

Referenced by findfile(), mkfuncname(), and setpath().

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

Definition at line 608 of file lauxlib.c.

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

Referenced by db_debug(), dostring(), loadline(), luaB_loadstring(), and luaL_loadstring().

LUALIB_API int luaL_loadfile ( lua_State L,
const char *  filename 
)
LUALIB_API int() luaL_loadstring ( lua_State L,
const char *  s 
)
LUALIB_API int luaL_newmetatable ( lua_State L,
const char *  tname 
)
LUALIB_API lua_State* luaL_newstate ( void   ) 

Definition at line 646 of file lauxlib.c.

References atpanic_print(), l_alloc(), lua_atpanic(), and lua_newstate().

LUALIB_API lua_Integer luaL_optinteger ( lua_State L,
int  narg,
lua_Integer  def 
)

Definition at line 196 of file lauxlib.c.

References luaL_checkinteger(), and luaL_opt.

Referenced by f_setvbuf(), str_byte(), str_find_aux(), and str_sub().

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

Definition at line 164 of file lauxlib.c.

References lua_isnoneornil, and luaL_checklstring().

Referenced by tconcat().

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

Definition at line 183 of file lauxlib.c.

References luaL_checknumber(), and luaL_opt.

Referenced by os_difftime().

LUALIB_API char* luaL_prepbuffer ( luaL_Buffer B  ) 

Definition at line 428 of file lauxlib.c.

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

Referenced by read_chars(), and read_line().

LUALIB_API void luaL_pushresult ( luaL_Buffer B  ) 
LUALIB_API int luaL_ref ( lua_State L,
int  t 
)
LUALIB_API void() luaL_register ( lua_State L,
const char *  libname,
const luaL_Reg l 
)
LUALIB_API int luaL_typerror ( lua_State L,
int  narg,
const char *  tname 
)
LUALIB_API void luaL_unref ( lua_State L,
int  t,
int  ref 
)

Definition at line 503 of file lauxlib.c.

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

LUALIB_API void luaL_where ( lua_State L,
int  level 
)
static void tag_error ( lua_State L,
int  narg,
int  tag 
) [static]

Definition at line 67 of file lauxlib.c.

References lua_typename(), and luaL_typerror().

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


ContextLogger2—ContextLogger2 Logger Daemon Internals—Generated on Mon May 2 13:49:59 2011 by Doxygen 1.6.1