1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-04-16 16:00:02 +04:00
|
|
|
** $Id: lauxlib.c,v 1.65 2002/04/04 20:25:55 roberto Exp roberto $
|
1998-06-19 20:14:09 +04:00
|
|
|
** Auxiliary functions for building Lua libraries
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1997-03-17 20:02:29 +03:00
|
|
|
|
1997-03-18 18:30:50 +03:00
|
|
|
#include <stdarg.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#include <stdio.h>
|
1998-06-18 20:57:03 +04:00
|
|
|
#include <string.h>
|
1997-03-17 20:02:29 +03:00
|
|
|
|
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.
|
|
|
|
** With care, these functions can be used by other libraries.
|
1998-01-09 18:09:53 +03:00
|
|
|
*/
|
1999-02-26 00:07:26 +03:00
|
|
|
|
1997-03-17 20:02:29 +03:00
|
|
|
#include "lua.h"
|
2000-06-12 17:52:05 +04:00
|
|
|
|
|
|
|
#include "lauxlib.h"
|
1997-04-06 18:08:08 +04:00
|
|
|
#include "luadebug.h"
|
2001-02-23 20:17:25 +03:00
|
|
|
#include "lualib.h"
|
1997-03-17 20:02:29 +03:00
|
|
|
|
|
|
|
|
2002-02-06 01:36:52 +03:00
|
|
|
LUALIB_API const char *luaL_errstr (int errcode) {
|
|
|
|
static const char *const errstr[] = {
|
|
|
|
"ok",
|
|
|
|
"run-time error",
|
2002-04-16 16:00:02 +04:00
|
|
|
"cannot read file",
|
2002-02-06 01:36:52 +03:00
|
|
|
"syntax error",
|
2002-02-15 00:41:53 +03:00
|
|
|
"not enough memory",
|
2002-02-06 01:36:52 +03:00
|
|
|
"error in error handling"
|
|
|
|
};
|
|
|
|
return errstr[errcode];
|
|
|
|
}
|
|
|
|
|
1997-04-07 18:48:53 +04:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API int luaL_findstring (const char *name, const char *const list[]) {
|
1998-06-18 20:57:03 +04:00
|
|
|
int i;
|
|
|
|
for (i=0; list[i]; i++)
|
|
|
|
if (strcmp(list[i], name) == 0)
|
|
|
|
return i;
|
|
|
|
return -1; /* name not found */
|
|
|
|
}
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API void 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);
|
2001-11-28 23:13:13 +03:00
|
|
|
lua_getinfo(L, "n", &ar);
|
2002-04-05 00:25:55 +04:00
|
|
|
if (strcmp(ar.namewhat, "method") == 0) narg--; /* do not count `self' */
|
2000-01-19 15:00:45 +03:00
|
|
|
if (ar.name == NULL)
|
2001-11-28 23:13:13 +03:00
|
|
|
ar.name = "?";
|
|
|
|
luaL_verror(L, "bad argument #%d to `%.50s' (%.100s)",
|
2000-01-19 15:00:45 +03:00
|
|
|
narg, ar.name, extramsg);
|
1997-03-17 20:02:29 +03:00
|
|
|
}
|
|
|
|
|
1999-12-28 14:52:49 +03:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API void luaL_typerror (lua_State *L, int narg, const char *tname) {
|
|
|
|
char buff[80];
|
2001-12-05 23:15:18 +03:00
|
|
|
sprintf(buff, "%.25s expected, got %.25s", tname,
|
|
|
|
lua_typename(L, lua_type(L,narg)));
|
1999-12-28 14:52:49 +03:00
|
|
|
luaL_argerror(L, narg, buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *mes) {
|
2002-03-07 21:15:10 +03:00
|
|
|
if (!lua_checkstack(L, space))
|
2001-11-28 23:13:13 +03:00
|
|
|
luaL_verror(L, "stack overflow (%.30s)", mes);
|
2000-08-30 00:43:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-12-05 23:15:18 +03:00
|
|
|
LUALIB_API void luaL_check_type(lua_State *L, int narg, int t) {
|
|
|
|
if (lua_type(L, narg) != t)
|
2001-01-25 19:45:36 +03:00
|
|
|
tag_error(L, narg, t);
|
2000-10-03 00:10:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-26 21:33:30 +04:00
|
|
|
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)
|
2001-11-28 23:13:13 +03:00
|
|
|
luaL_argerror(L, narg, "value expected");
|
2000-08-28 21:57:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03: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;
|
|
|
|
}
|
|
|
|
|
1997-03-17 20:02:29 +03:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, size_t *len) {
|
2002-03-27 18:30:41 +03:00
|
|
|
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);
|
1997-03-17 20:02:29 +03:00
|
|
|
}
|
|
|
|
|
2000-09-29 16:40:56 +04:00
|
|
|
|
2000-12-04 21:33:40 +03: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;
|
1997-03-17 20:02:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-04 21:33:40 +03:00
|
|
|
LUALIB_API lua_Number luaL_opt_number (lua_State *L, int narg, lua_Number def) {
|
2002-03-27 18:30:41 +03:00
|
|
|
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);
|
|
|
|
lua_rawcall(L, 1, 1);
|
|
|
|
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);
|
1997-03-18 18:30:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...) {
|
|
|
|
char buff[500];
|
1997-03-18 18:30:50 +03:00
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
|
|
|
vsprintf(buff, fmt, argp);
|
|
|
|
va_end(argp);
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_error(L, buff);
|
1997-03-18 18:30:50 +03:00
|
|
|
}
|
1997-09-26 19:02:26 +04:00
|
|
|
|
1999-03-05 00:23:39 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
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++);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-27 20:15:53 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-27 20:15:53 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-27 20:15:53 +04:00
|
|
|
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;
|
1999-03-10 17:19:41 +03:00
|
|
|
}
|
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 */
|
|
|
|
ref = (int)lua_tonumber(L, -1);
|
|
|
|
lua_pop(L, 1); /* remove it from stack */
|
|
|
|
if (ref != 0) { /* any free element? */
|
|
|
|
lua_rawgeti(L, t, ref); /* remove it from list */
|
|
|
|
lua_rawseti(L, t, 0);
|
|
|
|
}
|
|
|
|
else { /* no free elements */
|
|
|
|
ref = lua_getn(L, t) + 1; /* use next `n' */
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_pushliteral(L, "n");
|
2001-10-31 22:40:14 +03:00
|
|
|
lua_pushnumber(L, ref);
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_rawset(L, t); /* n = 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);
|
|
|
|
lua_pushnumber(L, ref);
|
|
|
|
lua_rawseti(L, t, 0);
|
|
|
|
lua_rawseti(L, t, ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|