mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
3.1 KiB
169 lines
3.1 KiB
/*
|
|
** fallback.c
|
|
** TecCGraf - PUC-Rio
|
|
*/
|
|
|
|
char *rcs_fallback="$Id: fallback.c,v 1.4 1994/11/10 17:11:52 roberto Exp roberto $";
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "fallback.h"
|
|
#include "opcode.h"
|
|
#include "inout.h"
|
|
#include "lua.h"
|
|
|
|
|
|
static void errorFB (void);
|
|
static void indexFB (void);
|
|
static void gettableFB (void);
|
|
static void arithFB (void);
|
|
static void concatFB (void);
|
|
static void orderFB (void);
|
|
static void GDFB (void);
|
|
|
|
|
|
/*
|
|
** Warning: This list must be in the same order as the #define's
|
|
*/
|
|
struct FB luaI_fallBacks[] = {
|
|
{"error", {LUA_T_CFUNCTION, errorFB}},
|
|
{"index", {LUA_T_CFUNCTION, indexFB}},
|
|
{"gettable", {LUA_T_CFUNCTION, gettableFB}},
|
|
{"arith", {LUA_T_CFUNCTION, arithFB}},
|
|
{"order", {LUA_T_CFUNCTION, orderFB}},
|
|
{"concat", {LUA_T_CFUNCTION, concatFB}},
|
|
{"unminus", {LUA_T_CFUNCTION, arithFB}},
|
|
{"settable", {LUA_T_CFUNCTION, gettableFB}},
|
|
{"gc", {LUA_T_CFUNCTION, GDFB}}
|
|
};
|
|
|
|
#define N_FB (sizeof(luaI_fallBacks)/sizeof(struct FB))
|
|
|
|
void luaI_setfallback (void)
|
|
{
|
|
int i;
|
|
char *name = lua_getstring(lua_getparam(1));
|
|
lua_Object func = lua_getparam(2);
|
|
if (name == NULL || !(lua_isfunction(func) || lua_iscfunction(func)))
|
|
{
|
|
lua_pushnil();
|
|
return;
|
|
}
|
|
for (i=0; i<N_FB; i++)
|
|
{
|
|
if (strcmp(luaI_fallBacks[i].kind, name) == 0)
|
|
{
|
|
luaI_pushobject(&luaI_fallBacks[i].function);
|
|
luaI_fallBacks[i].function = *luaI_Address(func);
|
|
return;
|
|
}
|
|
}
|
|
/* name not found */
|
|
lua_pushnil();
|
|
}
|
|
|
|
|
|
static void errorFB (void)
|
|
{
|
|
lua_Object o = lua_getparam(1);
|
|
if (lua_isstring(o))
|
|
fprintf (stderr, "lua: %s\n", lua_getstring(o));
|
|
else
|
|
fprintf(stderr, "lua: unknown error\n");
|
|
}
|
|
|
|
|
|
static void indexFB (void)
|
|
{
|
|
lua_pushnil();
|
|
}
|
|
|
|
|
|
static void gettableFB (void)
|
|
{
|
|
lua_reportbug("indexed expression not a table");
|
|
}
|
|
|
|
|
|
static void arithFB (void)
|
|
{
|
|
lua_reportbug("unexpected type at conversion to number");
|
|
}
|
|
|
|
static void concatFB (void)
|
|
{
|
|
lua_reportbug("unexpected type at conversion to string");
|
|
}
|
|
|
|
|
|
static void orderFB (void)
|
|
{
|
|
lua_reportbug("unexpected type at comparison");
|
|
}
|
|
|
|
static void GDFB (void) { }
|
|
|
|
|
|
/*
|
|
** Lock routines
|
|
*/
|
|
|
|
static Object *lockArray = NULL;
|
|
static int lockSize = 0;
|
|
|
|
int lua_lock (lua_Object object)
|
|
{
|
|
int i;
|
|
int oldSize;
|
|
if (lua_isnil(object))
|
|
return -1;
|
|
for (i=0; i<lockSize; i++)
|
|
if (tag(&lockArray[i]) == LUA_T_NIL)
|
|
{
|
|
lockArray[i] = *luaI_Address(object);
|
|
return i;
|
|
}
|
|
/* no more empty spaces */
|
|
oldSize = lockSize;
|
|
if (lockArray == NULL)
|
|
{
|
|
lockSize = 10;
|
|
lockArray = (Object *)malloc(lockSize);
|
|
}
|
|
else
|
|
{
|
|
lockSize = 3*oldSize/2 + 5;
|
|
lockArray = (Object *)realloc(lockArray, lockSize);
|
|
}
|
|
if (lockArray == NULL)
|
|
{
|
|
lockSize = 0;
|
|
lua_error("lock - not enough memory");
|
|
}
|
|
for (i=oldSize; i<lockSize; i++)
|
|
tag(&lockArray[i]) = LUA_T_NIL;
|
|
lockArray[oldSize] = *luaI_Address(object);
|
|
return oldSize;
|
|
}
|
|
|
|
|
|
void lua_unlock (int ref)
|
|
{
|
|
tag(&lockArray[ref]) = LUA_T_NIL;
|
|
}
|
|
|
|
|
|
Object *luaI_getlocked (int ref)
|
|
{
|
|
return &lockArray[ref];
|
|
}
|
|
|
|
|
|
void luaI_travlock (void (*fn)(Object *))
|
|
{
|
|
int i;
|
|
for (i=0; i<lockSize; i++)
|
|
fn(&lockArray[i]);
|
|
}
|
|
|
|
|