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