mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-05 23:38:45 +00:00
107 lines
2.7 KiB
C
107 lines
2.7 KiB
C
/*
|
|
** Lua arrays
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
asm(".ident\t\"\\n\\n\
|
|
lua-array (MIT License)\\n\
|
|
Copyright 2018-2021 Petri Häkkinen\"");
|
|
asm(".include \"libc/disclaimer.inc\"");
|
|
|
|
#define larray_c
|
|
#define LUA_CORE
|
|
|
|
#include "third_party/lua/lprefix.h"
|
|
|
|
#include <libc/math.h>
|
|
#include <libc/limits.h>
|
|
|
|
#include "third_party/lua/lua.h"
|
|
|
|
#include "third_party/lua/ldebug.h"
|
|
#include "third_party/lua/ldo.h"
|
|
#include "third_party/lua/lgc.h"
|
|
#include "third_party/lua/lmem.h"
|
|
#include "third_party/lua/lobject.h"
|
|
#include "third_party/lua/lstate.h"
|
|
#include "third_party/lua/lstring.h"
|
|
#include "third_party/lua/ltable.h"
|
|
#include "third_party/lua/larray.h"
|
|
#include "third_party/lua/lvm.h"
|
|
|
|
Array *luaA_new (lua_State *L) {
|
|
GCObject *o = luaC_newobj(L, LUA_TARRAY, sizeof(Array));
|
|
Array *a = gco2a(o);
|
|
a->array = NULL;
|
|
a->alimit = 0;
|
|
return a;
|
|
}
|
|
|
|
|
|
void luaA_resize (lua_State *L, Array *a, unsigned int newsize) {
|
|
unsigned int i;
|
|
unsigned int oldsize = a->alimit;
|
|
TValue *newarray;
|
|
|
|
/* allocate new array */
|
|
newarray = luaM_reallocvector(L, a->array, oldsize, newsize, TValue);
|
|
if (newarray == NULL && newsize > 0) { /* allocation failed? */
|
|
luaM_error(L); /* raise error (with array unchanged) */
|
|
}
|
|
|
|
/* allocation ok; initialize new part of the array */
|
|
a->array = newarray; /* set new array part */
|
|
a->alimit = newsize;
|
|
for (i = oldsize; i < newsize; i++) /* clear new slice of the array */
|
|
setempty(&a->array[i]);
|
|
}
|
|
|
|
|
|
void luaA_free (lua_State *L, Array *a) {
|
|
luaM_freearray(L, a->array, a->alimit);
|
|
luaM_free(L, a);
|
|
}
|
|
|
|
|
|
const TValue *luaA_getint (lua_State *L, Array *a, lua_Integer key) {
|
|
/* (1 <= key && key <= t->alimit) */
|
|
if (l_castS2U(key) - 1u < a->alimit)
|
|
return &a->array[key - 1];
|
|
else
|
|
return luaO_nilobject;
|
|
}
|
|
|
|
const TValue *luaA_get (lua_State *L, Array *a, const TValue *key) {
|
|
if (ttypetag(key) == LUA_VNUMINT) {
|
|
lua_Integer ikey = ivalue(key);
|
|
if (l_castS2U(ikey) - 1u < a->alimit)
|
|
return &a->array[ikey - 1];
|
|
else
|
|
return luaO_nilobject;
|
|
} else {
|
|
return luaO_nilobject;
|
|
}
|
|
}
|
|
|
|
void luaA_setint (lua_State *L, Array *a, lua_Integer key, TValue *value) {
|
|
if (l_castS2U(key) - 1u < a->alimit) {
|
|
/* set value! */
|
|
TValue* val = &a->array[key - 1];
|
|
val->value_ = value->value_;
|
|
val->tt_ = value->tt_;
|
|
checkliveness(L,val);
|
|
} else {
|
|
/* TODO: this error message could be improved! */
|
|
luaG_runerror(L, "array index out of bounds");
|
|
}
|
|
}
|
|
|
|
void luaA_set (lua_State *L, Array *a, const TValue* key, TValue *value) {
|
|
if (ttypetag(key) == LUA_VNUMINT) {
|
|
lua_Integer ikey = ivalue(key);
|
|
luaA_setint(L, a, ikey, value);
|
|
} else {
|
|
/* TODO: the error message could be improved */
|
|
luaG_runerror(L, "attempt to index array with a non-integer value");
|
|
}
|
|
}
|