Lua源码学习-ltable.h

/*
** $Id: ltable.h,v 2.21 2015/11/03 15:47:30 roberto Exp $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/

#ifndef ltable_h
#define ltable_h

#include "lobject.h"

//取表node中idx=i的Node值
#define gnode(t,i)    (&(t)->node[i])
//提取Node中的val
#define gval(n)        (&(n)->i_val)
//提取Node中的key的next
#define gnext(n)    ((n)->i_key.nk.next)


/* 'const' to avoid wrong writings that can mess up field 'next' */ 
#define gkey(n)        cast(const TValue*, (&(n)->i_key.tvk))

/*
** writable version of 'gkey'; allows updates to individual fields,
** but not to the whole (which has incompatible type)
*/
#define wgkey(n)        (&(n)->i_key.nk)

#define invalidateTMcache(t)    ((t)->flags = 0)


/* returns the key, given the value of a table entry */
#define keyfromval(v) \
  (gkey(cast(Node *, cast(char *, (v)) - offsetof(Node, i_val))))

/* 提取t[key]的val */
LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
/* 设置t[key]=val */
LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key,TValue *value);
/* 提取t[key]的val */
LUAI_FUNC const TValue *luaH_getshortstr (Table *t, TString *key);
LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
/* 尝试构建一个newKey并返回对应的value域 */
LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
/* 提取t[key]的对应的value的地址,调用本函数后,再在返回的value.addr上写上对应的值? */
LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);

/* 构造一张空表 */
LUAI_FUNC Table *luaH_new (lua_State *L);
/* 调整array,node部分大小并rehash */
LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned int nasize,
                                                    unsigned int nhsize);
/* 仅调整array部分的大小并rehash */
LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize);
/* 释放h占用的MEM */
LUAI_FUNC void luaH_free (lua_State *L, Table *t);
/* 查找key的下一个key->val对 */
LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
/* 计算"整数类型"的下标部分的大小 */
LUAI_FUNC int luaH_getn (Table *t);


#if defined(LUA_DEBUG)
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
LUAI_FUNC int luaH_isdummy (Node *n);
#endif


#endif
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值