lua/lobject.c

141 lines
3.2 KiB
C
Raw Normal View History

/*
1999-09-07 00:19:22 +04:00
** $Id: lobject.c,v 1.21 1999/09/06 13:55:09 roberto Exp roberto $
** Some generic functions over Lua objects
** See Copyright Notice in lua.h
*/
#include <ctype.h>
#include <stdlib.h>
#include "lobject.h"
#include "lua.h"
1999-08-17 00:52:00 +04:00
const char *const luaO_typenames[] = { /* ORDER LUA_T */
"userdata", "number", "string", "table", "function", "function",
"nil", "function", "mark", "mark", "mark", "line", NULL
};
1999-08-17 00:52:00 +04:00
const TObject luaO_nilobject = {LUA_T_NIL, {NULL}};
1997-11-03 23:45:23 +03:00
/* hash dimensions values */
1999-08-17 00:52:00 +04:00
static const long dimensions[] =
{5L, 11L, 23L, 47L, 97L, 197L, 397L, 797L, 1597L, 3203L, 6421L,
12853L, 25717L, 51437L, 102811L, 205619L, 411233L, 822433L,
1644817L, 3289613L, 6579211L, 13158023L, MAX_INT};
1999-08-17 00:52:00 +04:00
int luaO_redimension (int oldsize) {
int i;
for (i=0; dimensions[i]<MAX_INT; i++) {
if (dimensions[i] > oldsize)
return dimensions[i];
}
1999-02-26 18:48:30 +03:00
lua_error("tableEM");
return 0; /* to avoid warnings */
}
1999-08-17 00:52:00 +04:00
int luaO_equalval (const TObject *t1, const TObject *t2) {
switch (ttype(t1)) {
case LUA_T_NIL: return 1;
case LUA_T_NUMBER: return nvalue(t1) == nvalue(t2);
case LUA_T_STRING: case LUA_T_USERDATA: return svalue(t1) == svalue(t2);
case LUA_T_ARRAY: return avalue(t1) == avalue(t2);
case LUA_T_PROTO: return tfvalue(t1) == tfvalue(t2);
case LUA_T_CPROTO: return fvalue(t1) == fvalue(t2);
1998-01-09 17:44:55 +03:00
case LUA_T_CLOSURE: return t1->value.cl == t2->value.cl;
default:
1998-03-10 00:49:52 +03:00
LUA_INTERNALERROR("invalid type");
1998-06-19 20:14:09 +04:00
return 0; /* UNREACHABLE */
}
}
1999-08-17 00:52:00 +04:00
void luaO_insertlist (GCnode *root, GCnode *node) {
1997-09-26 20:46:20 +04:00
node->next = root->next;
root->next = node;
node->marked = 0;
}
1997-12-26 21:38:16 +03:00
#ifdef OLD_ANSI
void luaO_memup (void *dest, void *src, int size) {
while (size--)
((char *)dest)[size]=((char *)src)[size];
1997-12-26 21:38:16 +03:00
}
void luaO_memdown (void *dest, void *src, int size) {
1997-12-26 21:38:16 +03:00
int i;
for (i=0; i<size; i++)
((char *)dest)[i]=((char *)src)[i];
1997-12-26 21:38:16 +03:00
}
#endif
static double expten (unsigned int e) {
double exp = 10.0;
double res = 1.0;
for (; e; e>>=1) {
if (e & 1) res *= exp;
exp *= exp;
}
return res;
}
int luaO_str2d (const char *s, real *result) { /* LUA_NUMBER */
double a = 0.0;
int point = 0; /* number of decimal digits */
int sig = 1;
int valid = 0; /* check whether number has at least one valid digit */
while (isspace((unsigned char)*s)) s++;
if (*s == '-') {
s++;
sig = -1;
}
else if (*s == '+') s++;
while (isdigit((unsigned char)*s)) {
a = 10.0*a + (*(s++)-'0');
valid = 1;
}
1999-04-13 23:28:49 +04:00
if (*s == '.') {
s++;
while (isdigit((unsigned char)*s)) {
a = 10.0*a + (*(s++)-'0');
point++;
valid = 1;
1999-04-13 23:28:49 +04:00
}
}
if (!valid) return 0;
a *= sig;
if (toupper((unsigned char)*s) == 'E') {
int e = 0;
sig = 1;
s++;
1999-04-13 23:28:49 +04:00
if (*s == '-') {
s++;
sig = -1;
}
1999-04-13 23:28:49 +04:00
else if (*s == '+') s++;
if (!isdigit((unsigned char)*s)) return 0; /* no digit in the exponent? */
do {
e = 10*e + (*(s++)-'0');
} while (isdigit((unsigned char)*s));
point -= sig*e;
}
while (isspace((unsigned char)*s)) s++;
if (*s != '\0') return 0; /* invalid trailing characters? */
1999-09-07 00:19:22 +04:00
if (point != 0) {
if (point > 0) a /= expten(point);
else a *= expten(-point);
}
*result = a;
return 1;
}