鉴于 LuaL_Buffer 对象:“在其正常操作期间,字符串缓冲区使用可变数量的堆栈槽”,我不明白如何同时使用两个 luaL_Buffer 对象。他们每个人都会假设堆栈的状态是他们需要的吗?换句话说,一个缓冲区可能会在堆栈顶部放置一些东西,并期望它在将来的某个调用中存在,而另一个缓冲区也是如此?不能同时使用两个 LuaL_Buffers 吗?
这是一个同时需要两个缓冲区的操作的示例。它似乎适用于小型测试,但不知道它是否会在生产中站起来。
int res;
char *p;
size_t dlen;
struct luaL_Buffer src;
struct luaL_Buffer dst;
luaL_buffinit(L, &src);
luaL_buffinit(L, &dst);
luaL_addvalue(&src);
// .. grow/mod the src buffer in various ways
p = luaL_prepbuffsize(&dst, dlen);
res = my_uncompress((Byte *)(src.b), src.n, (Byte *)p, &dlen);
luaL_addsize(&dst, dlen);
// .. do things to the dst buffer ..
zlib方法my_uncompress
的包装器在哪里