lua/lauxlib.c

153 lines
4.0 KiB
C
Raw Normal View History

/*
2000-08-09 23:16:57 +04:00
** $Id: lauxlib.c,v 1.29 2000/06/12 13:52:05 roberto Exp roberto $
1998-06-19 20:14:09 +04:00
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
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
#include "lua.h"
#include "lauxlib.h"
#include "luadebug.h"
1999-08-17 00:52:00 +04:00
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 */
}
1999-12-28 14:52:49 +03:00
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);
lua_getinfo(L, "nu", &ar);
narg -= ar.nups;
if (ar.name == NULL)
ar.name = "?";
1999-12-28 14:52:49 +03:00
luaL_verror(L, "bad argument #%d to `%.50s' (%.100s)",
2000-01-19 15:00:45 +03:00
narg, ar.name, extramsg);
}
1999-12-28 14:52:49 +03:00
2000-02-08 19:39:42 +03:00
static void type_error (lua_State *L, int narg, const char *type_name,
1999-12-28 14:52:49 +03:00
lua_Object o) {
char buff[100];
const char *otype = (o == LUA_NOOBJECT) ? "no value" : lua_type(L, o);
2000-02-08 19:39:42 +03:00
sprintf(buff, "%.10s expected, got %.10s", type_name, otype);
1999-12-28 14:52:49 +03:00
luaL_argerror(L, narg, buff);
}
2000-05-24 17:54:49 +04:00
static const char *checkstr (lua_State *L, lua_Object o, int narg,
size_t *len) {
const char *s = lua_getstring(L, o);
1999-12-28 14:52:49 +03:00
if (!s) type_error(L, narg, "string", o);
if (len) *len = lua_strlen(L, o);
1999-10-05 22:33:43 +04:00
return s;
}
2000-05-24 17:54:49 +04:00
const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) {
1999-12-28 14:52:49 +03:00
return checkstr(L, lua_getparam(L, narg), narg, len);
}
2000-05-24 17:54:49 +04:00
const char *luaL_opt_lstr (lua_State *L, int narg, const char *def,
size_t *len) {
1999-12-28 14:52:49 +03:00
lua_Object o = lua_getparam(L, narg);
1999-10-05 22:33:43 +04:00
if (o == LUA_NOOBJECT) {
if (len) *len = def ? strlen(def) : 0;
return def;
}
1999-12-28 14:52:49 +03:00
else return checkstr(L, o, narg, len);
}
1999-12-28 14:52:49 +03:00
double luaL_check_number (lua_State *L, int narg) {
lua_Object o = lua_getparam(L, narg);
if (!lua_isnumber(L, o)) type_error(L, narg, "number", o);
return lua_getnumber(L, o);
}
1999-12-28 14:52:49 +03:00
double luaL_opt_number (lua_State *L, int narg, double def) {
lua_Object o = lua_getparam(L, narg);
1999-10-05 22:33:43 +04:00
if (o == LUA_NOOBJECT) return def;
else {
1999-12-28 14:52:49 +03:00
if (!lua_isnumber(L, o)) type_error(L, narg, "number", o);
return lua_getnumber(L, o);
1999-10-05 22:33:43 +04:00
}
}
1997-12-09 16:50:08 +03:00
1999-12-28 14:52:49 +03:00
lua_Object luaL_tablearg (lua_State *L, int narg) {
lua_Object o = lua_getparam(L, narg);
if (!lua_istable(L, o)) type_error(L, narg, "table", o);
1997-12-09 16:50:08 +03:00
return o;
}
1999-12-28 14:52:49 +03:00
lua_Object luaL_functionarg (lua_State *L, int narg) {
lua_Object o = lua_getparam(L, narg);
if (!lua_isfunction(L, o)) type_error(L, narg, "function", o);
1997-12-09 16:50:08 +03:00
return o;
}
1999-12-28 14:52:49 +03:00
lua_Object luaL_nonnullarg (lua_State *L, int narg) {
lua_Object o = lua_getparam(L, narg);
luaL_arg_check(L, o != LUA_NOOBJECT, narg, "value expected");
return o;
}
void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n) {
int i;
for (i=0; i<n; i++)
lua_register(L, l[i].name, l[i].func);
}
void luaL_verror (lua_State *L, const char *fmt, ...) {
char buff[500];
va_list argp;
va_start(argp, fmt);
vsprintf(buff, fmt, argp);
va_end(argp);
lua_error(L, buff);
}
1999-12-27 20:33:22 +03:00
#define EXTRALEN sizeof("string \"...\"0")
1999-08-17 00:52:00 +04:00
void luaL_chunkid (char *out, const char *source, int len) {
if (*source == '(') {
strncpy(out, source+1, len-1); /* remove first char */
out[len-1] = '\0'; /* make sure `out' has an end */
out[strlen(out)-1] = '\0'; /* remove last char */
}
else {
len -= EXTRALEN;
if (*source == '@')
sprintf(out, "file `%.*s'", len, source+1);
else {
const char *b = strchr(source , '\n'); /* stop at first new line */
int lim = (b && (b-source)<len) ? b-source : len;
sprintf(out, "string \"%.*s\"", lim, source);
1999-12-27 20:33:22 +03:00
strcpy(out+lim+(EXTRALEN-sizeof("...\"0")), "...\"");
}
}
}
1999-08-17 00:52:00 +04:00
void luaL_filesource (char *out, const char *filename, int len) {
1999-03-11 21:59:19 +03:00
if (filename == NULL) filename = "(stdin)";
sprintf(out, "@%.*s", len-2, filename); /* -2 for '@' and '\0' */
}