lua/lobject.c

105 lines
2.7 KiB
C
Raw Normal View History

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