1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2000-08-28 10:57:04 -07:00
|
|
|
** $Id: lauxlib.c,v 1.30 2000/08/09 19:16:57 roberto Exp roberto $
|
1998-06-19 09:14:09 -07:00
|
|
|
** Auxiliary functions for building Lua libraries
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1997-03-17 09:02:29 -08:00
|
|
|
|
1997-03-18 07:30:50 -08:00
|
|
|
#include <stdarg.h>
|
1997-09-16 12:25:59 -07:00
|
|
|
#include <stdio.h>
|
1998-06-18 09:57:03 -07:00
|
|
|
#include <string.h>
|
1997-03-17 09:02:29 -08:00
|
|
|
|
1999-12-27 09:33:22 -08:00
|
|
|
/* This file uses only the official API of Lua.
|
1999-02-25 13:07:26 -08: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 07:09:53 -08:00
|
|
|
*/
|
1999-02-25 13:07:26 -08:00
|
|
|
|
1997-03-17 09:02:29 -08:00
|
|
|
#include "lua.h"
|
2000-06-12 06:52:05 -07:00
|
|
|
|
|
|
|
#include "lauxlib.h"
|
1997-04-06 07:08:08 -07:00
|
|
|
#include "luadebug.h"
|
1997-03-17 09:02:29 -08:00
|
|
|
|
|
|
|
|
1997-04-07 07:48:53 -07:00
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
int luaL_findstring (const char *name, const char *const list[]) {
|
1998-06-18 09:57:03 -07:00
|
|
|
int i;
|
|
|
|
for (i=0; list[i]; i++)
|
|
|
|
if (strcmp(list[i], name) == 0)
|
|
|
|
return i;
|
|
|
|
return -1; /* name not found */
|
|
|
|
}
|
|
|
|
|
1999-12-28 03:52:49 -08:00
|
|
|
void luaL_argerror (lua_State *L, int narg, const char *extramsg) {
|
2000-03-30 09:19:48 -08:00
|
|
|
lua_Debug ar;
|
2000-01-19 04:00:45 -08:00
|
|
|
lua_getstack(L, 0, &ar);
|
|
|
|
lua_getinfo(L, "nu", &ar);
|
|
|
|
narg -= ar.nups;
|
|
|
|
if (ar.name == NULL)
|
|
|
|
ar.name = "?";
|
1999-12-28 03:52:49 -08:00
|
|
|
luaL_verror(L, "bad argument #%d to `%.50s' (%.100s)",
|
2000-01-19 04:00:45 -08:00
|
|
|
narg, ar.name, extramsg);
|
1997-03-17 09:02:29 -08:00
|
|
|
}
|
|
|
|
|
1999-12-28 03:52:49 -08:00
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
static void type_error (lua_State *L, int narg, const char *type_name) {
|
1999-12-28 03:52:49 -08:00
|
|
|
char buff[100];
|
2000-08-28 10:57:04 -07:00
|
|
|
const char *rt = lua_type(L, narg);
|
|
|
|
if (*rt == 'N') rt = "no value";
|
|
|
|
sprintf(buff, "%.10s expected, got %.10s", type_name, rt);
|
1999-12-28 03:52:49 -08:00
|
|
|
luaL_argerror(L, narg, buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 10:57:04 -07:00
|
|
|
/*
|
|
|
|
** 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);
|
1999-10-05 11:33:43 -07:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) {
|
2000-08-28 10:57:04 -07:00
|
|
|
return checkstr(L, narg, len);
|
1997-03-17 09:02:29 -08:00
|
|
|
}
|
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
const char *luaL_opt_lstr (lua_State *L, int narg, const char *def,
|
|
|
|
size_t *len) {
|
2000-08-28 10:57:04 -07:00
|
|
|
if (lua_isnull(L, narg)) {
|
1999-10-05 11:33:43 -07:00
|
|
|
if (len) *len = def ? strlen(def) : 0;
|
|
|
|
return def;
|
|
|
|
}
|
2000-08-28 10:57:04 -07:00
|
|
|
else return checkstr(L, narg, len);
|
1997-03-17 09:02:29 -08:00
|
|
|
}
|
|
|
|
|
1999-12-28 03:52:49 -08:00
|
|
|
double luaL_check_number (lua_State *L, int narg) {
|
2000-08-28 10:57:04 -07:00
|
|
|
if (!lua_isnumber(L, narg)) type_error(L, narg, "number");
|
|
|
|
return lua_tonumber(L, narg);
|
1997-03-17 09:02:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-28 03:52:49 -08:00
|
|
|
double luaL_opt_number (lua_State *L, int narg, double def) {
|
2000-08-28 10:57:04 -07:00
|
|
|
if (lua_isnull(L, narg)) return def;
|
1999-10-05 11:33:43 -07:00
|
|
|
else {
|
2000-08-28 10:57:04 -07:00
|
|
|
if (!lua_isnumber(L, narg)) type_error(L, narg, "number");
|
|
|
|
return lua_tonumber(L, narg);
|
1999-10-05 11:33:43 -07:00
|
|
|
}
|
|
|
|
}
|
1997-12-09 05:50:08 -08:00
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n) {
|
1997-03-18 07:30:50 -08:00
|
|
|
int i;
|
|
|
|
for (i=0; i<n; i++)
|
1999-11-22 05:12:07 -08:00
|
|
|
lua_register(L, l[i].name, l[i].func);
|
1997-03-18 07:30:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaL_verror (lua_State *L, const char *fmt, ...) {
|
1997-09-16 12:25:59 -07:00
|
|
|
char buff[500];
|
1997-03-18 07:30:50 -08:00
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
|
|
|
vsprintf(buff, fmt, argp);
|
|
|
|
va_end(argp);
|
1999-11-22 05:12:07 -08:00
|
|
|
lua_error(L, buff);
|
1997-03-18 07:30:50 -08:00
|
|
|
}
|
1997-09-26 08:02:26 -07:00
|
|
|
|
1999-03-04 13:23:39 -08:00
|
|
|
|
1999-12-27 09:33:22 -08:00
|
|
|
#define EXTRALEN sizeof("string \"...\"0")
|
1999-12-20 05:09:45 -08:00
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
void luaL_chunkid (char *out, const char *source, int len) {
|
1999-12-20 05:09:45 -08:00
|
|
|
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 */
|
|
|
|
}
|
1999-03-04 13:23:39 -08:00
|
|
|
else {
|
1999-12-20 05:09:45 -08:00
|
|
|
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 09:33:22 -08:00
|
|
|
strcpy(out+lim+(EXTRALEN-sizeof("...\"0")), "...\"");
|
1999-12-20 05:09:45 -08:00
|
|
|
}
|
1999-03-04 13:23:39 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-10 06:19:41 -08:00
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
void luaL_filesource (char *out, const char *filename, int len) {
|
1999-03-11 10:59:19 -08:00
|
|
|
if (filename == NULL) filename = "(stdin)";
|
|
|
|
sprintf(out, "@%.*s", len-2, filename); /* -2 for '@' and '\0' */
|
1999-03-10 06:19:41 -08:00
|
|
|
}
|
2000-08-28 10:57:04 -07:00
|
|
|
|