/* ** $Id: lauxlib.c,v 1.32 2000/08/29 14:33:31 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ #include #include #include /* This file uses only the official API of Lua. ** Any function declared here could be written as an application function. ** With care, these functions can be used by other libraries. */ #include "lua.h" #include "lauxlib.h" #include "luadebug.h" 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 */ } void luaL_argerror (lua_State *L, int narg, const char *extramsg) { lua_Debug ar; lua_getstack(L, 0, &ar); lua_getinfo(L, "n", &ar); if (ar.name == NULL) ar.name = "?"; luaL_verror(L, "bad argument #%d to `%.50s' (%.100s)", narg, ar.name, extramsg); } static void type_error (lua_State *L, int narg, const char *type_name) { char buff[100]; const char *rt = lua_type(L, narg); if (*rt == 'N') rt = "no value"; sprintf(buff, "%.10s expected, got %.10s", type_name, rt); luaL_argerror(L, narg, buff); } void luaL_checkstack (lua_State *L, int space, const char *mes) { if (space > lua_stackspace(L)) luaL_verror(L, "stack overflow (%.30s)", mes); } /* ** use the 3rd letter of type names for testing: ** nuMber, niL, stRing, fuNction, usErdata, taBle, anY */ void luaL_checktype(lua_State *L, int narg, const char *tname) { const char *rt = lua_type(L, narg); if (!(*rt != 'N' && (tname[2] == 'y' || tname[2] == rt[2]))) type_error(L, narg, tname); } static const char *checkstr (lua_State *L, int narg, size_t *len) { const char *s = lua_tostring(L, narg); if (!s) type_error(L, narg, "string"); if (len) *len = lua_strlen(L, narg); return s; } const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) { return checkstr(L, narg, len); } const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, size_t *len) { if (lua_isnull(L, narg)) { if (len) *len = def ? strlen(def) : 0; return def; } else return checkstr(L, narg, len); } double luaL_check_number (lua_State *L, int narg) { if (!lua_isnumber(L, narg)) type_error(L, narg, "number"); return lua_tonumber(L, narg); } double luaL_opt_number (lua_State *L, int narg, double def) { if (lua_isnull(L, narg)) return def; else { if (!lua_isnumber(L, narg)) type_error(L, narg, "number"); return lua_tonumber(L, narg); } } void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n) { int i; for (i=0; i