1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: ltable.h $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua tables (hash)
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltable_h
|
|
|
|
#define ltable_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
2003-03-18 15:50:04 +03:00
|
|
|
#define gnode(t,i) (&(t)->node[i])
|
|
|
|
#define gval(n) (&(n)->i_val)
|
2017-06-09 19:48:44 +03:00
|
|
|
#define gnext(n) ((n)->u.next)
|
2004-10-06 22:34:16 +04:00
|
|
|
|
2014-07-29 20:22:24 +04:00
|
|
|
|
2020-08-07 17:21:44 +03:00
|
|
|
/*
|
|
|
|
** Clear all bits of fast-access metamethods, which means that the table
|
|
|
|
** may have any of these metamethods. (First access that fails after the
|
|
|
|
** clearing will set the bit again.)
|
|
|
|
*/
|
|
|
|
#define invalidateTMcache(t) ((t)->flags &= ~maskflags)
|
2011-08-18 00:26:47 +04:00
|
|
|
|
2001-08-31 00:56:43 +04:00
|
|
|
|
2022-11-01 21:42:08 +03:00
|
|
|
/*
|
|
|
|
** Bit BITDUMMY set in 'flags' means the table is using the dummy node
|
|
|
|
** for its hash part.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BITDUMMY (1 << 6)
|
|
|
|
#define NOTBITDUMMY cast_byte(~BITDUMMY)
|
|
|
|
#define isdummy(t) ((t)->flags & BITDUMMY)
|
|
|
|
|
|
|
|
#define setnodummy(t) ((t)->flags &= NOTBITDUMMY)
|
|
|
|
#define setdummy(t) ((t)->flags |= BITDUMMY)
|
|
|
|
|
2016-11-07 15:38:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* allocated size for hash nodes */
|
|
|
|
#define allocsizenode(t) (isdummy(t) ? 0 : sizenode(t))
|
|
|
|
|
|
|
|
|
2017-06-09 19:48:44 +03:00
|
|
|
/* returns the Node, given the value of a table entry */
|
2020-04-23 20:48:15 +03:00
|
|
|
#define nodefromval(v) cast(Node *, (v))
|
2013-08-30 20:01:37 +04:00
|
|
|
|
|
|
|
|
2024-01-12 21:50:51 +03:00
|
|
|
|
2024-03-21 17:23:21 +03:00
|
|
|
#define luaH_fastgeti(t,k,res,tag) \
|
2024-01-12 21:50:51 +03:00
|
|
|
{ Table *h = t; lua_Unsigned u = l_castS2U(k); \
|
2024-03-21 17:23:21 +03:00
|
|
|
if ((u - 1u < h->alimit)) { \
|
|
|
|
tag = *getArrTag(h,(u)-1u); \
|
|
|
|
if (!tagisempty(tag)) { farr2val(h, u, tag, res); }} \
|
|
|
|
else { tag = luaH_getint(h, u, res); }}
|
2024-01-12 21:50:51 +03:00
|
|
|
|
|
|
|
|
|
|
|
#define luaH_fastseti(t,k,val,hres) \
|
|
|
|
{ Table *h = t; lua_Unsigned u = l_castS2U(k); \
|
|
|
|
if ((u - 1u < h->alimit)) { \
|
|
|
|
lu_byte *tag = getArrTag(h,(u)-1u); \
|
|
|
|
if (tagisempty(*tag)) hres = ~cast_int(u); \
|
|
|
|
else { fval2arr(h, u, tag, val); hres = HOK; }} \
|
|
|
|
else { hres = luaH_psetint(h, u, val); }}
|
|
|
|
|
|
|
|
|
2024-03-18 21:56:32 +03:00
|
|
|
/* results from pset */
|
2023-05-15 23:56:25 +03:00
|
|
|
#define HOK 0
|
|
|
|
#define HNOTFOUND 1
|
|
|
|
#define HNOTATABLE 2
|
2023-05-16 20:55:49 +03:00
|
|
|
#define HFIRSTNODE 3
|
2023-05-15 23:56:25 +03:00
|
|
|
|
2023-05-16 22:53:29 +03:00
|
|
|
/*
|
2024-03-21 17:23:21 +03:00
|
|
|
** 'luaH_get*' operations set 'res', unless the value is absent, and
|
|
|
|
** return the tag of the result,
|
2023-11-08 16:41:24 +03:00
|
|
|
** The 'luaH_pset*' (pre-set) operations set the given value and return
|
|
|
|
** HOK, unless the original value is absent. In that case, if the key
|
|
|
|
** is really absent, they return HNOTFOUND. Otherwise, if there is a
|
|
|
|
** slot with that key but with no value, 'luaH_pset*' return an encoding
|
|
|
|
** of where the key is (usually called 'hres'). (pset cannot set that
|
|
|
|
** value because there might be a metamethod.) If the slot is in the
|
|
|
|
** hash part, the encoding is (HFIRSTNODE + hash index); if the slot is
|
|
|
|
** in the array part, the encoding is (~array index), a negative value.
|
|
|
|
** The value HNOTATABLE is used by the fast macros to signal that the
|
|
|
|
** value being indexed is not a table.
|
2023-05-16 22:53:29 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2023-11-03 21:26:13 +03:00
|
|
|
/*
|
2024-03-15 17:23:35 +03:00
|
|
|
** The array part of a table is represented by an array of cells.
|
2023-11-24 20:41:07 +03:00
|
|
|
** Each cell is composed of NM tags followed by NM values, so that
|
2024-03-21 17:23:21 +03:00
|
|
|
** no space is wasted in padding. The last cell may be incomplete,
|
|
|
|
** that is, it may have fewer than NM values.
|
2023-11-03 21:26:13 +03:00
|
|
|
*/
|
2023-11-24 20:41:07 +03:00
|
|
|
#define NM cast_uint(sizeof(Value))
|
2023-11-03 21:26:13 +03:00
|
|
|
|
2023-11-24 20:41:07 +03:00
|
|
|
struct ArrayCell {
|
2024-03-15 17:23:35 +03:00
|
|
|
lu_byte tag[NM];
|
2023-11-24 20:41:07 +03:00
|
|
|
Value value[NM];
|
2023-10-30 20:25:59 +03:00
|
|
|
};
|
|
|
|
|
2023-05-15 23:56:25 +03:00
|
|
|
|
2023-11-03 21:26:13 +03:00
|
|
|
/* Computes the address of the tag for the abstract index 'k' */
|
2024-03-15 17:23:35 +03:00
|
|
|
#define getArrTag(t,k) (&(t)->array[(k)/NM].tag[(k)%NM])
|
2023-05-15 23:56:25 +03:00
|
|
|
|
2023-11-03 21:26:13 +03:00
|
|
|
/* Computes the address of the value for the abstract index 'k' */
|
2023-11-24 20:41:07 +03:00
|
|
|
#define getArrVal(t,k) (&(t)->array[(k)/NM].value[(k)%NM])
|
2023-10-30 20:25:59 +03:00
|
|
|
|
2023-11-03 21:26:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Move TValues to/from arrays, using Lua indices
|
|
|
|
*/
|
2024-03-21 17:23:21 +03:00
|
|
|
#define arr2obj(h,k,val) \
|
|
|
|
((val)->tt_ = *getArrTag(h,(k)-1u), (val)->value_ = *getArrVal(h,(k)-1u))
|
2023-11-03 21:26:13 +03:00
|
|
|
|
|
|
|
#define obj2arr(h,k,val) \
|
|
|
|
(*getArrTag(h,(k)-1u) = (val)->tt_, *getArrVal(h,(k)-1u) = (val)->value_)
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Often, we need to check the tag of a value before moving it. These
|
|
|
|
** macros also move TValues to/from arrays, but receive the precomputed
|
|
|
|
** tag value or address as an extra argument.
|
|
|
|
*/
|
|
|
|
#define farr2val(h,k,tag,res) \
|
|
|
|
((res)->tt_ = tag, (res)->value_ = *getArrVal(h,(k)-1u))
|
|
|
|
|
|
|
|
#define fval2arr(h,k,tag,val) \
|
|
|
|
(*tag = (val)->tt_, *getArrVal(h,(k)-1u) = (val)->value_)
|
2023-10-30 20:25:59 +03:00
|
|
|
|
|
|
|
|
2024-03-21 17:23:21 +03:00
|
|
|
LUAI_FUNC int luaH_get (Table *t, const TValue *key, TValue *res);
|
|
|
|
LUAI_FUNC int luaH_getshortstr (Table *t, TString *key, TValue *res);
|
|
|
|
LUAI_FUNC int luaH_getstr (Table *t, TString *key, TValue *res);
|
|
|
|
LUAI_FUNC int luaH_getint (Table *t, lua_Integer key, TValue *res);
|
2023-05-16 22:53:29 +03:00
|
|
|
|
2024-03-21 17:23:21 +03:00
|
|
|
/* Special get for metamethods */
|
2023-11-08 16:41:24 +03:00
|
|
|
LUAI_FUNC const TValue *luaH_Hgetshortstr (Table *t, TString *key);
|
|
|
|
|
2023-05-16 22:53:29 +03:00
|
|
|
LUAI_FUNC TString *luaH_getstrkey (Table *t, TString *key);
|
2023-05-15 23:56:25 +03:00
|
|
|
|
2023-05-16 22:53:29 +03:00
|
|
|
LUAI_FUNC int luaH_psetint (Table *t, lua_Integer key, TValue *val);
|
|
|
|
LUAI_FUNC int luaH_psetshortstr (Table *t, TString *key, TValue *val);
|
|
|
|
LUAI_FUNC int luaH_psetstr (Table *t, TString *key, TValue *val);
|
|
|
|
LUAI_FUNC int luaH_pset (Table *t, const TValue *key, TValue *val);
|
2023-05-16 20:55:49 +03:00
|
|
|
|
2013-04-26 19:39:25 +04:00
|
|
|
LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key,
|
2014-09-04 22:15:29 +04:00
|
|
|
TValue *value);
|
2020-12-04 17:08:42 +03:00
|
|
|
LUAI_FUNC void luaH_set (lua_State *L, Table *t, const TValue *key,
|
|
|
|
TValue *value);
|
2023-11-08 16:41:24 +03:00
|
|
|
|
2020-12-04 17:08:42 +03:00
|
|
|
LUAI_FUNC void luaH_finishset (lua_State *L, Table *t, const TValue *key,
|
2023-11-08 16:41:24 +03:00
|
|
|
TValue *value, int hres);
|
2006-07-11 19:53:29 +04:00
|
|
|
LUAI_FUNC Table *luaH_new (lua_State *L);
|
2024-03-22 20:06:11 +03:00
|
|
|
LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned nasize,
|
|
|
|
unsigned nhsize);
|
|
|
|
LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned nasize);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC void luaH_free (lua_State *L, Table *t);
|
|
|
|
LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
|
2017-05-19 15:48:15 +03:00
|
|
|
LUAI_FUNC lua_Unsigned luaH_getn (Table *t);
|
2024-03-22 20:06:11 +03:00
|
|
|
LUAI_FUNC unsigned luaH_realasize (const Table *t);
|
1999-10-26 14:53:40 +04:00
|
|
|
|
2006-01-10 15:51:53 +03:00
|
|
|
|
2006-01-10 16:13:06 +03:00
|
|
|
#if defined(LUA_DEBUG)
|
|
|
|
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
|
|
|
|
#endif
|
2006-01-10 15:51:53 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|