Lua-5.3-style APIs for Lua 5.2 and 5.1.
This is a small module that aims to make it easier to write code in a Lua-5.3-style that is compatible with Lua 5.1, Lua 5.2, and Lua 5.3. This does not make Lua 5.2 (or even Lua 5.1) entirely compatible with Lua 5.3, but it brings the API closer to that of Lua 5.3.
It includes:
- For writing Lua: The Lua module
compat53, which can be require'd from Lua scripts and run in Lua 5.1, 5.2, and 5.3, including a backport of theutf8module, the 5.3tablemodule, and the string packing functions straight from the Lua 5.3 sources. - For writing C: A C header and file which can be linked to your Lua module written in C, providing some functions from the C API of Lua 5.3 that do not exist in Lua 5.2 or 5.1, making it easier to write C code that compiles with all three versions of liblua.
require("compat53")compat53 makes changes to your global environment and does not return
a meaningful return value, so the usual idiom of storing the return of
require in a local variable makes no sense.
When run under Lua 5.3+, this module does nothing.
When run under Lua 5.2 or 5.1, it replaces some of your standard
functions and adds new ones to bring your environment closer to that
of Lua 5.3. It also tries to load the backported utf8, table, and
string packing modules automatically. If unsuccessful, pure Lua
versions of the new table functions are used as a fallback, and
Roberto's struct library is tried for string packing.
local _ENV = require("compat53.module")
if setfenv then setfenv(1, _ENV) endThe compat53.module module does not modify the global environment,
and so it is safe to use in modules without affecting other Lua files.
It is supposed to be set as the current environment (see above), i.e.
cherry picking individual functions from this module is expressly
not supported!). Not all features are available when using this
module (e.g. yieldable (x)pcall support, string/file methods, etc.),
so it is recommended to use plain require("compat53") whenever
possible.
There are two ways of adding the C API compatibility functions/macros to your project:
- If
COMPAT53_PREFIXis not#defined,compat-5.3.h#includescompat-5.3.c, and all functions are madestatic. You don't have to compile/link/addcompat-5.3.cyourself. This is useful for one-file projects. - If
COMPAT53_PREFIXis#defined, all exported functions are renamed behind the scenes using this prefix to avoid linker conflicts with other code using this package. This doesn't change the way you call the compatibility functions in your code. You have to compile and linkcompat-5.3.cto your project yourself. You can change the way the functions are exported using theCOMPAT53_APImacro (e.g. if you need some__declspecmagic). While it is technically possible to use the "lua" prefix (and it looks better in the debugger), this is discouraged because LuaJIT has started to implement its own Lua 5.2+ C API functions, and with the "lua" prefix you'd violate the one-definition rule with recent LuaJIT versions.
- the
utf8module backported from the Lua 5.3 sources string.pack,string.packsize, andstring.unpackfrom the Lua 5.3 sources or from thestructmodule. (structis not 100% compatible to Lua 5.3's string packing!) (See here)math.maxintegerandmath.mininteger,math.tointeger,math.type, andmath.ult(see here)assertaccepts non-string error messagesipairsrespects__indexmetamethodtable.movetablelibrary respects metamethods
For Lua 5.1 additionally:
loadandloadfileacceptmodeandenvparameterstable.packandtable.unpack- string patterns may contain embedded zeros (but see here)
string.repacceptssepargumentstring.formatcallstostringon arguments for%smath.logaccepts base argumentxpcalltakes additional argumentspcallandxpcallcan execute functions that yield (see here for a possible problem withcoroutine.running)pairsrespects__pairsmetamethod (see here)rawlen(but#still doesn't respect__lenfor tables)package.searchersas alias forpackage.loaderspackage.searchpath(see here)coroutinefunctions dealing with the main coroutine (see here for a possible problem withcoroutine.running)coroutine.createaccepts functions written in C- return code of
os.execute(see here) io.writeandfile:writereturn file handleio.linesandfile:linesaccept format arguments (likeio.read) (see here and here)file:closereturns three results when a process is opened withio.popendebug.setmetatablereturns objectdebug.getuservalue(see here)debug.setuservalue(see here)
lua_KContext(see here)lua_KFunction(see here)lua_dump(extrastripparameter, ignored, see here)lua_getextraspace(limited compatibilitiy, see here)lua_getfield(return value)lua_getiandlua_setilua_getglobal(return value)lua_getmetafield(return value)lua_gettable(return value)lua_getuservalue(limited compatibility, see here)lua_setuservalue(limited compatibility, see here)lua_isintegerlua_numbertointegerlua_callkandlua_pcallk(limited compatibility, see here)lua_resumelua_rawgetandlua_rawgeti(return values)lua_rawgetpandlua_rawsetpluaL_requiref(now checkspackage.loadedfirst)lua_rotatelua_stringtonumber(see here)
For Lua 5.1 additionally:
LUA_OKLUA_ERRGCMMLUA_OP*macros forlua_arithandlua_compareLUA_FILEHANDLElua_UnsignedluaL_Stream(limited compatibility, see here)lua_absindexlua_arith(see here)lua_comparelua_len,lua_rawlen, andluaL_lenlua_load(mode argument)lua_pushstring,lua_pushlstring(return value)lua_copylua_pushglobaltableluaL_testudataluaL_setfuncs,luaL_newlibtable, andluaL_newlibluaL_setmetatableluaL_getsubtableluaL_tracebackluaL_execresultluaL_fileresultluaL_loadbufferxluaL_loadfilexluaL_checkversion(with empty body, only to avoid compile errors, see here)luaL_tolstringluaL_buffinitsize,luaL_prepbuffsize, andluaL_pushresultsize(see here)lua_pushunsigned,lua_tounsignedx,lua_tounsigned,luaL_checkunsigned,luaL_optunsigned, ifLUA_COMPAT_APIINTCASTSis defined.
- bit operators
- integer division operator
- utf8 escape sequences
- 64 bit integers
coroutine.isyieldable- Lua 5.1:
_ENV,goto, labels, ephemeron tables, etc. Seelua-compat-5.2for a detailed list. - the following C API functions/macros:
lua_isyieldablelua_arith(new operators missing)lua_push(v)fstring(new formats missing)lua_upvalueid(5.1)lua_upvaluejoin(5.1)lua_version(5.1)lua_yieldk(5.1)
- For Lua-5.2-style APIs under Lua 5.1, see lua-compat-5.2, which also is the basis for most of the code in this project.
- For Lua-5.1-style APIs under Lua 5.0, see Compat-5.1
This package contains code written by:
- The Lua Team
- Philipp Janda (@siffiejoe)
- Tomás Guisasola Gorham (@tomasguisasola)
- Hisham Muhammad (@hishamhm)
- Renato Maia (@renatomaia)
- @ThePhD
- @Daurnimator