1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2004-10-06 11:34:16 -07:00
|
|
|
** $Id: lobject.c,v 2.4 2004/07/09 16:01:38 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Some generic functions over Lua objects
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1998-12-27 12:25:20 -08:00
|
|
|
#include <ctype.h>
|
2000-09-11 13:29:27 -07:00
|
|
|
#include <stdarg.h>
|
1997-09-16 12:25:59 -07:00
|
|
|
#include <stdlib.h>
|
2000-09-11 13:29:27 -07:00
|
|
|
#include <string.h>
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2002-12-04 09:38:31 -08:00
|
|
|
#define lobject_c
|
2004-04-30 13:13:38 -07:00
|
|
|
#define LUA_CORE
|
2002-12-04 09:38:31 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
2001-01-24 07:45:33 -08:00
|
|
|
#include "ldo.h"
|
2000-09-11 10:38:42 -07:00
|
|
|
#include "lmem.h"
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lobject.h"
|
2000-09-11 10:38:42 -07:00
|
|
|
#include "lstate.h"
|
2002-05-07 10:36:56 -07:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "lvm.h"
|
2000-06-12 06:52:05 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2000-10-02 13:10:55 -07:00
|
|
|
|
2004-10-06 11:34:16 -07:00
|
|
|
const TValue luaO_nilobject = {{NULL}, LUA_TNIL};
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2003-02-18 08:02:56 -08:00
|
|
|
/*
|
|
|
|
** converts an integer to a "floating point byte", represented as
|
|
|
|
** (mmmmmxxx), where the real value is (xxx) * 2^(mmmmm)
|
|
|
|
*/
|
|
|
|
int luaO_int2fb (unsigned int x) {
|
|
|
|
int m = 0; /* mantissa */
|
|
|
|
while (x >= (1<<3)) {
|
|
|
|
x = (x+1) >> 1;
|
|
|
|
m++;
|
|
|
|
}
|
|
|
|
return (m << 3) | cast(int, x);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-25 12:14:14 -07:00
|
|
|
int luaO_log2 (unsigned int x) {
|
2003-04-28 06:30:14 -07:00
|
|
|
static const lu_byte log_2[256] = {
|
|
|
|
0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
|
2001-10-25 12:14:14 -07:00
|
|
|
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
|
|
|
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
|
|
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
2003-04-28 06:30:14 -07:00
|
|
|
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
|
|
|
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
|
|
|
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
|
|
|
|
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
|
2001-10-25 12:14:14 -07:00
|
|
|
};
|
2003-04-28 06:30:14 -07:00
|
|
|
int l = -1;
|
|
|
|
while (x >= 256) { l += 8; x >>= 8; }
|
|
|
|
return l + log_2[x];
|
|
|
|
|
2001-10-25 12:14:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-10 04:13:36 -08:00
|
|
|
int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
|
2000-04-25 09:55:09 -07:00
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
2002-10-04 07:31:03 -07:00
|
|
|
else switch (ttype(t1)) {
|
2001-01-26 06:16:35 -08:00
|
|
|
case LUA_TNIL:
|
|
|
|
return 1;
|
2003-01-27 05:00:43 -08:00
|
|
|
case LUA_TNUMBER:
|
|
|
|
return nvalue(t1) == nvalue(t2);
|
2001-12-11 14:48:44 -08:00
|
|
|
case LUA_TBOOLEAN:
|
2002-05-06 08:51:41 -07:00
|
|
|
return bvalue(t1) == bvalue(t2); /* boolean true must be 1 !! */
|
2002-07-17 09:25:13 -07:00
|
|
|
case LUA_TLIGHTUSERDATA:
|
2002-04-05 10:54:31 -08:00
|
|
|
return pvalue(t1) == pvalue(t2);
|
2003-01-27 05:00:43 -08:00
|
|
|
default:
|
|
|
|
lua_assert(iscollectable(t1));
|
|
|
|
return gcvalue(t1) == gcvalue(t2);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
int luaO_str2d (const char *s, lua_Number *result) {
|
|
|
|
char *endptr;
|
2000-12-04 10:33:40 -08:00
|
|
|
lua_Number res = lua_str2number(s, &endptr);
|
2000-10-03 07:03:21 -07:00
|
|
|
if (endptr == s) return 0; /* no conversion */
|
2001-11-28 12:13:13 -08:00
|
|
|
while (isspace((unsigned char)(*endptr))) endptr++;
|
|
|
|
if (*endptr != '\0') return 0; /* invalid trailing characters? */
|
2000-10-03 07:03:21 -07:00
|
|
|
*result = res;
|
1999-09-06 06:55:09 -07:00
|
|
|
return 1;
|
1998-12-27 12:25:20 -08:00
|
|
|
}
|
|
|
|
|
2000-09-11 13:29:27 -07:00
|
|
|
|
2000-10-20 09:36:32 -07:00
|
|
|
|
2002-05-07 10:36:56 -07:00
|
|
|
static void pushstr (lua_State *L, const char *str) {
|
2003-12-10 04:13:36 -08:00
|
|
|
setsvalue2s(L, L->top, luaS_new(L, str));
|
2002-05-07 10:36:56 -07:00
|
|
|
incr_top(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-09 09:01:38 -07:00
|
|
|
/* this function handles only `%d', `%c', %f, %p, and `%s' formats */
|
2002-05-16 11:39:46 -07:00
|
|
|
const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
|
2002-05-15 11:57:44 -07:00
|
|
|
int n = 1;
|
|
|
|
pushstr(L, "");
|
2002-05-07 10:36:56 -07:00
|
|
|
for (;;) {
|
|
|
|
const char *e = strchr(fmt, '%');
|
|
|
|
if (e == NULL) break;
|
2003-12-10 04:13:36 -08:00
|
|
|
setsvalue2s(L, L->top, luaS_newlstr(L, fmt, e-fmt));
|
2002-05-07 10:36:56 -07:00
|
|
|
incr_top(L);
|
|
|
|
switch (*(e+1)) {
|
2004-07-09 09:01:38 -07:00
|
|
|
case 's': {
|
2002-05-07 10:36:56 -07:00
|
|
|
pushstr(L, va_arg(argp, char *));
|
|
|
|
break;
|
2004-07-09 09:01:38 -07:00
|
|
|
}
|
2002-05-07 10:36:56 -07:00
|
|
|
case 'c': {
|
|
|
|
char buff[2];
|
2002-08-07 07:35:55 -07:00
|
|
|
buff[0] = cast(char, va_arg(argp, int));
|
2002-05-07 10:36:56 -07:00
|
|
|
buff[1] = '\0';
|
|
|
|
pushstr(L, buff);
|
|
|
|
break;
|
|
|
|
}
|
2004-07-09 09:01:38 -07:00
|
|
|
case 'd': {
|
2003-04-03 05:35:34 -08:00
|
|
|
setnvalue(L->top, cast(lua_Number, va_arg(argp, int)));
|
2002-05-07 10:36:56 -07:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
2004-07-09 09:01:38 -07:00
|
|
|
}
|
|
|
|
case 'f': {
|
2003-04-03 05:35:34 -08:00
|
|
|
setnvalue(L->top, cast(lua_Number, va_arg(argp, l_uacNumber)));
|
2002-05-07 10:36:56 -07:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
2004-07-09 09:01:38 -07:00
|
|
|
}
|
|
|
|
case 'p': {
|
|
|
|
char buff[4*sizeof(void *) + 8]; /* should be enough space for a `%p' */
|
|
|
|
sprintf(buff, "%p", va_arg(argp, void *));
|
|
|
|
pushstr(L, buff);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '%': {
|
2002-05-07 10:36:56 -07:00
|
|
|
pushstr(L, "%");
|
|
|
|
break;
|
2004-07-09 09:01:38 -07:00
|
|
|
}
|
2003-06-10 05:36:26 -07:00
|
|
|
default: {
|
|
|
|
char buff[3];
|
|
|
|
buff[0] = '%';
|
|
|
|
buff[1] = *(e+1);
|
|
|
|
buff[2] = '\0';
|
|
|
|
pushstr(L, buff);
|
|
|
|
break;
|
|
|
|
}
|
2002-05-07 10:36:56 -07:00
|
|
|
}
|
|
|
|
n += 2;
|
|
|
|
fmt = e+2;
|
|
|
|
}
|
|
|
|
pushstr(L, fmt);
|
2002-11-21 07:16:04 -08:00
|
|
|
luaV_concat(L, n+1, L->top - L->base - 1);
|
2002-05-07 10:36:56 -07:00
|
|
|
L->top -= n;
|
|
|
|
return svalue(L->top - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-16 11:39:46 -07:00
|
|
|
const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
|
2002-05-07 10:36:56 -07:00
|
|
|
const char *msg;
|
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
2002-05-16 11:39:46 -07:00
|
|
|
msg = luaO_pushvfstring(L, fmt, argp);
|
2002-05-07 10:36:56 -07:00
|
|
|
va_end(argp);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 12:13:13 -08:00
|
|
|
void luaO_chunkid (char *out, const char *source, int bufflen) {
|
|
|
|
if (*source == '=') {
|
2000-10-20 09:36:32 -07:00
|
|
|
strncpy(out, source+1, bufflen); /* remove first char */
|
2001-11-28 12:13:13 -08:00
|
|
|
out[bufflen-1] = '\0'; /* ensures null termination */
|
2000-10-20 09:36:32 -07:00
|
|
|
}
|
2002-05-15 11:57:44 -07:00
|
|
|
else { /* out = "source", or "...source" */
|
2001-11-28 12:13:13 -08:00
|
|
|
if (*source == '@') {
|
2000-10-09 06:47:32 -07:00
|
|
|
int l;
|
|
|
|
source++; /* skip the `@' */
|
2002-05-15 11:57:44 -07:00
|
|
|
bufflen -= sizeof(" `...' ");
|
2000-10-09 06:47:32 -07:00
|
|
|
l = strlen(source);
|
2002-05-15 11:57:44 -07:00
|
|
|
strcpy(out, "");
|
2000-10-09 06:47:32 -07:00
|
|
|
if (l>bufflen) {
|
|
|
|
source += (l-bufflen); /* get last part of file name */
|
2002-05-07 10:36:56 -07:00
|
|
|
strcat(out, "...");
|
2000-10-09 06:47:32 -07:00
|
|
|
}
|
2002-05-07 10:36:56 -07:00
|
|
|
strcat(out, source);
|
2000-10-09 06:47:32 -07:00
|
|
|
}
|
2002-05-15 11:57:44 -07:00
|
|
|
else { /* out = [string "string"] */
|
2004-05-03 05:30:41 -07:00
|
|
|
int len = strcspn(source, "\n\r"); /* stop at first newline */
|
2002-05-15 11:57:44 -07:00
|
|
|
bufflen -= sizeof(" [string \"...\"] ");
|
2000-10-09 06:47:32 -07:00
|
|
|
if (len > bufflen) len = bufflen;
|
2002-05-15 11:57:44 -07:00
|
|
|
strcpy(out, "[string \"");
|
2001-11-28 12:13:13 -08:00
|
|
|
if (source[len] != '\0') { /* must truncate? */
|
2002-05-07 10:36:56 -07:00
|
|
|
strncat(out, source, len);
|
|
|
|
strcat(out, "...");
|
2000-10-20 09:36:32 -07:00
|
|
|
}
|
2000-10-09 06:47:32 -07:00
|
|
|
else
|
2002-05-07 10:36:56 -07:00
|
|
|
strcat(out, source);
|
2002-05-15 11:57:44 -07:00
|
|
|
strcat(out, "\"]");
|
2000-09-11 13:29:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|