1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-10-22 21:18:28 +04:00
|
|
|
** $Id: lobject.c,v 1.90 2002/10/08 18:46:08 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Some generic functions over Lua objects
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1998-12-27 23:25:20 +03:00
|
|
|
#include <ctype.h>
|
2000-09-12 00:29:27 +04:00
|
|
|
#include <stdarg.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#include <stdlib.h>
|
2000-09-12 00:29:27 +04:00
|
|
|
#include <string.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
2001-01-24 18:45:33 +03:00
|
|
|
#include "ldo.h"
|
2000-09-11 21:38:42 +04:00
|
|
|
#include "lmem.h"
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lobject.h"
|
2000-09-11 21:38:42 +04:00
|
|
|
#include "lstate.h"
|
2002-05-07 21:36:56 +04:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "lvm.h"
|
2000-06-12 17:52:05 +04:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2002-06-05 16:34:19 +04: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 00:10:55 +04:00
|
|
|
|
2001-02-02 18:13:05 +03:00
|
|
|
const TObject luaO_nilobject = {LUA_TNIL, {NULL}};
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2001-10-25 23:14:14 +04: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-30 20:28:05 +03: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-25 23:14:14 +04:00
|
|
|
};
|
2002-01-30 20:28:05 +03:00
|
|
|
if (x >= 0x00010000) {
|
|
|
|
if (x >= 0x01000000) return log_8[((x>>24) & 0xff) - 1]+24;
|
2001-10-25 23:14:14 +04:00
|
|
|
else return log_8[((x>>16) & 0xff) - 1]+16;
|
|
|
|
}
|
|
|
|
else {
|
2002-01-30 20:28:05 +03:00
|
|
|
if (x >= 0x00000100) return log_8[((x>>8) & 0xff) - 1]+8;
|
2001-10-25 23:14:14 +04:00
|
|
|
else if (x) return log_8[(x & 0xff) - 1];
|
|
|
|
return -1; /* special `log' for 0 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-13 17:39:55 +04:00
|
|
|
int luaO_rawequalObj (const TObject *t1, const TObject *t2) {
|
2000-04-25 20:55:09 +04:00
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
2002-10-04 18:31:03 +04:00
|
|
|
if (iscollectable(t1)) return gcvalue(t1) == gcvalue(t2);
|
|
|
|
else switch (ttype(t1)) {
|
2001-01-26 17:16:35 +03:00
|
|
|
case LUA_TNIL:
|
|
|
|
return 1;
|
2001-12-12 01:48:44 +03:00
|
|
|
case LUA_TBOOLEAN:
|
2002-05-06 19:51:41 +04:00
|
|
|
return bvalue(t1) == bvalue(t2); /* boolean true must be 1 !! */
|
2002-07-17 20:25:13 +04:00
|
|
|
case LUA_TLIGHTUSERDATA:
|
2002-04-05 22:54:31 +04:00
|
|
|
return pvalue(t1) == pvalue(t2);
|
2002-09-02 23:54:49 +04:00
|
|
|
case LUA_TNUMBER:
|
|
|
|
return nvalue(t1) == nvalue(t2);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
2002-10-04 18:31:03 +04:00
|
|
|
lua_assert(0);
|
|
|
|
return 0; /* to avoid warnings */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
int luaO_str2d (const char *s, lua_Number *result) {
|
|
|
|
char *endptr;
|
2000-12-04 21:33:40 +03:00
|
|
|
lua_Number res = lua_str2number(s, &endptr);
|
2000-10-03 18:03:21 +04:00
|
|
|
if (endptr == s) return 0; /* no conversion */
|
2001-11-28 23:13:13 +03:00
|
|
|
while (isspace((unsigned char)(*endptr))) endptr++;
|
|
|
|
if (*endptr != '\0') return 0; /* invalid trailing characters? */
|
2000-10-03 18:03:21 +04:00
|
|
|
*result = res;
|
1999-09-06 17:55:09 +04:00
|
|
|
return 1;
|
1998-12-27 23:25:20 +03:00
|
|
|
}
|
|
|
|
|
2000-09-12 00:29:27 +04:00
|
|
|
|
2000-10-20 20:36:32 +04:00
|
|
|
|
2002-05-07 21:36:56 +04:00
|
|
|
static void pushstr (lua_State *L, const char *str) {
|
|
|
|
setsvalue(L->top, luaS_new(L, str));
|
|
|
|
incr_top(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* this function handles only `%d', `%c', %f, and `%s' formats */
|
2002-05-16 22:39:46 +04:00
|
|
|
const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
|
2002-05-15 22:57:44 +04:00
|
|
|
int n = 1;
|
|
|
|
pushstr(L, "");
|
2002-05-07 21:36:56 +04:00
|
|
|
for (;;) {
|
|
|
|
const char *e = strchr(fmt, '%');
|
|
|
|
if (e == NULL) break;
|
|
|
|
setsvalue(L->top, luaS_newlstr(L, fmt, e-fmt));
|
|
|
|
incr_top(L);
|
|
|
|
switch (*(e+1)) {
|
|
|
|
case 's':
|
|
|
|
pushstr(L, va_arg(argp, char *));
|
|
|
|
break;
|
|
|
|
case 'c': {
|
|
|
|
char buff[2];
|
2002-08-07 18:35:55 +04:00
|
|
|
buff[0] = cast(char, va_arg(argp, int));
|
2002-05-07 21:36:56 +04: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-22 21:18:28 +04:00
|
|
|
setnvalue(L->top, va_arg(argp, l_uacNumber));
|
2002-05-07 21:36:56 +04:00
|
|
|
incr_top(L);
|
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
pushstr(L, "%");
|
|
|
|
break;
|
|
|
|
default: lua_assert(0);
|
|
|
|
}
|
|
|
|
n += 2;
|
|
|
|
fmt = e+2;
|
|
|
|
}
|
|
|
|
pushstr(L, fmt);
|
2002-06-03 18:08:43 +04:00
|
|
|
luaV_concat(L, n+1, L->top - L->ci->base - 1);
|
2002-05-07 21:36:56 +04:00
|
|
|
L->top -= n;
|
|
|
|
return svalue(L->top - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-16 22:39:46 +04:00
|
|
|
const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
|
2002-05-07 21:36:56 +04:00
|
|
|
const char *msg;
|
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
2002-05-16 22:39:46 +04:00
|
|
|
msg = luaO_pushvfstring(L, fmt, argp);
|
2002-05-07 21:36:56 +04:00
|
|
|
va_end(argp);
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
void luaO_chunkid (char *out, const char *source, int bufflen) {
|
|
|
|
if (*source == '=') {
|
2000-10-20 20:36:32 +04:00
|
|
|
strncpy(out, source+1, bufflen); /* remove first char */
|
2001-11-28 23:13:13 +03:00
|
|
|
out[bufflen-1] = '\0'; /* ensures null termination */
|
2000-10-20 20:36:32 +04:00
|
|
|
}
|
2002-05-15 22:57:44 +04:00
|
|
|
else { /* out = "source", or "...source" */
|
2001-11-28 23:13:13 +03:00
|
|
|
if (*source == '@') {
|
2000-10-09 17:47:32 +04:00
|
|
|
int l;
|
|
|
|
source++; /* skip the `@' */
|
2002-05-15 22:57:44 +04:00
|
|
|
bufflen -= sizeof(" `...' ");
|
2000-10-09 17:47:32 +04:00
|
|
|
l = strlen(source);
|
2002-05-15 22:57:44 +04:00
|
|
|
strcpy(out, "");
|
2000-10-09 17:47:32 +04:00
|
|
|
if (l>bufflen) {
|
|
|
|
source += (l-bufflen); /* get last part of file name */
|
2002-05-07 21:36:56 +04:00
|
|
|
strcat(out, "...");
|
2000-10-09 17:47:32 +04:00
|
|
|
}
|
2002-05-07 21:36:56 +04:00
|
|
|
strcat(out, source);
|
2000-10-09 17:47:32 +04:00
|
|
|
}
|
2002-05-15 22:57:44 +04:00
|
|
|
else { /* out = [string "string"] */
|
2001-11-28 23:13:13 +03:00
|
|
|
int len = strcspn(source, "\n"); /* stop at first newline */
|
2002-05-15 22:57:44 +04:00
|
|
|
bufflen -= sizeof(" [string \"...\"] ");
|
2000-10-09 17:47:32 +04:00
|
|
|
if (len > bufflen) len = bufflen;
|
2002-05-15 22:57:44 +04:00
|
|
|
strcpy(out, "[string \"");
|
2001-11-28 23:13:13 +03:00
|
|
|
if (source[len] != '\0') { /* must truncate? */
|
2002-05-07 21:36:56 +04:00
|
|
|
strncat(out, source, len);
|
|
|
|
strcat(out, "...");
|
2000-10-20 20:36:32 +04:00
|
|
|
}
|
2000-10-09 17:47:32 +04:00
|
|
|
else
|
2002-05-07 21:36:56 +04:00
|
|
|
strcat(out, source);
|
2002-05-15 22:57:44 +04:00
|
|
|
strcat(out, "\"]");
|
2000-09-12 00:29:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|