lua/lauxlib.c

122 lines
3.2 KiB
C
Raw Normal View History

/*
** $Id: lauxlib.c,v 1.18 1999/08/16 20:52:00 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>
1998-06-19 20:14:09 +04:00
/* Please Notice: 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 "lauxlib.h"
#include "lua.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-08-17 00:52:00 +04:00
void luaL_argerror (int numarg, const char *extramsg) {
lua_Function f = lua_stackedfunction(0);
1999-08-17 00:52:00 +04:00
const char *funcname;
lua_getobjname(f, &funcname);
numarg -= lua_nups(f);
1998-01-09 18:09:53 +03:00
if (funcname == NULL)
funcname = "?";
luaL_verror("bad argument #%d to function `%.50s' (%.100s)",
numarg, funcname, extramsg);
}
1999-08-17 00:52:00 +04:00
const char *luaL_check_lstr (int numArg, long *len) {
lua_Object o = lua_getparam(numArg);
luaL_arg_check(lua_isstring(o), numArg, "string expected");
if (len) *len = lua_strlen(o);
return lua_getstring(o);
}
1999-08-17 00:52:00 +04:00
const char *luaL_opt_lstr (int numArg, const char *def, long *len) {
return (lua_getparam(numArg) == LUA_NOOBJECT) ? def :
1998-03-06 19:54:42 +03:00
luaL_check_lstr(numArg, len);
}
1999-08-17 00:52:00 +04:00
double luaL_check_number (int numArg) {
lua_Object o = lua_getparam(numArg);
luaL_arg_check(lua_isnumber(o), numArg, "number expected");
return lua_getnumber(o);
}
1999-08-17 00:52:00 +04:00
double luaL_opt_number (int numArg, double def) {
return (lua_getparam(numArg) == LUA_NOOBJECT) ? def :
luaL_check_number(numArg);
1997-12-09 16:50:08 +03:00
}
1999-08-17 00:52:00 +04:00
lua_Object luaL_tablearg (int arg) {
1997-12-09 16:50:08 +03:00
lua_Object o = lua_getparam(arg);
luaL_arg_check(lua_istable(o), arg, "table expected");
return o;
}
1999-08-17 00:52:00 +04:00
lua_Object luaL_functionarg (int arg) {
1997-12-09 16:50:08 +03:00
lua_Object o = lua_getparam(arg);
luaL_arg_check(lua_isfunction(o), arg, "function expected");
return o;
}
1999-08-17 00:52:00 +04:00
lua_Object luaL_nonnullarg (int numArg) {
lua_Object o = lua_getparam(numArg);
luaL_arg_check(o != LUA_NOOBJECT, numArg, "value expected");
return o;
}
1999-08-17 00:52:00 +04:00
void luaL_openlib (const struct luaL_reg *l, int n) {
int i;
lua_open(); /* make sure lua is already open */
for (i=0; i<n; i++)
lua_register(l[i].name, l[i].func);
}
1999-08-17 00:52:00 +04:00
void luaL_verror (const char *fmt, ...) {
char buff[500];
va_list argp;
va_start(argp, fmt);
vsprintf(buff, fmt, argp);
va_end(argp);
lua_error(buff);
}
1999-08-17 00:52:00 +04:00
void luaL_chunkid (char *out, const char *source, int len) {
len -= 13; /* 13 = strlen("string ''...\0") */
if (*source == '@')
sprintf(out, "file `%.*s'", len, source+1);
else if (*source == '(')
strcpy(out, "(C code)");
else {
1999-08-17 00:52:00 +04:00
const char *b = strchr(source , '\n'); /* stop string at first new line */
int lim = (b && (b-source)<len) ? b-source : len;
sprintf(out, "string `%.*s'", lim, source);
strcpy(out+lim+(13-5), "...'"); /* 5 = strlen("...'\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' */
}