1997-09-16 23:25:59 +04:00
|
|
|
/*
|
1999-12-30 21:28:40 +03:00
|
|
|
** $Id: lobject.c,v 1.28 1999/12/23 18:19:57 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Some generic functions over Lua objects
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1998-12-27 23:25:20 +03:00
|
|
|
#include <ctype.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
#define LUA_REENTRANT
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lobject.h"
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
const char *const luaO_typenames[] = { /* ORDER LUA_T */
|
1999-12-23 21:19:57 +03:00
|
|
|
"userdata", "number", "string", "table", "function", "function", "nil",
|
|
|
|
"function", "function", "function", "function", "function", "function",
|
1999-12-30 21:28:40 +03:00
|
|
|
"line", "global", "local", "field", NULL
|
1997-09-16 23:25:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
const TObject luaO_nilobject = {LUA_T_NIL, {NULL}};
|
1997-11-03 23:45:23 +03:00
|
|
|
|
|
|
|
|
1999-11-26 21:59:20 +03:00
|
|
|
/*
|
1999-12-14 21:33:29 +03:00
|
|
|
** returns smaller power of 2 larger than `n' (minimum is MINPOWER2)
|
1999-11-26 21:59:20 +03:00
|
|
|
*/
|
|
|
|
unsigned long luaO_power2 (unsigned long n) {
|
|
|
|
unsigned long p = MINPOWER2;
|
|
|
|
while (p<=n) p<<=1;
|
|
|
|
return p;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
int luaO_equalval (const TObject *t1, const TObject *t2) {
|
1997-09-16 23:25:59 +04:00
|
|
|
switch (ttype(t1)) {
|
1999-12-23 21:19:57 +03:00
|
|
|
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_LPROTO:
|
|
|
|
return tfvalue(t1) == tfvalue(t2);
|
|
|
|
case LUA_T_CPROTO:
|
|
|
|
return fvalue(t1) == fvalue(t2);
|
|
|
|
case LUA_T_CCLOSURE: case LUA_T_LCLOSURE:
|
|
|
|
return t1->value.cl == t2->value.cl;
|
1997-09-16 23:25:59 +04:00
|
|
|
default:
|
1999-11-22 16:12:07 +03:00
|
|
|
LUA_INTERNALERROR(L, "invalid type");
|
1998-06-19 20:14:09 +04:00
|
|
|
return 0; /* UNREACHABLE */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-12-26 21:38:16 +03:00
|
|
|
#ifdef OLD_ANSI
|
1998-12-27 23:25:20 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
1998-12-27 23:25:20 +03:00
|
|
|
void luaO_memdown (void *dest, void *src, int size) {
|
1997-12-26 21:38:16 +03:00
|
|
|
int i;
|
1998-12-27 23:25:20 +03:00
|
|
|
for (i=0; i<size; i++)
|
|
|
|
((char *)dest)[i]=((char *)src)[i];
|
1997-12-26 21:38:16 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-12-27 23:25:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-06 17:55:09 +04:00
|
|
|
int luaO_str2d (const char *s, real *result) { /* LUA_NUMBER */
|
1998-12-27 23:25:20 +03:00
|
|
|
double a = 0.0;
|
1999-09-06 17:55:09 +04:00
|
|
|
int point = 0; /* number of decimal digits */
|
1999-09-09 00:45:18 +04:00
|
|
|
int sig;
|
1999-09-06 17:55:09 +04:00
|
|
|
while (isspace((unsigned char)*s)) s++;
|
1999-09-09 00:45:18 +04:00
|
|
|
sig = 1;
|
|
|
|
switch (*s) {
|
|
|
|
case '-': sig = -1; /* go through */
|
|
|
|
case '+': s++;
|
1999-09-06 17:55:09 +04:00
|
|
|
}
|
1999-09-09 00:45:18 +04:00
|
|
|
if (! (isdigit((unsigned char)*s) ||
|
|
|
|
(*s == '.' && isdigit((unsigned char)*(s+1)))))
|
|
|
|
return 0; /* not (at least one digit before or after the point) */
|
|
|
|
while (isdigit((unsigned char)*s))
|
1998-12-27 23:25:20 +03:00
|
|
|
a = 10.0*a + (*(s++)-'0');
|
1999-04-13 23:28:49 +04:00
|
|
|
if (*s == '.') {
|
|
|
|
s++;
|
|
|
|
while (isdigit((unsigned char)*s)) {
|
|
|
|
a = 10.0*a + (*(s++)-'0');
|
|
|
|
point++;
|
|
|
|
}
|
1998-12-27 23:25:20 +03:00
|
|
|
}
|
1999-09-06 17:55:09 +04:00
|
|
|
a *= sig;
|
1998-12-27 23:25:20 +03:00
|
|
|
if (toupper((unsigned char)*s) == 'E') {
|
|
|
|
int e = 0;
|
|
|
|
s++;
|
1999-09-09 00:45:18 +04:00
|
|
|
sig = 1;
|
|
|
|
switch (*s) {
|
|
|
|
case '-': sig = -1; /* go through */
|
|
|
|
case '+': s++;
|
1998-12-27 23:25:20 +03:00
|
|
|
}
|
1999-09-06 17:55:09 +04:00
|
|
|
if (!isdigit((unsigned char)*s)) return 0; /* no digit in the exponent? */
|
1998-12-27 23:25:20 +03:00
|
|
|
do {
|
|
|
|
e = 10*e + (*(s++)-'0');
|
|
|
|
} while (isdigit((unsigned char)*s));
|
|
|
|
point -= sig*e;
|
|
|
|
}
|
|
|
|
while (isspace((unsigned char)*s)) s++;
|
1999-09-06 17:55:09 +04:00
|
|
|
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);
|
|
|
|
}
|
1999-09-06 17:55:09 +04:00
|
|
|
*result = a;
|
|
|
|
return 1;
|
1998-12-27 23:25:20 +03:00
|
|
|
}
|
|
|
|
|