1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2000-06-09 02:27:13 +08:00
|
|
|
** $Id: lobject.c,v 1.39 2000/05/24 13:54:49 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Some generic functions over Lua objects
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1998-12-28 04:25:20 +08:00
|
|
|
#include <ctype.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
#define LUA_REENTRANT
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lobject.h"
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
|
1999-08-17 04:52:00 +08:00
|
|
|
const char *const luaO_typenames[] = { /* ORDER LUA_T */
|
1999-12-24 02:19:57 +08:00
|
|
|
"userdata", "number", "string", "table", "function", "function", "nil",
|
2000-03-30 04:19:20 +08:00
|
|
|
"function", "function", "line"
|
1997-09-17 03:25:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-03-11 02:37:44 +08:00
|
|
|
const TObject luaO_nilobject = {TAG_NIL, {NULL}};
|
1997-11-04 04:45:23 +08:00
|
|
|
|
|
|
|
|
1999-11-27 02:59:20 +08:00
|
|
|
/*
|
1999-12-15 02:33:29 +08:00
|
|
|
** returns smaller power of 2 larger than `n' (minimum is MINPOWER2)
|
1999-11-27 02:59:20 +08:00
|
|
|
*/
|
2000-05-24 21:54:49 +08:00
|
|
|
lint32 luaO_power2 (lint32 n) {
|
|
|
|
lint32 p = MINPOWER2;
|
1999-11-27 02:59:20 +08:00
|
|
|
while (p<=n) p<<=1;
|
|
|
|
return p;
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-26 00:55:09 +08:00
|
|
|
int luaO_equalObj (const TObject *t1, const TObject *t2) {
|
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
1997-09-17 03:25:59 +08:00
|
|
|
switch (ttype(t1)) {
|
2000-03-11 02:37:44 +08:00
|
|
|
case TAG_NUMBER:
|
1999-12-24 02:19:57 +08:00
|
|
|
return nvalue(t1) == nvalue(t2);
|
2000-03-11 02:37:44 +08:00
|
|
|
case TAG_STRING: case TAG_USERDATA:
|
2000-04-26 21:43:10 +08:00
|
|
|
return tsvalue(t1) == tsvalue(t2);
|
2000-03-28 04:10:21 +08:00
|
|
|
case TAG_TABLE:
|
2000-06-09 02:27:13 +08:00
|
|
|
return hvalue(t1) == hvalue(t2);
|
2000-03-11 02:37:44 +08:00
|
|
|
case TAG_CCLOSURE: case TAG_LCLOSURE:
|
2000-03-30 04:19:20 +08:00
|
|
|
return clvalue(t1) == clvalue(t2);
|
1997-09-17 03:25:59 +08:00
|
|
|
default:
|
2000-04-01 00:28:45 +08:00
|
|
|
LUA_ASSERT(L, ttype(t1) == TAG_NIL, "invalid type");
|
|
|
|
return 1; /* TAG_NIL */
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-28 04:25:20 +08: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-11 02:37:44 +08:00
|
|
|
int luaO_str2d (const char *s, Number *result) { /* LUA_NUMBER */
|
1998-12-28 04:25:20 +08:00
|
|
|
double a = 0.0;
|
1999-09-06 21:55:09 +08:00
|
|
|
int point = 0; /* number of decimal digits */
|
1999-09-09 04:45:18 +08:00
|
|
|
int sig;
|
1999-09-06 21:55:09 +08:00
|
|
|
while (isspace((unsigned char)*s)) s++;
|
2000-01-26 02:44:21 +08:00
|
|
|
sig = 0;
|
1999-09-09 04:45:18 +08:00
|
|
|
switch (*s) {
|
2000-01-26 02:44:21 +08:00
|
|
|
case '-': sig = 1; /* go through */
|
1999-09-09 04:45:18 +08:00
|
|
|
case '+': s++;
|
1999-09-06 21:55:09 +08:00
|
|
|
}
|
1999-09-09 04:45:18 +08: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-28 04:25:20 +08:00
|
|
|
a = 10.0*a + (*(s++)-'0');
|
1999-04-14 03:28:49 +08:00
|
|
|
if (*s == '.') {
|
|
|
|
s++;
|
|
|
|
while (isdigit((unsigned char)*s)) {
|
|
|
|
a = 10.0*a + (*(s++)-'0');
|
|
|
|
point++;
|
|
|
|
}
|
1998-12-28 04:25:20 +08:00
|
|
|
}
|
2000-01-26 02:44:21 +08:00
|
|
|
if (sig) a = -a;
|
|
|
|
if (*s == 'e' || *s == 'E') {
|
1998-12-28 04:25:20 +08:00
|
|
|
int e = 0;
|
|
|
|
s++;
|
2000-01-26 02:44:21 +08:00
|
|
|
sig = 0;
|
1999-09-09 04:45:18 +08:00
|
|
|
switch (*s) {
|
2000-01-26 02:44:21 +08:00
|
|
|
case '-': sig = 1; /* go through */
|
1999-09-09 04:45:18 +08:00
|
|
|
case '+': s++;
|
1998-12-28 04:25:20 +08:00
|
|
|
}
|
1999-09-06 21:55:09 +08:00
|
|
|
if (!isdigit((unsigned char)*s)) return 0; /* no digit in the exponent? */
|
1998-12-28 04:25:20 +08:00
|
|
|
do {
|
|
|
|
e = 10*e + (*(s++)-'0');
|
|
|
|
} while (isdigit((unsigned char)*s));
|
2000-01-26 02:44:21 +08:00
|
|
|
if (sig) e = -e;
|
|
|
|
point -= e;
|
1998-12-28 04:25:20 +08:00
|
|
|
}
|
|
|
|
while (isspace((unsigned char)*s)) s++;
|
1999-09-06 21:55:09 +08:00
|
|
|
if (*s != '\0') return 0; /* invalid trailing characters? */
|
1999-09-07 04:19:22 +08:00
|
|
|
if (point != 0) {
|
|
|
|
if (point > 0) a /= expten(point);
|
|
|
|
else a *= expten(-point);
|
|
|
|
}
|
1999-09-06 21:55:09 +08:00
|
|
|
*result = a;
|
|
|
|
return 1;
|
1998-12-28 04:25:20 +08:00
|
|
|
}
|
|
|
|
|