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