lua/lauxlib.c

430 lines
10 KiB
C
Raw Normal View History

/*
2002-08-06 19:32:22 +04:00
** $Id: lauxlib.c,v 1.79 2002/08/05 17:36:24 roberto Exp roberto $
1998-06-19 20:14:09 +04:00
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
#include <ctype.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#ifndef lua_filerror
#include <errno.h>
#define lua_fileerror (strerror(errno))
#endif
1999-12-27 20:33:22 +03:00
/* This file uses only the official API of Lua.
1999-02-26 00:07:26 +03:00
** Any function declared here could be written as an application function.
1998-01-09 18:09:53 +03:00
*/
1999-02-26 00:07:26 +03:00
#include "lua.h"
#include "lauxlib.h"
#include "luadebug.h"
/*
** {======================================================
** Error-report functions
** =======================================================
*/
2002-05-02 00:48:12 +04:00
LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) {
2000-03-30 21:19:48 +04:00
lua_Debug ar;
2000-01-19 15:00:45 +03:00
lua_getstack(L, 0, &ar);
lua_getinfo(L, "n", &ar);
2002-06-05 20:59:37 +04:00
if (strcmp(ar.namewhat, "method") == 0) {
narg--; /* do not count `self' */
if (narg == 0) /* error is in the self argument itself? */
2002-06-18 19:19:27 +04:00
return luaL_error(L,
2002-06-05 20:59:37 +04:00
"calling %s on bad self (perhaps using `:' instead of `.')",
ar.name);
}
2000-01-19 15:00:45 +03:00
if (ar.name == NULL)
ar.name = "?";
2002-06-18 19:19:27 +04:00
return luaL_error(L, "bad argument #%d to `%s' (%s)",
narg, ar.name, extramsg);
}
1999-12-28 14:52:49 +03:00
LUALIB_API int luaL_typerror (lua_State *L, int narg, const char *tname) {
const char *msg = lua_pushfstring(L, "%s expected, got %s",
tname, lua_typename(L, lua_type(L,narg)));
return luaL_argerror(L, narg, msg);
1999-12-28 14:52:49 +03:00
}
2001-01-25 19:45:36 +03:00
static void tag_error (lua_State *L, int narg, int tag) {
2001-10-31 22:40:14 +03:00
luaL_typerror(L, narg, lua_typename(L, tag));
2001-01-25 19:45:36 +03:00
}
2002-06-18 19:19:27 +04:00
LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
va_list argp;
va_start(argp, fmt);
2002-06-18 19:19:27 +04:00
lua_pushvfstring(L, fmt, argp);
va_end(argp);
2002-06-18 19:19:27 +04:00
return lua_error(L);
}
/* }====================================================== */
LUALIB_API int luaL_findstring (const char *name, const char *const list[]) {
int i;
for (i=0; list[i]; i++)
if (strcmp(list[i], name) == 0)
return i;
return -1; /* name not found */
}
LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *mes) {
if (!lua_checkstack(L, space))
2002-06-18 19:19:27 +04:00
luaL_error(L, "stack overflow (%s)", mes);
2000-08-30 00:43:28 +04:00
}
LUALIB_API void luaL_check_type (lua_State *L, int narg, int t) {
2001-12-05 23:15:18 +03:00
if (lua_type(L, narg) != t)
2001-01-25 19:45:36 +03:00
tag_error(L, narg, t);
}
LUALIB_API void luaL_check_any (lua_State *L, int narg) {
2001-12-05 23:15:18 +03:00
if (lua_type(L, narg) == LUA_TNONE)
luaL_argerror(L, narg, "value expected");
2000-08-28 21:57:04 +04:00
}
LUALIB_API const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) {
const char *s = lua_tostring(L, narg);
2001-01-25 19:45:36 +03:00
if (!s) tag_error(L, narg, LUA_TSTRING);
2000-08-28 21:57:04 +04:00
if (len) *len = lua_strlen(L, narg);
1999-10-05 22:33:43 +04:00
return s;
}
LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, size_t *len) {
if (lua_isnoneornil(L, narg)) {
2000-09-29 16:40:56 +04:00
if (len)
*len = (def ? strlen(def) : 0);
1999-10-05 22:33:43 +04:00
return def;
}
2000-09-29 16:40:56 +04:00
else return luaL_check_lstr(L, narg, len);
}
2000-09-29 16:40:56 +04:00
LUALIB_API lua_Number luaL_check_number (lua_State *L, int narg) {
lua_Number d = lua_tonumber(L, narg);
2000-09-29 16:40:56 +04:00
if (d == 0 && !lua_isnumber(L, narg)) /* avoid extra test when d is not 0 */
2001-01-25 19:45:36 +03:00
tag_error(L, narg, LUA_TNUMBER);
2000-09-29 16:40:56 +04:00
return d;
}
LUALIB_API lua_Number luaL_opt_number (lua_State *L, int narg, lua_Number def) {
if (lua_isnoneornil(L, narg)) return def;
2000-09-29 16:40:56 +04:00
else return luaL_check_number(L, narg);
1999-10-05 22:33:43 +04:00
}
1997-12-09 16:50:08 +03:00
2002-04-03 00:42:49 +04:00
LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) {
if (!lua_getmetatable(L, obj)) /* no metatable? */
return 0;
lua_pushstring(L, event);
lua_rawget(L, -2);
if (lua_isnil(L, -1)) {
lua_pop(L, 2); /* remove metatable and metafield */
return 0;
}
lua_pushvalue(L, obj);
2002-06-25 23:15:21 +04:00
lua_call(L, 1, 1);
2002-04-03 00:42:49 +04:00
return 1;
}
LUALIB_API void luaL_openlib (lua_State *L, const luaL_reg *l, int nup) {
2002-03-20 15:54:08 +03:00
for (; l->name; l++) {
2002-04-03 00:42:49 +04:00
int i;
2002-03-20 15:54:08 +03:00
lua_pushstring(L, l->name);
2002-04-03 00:42:49 +04:00
for (i=0; i<nup; i++) /* copy upvalues to the top */
lua_pushvalue(L, -(nup+1));
lua_pushcclosure(L, l->func, nup);
lua_settable(L, -(nup+3));
2002-03-20 15:54:08 +03:00
}
2002-04-03 00:42:49 +04:00
lua_pop(L, nup);
2002-03-20 15:54:08 +03:00
}
LUALIB_API void luaL_opennamedlib (lua_State *L, const char *libname,
2002-04-03 00:42:49 +04:00
const luaL_reg *l, int nup) {
2002-03-20 15:54:08 +03:00
lua_pushstring(L, libname);
2002-04-03 00:42:49 +04:00
lua_insert(L, -(nup+1));
2002-03-20 15:54:08 +03:00
lua_newtable(L);
2002-04-03 00:42:49 +04:00
lua_insert(L, -(nup+1));
luaL_openlib(L, l, nup);
2002-03-20 15:54:08 +03:00
lua_settable(L, LUA_GLOBALSINDEX);
}
2000-09-11 21:38:42 +04:00
/*
** {======================================================
** Generic Buffer manipulation
** =======================================================
*/
#define buffempty(B) ((B)->p == (B)->buffer)
#define bufflen(B) ((B)->p - (B)->buffer)
#define bufffree(B) ((size_t)(LUAL_BUFFERSIZE - bufflen(B)))
#define LIMIT (LUA_MINSTACK/2)
static int emptybuffer (luaL_Buffer *B) {
size_t l = bufflen(B);
if (l == 0) return 0; /* put nothing on stack */
else {
lua_pushlstring(B->L, B->buffer, l);
B->p = B->buffer;
B->level++;
return 1;
}
}
static void adjuststack (luaL_Buffer *B) {
if (B->level > 1) {
lua_State *L = B->L;
int toget = 1; /* number of levels to concat */
size_t toplen = lua_strlen(L, -1);
do {
size_t l = lua_strlen(L, -(toget+1));
if (B->level - toget + 1 >= LIMIT || toplen > l) {
toplen += l;
toget++;
}
else break;
} while (toget < B->level);
2001-02-14 20:04:11 +03:00
lua_concat(L, toget);
B->level = B->level - toget + 1;
2000-09-11 21:38:42 +04:00
}
}
LUALIB_API char *luaL_prepbuffer (luaL_Buffer *B) {
2000-09-11 21:38:42 +04:00
if (emptybuffer(B))
adjuststack(B);
return B->buffer;
}
LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {
2000-09-11 21:38:42 +04:00
while (l--)
luaL_putchar(B, *s++);
}
LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) {
2000-09-12 17:48:22 +04:00
luaL_addlstring(B, s, strlen(s));
}
LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
2000-09-11 21:38:42 +04:00
emptybuffer(B);
2001-02-14 20:04:11 +03:00
lua_concat(B->L, B->level);
2000-09-11 21:38:42 +04:00
B->level = 1;
}
LUALIB_API void luaL_addvalue (luaL_Buffer *B) {
2000-09-11 21:38:42 +04:00
lua_State *L = B->L;
size_t vl = lua_strlen(L, -1);
if (vl <= bufffree(B)) { /* fit into buffer? */
memcpy(B->p, lua_tostring(L, -1), vl); /* put it there */
B->p += vl;
lua_pop(L, 1); /* remove from stack */
}
else {
if (emptybuffer(B))
lua_insert(L, -2); /* put buffer before new value */
B->level++; /* add new value into B stack */
adjuststack(B);
}
}
LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
2000-09-11 21:38:42 +04:00
B->L = L;
B->p = B->buffer;
B->level = 0;
}
2000-08-28 21:57:04 +04:00
2000-09-11 21:38:42 +04:00
/* }====================================================== */
2001-10-31 22:40:14 +03:00
LUALIB_API int luaL_ref (lua_State *L, int t) {
int ref;
lua_rawgeti(L, t, 0); /* get first free element */
2002-06-26 23:28:44 +04:00
ref = (int)lua_tonumber(L, -1); /* ref = t[0] */
2001-10-31 22:40:14 +03:00
lua_pop(L, 1); /* remove it from stack */
if (ref != 0) { /* any free element? */
lua_rawgeti(L, t, ref); /* remove it from list */
2002-06-26 23:28:44 +04:00
lua_rawseti(L, t, 0); /* (that is, t[0] = t[ref]) */
2001-10-31 22:40:14 +03:00
}
else { /* no free elements */
2002-02-07 20:25:36 +03:00
lua_pushliteral(L, "n");
2002-06-26 23:28:44 +04:00
lua_pushvalue(L, -1);
lua_rawget(L, t); /* get t.n */
ref = (int)lua_tonumber(L, -1) + 1; /* ref = t.n + 1 */
lua_pop(L, 1); /* pop t.n */
2001-10-31 22:40:14 +03:00
lua_pushnumber(L, ref);
2002-06-26 23:28:44 +04:00
lua_rawset(L, t); /* t.n = t.n + 1 */
2001-10-31 22:40:14 +03:00
}
lua_rawseti(L, t, ref);
return ref;
}
LUALIB_API void luaL_unref (lua_State *L, int t, int ref) {
if (ref >= 0) {
lua_rawgeti(L, t, 0);
2002-06-26 23:28:44 +04:00
lua_rawseti(L, t, ref); /* t[ref] = t[0] */
2001-10-31 22:40:14 +03:00
lua_pushnumber(L, ref);
2002-06-26 23:28:44 +04:00
lua_rawseti(L, t, 0); /* t[0] = ref */
2001-10-31 22:40:14 +03:00
}
}
2002-06-25 23:15:21 +04:00
/*
** {======================================================
** Load functions
** =======================================================
*/
typedef struct LoadF {
FILE *f;
char buff[LUAL_BUFFERSIZE];
} LoadF;
static const char *getF (void *ud, size_t *size) {
LoadF *lf = (LoadF *)ud;
2002-06-05 20:59:37 +04:00
if (feof(lf->f)) return NULL;
*size = fread(lf->buff, 1, LUAL_BUFFERSIZE, lf->f);
return (*size > 0) ? lf->buff : NULL;
}
static int errfile (lua_State *L, const char *filename) {
if (filename == NULL) filename = "stdin";
lua_pushfstring(L, "cannot read %s: %s", filename, lua_fileerror);
return LUA_ERRFILE;
}
LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
LoadF lf;
int status;
int c;
int old_top = lua_gettop(L);
lf.f = (filename == NULL) ? stdin : fopen(filename, "r");
if (lf.f == NULL) return errfile(L, filename); /* unable to open file */
c = ungetc(getc(lf.f), lf.f);
if (!(isspace(c) || isprint(c)) && lf.f != stdin) { /* binary file? */
fclose(lf.f);
lf.f = fopen(filename, "rb"); /* reopen in binary mode */
if (lf.f == NULL) return errfile(L, filename); /* unable to reopen file */
}
if (filename == NULL)
lua_pushliteral(L, "=stdin");
else
lua_pushfstring(L, "@%s", filename);
status = lua_load(L, getF, &lf, lua_tostring(L, -1));
lua_remove(L, old_top+1); /* remove filename from stack */
if (ferror(lf.f)) {
lua_settop(L, old_top); /* ignore results from `lua_load' */
return errfile(L, filename);
}
if (lf.f != stdin)
fclose(lf.f);
return status;
}
typedef struct LoadS {
const char *s;
size_t size;
} LoadS;
static const char *getS (void *ud, size_t *size) {
LoadS *ls = (LoadS *)ud;
if (ls->size == 0) return NULL;
*size = ls->size;
ls->size = 0;
return ls->s;
}
LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size,
const char *name) {
LoadS ls;
ls.s = buff;
ls.size = size;
return lua_load(L, getS, &ls, name);
}
/* }====================================================== */
/*
** {======================================================
** compatibility code
** =======================================================
*/
static void callalert (lua_State *L, int status) {
if (status != 0) {
lua_getglobal(L, "_ALERT");
lua_insert(L, -2);
2002-08-05 21:36:24 +04:00
lua_call(L, 1, 0);
lua_pop(L, 1);
}
}
static int aux_do (lua_State *L, int status) {
2002-08-05 21:36:24 +04:00
if (status == 0) { /* parse OK? */
2002-08-06 19:32:22 +04:00
status = lua_pcall(L, 0, LUA_MULTRET, 0); /* call main */
2002-08-05 21:36:24 +04:00
}
callalert(L, status);
return status;
}
LUALIB_API int lua_dofile (lua_State *L, const char *filename) {
return aux_do(L, luaL_loadfile(L, filename));
}
LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t size,
const char *name) {
return aux_do(L, luaL_loadbuffer(L, buff, size, name));
}
LUALIB_API int lua_dostring (lua_State *L, const char *str) {
return lua_dobuffer(L, str, strlen(str), str);
}
/* }====================================================== */