Cpp 流块读取器

lua-users home
wiki

这是一个适用于任何 std::istream 的 lua_load 块读取器。显然,它需要 C++。我从其他代码中改编了这段代码片段,所以如果它不能立即工作,请见谅。如果您发现问题,请修复它。

// this is not threadsafe
const char* istream_ChunkReader( lua_State *L, void *data, size_t *size )
{
    const size_t kBufferSize = 1024;
    static char s_buffer[kBufferSize];

    std::istream* pis = reinterpret_cast<std::istream*>(data);
    if ( !pis )
        return NULL;
    pis->read( &s_buffer[0], kBufferSize );
    *size = pis->gcount();
    return s_buffer;
}

// type-safe wrapper
int lua_load_stream( lua_State *L, std::istream& is, const std::string& chunkname = "" )
{
    return lua_load( L, &istream_ChunkReader, &is,
                     chunkname.empty() ? NULL : chunkname.c_str() );
}

// it would be invoked like so:
lua_State* L = some_lua_state;
std::istream& is = some_stream_from_somewhere;
int res = lua_load_stream( L, is, "my chunk name" );


最近更改 · 偏好设置
编辑 · 历史记录
最后编辑于 2007 年 2 月 8 日下午 7:17 GMT (差异)