lua.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. /*
  2. ** $Id: lua.h $
  3. ** Lua - A Scripting Language
  4. ** Lua.org, PUC-Rio, Brazil (www.lua.org)
  5. ** See Copyright Notice at the end of this file
  6. */
  7. #ifndef lua_h
  8. #define lua_h
  9. #include <stdarg.h>
  10. #include <stddef.h>
  11. #define LUA_COPYRIGHT LUA_RELEASE " Copyright (C) 1994-2025 Lua.org, PUC-Rio"
  12. #define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo, W. Celes"
  13. #define LUA_VERSION_MAJOR_N 5
  14. #define LUA_VERSION_MINOR_N 5
  15. #define LUA_VERSION_RELEASE_N 0
  16. #define LUA_VERSION_NUM (LUA_VERSION_MAJOR_N * 100 + LUA_VERSION_MINOR_N)
  17. #define LUA_VERSION_RELEASE_NUM (LUA_VERSION_NUM * 100 + LUA_VERSION_RELEASE_N)
  18. #include "luaconf.h"
  19. /* mark for precompiled code ('<esc>Lua') */
  20. #define LUA_SIGNATURE "\x1bLua"
  21. /* option for multiple returns in 'lua_pcall' and 'lua_call' */
  22. #define LUA_MULTRET (-1)
  23. /*
  24. ** Pseudo-indices
  25. ** (The stack size is limited to INT_MAX/2; we keep some free empty
  26. ** space after that to help overflow detection.)
  27. */
  28. #define LUA_REGISTRYINDEX (-(INT_MAX/2 + 1000))
  29. #define lua_upvalueindex(i) (LUA_REGISTRYINDEX - (i))
  30. /* thread status */
  31. #define LUA_OK 0
  32. #define LUA_YIELD 1
  33. #define LUA_ERRRUN 2
  34. #define LUA_ERRSYNTAX 3
  35. #define LUA_ERRMEM 4
  36. #define LUA_ERRERR 5
  37. typedef struct lua_State lua_State;
  38. /*
  39. ** basic types
  40. */
  41. #define LUA_TNONE (-1)
  42. #define LUA_TNIL 0
  43. #define LUA_TBOOLEAN 1
  44. #define LUA_TLIGHTUSERDATA 2
  45. #define LUA_TNUMBER 3
  46. #define LUA_TSTRING 4
  47. #define LUA_TTABLE 5
  48. #define LUA_TFUNCTION 6
  49. #define LUA_TUSERDATA 7
  50. #define LUA_TTHREAD 8
  51. #define LUA_NUMTYPES 9
  52. /* minimum Lua stack available to a C function */
  53. #define LUA_MINSTACK 20
  54. /* predefined values in the registry */
  55. /* index 1 is reserved for the reference mechanism */
  56. #define LUA_RIDX_GLOBALS 2
  57. #define LUA_RIDX_MAINTHREAD 3
  58. #define LUA_RIDX_LAST 3
  59. /* type of numbers in Lua */
  60. typedef LUA_NUMBER lua_Number;
  61. /* type for integer functions */
  62. typedef LUA_INTEGER lua_Integer;
  63. /* unsigned integer type */
  64. typedef LUA_UNSIGNED lua_Unsigned;
  65. /* type for continuation-function contexts */
  66. typedef LUA_KCONTEXT lua_KContext;
  67. /*
  68. ** Type for C functions registered with Lua
  69. */
  70. typedef int (*lua_CFunction) (lua_State *L);
  71. /*
  72. ** Type for continuation functions
  73. */
  74. typedef int (*lua_KFunction) (lua_State *L, int status, lua_KContext ctx);
  75. /*
  76. ** Type for functions that read/write blocks when loading/dumping Lua chunks
  77. */
  78. typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
  79. typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud);
  80. /*
  81. ** Type for memory-allocation functions
  82. */
  83. typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
  84. /*
  85. ** Type for warning functions
  86. */
  87. typedef void (*lua_WarnFunction) (void *ud, const char *msg, int tocont);
  88. /*
  89. ** Type used by the debug API to collect debug information
  90. */
  91. typedef struct lua_Debug lua_Debug;
  92. /*
  93. ** Functions to be called by the debugger in specific events
  94. */
  95. typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
  96. /*
  97. ** generic extra include file
  98. */
  99. #if defined(LUA_USER_H)
  100. #include LUA_USER_H
  101. #endif
  102. /*
  103. ** RCS ident string
  104. */
  105. extern const char lua_ident[];
  106. /*
  107. ** state manipulation
  108. */
  109. LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud, unsigned seed);
  110. LUA_API void (lua_close) (lua_State *L);
  111. LUA_API lua_State *(lua_newthread) (lua_State *L);
  112. LUA_API int (lua_closethread) (lua_State *L, lua_State *from);
  113. LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
  114. LUA_API lua_Number (lua_version) (lua_State *L);
  115. /*
  116. ** basic stack manipulation
  117. */
  118. LUA_API int (lua_absindex) (lua_State *L, int idx);
  119. LUA_API int (lua_gettop) (lua_State *L);
  120. LUA_API void (lua_settop) (lua_State *L, int idx);
  121. LUA_API void (lua_pushvalue) (lua_State *L, int idx);
  122. LUA_API void (lua_rotate) (lua_State *L, int idx, int n);
  123. LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
  124. LUA_API int (lua_checkstack) (lua_State *L, int n);
  125. LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n);
  126. /*
  127. ** access functions (stack -> C)
  128. */
  129. LUA_API int (lua_isnumber) (lua_State *L, int idx);
  130. LUA_API int (lua_isstring) (lua_State *L, int idx);
  131. LUA_API int (lua_iscfunction) (lua_State *L, int idx);
  132. LUA_API int (lua_isinteger) (lua_State *L, int idx);
  133. LUA_API int (lua_isuserdata) (lua_State *L, int idx);
  134. LUA_API int (lua_type) (lua_State *L, int idx);
  135. LUA_API const char *(lua_typename) (lua_State *L, int tp);
  136. LUA_API lua_Number (lua_tonumberx) (lua_State *L, int idx, int *isnum);
  137. LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum);
  138. LUA_API int (lua_toboolean) (lua_State *L, int idx);
  139. LUA_API const char *(lua_tolstring) (lua_State *L, int idx, size_t *len);
  140. LUA_API lua_Unsigned (lua_rawlen) (lua_State *L, int idx);
  141. LUA_API lua_CFunction (lua_tocfunction) (lua_State *L, int idx);
  142. LUA_API void *(lua_touserdata) (lua_State *L, int idx);
  143. LUA_API lua_State *(lua_tothread) (lua_State *L, int idx);
  144. LUA_API const void *(lua_topointer) (lua_State *L, int idx);
  145. /*
  146. ** Comparison and arithmetic functions
  147. */
  148. #define LUA_OPADD 0 /* ORDER TM, ORDER OP */
  149. #define LUA_OPSUB 1
  150. #define LUA_OPMUL 2
  151. #define LUA_OPMOD 3
  152. #define LUA_OPPOW 4
  153. #define LUA_OPDIV 5
  154. #define LUA_OPIDIV 6
  155. #define LUA_OPBAND 7
  156. #define LUA_OPBOR 8
  157. #define LUA_OPBXOR 9
  158. #define LUA_OPSHL 10
  159. #define LUA_OPSHR 11
  160. #define LUA_OPUNM 12
  161. #define LUA_OPBNOT 13
  162. LUA_API void (lua_arith) (lua_State *L, int op);
  163. #define LUA_OPEQ 0
  164. #define LUA_OPLT 1
  165. #define LUA_OPLE 2
  166. LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2);
  167. LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
  168. /*
  169. ** push functions (C -> stack)
  170. */
  171. LUA_API void (lua_pushnil) (lua_State *L);
  172. LUA_API void (lua_pushnumber) (lua_State *L, lua_Number n);
  173. LUA_API void (lua_pushinteger) (lua_State *L, lua_Integer n);
  174. LUA_API const char *(lua_pushlstring) (lua_State *L, const char *s, size_t len);
  175. LUA_API const char *(lua_pushexternalstring) (lua_State *L,
  176. const char *s, size_t len, lua_Alloc falloc, void *ud);
  177. LUA_API const char *(lua_pushstring) (lua_State *L, const char *s);
  178. LUA_API const char *(lua_pushvfstring) (lua_State *L, const char *fmt,
  179. va_list argp);
  180. LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...);
  181. LUA_API void (lua_pushcclosure) (lua_State *L, lua_CFunction fn, int n);
  182. LUA_API void (lua_pushboolean) (lua_State *L, int b);
  183. LUA_API void (lua_pushlightuserdata) (lua_State *L, void *p);
  184. LUA_API int (lua_pushthread) (lua_State *L);
  185. /*
  186. ** get functions (Lua -> stack)
  187. */
  188. LUA_API int (lua_getglobal) (lua_State *L, const char *name);
  189. LUA_API int (lua_gettable) (lua_State *L, int idx);
  190. LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k);
  191. LUA_API int (lua_geti) (lua_State *L, int idx, lua_Integer n);
  192. LUA_API int (lua_rawget) (lua_State *L, int idx);
  193. LUA_API int (lua_rawgeti) (lua_State *L, int idx, lua_Integer n);
  194. LUA_API int (lua_rawgetp) (lua_State *L, int idx, const void *p);
  195. LUA_API void (lua_createtable) (lua_State *L, int narr, int nrec);
  196. LUA_API void *(lua_newuserdatauv) (lua_State *L, size_t sz, int nuvalue);
  197. LUA_API int (lua_getmetatable) (lua_State *L, int objindex);
  198. LUA_API int (lua_getiuservalue) (lua_State *L, int idx, int n);
  199. /*
  200. ** set functions (stack -> Lua)
  201. */
  202. LUA_API void (lua_setglobal) (lua_State *L, const char *name);
  203. LUA_API void (lua_settable) (lua_State *L, int idx);
  204. LUA_API void (lua_setfield) (lua_State *L, int idx, const char *k);
  205. LUA_API void (lua_seti) (lua_State *L, int idx, lua_Integer n);
  206. LUA_API void (lua_rawset) (lua_State *L, int idx);
  207. LUA_API void (lua_rawseti) (lua_State *L, int idx, lua_Integer n);
  208. LUA_API void (lua_rawsetp) (lua_State *L, int idx, const void *p);
  209. LUA_API int (lua_setmetatable) (lua_State *L, int objindex);
  210. LUA_API int (lua_setiuservalue) (lua_State *L, int idx, int n);
  211. /*
  212. ** 'load' and 'call' functions (load and run Lua code)
  213. */
  214. LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults,
  215. lua_KContext ctx, lua_KFunction k);
  216. #define lua_call(L,n,r) lua_callk(L, (n), (r), 0, NULL)
  217. LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
  218. lua_KContext ctx, lua_KFunction k);
  219. #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL)
  220. LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt,
  221. const char *chunkname, const char *mode);
  222. LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip);
  223. /*
  224. ** coroutine functions
  225. */
  226. LUA_API int (lua_yieldk) (lua_State *L, int nresults, lua_KContext ctx,
  227. lua_KFunction k);
  228. LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg,
  229. int *nres);
  230. LUA_API int (lua_status) (lua_State *L);
  231. LUA_API int (lua_isyieldable) (lua_State *L);
  232. #define lua_yield(L,n) lua_yieldk(L, (n), 0, NULL)
  233. /*
  234. ** Warning-related functions
  235. */
  236. LUA_API void (lua_setwarnf) (lua_State *L, lua_WarnFunction f, void *ud);
  237. LUA_API void (lua_warning) (lua_State *L, const char *msg, int tocont);
  238. /*
  239. ** garbage-collection options
  240. */
  241. #define LUA_GCSTOP 0
  242. #define LUA_GCRESTART 1
  243. #define LUA_GCCOLLECT 2
  244. #define LUA_GCCOUNT 3
  245. #define LUA_GCCOUNTB 4
  246. #define LUA_GCSTEP 5
  247. #define LUA_GCISRUNNING 6
  248. #define LUA_GCGEN 7
  249. #define LUA_GCINC 8
  250. #define LUA_GCPARAM 9
  251. /*
  252. ** garbage-collection parameters
  253. */
  254. /* parameters for generational mode */
  255. #define LUA_GCPMINORMUL 0 /* control minor collections */
  256. #define LUA_GCPMAJORMINOR 1 /* control shift major->minor */
  257. #define LUA_GCPMINORMAJOR 2 /* control shift minor->major */
  258. /* parameters for incremental mode */
  259. #define LUA_GCPPAUSE 3 /* size of pause between successive GCs */
  260. #define LUA_GCPSTEPMUL 4 /* GC "speed" */
  261. #define LUA_GCPSTEPSIZE 5 /* GC granularity */
  262. /* number of parameters */
  263. #define LUA_GCPN 6
  264. LUA_API int (lua_gc) (lua_State *L, int what, ...);
  265. /*
  266. ** miscellaneous functions
  267. */
  268. LUA_API int (lua_error) (lua_State *L);
  269. LUA_API int (lua_next) (lua_State *L, int idx);
  270. LUA_API void (lua_concat) (lua_State *L, int n);
  271. LUA_API void (lua_len) (lua_State *L, int idx);
  272. #define LUA_N2SBUFFSZ 64
  273. LUA_API unsigned (lua_numbertocstring) (lua_State *L, int idx, char *buff);
  274. LUA_API size_t (lua_stringtonumber) (lua_State *L, const char *s);
  275. LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
  276. LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
  277. LUA_API void (lua_toclose) (lua_State *L, int idx);
  278. LUA_API void (lua_closeslot) (lua_State *L, int idx);
  279. /*
  280. ** {==============================================================
  281. ** some useful macros
  282. ** ===============================================================
  283. */
  284. #define lua_getextraspace(L) ((void *)((char *)(L) - LUA_EXTRASPACE))
  285. #define lua_tonumber(L,i) lua_tonumberx(L,(i),NULL)
  286. #define lua_tointeger(L,i) lua_tointegerx(L,(i),NULL)
  287. #define lua_pop(L,n) lua_settop(L, -(n)-1)
  288. #define lua_newtable(L) lua_createtable(L, 0, 0)
  289. #define lua_register(L,n,f) (lua_pushcfunction(L, (f)), lua_setglobal(L, (n)))
  290. #define lua_pushcfunction(L,f) lua_pushcclosure(L, (f), 0)
  291. #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION)
  292. #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE)
  293. #define lua_islightuserdata(L,n) (lua_type(L, (n)) == LUA_TLIGHTUSERDATA)
  294. #define lua_isnil(L,n) (lua_type(L, (n)) == LUA_TNIL)
  295. #define lua_isboolean(L,n) (lua_type(L, (n)) == LUA_TBOOLEAN)
  296. #define lua_isthread(L,n) (lua_type(L, (n)) == LUA_TTHREAD)
  297. #define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE)
  298. #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0)
  299. #define lua_pushliteral(L, s) lua_pushstring(L, "" s)
  300. #define lua_pushglobaltable(L) \
  301. ((void)lua_rawgeti(L, LUA_REGISTRYINDEX, LUA_RIDX_GLOBALS))
  302. #define lua_tostring(L,i) lua_tolstring(L, (i), NULL)
  303. #define lua_insert(L,idx) lua_rotate(L, (idx), 1)
  304. #define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1))
  305. #define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
  306. /* }============================================================== */
  307. /*
  308. ** {==============================================================
  309. ** compatibility macros
  310. ** ===============================================================
  311. */
  312. #if defined(LUA_COMPAT_APIINTCASTS)
  313. #define lua_pushunsigned(L,n) lua_pushinteger(L, (lua_Integer)(n))
  314. #define lua_tounsignedx(L,i,is) ((lua_Unsigned)lua_tointegerx(L,i,is))
  315. #define lua_tounsigned(L,i) lua_tounsignedx(L,(i),NULL)
  316. #endif
  317. #define lua_newuserdata(L,s) lua_newuserdatauv(L,s,1)
  318. #define lua_getuservalue(L,idx) lua_getiuservalue(L,idx,1)
  319. #define lua_setuservalue(L,idx) lua_setiuservalue(L,idx,1)
  320. #define lua_resetthread(L) lua_closethread(L,NULL)
  321. /* }============================================================== */
  322. /*
  323. ** {======================================================================
  324. ** Debug API
  325. ** =======================================================================
  326. */
  327. /*
  328. ** Event codes
  329. */
  330. #define LUA_HOOKCALL 0
  331. #define LUA_HOOKRET 1
  332. #define LUA_HOOKLINE 2
  333. #define LUA_HOOKCOUNT 3
  334. #define LUA_HOOKTAILCALL 4
  335. /*
  336. ** Event masks
  337. */
  338. #define LUA_MASKCALL (1 << LUA_HOOKCALL)
  339. #define LUA_MASKRET (1 << LUA_HOOKRET)
  340. #define LUA_MASKLINE (1 << LUA_HOOKLINE)
  341. #define LUA_MASKCOUNT (1 << LUA_HOOKCOUNT)
  342. LUA_API int (lua_getstack) (lua_State *L, int level, lua_Debug *ar);
  343. LUA_API int (lua_getinfo) (lua_State *L, const char *what, lua_Debug *ar);
  344. LUA_API const char *(lua_getlocal) (lua_State *L, const lua_Debug *ar, int n);
  345. LUA_API const char *(lua_setlocal) (lua_State *L, const lua_Debug *ar, int n);
  346. LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n);
  347. LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n);
  348. LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n);
  349. LUA_API void (lua_upvaluejoin) (lua_State *L, int fidx1, int n1,
  350. int fidx2, int n2);
  351. LUA_API void (lua_sethook) (lua_State *L, lua_Hook func, int mask, int count);
  352. LUA_API lua_Hook (lua_gethook) (lua_State *L);
  353. LUA_API int (lua_gethookmask) (lua_State *L);
  354. LUA_API int (lua_gethookcount) (lua_State *L);
  355. struct lua_Debug {
  356. int event;
  357. const char *name; /* (n) */
  358. const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
  359. const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
  360. const char *source; /* (S) */
  361. size_t srclen; /* (S) */
  362. int currentline; /* (l) */
  363. int linedefined; /* (S) */
  364. int lastlinedefined; /* (S) */
  365. unsigned char nups; /* (u) number of upvalues */
  366. unsigned char nparams;/* (u) number of parameters */
  367. char isvararg; /* (u) */
  368. unsigned char extraargs; /* (t) number of extra arguments */
  369. char istailcall; /* (t) */
  370. int ftransfer; /* (r) index of first value transferred */
  371. int ntransfer; /* (r) number of transferred values */
  372. char short_src[LUA_IDSIZE]; /* (S) */
  373. /* private part */
  374. struct CallInfo *i_ci; /* active function */
  375. };
  376. /* }====================================================================== */
  377. #define LUAI_TOSTRAUX(x) #x
  378. #define LUAI_TOSTR(x) LUAI_TOSTRAUX(x)
  379. #define LUA_VERSION_MAJOR LUAI_TOSTR(LUA_VERSION_MAJOR_N)
  380. #define LUA_VERSION_MINOR LUAI_TOSTR(LUA_VERSION_MINOR_N)
  381. #define LUA_VERSION_RELEASE LUAI_TOSTR(LUA_VERSION_RELEASE_N)
  382. #define LUA_VERSION "Lua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR
  383. #define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE
  384. /******************************************************************************
  385. * Copyright (C) 1994-2025 Lua.org, PUC-Rio.
  386. *
  387. * Permission is hereby granted, free of charge, to any person obtaining
  388. * a copy of this software and associated documentation files (the
  389. * "Software"), to deal in the Software without restriction, including
  390. * without limitation the rights to use, copy, modify, merge, publish,
  391. * distribute, sublicense, and/or sell copies of the Software, and to
  392. * permit persons to whom the Software is furnished to do so, subject to
  393. * the following conditions:
  394. *
  395. * The above copyright notice and this permission notice shall be
  396. * included in all copies or substantial portions of the Software.
  397. *
  398. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  399. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  400. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  401. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  402. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  403. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  404. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  405. ******************************************************************************/
  406. #endif