buffer: remove static_alloc() from Lua
Static_alloc() uses a fixed size circular BSS memory buffer. It is often used in C when need to allocate something of a size smaller than the static buffer temporarily. And it was thought that it might be also useful in Lua when backed up by ffi.new() for large allocations. It was useful, and faster than ffi.new() on sizes > 128 and less than the static buffer size, but it wasn't correct to use it. By the same reason why IBUF_SHARED global variable should not have been used as is. Because without a proper ownership the buffer might be reused in some unexpected way. Just like with IBUF_SHARED, the static buffer could be reused during Lua GC in one of __gc handlers. Essentially, at any moment on almost any line of a Lua script. IBUF_SHARED was fixed by proper ownership implementation, but it is not possible with the static buffer. Because there is no such a thing like a static buffer object which can be owned, and even if there would be, cost of its support wouldn't be much better than for the new cord_ibuf API. That would make the static buffer close to pointless. This patch eliminates static_alloc() from Lua, and uses cord_ibuf instead almost everywhere except a couple of places where ffi.new() is good enough. Part of #5632
Showing
- src/CMakeLists.txt 0 additions, 1 deletionsrc/CMakeLists.txt
- src/box/lua/schema.lua 5 additions, 2 deletionssrc/box/lua/schema.lua
- src/exports.h 0 additions, 1 deletionsrc/exports.h
- src/lua/buffer.c 0 additions, 42 deletionssrc/lua/buffer.c
- src/lua/buffer.lua 0 additions, 32 deletionssrc/lua/buffer.lua
- src/lua/crypto.lua 8 additions, 2 deletionssrc/lua/crypto.lua
- src/lua/digest.lua 18 additions, 7 deletionssrc/lua/digest.lua
- src/lua/fio.lua 7 additions, 2 deletionssrc/lua/fio.lua
- src/lua/socket.lua 14 additions, 6 deletionssrc/lua/socket.lua
- src/lua/string.lua 13 additions, 5 deletionssrc/lua/string.lua
- test/app-tap/module_api.test.lua 1 addition, 1 deletiontest/app-tap/module_api.test.lua
- test/app-tap/uri.test.lua 1 addition, 23 deletionstest/app-tap/uri.test.lua
- test/app/buffer.result 0 additions, 17 deletionstest/app/buffer.result
- test/app/buffer.test.lua 0 additions, 9 deletionstest/app/buffer.test.lua
Loading
Please register or sign in to comment