lua/lobject.c

115 lines
2.6 KiB
C
Raw Normal View History

/*
2000-08-11 20:17:28 +04:00
** $Id: lobject.c,v 1.44 2000/08/09 19:16:57 roberto Exp roberto $
** Some generic functions over Lua objects
** See Copyright Notice in lua.h
*/
#include <ctype.h>
#include <stdlib.h>
#include "lua.h"
#include "lobject.h"
2000-08-11 20:17:28 +04:00
/*
** you can use the fact that the 3rd letter or each name is always different
** (e-m-r-b-n-l) to compare and switch these strings
*/
1999-08-17 00:52:00 +04:00
const char *const luaO_typenames[] = { /* ORDER LUA_T */
"userdata", "number", "string", "table", "function", "function", "nil",
2000-06-26 23:28:31 +04:00
"function", "function"
};
2000-03-10 21:37:44 +03:00
const TObject luaO_nilobject = {TAG_NIL, {NULL}};
1997-11-03 23:45:23 +03:00
/*
1999-12-14 21:33:29 +03:00
** returns smaller power of 2 larger than `n' (minimum is MINPOWER2)
*/
2000-05-24 17:54:49 +04:00
lint32 luaO_power2 (lint32 n) {
lint32 p = MINPOWER2;
while (p<=n) p<<=1;
return p;
}
2000-04-25 20:55:09 +04:00
int luaO_equalObj (const TObject *t1, const TObject *t2) {
if (ttype(t1) != ttype(t2)) return 0;
switch (ttype(t1)) {
2000-03-10 21:37:44 +03:00
case TAG_NUMBER:
return nvalue(t1) == nvalue(t2);
2000-03-10 21:37:44 +03:00
case TAG_STRING: case TAG_USERDATA:
2000-04-26 17:43:10 +04:00
return tsvalue(t1) == tsvalue(t2);
2000-03-28 00:10:21 +04:00
case TAG_TABLE:
return hvalue(t1) == hvalue(t2);
2000-03-10 21:37:44 +03:00
case TAG_CCLOSURE: case TAG_LCLOSURE:
return clvalue(t1) == clvalue(t2);
default:
2000-06-30 18:35:17 +04:00
LUA_ASSERT(ttype(t1) == TAG_NIL, "invalid type");
2000-03-31 20:28:45 +04:00
return 1; /* TAG_NIL */
}
}
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-10 21:37:44 +03:00
int luaO_str2d (const char *s, Number *result) { /* LUA_NUMBER */
double a = 0.0;
int point = 0; /* number of decimal digits */
int sig;
while (isspace((unsigned char)*s)) s++;
2000-01-25 21:44:21 +03:00
sig = 0;
switch (*s) {
2000-01-25 21:44:21 +03:00
case '-': sig = 1; /* go through */
case '+': s++;
}
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))
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++;
}
}
2000-01-25 21:44:21 +03:00
if (sig) a = -a;
if (*s == 'e' || *s == 'E') {
int e = 0;
s++;
2000-01-25 21:44:21 +03:00
sig = 0;
switch (*s) {
2000-01-25 21:44:21 +03:00
case '-': sig = 1; /* go through */
case '+': s++;
}
if (!isdigit((unsigned char)*s)) return 0; /* no digit in the exponent? */
do {
e = 10*e + (*(s++)-'0');
} while (isdigit((unsigned char)*s));
2000-01-25 21:44:21 +03:00
if (sig) e = -e;
point -= 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;
}