1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2001-10-25 17:14:14 -02:00
|
|
|
** $Id: lobject.c,v 1.70 2001/03/26 14:31:49 roberto Exp $
|
1997-09-16 16:25:59 -03:00
|
|
|
** Some generic functions over Lua objects
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
1998-12-27 18:25:20 -02:00
|
|
|
#include <ctype.h>
|
2000-09-11 17:29:27 -03:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
1997-09-16 16:25:59 -03:00
|
|
|
#include <stdlib.h>
|
2000-09-11 17:29:27 -03:00
|
|
|
#include <string.h>
|
1997-09-16 16:25:59 -03:00
|
|
|
|
2001-03-26 11:31:49 -03:00
|
|
|
#define LUA_PRIVATE
|
1997-09-16 16:25:59 -03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2001-01-24 13:45:33 -02:00
|
|
|
#include "ldo.h"
|
2000-09-11 14:38:42 -03:00
|
|
|
#include "lmem.h"
|
2000-06-12 10:52:05 -03:00
|
|
|
#include "lobject.h"
|
2000-09-11 14:38:42 -03:00
|
|
|
#include "lstate.h"
|
2000-06-12 10:52:05 -03:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
2000-10-02 17:10:55 -03:00
|
|
|
|
2001-02-02 13:13:05 -02:00
|
|
|
const TObject luaO_nilobject = {LUA_TNIL, {NULL}};
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
|
2001-10-25 17:14:14 -02: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,
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
if (x & 0xffff0000) {
|
|
|
|
if (x & 0xff000000) return log_8[((x>>24) & 0xff) - 1]+24;
|
|
|
|
else return log_8[((x>>16) & 0xff) - 1]+16;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (x & 0x0000ff00) return log_8[((x>>8) & 0xff) - 1]+8;
|
|
|
|
else if (x) return log_8[(x & 0xff) - 1];
|
|
|
|
return -1; /* special `log' for 0 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-04-25 13:55:09 -03:00
|
|
|
int luaO_equalObj (const TObject *t1, const TObject *t2) {
|
|
|
|
if (ttype(t1) != ttype(t2)) return 0;
|
1997-09-16 16:25:59 -03:00
|
|
|
switch (ttype(t1)) {
|
2000-10-05 09:14:08 -03:00
|
|
|
case LUA_TNUMBER:
|
1999-12-23 16:19:57 -02:00
|
|
|
return nvalue(t1) == nvalue(t2);
|
2001-01-26 12:16:35 -02:00
|
|
|
case LUA_TNIL:
|
|
|
|
return 1;
|
|
|
|
default: /* all other types are equal if pointers are equal */
|
2000-04-26 10:43:10 -03:00
|
|
|
return tsvalue(t1) == tsvalue(t2);
|
1997-09-16 16:25:59 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-23 17:32:16 -03:00
|
|
|
void *luaO_openspaceaux (lua_State *L, size_t n) {
|
2001-01-19 11:20:30 -02:00
|
|
|
if (n > G(L)->Mbuffsize) {
|
2001-03-07 09:27:06 -03:00
|
|
|
G(L)->Mbuffer = luaM_realloc(L, G(L)->Mbuffer, G(L)->Mbuffsize, n);
|
2001-01-19 11:20:30 -02:00
|
|
|
G(L)->Mbuffsize = n;
|
2000-09-11 14:38:42 -03:00
|
|
|
}
|
2001-01-19 11:20:30 -02:00
|
|
|
return G(L)->Mbuffer;
|
2000-09-11 14:38:42 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-26 11:31:49 -03:00
|
|
|
int luaO_str2d (const l_char *s, lua_Number *result) {
|
2001-02-23 14:17:25 -03:00
|
|
|
l_char *endptr;
|
2000-12-04 16:33:40 -02:00
|
|
|
lua_Number res = lua_str2number(s, &endptr);
|
2000-10-03 11:03:21 -03:00
|
|
|
if (endptr == s) return 0; /* no conversion */
|
2001-02-22 14:15:18 -03:00
|
|
|
while (isspace(uchar(*endptr))) endptr++;
|
2001-02-23 14:17:25 -03:00
|
|
|
if (*endptr != l_c('\0')) return 0; /* invalid trailing characters? */
|
2000-10-03 11:03:21 -03:00
|
|
|
*result = res;
|
1999-09-06 10:55:09 -03:00
|
|
|
return 1;
|
1998-12-27 18:25:20 -02:00
|
|
|
}
|
|
|
|
|
2000-09-11 17:29:27 -03:00
|
|
|
|
2000-10-20 14:36:32 -02:00
|
|
|
/* maximum length of a string format for `luaO_verror' */
|
|
|
|
#define MAX_VERROR 280
|
|
|
|
|
2000-09-29 09:42:13 -03:00
|
|
|
/* this function needs to handle only '%d' and '%.XXs' formats */
|
2001-02-23 14:17:25 -03:00
|
|
|
void luaO_verror (lua_State *L, const l_char *fmt, ...) {
|
2000-09-11 17:29:27 -03:00
|
|
|
va_list argp;
|
2001-02-23 14:17:25 -03:00
|
|
|
l_char buff[MAX_VERROR]; /* to hold formatted message */
|
2000-09-11 17:29:27 -03:00
|
|
|
va_start(argp, fmt);
|
|
|
|
vsprintf(buff, fmt, argp);
|
|
|
|
va_end(argp);
|
2001-01-24 13:45:33 -02:00
|
|
|
luaD_error(L, buff);
|
2000-09-11 17:29:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-23 14:17:25 -03:00
|
|
|
void luaO_chunkid (l_char *out, const l_char *source, int bufflen) {
|
|
|
|
if (*source == l_c('=')) {
|
2000-10-20 14:36:32 -02:00
|
|
|
strncpy(out, source+1, bufflen); /* remove first char */
|
2001-02-23 14:17:25 -03:00
|
|
|
out[bufflen-1] = l_c('\0'); /* ensures null termination */
|
2000-10-20 14:36:32 -02:00
|
|
|
}
|
2000-09-11 17:29:27 -03:00
|
|
|
else {
|
2001-02-23 14:17:25 -03:00
|
|
|
if (*source == l_c('@')) {
|
2000-10-09 11:47:32 -02:00
|
|
|
int l;
|
|
|
|
source++; /* skip the `@' */
|
2001-02-23 14:17:25 -03:00
|
|
|
bufflen -= sizeof(l_s("file `...%s'"));
|
2000-10-09 11:47:32 -02:00
|
|
|
l = strlen(source);
|
|
|
|
if (l>bufflen) {
|
|
|
|
source += (l-bufflen); /* get last part of file name */
|
2001-02-23 14:17:25 -03:00
|
|
|
sprintf(out, l_s("file `...%.99s'"), source);
|
2000-10-09 11:47:32 -02:00
|
|
|
}
|
|
|
|
else
|
2001-02-23 14:17:25 -03:00
|
|
|
sprintf(out, l_s("file `%.99s'"), source);
|
2000-10-09 11:47:32 -02:00
|
|
|
}
|
2000-09-11 17:29:27 -03:00
|
|
|
else {
|
2001-02-23 14:17:25 -03:00
|
|
|
int len = strcspn(source, l_s("\n")); /* stop at first newline */
|
|
|
|
bufflen -= sizeof(l_s("string \"%.*s...\""));
|
2000-10-09 11:47:32 -02:00
|
|
|
if (len > bufflen) len = bufflen;
|
2001-02-23 14:17:25 -03:00
|
|
|
if (source[len] != l_c('\0')) { /* must truncate? */
|
|
|
|
strcpy(out, l_s("string \""));
|
2000-10-20 14:36:32 -02:00
|
|
|
out += strlen(out);
|
|
|
|
strncpy(out, source, len);
|
2001-02-23 14:17:25 -03:00
|
|
|
strcpy(out+len, l_s("...\""));
|
2000-10-20 14:36:32 -02:00
|
|
|
}
|
2000-10-09 11:47:32 -02:00
|
|
|
else
|
2001-02-23 14:17:25 -03:00
|
|
|
sprintf(out, l_s("string \"%.99s\""), source);
|
2000-09-11 17:29:27 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|