1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2007-04-10 20:18:17 +08:00
|
|
|
** $Id: lobject.c,v 2.24 2006/11/22 11:02:03 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>
|
2000-09-12 04:29:27 +08:00
|
|
|
#include <stdarg.h>
|
2005-03-09 02:09:16 +08:00
|
|
|
#include <stdio.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
#include <stdlib.h>
|
2000-09-12 04:29:27 +08:00
|
|
|
#include <string.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2002-12-05 01:38:31 +08:00
|
|
|
#define lobject_c
|
2004-05-01 04:13:38 +08:00
|
|
|
#define LUA_CORE
|
2002-12-05 01:38:31 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2001-01-24 23:45:33 +08:00
|
|
|
#include "ldo.h"
|
2000-09-12 01:38:42 +08:00
|
|
|
#include "lmem.h"
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lobject.h"
|
2000-09-12 01:38:42 +08:00
|
|
|
#include "lstate.h"
|
2002-05-08 01:36:56 +08:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "lvm.h"
|
2000-06-12 21:52:05 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2000-10-03 04:10:55 +08:00
|
|
|
|
2006-01-10 20:50:00 +08:00
|
|
|
const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL};
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2003-02-19 00:02:56 +08:00
|
|
|
/*
|
|
|
|
** converts an integer to a "floating point byte", represented as
|
2005-03-28 20:53:40 +08:00
|
|
|
** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if
|
|
|
|
** eeeee != 0 and (xxx) otherwise.
|
2003-02-19 00:02:56 +08:00
|
|
|
*/
|
|
|
|
int luaO_int2fb (unsigned int x) {
|
2006-11-22 19:02:03 +08:00
|
|
|
int e = 0; /* exponent */
|
2006-07-11 23:53:29 +08:00
|
|
|
if (x < 8) return x;
|
|
|
|
while (x >= 0x10) {
|
2003-02-19 00:02:56 +08:00
|
|
|
x = (x+1) >> 1;
|
2004-11-01 23:06:50 +08:00
|
|
|
e++;
|
2003-02-19 00:02:56 +08:00
|
|
|
}
|
2006-07-11 23:53:29 +08:00
|
|
|
return ((e+1) << 3) | (cast_int(x) - 8);
|
2004-11-01 23:06:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* converts back */
|
|
|
|
int luaO_fb2int (int x) {
|
2006-07-11 23:53:29 +08:00
|
|
|
int e = (x >> 3) & 0x1f;
|
2004-11-01 23:06:50 +08:00
|
|
|
if (e == 0) return x;
|
2006-07-11 23:53:29 +08:00
|
|
|
else return ((x & 7) + 8) << (e - 1);
|
2003-02-19 00:02:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-10 20:13:36 +08:00
|
|
|
int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
|
2000-04-26 00:55:09 +08:00
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
2002-10-04 22:31:03 +08:00
|
|
|
else switch (ttype(t1)) {
|
2001-01-26 22:16:35 +08:00
|
|
|
case LUA_TNIL:
|
|
|
|
return 1;
|
2003-01-27 21:00:43 +08:00
|
|
|
case LUA_TNUMBER:
|
2005-10-25 01:37:52 +08:00
|
|
|
return luai_numeq(nvalue(t1), nvalue(t2));
|
2001-12-12 06:48:44 +08:00
|
|
|
case LUA_TBOOLEAN:
|
2002-05-06 23:51:41 +08:00
|
|
|
return bvalue(t1) == bvalue(t2); /* boolean true must be 1 !! */
|
2002-07-18 00:25:13 +08:00
|
|
|
case LUA_TLIGHTUSERDATA:
|
2002-04-06 02:54:31 +08:00
|
|
|
return pvalue(t1) == pvalue(t2);
|
2003-01-27 21:00:43 +08:00
|
|
|
default:
|
|
|
|
lua_assert(iscollectable(t1));
|
|
|
|
return gcvalue(t1) == gcvalue(t2);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-29 04:13:13 +08:00
|
|
|
int luaO_str2d (const char *s, lua_Number *result) {
|
|
|
|
char *endptr;
|
2005-08-01 01:12:32 +08:00
|
|
|
*result = lua_str2number(s, &endptr);
|
|
|
|
if (endptr == s) return 0; /* conversion failed */
|
2006-02-11 01:43:52 +08:00
|
|
|
if (*endptr == 'x' || *endptr == 'X') /* maybe an hexadecimal constant? */
|
|
|
|
*result = cast_num(strtoul(s, &endptr, 16));
|
2005-08-01 12:22:23 +08:00
|
|
|
if (*endptr == '\0') return 1; /* most common case */
|
2004-11-25 03:16:03 +08:00
|
|
|
while (isspace(cast(unsigned char, *endptr))) endptr++;
|
2001-11-29 04:13:13 +08:00
|
|
|
if (*endptr != '\0') return 0; /* invalid trailing characters? */
|
1999-09-06 21:55:09 +08:00
|
|
|
return 1;
|
1998-12-28 04:25:20 +08:00
|
|
|
}
|
|
|
|
|
2000-09-12 04:29:27 +08:00
|
|
|
|
2000-10-21 00:36:32 +08:00
|
|
|
|
2002-05-08 01:36:56 +08:00
|
|
|
static void pushstr (lua_State *L, const char *str) {
|
2003-12-10 20:13:36 +08:00
|
|
|
setsvalue2s(L, L->top, luaS_new(L, str));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-10 00:01:38 +08:00
|
|
|
/* this function handles only `%d', `%c', %f, %p, and `%s' formats */
|
2002-05-17 02:39:46 +08:00
|
|
|
const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
|
2002-05-16 02:57:44 +08:00
|
|
|
int n = 1;
|
|
|
|
pushstr(L, "");
|
2002-05-08 01:36:56 +08:00
|
|
|
for (;;) {
|
|
|
|
const char *e = strchr(fmt, '%');
|
|
|
|
if (e == NULL) break;
|
2003-12-10 20:13:36 +08:00
|
|
|
setsvalue2s(L, L->top, luaS_newlstr(L, fmt, e-fmt));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
switch (*(e+1)) {
|
2004-07-10 00:01:38 +08:00
|
|
|
case 's': {
|
2005-07-12 02:48:02 +08:00
|
|
|
const char *s = va_arg(argp, char *);
|
|
|
|
if (s == NULL) s = "(null)";
|
|
|
|
pushstr(L, s);
|
2002-05-08 01:36:56 +08:00
|
|
|
break;
|
2004-07-10 00:01:38 +08:00
|
|
|
}
|
2002-05-08 01:36:56 +08:00
|
|
|
case 'c': {
|
|
|
|
char buff[2];
|
2002-08-07 22:35:55 +08:00
|
|
|
buff[0] = cast(char, va_arg(argp, int));
|
2002-05-08 01:36:56 +08:00
|
|
|
buff[1] = '\0';
|
|
|
|
pushstr(L, buff);
|
|
|
|
break;
|
|
|
|
}
|
2004-07-10 00:01:38 +08:00
|
|
|
case 'd': {
|
2005-12-23 00:19:56 +08:00
|
|
|
setnvalue(L->top, cast_num(va_arg(argp, int)));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
2004-07-10 00:01:38 +08:00
|
|
|
}
|
|
|
|
case 'f': {
|
2005-12-23 00:19:56 +08:00
|
|
|
setnvalue(L->top, cast_num(va_arg(argp, l_uacNumber)));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
2004-07-10 00:01:38 +08: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-08 01:36:56 +08:00
|
|
|
pushstr(L, "%");
|
|
|
|
break;
|
2004-07-10 00:01:38 +08:00
|
|
|
}
|
2003-06-10 20:36:26 +08:00
|
|
|
default: {
|
|
|
|
char buff[3];
|
|
|
|
buff[0] = '%';
|
|
|
|
buff[1] = *(e+1);
|
|
|
|
buff[2] = '\0';
|
|
|
|
pushstr(L, buff);
|
|
|
|
break;
|
|
|
|
}
|
2002-05-08 01:36:56 +08:00
|
|
|
}
|
|
|
|
n += 2;
|
|
|
|
fmt = e+2;
|
|
|
|
}
|
|
|
|
pushstr(L, fmt);
|
2005-12-23 00:19:56 +08:00
|
|
|
luaV_concat(L, n+1, cast_int(L->top - L->base) - 1);
|
2002-05-08 01:36:56 +08:00
|
|
|
L->top -= n;
|
|
|
|
return svalue(L->top - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-17 02:39:46 +08:00
|
|
|
const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
|
2002-05-08 01:36:56 +08:00
|
|
|
const char *msg;
|
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
2002-05-17 02:39:46 +08:00
|
|
|
msg = luaO_pushvfstring(L, fmt, argp);
|
2002-05-08 01:36:56 +08:00
|
|
|
va_end(argp);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-31 22:25:18 +08:00
|
|
|
void luaO_chunkid (char *out, const char *source, size_t bufflen) {
|
2001-11-29 04:13:13 +08:00
|
|
|
if (*source == '=') {
|
2000-10-21 00:36:32 +08:00
|
|
|
strncpy(out, source+1, bufflen); /* remove first char */
|
2001-11-29 04:13:13 +08:00
|
|
|
out[bufflen-1] = '\0'; /* ensures null termination */
|
2000-10-21 00:36:32 +08:00
|
|
|
}
|
2002-05-16 02:57:44 +08:00
|
|
|
else { /* out = "source", or "...source" */
|
2001-11-29 04:13:13 +08:00
|
|
|
if (*source == '@') {
|
2005-05-31 22:25:18 +08:00
|
|
|
size_t l;
|
2000-10-09 21:47:32 +08:00
|
|
|
source++; /* skip the `@' */
|
2005-05-17 05:19:00 +08:00
|
|
|
bufflen -= sizeof(" '...' ");
|
2000-10-09 21:47:32 +08:00
|
|
|
l = strlen(source);
|
2002-05-16 02:57:44 +08:00
|
|
|
strcpy(out, "");
|
2005-05-31 22:25:18 +08:00
|
|
|
if (l > bufflen) {
|
2000-10-09 21:47:32 +08:00
|
|
|
source += (l-bufflen); /* get last part of file name */
|
2002-05-08 01:36:56 +08:00
|
|
|
strcat(out, "...");
|
2000-10-09 21:47:32 +08:00
|
|
|
}
|
2002-05-08 01:36:56 +08:00
|
|
|
strcat(out, source);
|
2000-10-09 21:47:32 +08:00
|
|
|
}
|
2002-05-16 02:57:44 +08:00
|
|
|
else { /* out = [string "string"] */
|
2005-05-31 22:25:18 +08:00
|
|
|
size_t len = strcspn(source, "\n\r"); /* stop at first newline */
|
2002-05-16 02:57:44 +08:00
|
|
|
bufflen -= sizeof(" [string \"...\"] ");
|
2000-10-09 21:47:32 +08:00
|
|
|
if (len > bufflen) len = bufflen;
|
2002-05-16 02:57:44 +08:00
|
|
|
strcpy(out, "[string \"");
|
2001-11-29 04:13:13 +08:00
|
|
|
if (source[len] != '\0') { /* must truncate? */
|
2002-05-08 01:36:56 +08:00
|
|
|
strncat(out, source, len);
|
|
|
|
strcat(out, "...");
|
2000-10-21 00:36:32 +08:00
|
|
|
}
|
2000-10-09 21:47:32 +08:00
|
|
|
else
|
2002-05-08 01:36:56 +08:00
|
|
|
strcat(out, source);
|
2002-05-16 02:57:44 +08:00
|
|
|
strcat(out, "\"]");
|
2000-09-12 04:29:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|