1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2002-12-05 01:38:31 +08:00
|
|
|
** $Id: lobject.c,v 1.93 2002/11/21 15:16:04 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>
|
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
|
|
|
|
|
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
|
|
|
|
2002-06-05 20:34:19 +08:00
|
|
|
/* function to convert a string to a lua_Number */
|
|
|
|
#ifndef lua_str2number
|
|
|
|
#define lua_str2number(s,p) strtod((s), (p))
|
|
|
|
#endif
|
|
|
|
|
2000-10-03 04:10:55 +08:00
|
|
|
|
2001-02-02 23:13:05 +08:00
|
|
|
const TObject luaO_nilobject = {LUA_TNIL, {NULL}};
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
2001-10-26 03:14:14 +08:00
|
|
|
int luaO_log2 (unsigned int x) {
|
|
|
|
static const lu_byte log_8[255] = {
|
|
|
|
0,
|
|
|
|
1,1,
|
|
|
|
2,2,2,2,
|
|
|
|
3,3,3,3,3,3,3,3,
|
|
|
|
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
|
|
|
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
|
|
|
|
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,
|
|
|
|
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,
|
|
|
|
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,
|
2002-01-31 01:28:05 +08:00
|
|
|
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
|
2001-10-26 03:14:14 +08:00
|
|
|
};
|
2002-01-31 01:28:05 +08:00
|
|
|
if (x >= 0x00010000) {
|
|
|
|
if (x >= 0x01000000) return log_8[((x>>24) & 0xff) - 1]+24;
|
2001-10-26 03:14:14 +08:00
|
|
|
else return log_8[((x>>16) & 0xff) - 1]+16;
|
|
|
|
}
|
|
|
|
else {
|
2002-01-31 01:28:05 +08:00
|
|
|
if (x >= 0x00000100) return log_8[((x>>8) & 0xff) - 1]+8;
|
2001-10-26 03:14:14 +08:00
|
|
|
else if (x) return log_8[(x & 0xff) - 1];
|
|
|
|
return -1; /* special `log' for 0 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-13 21:39:55 +08:00
|
|
|
int luaO_rawequalObj (const TObject *t1, const TObject *t2) {
|
2000-04-26 00:55:09 +08:00
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
2002-10-04 22:31:03 +08:00
|
|
|
if (iscollectable(t1)) return gcvalue(t1) == gcvalue(t2);
|
|
|
|
else switch (ttype(t1)) {
|
2001-01-26 22:16:35 +08:00
|
|
|
case LUA_TNIL:
|
|
|
|
return 1;
|
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);
|
2002-09-03 03:54:49 +08:00
|
|
|
case LUA_TNUMBER:
|
|
|
|
return nvalue(t1) == nvalue(t2);
|
1997-09-17 03:25:59 +08:00
|
|
|
}
|
2002-10-04 22:31:03 +08:00
|
|
|
lua_assert(0);
|
|
|
|
return 0; /* to avoid warnings */
|
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;
|
2000-12-05 02:33:40 +08:00
|
|
|
lua_Number res = lua_str2number(s, &endptr);
|
2000-10-03 22:03:21 +08:00
|
|
|
if (endptr == s) return 0; /* no conversion */
|
2001-11-29 04:13:13 +08:00
|
|
|
while (isspace((unsigned char)(*endptr))) endptr++;
|
|
|
|
if (*endptr != '\0') return 0; /* invalid trailing characters? */
|
2000-10-03 22:03:21 +08:00
|
|
|
*result = res;
|
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) {
|
2002-11-07 23:37:10 +08:00
|
|
|
setsvalue2s(L->top, luaS_new(L, str));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* this function handles only `%d', `%c', %f, 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;
|
2002-11-07 23:37:10 +08:00
|
|
|
setsvalue2s(L->top, luaS_newlstr(L, fmt, e-fmt));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
switch (*(e+1)) {
|
|
|
|
case 's':
|
|
|
|
pushstr(L, va_arg(argp, char *));
|
|
|
|
break;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
case 'd':
|
|
|
|
setnvalue(L->top, va_arg(argp, int));
|
|
|
|
incr_top(L);
|
|
|
|
break;
|
|
|
|
case 'f':
|
2002-10-23 01:18:28 +08:00
|
|
|
setnvalue(L->top, va_arg(argp, l_uacNumber));
|
2002-05-08 01:36:56 +08:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
pushstr(L, "%");
|
|
|
|
break;
|
|
|
|
default: lua_assert(0);
|
|
|
|
}
|
|
|
|
n += 2;
|
|
|
|
fmt = e+2;
|
|
|
|
}
|
|
|
|
pushstr(L, fmt);
|
2002-11-21 23:16:04 +08:00
|
|
|
luaV_concat(L, n+1, 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-29 04:13:13 +08:00
|
|
|
void luaO_chunkid (char *out, const char *source, int bufflen) {
|
|
|
|
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 == '@') {
|
2000-10-09 21:47:32 +08:00
|
|
|
int l;
|
|
|
|
source++; /* skip the `@' */
|
2002-05-16 02:57:44 +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, "");
|
2000-10-09 21:47:32 +08:00
|
|
|
if (l>bufflen) {
|
|
|
|
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"] */
|
2001-11-29 04:13:13 +08:00
|
|
|
int len = strcspn(source, "\n"); /* 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|