lauxlib.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. /*
  2. ** $Id: lauxlib.c,v 1.151 2005/08/26 17:36:32 roberto Exp roberto $
  3. ** Auxiliary functions for building Lua libraries
  4. ** See Copyright Notice in lua.h
  5. */
  6. #include <ctype.h>
  7. #include <errno.h>
  8. #include <stdarg.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. /* This file uses only the official API of Lua.
  13. ** Any function declared here could be written as an application function.
  14. */
  15. #define lauxlib_c
  16. #define LUA_LIB
  17. #include "lua.h"
  18. #include "lauxlib.h"
  19. #define FREELIST_REF 0 /* free list of references */
  20. /* convert a stack index to positive */
  21. #define abs_index(L, i) ((i) > 0 || (i) <= LUA_REGISTRYINDEX ? (i) : \
  22. lua_gettop(L) + (i) + 1)
  23. /*
  24. ** {======================================================
  25. ** Error-report functions
  26. ** =======================================================
  27. */
  28. LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) {
  29. lua_Debug ar;
  30. if (!lua_getstack(L, 0, &ar)) /* no stack frame? */
  31. return luaL_error(L, "bad argument #%d (%s)", narg, extramsg);
  32. lua_getinfo(L, "n", &ar);
  33. if (strcmp(ar.namewhat, "method") == 0) {
  34. narg--; /* do not count `self' */
  35. if (narg == 0) /* error is in the self argument itself? */
  36. return luaL_error(L, "calling " LUA_QS " on bad self (%s)",
  37. ar.name, extramsg);
  38. }
  39. if (ar.name == NULL)
  40. ar.name = "?";
  41. return luaL_error(L, "bad argument #%d to " LUA_QS " (%s)",
  42. narg, ar.name, extramsg);
  43. }
  44. LUALIB_API int luaL_typerror (lua_State *L, int narg, const char *tname) {
  45. const char *msg = lua_pushfstring(L, "%s expected, got %s",
  46. tname, luaL_typename(L, narg));
  47. return luaL_argerror(L, narg, msg);
  48. }
  49. static void tag_error (lua_State *L, int narg, int tag) {
  50. luaL_typerror(L, narg, lua_typename(L, tag));
  51. }
  52. LUALIB_API void luaL_where (lua_State *L, int level) {
  53. lua_Debug ar;
  54. if (lua_getstack(L, level, &ar)) { /* check function at level */
  55. lua_getinfo(L, "Sl", &ar); /* get info about it */
  56. if (ar.currentline > 0) { /* is there info? */
  57. lua_pushfstring(L, "%s:%d: ", ar.short_src, ar.currentline);
  58. return;
  59. }
  60. }
  61. lua_pushliteral(L, ""); /* else, no information available... */
  62. }
  63. LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
  64. va_list argp;
  65. va_start(argp, fmt);
  66. luaL_where(L, 1);
  67. lua_pushvfstring(L, fmt, argp);
  68. va_end(argp);
  69. lua_concat(L, 2);
  70. return lua_error(L);
  71. }
  72. /* }====================================================== */
  73. LUALIB_API int luaL_checkoption (lua_State *L, int narg, const char *def,
  74. const char *const lst[]) {
  75. const char *name = (def) ? luaL_optstring(L, narg, def) :
  76. luaL_checkstring(L, narg);
  77. int i;
  78. for (i=0; lst[i]; i++)
  79. if (strcmp(lst[i], name) == 0)
  80. return i;
  81. return luaL_argerror(L, narg,
  82. lua_pushfstring(L, "invalid option " LUA_QS, name));
  83. }
  84. LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname) {
  85. lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get registry.name */
  86. if (!lua_isnil(L, -1)) /* name already in use? */
  87. return 0; /* leave previous value on top, but return 0 */
  88. lua_pop(L, 1);
  89. lua_newtable(L); /* create metatable */
  90. lua_pushvalue(L, -1);
  91. lua_setfield(L, LUA_REGISTRYINDEX, tname); /* registry.name = metatable */
  92. return 1;
  93. }
  94. LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) {
  95. void *p = lua_touserdata(L, ud);
  96. lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get correct metatable */
  97. if (p == NULL || !lua_getmetatable(L, ud) || !lua_rawequal(L, -1, -2))
  98. luaL_typerror(L, ud, tname);
  99. lua_pop(L, 2); /* remove both metatables */
  100. return p;
  101. }
  102. LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes) {
  103. if (!lua_checkstack(L, space))
  104. luaL_error(L, "stack overflow (%s)", mes);
  105. }
  106. LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) {
  107. if (lua_type(L, narg) != t)
  108. tag_error(L, narg, t);
  109. }
  110. LUALIB_API void luaL_checkany (lua_State *L, int narg) {
  111. if (lua_type(L, narg) == LUA_TNONE)
  112. luaL_argerror(L, narg, "value expected");
  113. }
  114. LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) {
  115. const char *s = lua_tolstring(L, narg, len);
  116. if (!s) tag_error(L, narg, LUA_TSTRING);
  117. return s;
  118. }
  119. LUALIB_API const char *luaL_optlstring (lua_State *L, int narg,
  120. const char *def, size_t *len) {
  121. if (lua_isnoneornil(L, narg)) {
  122. if (len)
  123. *len = (def ? strlen(def) : 0);
  124. return def;
  125. }
  126. else return luaL_checklstring(L, narg, len);
  127. }
  128. LUALIB_API lua_Number luaL_checknumber (lua_State *L, int narg) {
  129. lua_Number d = lua_tonumber(L, narg);
  130. if (d == 0 && !lua_isnumber(L, narg)) /* avoid extra test when d is not 0 */
  131. tag_error(L, narg, LUA_TNUMBER);
  132. return d;
  133. }
  134. LUALIB_API lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number def) {
  135. if (lua_isnoneornil(L, narg)) return def;
  136. else return luaL_checknumber(L, narg);
  137. }
  138. LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int narg) {
  139. lua_Integer d = lua_tointeger(L, narg);
  140. if (d == 0 && !lua_isnumber(L, narg)) /* avoid extra test when d is not 0 */
  141. tag_error(L, narg, LUA_TNUMBER);
  142. return d;
  143. }
  144. LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int narg,
  145. lua_Integer def) {
  146. if (lua_isnoneornil(L, narg)) return def;
  147. else return luaL_checkinteger(L, narg);
  148. }
  149. LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *event) {
  150. if (!lua_getmetatable(L, obj)) /* no metatable? */
  151. return 0;
  152. lua_getfield(L, -1, event);
  153. if (lua_isnil(L, -1)) {
  154. lua_pop(L, 2); /* remove metatable and metafield */
  155. return 0;
  156. }
  157. else {
  158. lua_remove(L, -2); /* remove only metatable */
  159. return 1;
  160. }
  161. }
  162. LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) {
  163. obj = abs_index(L, obj);
  164. if (!luaL_getmetafield(L, obj, event)) /* no metafield? */
  165. return 0;
  166. lua_pushvalue(L, obj);
  167. lua_call(L, 1, 1);
  168. return 1;
  169. }
  170. LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
  171. const luaL_Reg *l) {
  172. luaI_openlib(L, libname, l, 0);
  173. }
  174. LUALIB_API void luaI_openlib (lua_State *L, const char *libname,
  175. const luaL_Reg *l, int nup) {
  176. if (libname) {
  177. /* check whether lib already exists */
  178. lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED");
  179. lua_getfield(L, -1, libname); /* get _LOADED[libname] */
  180. if (!lua_istable(L, -1)) { /* not found? */
  181. lua_pop(L, 1); /* remove previous result */
  182. /* try global variable (and create one if it does not exist) */
  183. if (luaL_findtable(L, LUA_GLOBALSINDEX, libname) != NULL)
  184. luaL_error(L, "name conflict for module " LUA_QS, libname);
  185. lua_pushvalue(L, -1);
  186. lua_setfield(L, -3, libname); /* _LOADED[libname] = new table */
  187. }
  188. lua_remove(L, -2); /* remove _LOADED table */
  189. lua_insert(L, -(nup+1)); /* move library table to below upvalues */
  190. }
  191. for (; l->name; l++) {
  192. int i;
  193. for (i=0; i<nup; i++) /* copy upvalues to the top */
  194. lua_pushvalue(L, -nup);
  195. lua_pushcclosure(L, l->func, nup);
  196. lua_setfield(L, -(nup+2), l->name);
  197. }
  198. lua_pop(L, nup); /* remove upvalues */
  199. }
  200. /*
  201. ** {======================================================
  202. ** getn-setn: size for arrays
  203. ** =======================================================
  204. */
  205. #if defined(LUA_COMPAT_GETN)
  206. static int checkint (lua_State *L, int topop) {
  207. int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1;
  208. lua_pop(L, topop);
  209. return n;
  210. }
  211. static void getsizes (lua_State *L) {
  212. lua_getfield(L, LUA_REGISTRYINDEX, "LUA_SIZES");
  213. if (lua_isnil(L, -1)) { /* no `size' table? */
  214. lua_pop(L, 1); /* remove nil */
  215. lua_newtable(L); /* create it */
  216. lua_pushvalue(L, -1); /* `size' will be its own metatable */
  217. lua_setmetatable(L, -2);
  218. lua_pushliteral(L, "kv");
  219. lua_setfield(L, -2, "__mode"); /* metatable(N).__mode = "kv" */
  220. lua_pushvalue(L, -1);
  221. lua_setfield(L, LUA_REGISTRYINDEX, "LUA_SIZES"); /* store in register */
  222. }
  223. }
  224. LUALIB_API void luaL_setn (lua_State *L, int t, int n) {
  225. t = abs_index(L, t);
  226. getsizes(L);
  227. lua_pushvalue(L, t);
  228. lua_pushinteger(L, n);
  229. lua_rawset(L, -3); /* sizes[t] = n */
  230. lua_pop(L, 1); /* remove `sizes' */
  231. }
  232. LUALIB_API int luaL_getn (lua_State *L, int t) {
  233. int n;
  234. t = abs_index(L, t);
  235. getsizes(L); /* try sizes[t] */
  236. lua_pushvalue(L, t);
  237. lua_rawget(L, -2);
  238. if ((n = checkint(L, 2)) >= 0) return n;
  239. lua_getfield(L, t, "n"); /* else try t.n */
  240. if ((n = checkint(L, 1)) >= 0) return n;
  241. return lua_objlen(L, t);
  242. }
  243. #endif
  244. /* }====================================================== */
  245. LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p,
  246. const char *r) {
  247. const char *wild;
  248. size_t l = strlen(p);
  249. luaL_Buffer b;
  250. luaL_buffinit(L, &b);
  251. while ((wild = strstr(s, p)) != NULL) {
  252. luaL_addlstring(&b, s, wild - s); /* push prefix */
  253. luaL_addstring(&b, r); /* push replacement in place of pattern */
  254. s = wild + l; /* continue after `p' */
  255. }
  256. luaL_addstring(&b, s); /* push last suffix */
  257. luaL_pushresult(&b);
  258. return lua_tostring(L, -1);
  259. }
  260. LUALIB_API const char *luaL_findtable (lua_State *L, int idx,
  261. const char *fname) {
  262. const char *e;
  263. lua_pushvalue(L, idx);
  264. do {
  265. e = strchr(fname, '.');
  266. if (e == NULL) e = fname + strlen(fname);
  267. lua_pushlstring(L, fname, e - fname);
  268. lua_rawget(L, -2);
  269. if (lua_isnil(L, -1)) { /* no such field? */
  270. lua_pop(L, 1); /* remove this nil */
  271. lua_newtable(L); /* create a new table for field */
  272. lua_pushlstring(L, fname, e - fname);
  273. lua_pushvalue(L, -2);
  274. lua_settable(L, -4); /* set new table into field */
  275. }
  276. else if (!lua_istable(L, -1)) { /* field has a non-table value? */
  277. lua_pop(L, 2); /* remove table and value */
  278. return fname; /* return problematic part of the name */
  279. }
  280. lua_remove(L, -2); /* remove previous table */
  281. fname = e + 1;
  282. } while (*e == '.');
  283. return NULL;
  284. }
  285. /*
  286. ** {======================================================
  287. ** Generic Buffer manipulation
  288. ** =======================================================
  289. */
  290. #define bufflen(B) ((B)->p - (B)->buffer)
  291. #define bufffree(B) ((size_t)(LUAL_BUFFERSIZE - bufflen(B)))
  292. #define LIMIT (LUA_MINSTACK/2)
  293. static int emptybuffer (luaL_Buffer *B) {
  294. size_t l = bufflen(B);
  295. if (l == 0) return 0; /* put nothing on stack */
  296. else {
  297. lua_pushlstring(B->L, B->buffer, l);
  298. B->p = B->buffer;
  299. B->lvl++;
  300. return 1;
  301. }
  302. }
  303. static void adjuststack (luaL_Buffer *B) {
  304. if (B->lvl > 1) {
  305. lua_State *L = B->L;
  306. int toget = 1; /* number of levels to concat */
  307. size_t toplen = lua_strlen(L, -1);
  308. do {
  309. size_t l = lua_strlen(L, -(toget+1));
  310. if (B->lvl - toget + 1 >= LIMIT || toplen > l) {
  311. toplen += l;
  312. toget++;
  313. }
  314. else break;
  315. } while (toget < B->lvl);
  316. lua_concat(L, toget);
  317. B->lvl = B->lvl - toget + 1;
  318. }
  319. }
  320. LUALIB_API char *luaL_prepbuffer (luaL_Buffer *B) {
  321. if (emptybuffer(B))
  322. adjuststack(B);
  323. return B->buffer;
  324. }
  325. LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {
  326. while (l--)
  327. luaL_addchar(B, *s++);
  328. }
  329. LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) {
  330. luaL_addlstring(B, s, strlen(s));
  331. }
  332. LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
  333. emptybuffer(B);
  334. lua_concat(B->L, B->lvl);
  335. B->lvl = 1;
  336. }
  337. LUALIB_API void luaL_addvalue (luaL_Buffer *B) {
  338. lua_State *L = B->L;
  339. size_t vl;
  340. const char *s = lua_tolstring(L, -1, &vl);
  341. if (vl <= bufffree(B)) { /* fit into buffer? */
  342. memcpy(B->p, s, vl); /* put it there */
  343. B->p += vl;
  344. lua_pop(L, 1); /* remove from stack */
  345. }
  346. else {
  347. if (emptybuffer(B))
  348. lua_insert(L, -2); /* put buffer before new value */
  349. B->lvl++; /* add new value into B stack */
  350. adjuststack(B);
  351. }
  352. }
  353. LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
  354. B->L = L;
  355. B->p = B->buffer;
  356. B->lvl = 0;
  357. }
  358. /* }====================================================== */
  359. LUALIB_API int luaL_ref (lua_State *L, int t) {
  360. int ref;
  361. t = abs_index(L, t);
  362. if (lua_isnil(L, -1)) {
  363. lua_pop(L, 1); /* remove from stack */
  364. return LUA_REFNIL; /* `nil' has a unique fixed reference */
  365. }
  366. lua_rawgeti(L, t, FREELIST_REF); /* get first free element */
  367. ref = (int)lua_tointeger(L, -1); /* ref = t[FREELIST_REF] */
  368. lua_pop(L, 1); /* remove it from stack */
  369. if (ref != 0) { /* any free element? */
  370. lua_rawgeti(L, t, ref); /* remove it from list */
  371. lua_rawseti(L, t, FREELIST_REF); /* (t[FREELIST_REF] = t[ref]) */
  372. }
  373. else { /* no free elements */
  374. ref = lua_objlen(L, t);
  375. ref++; /* create new reference */
  376. }
  377. lua_rawseti(L, t, ref);
  378. return ref;
  379. }
  380. LUALIB_API void luaL_unref (lua_State *L, int t, int ref) {
  381. if (ref >= 0) {
  382. t = abs_index(L, t);
  383. lua_rawgeti(L, t, FREELIST_REF);
  384. lua_rawseti(L, t, ref); /* t[ref] = t[FREELIST_REF] */
  385. lua_pushinteger(L, ref);
  386. lua_rawseti(L, t, FREELIST_REF); /* t[FREELIST_REF] = ref */
  387. }
  388. }
  389. /*
  390. ** {======================================================
  391. ** Load functions
  392. ** =======================================================
  393. */
  394. typedef struct LoadF {
  395. int extraline;
  396. FILE *f;
  397. char buff[LUAL_BUFFERSIZE];
  398. } LoadF;
  399. static const char *getF (lua_State *L, void *ud, size_t *size) {
  400. LoadF *lf = (LoadF *)ud;
  401. (void)L;
  402. if (lf->extraline) {
  403. lf->extraline = 0;
  404. *size = 1;
  405. return "\n";
  406. }
  407. if (feof(lf->f)) return NULL;
  408. *size = fread(lf->buff, 1, LUAL_BUFFERSIZE, lf->f);
  409. return (*size > 0) ? lf->buff : NULL;
  410. }
  411. static int errfile (lua_State *L, const char *what, int fnameindex) {
  412. const char *serr = strerror(errno);
  413. const char *filename = lua_tostring(L, fnameindex) + 1;
  414. lua_pushfstring(L, "cannot %s %s: %s", what, filename, serr);
  415. lua_remove(L, fnameindex);
  416. return LUA_ERRFILE;
  417. }
  418. LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
  419. LoadF lf;
  420. int status, readstatus;
  421. int c;
  422. int fnameindex = lua_gettop(L) + 1; /* index of filename on the stack */
  423. lf.extraline = 0;
  424. if (filename == NULL) {
  425. lua_pushliteral(L, "=stdin");
  426. lf.f = stdin;
  427. }
  428. else {
  429. lua_pushfstring(L, "@%s", filename);
  430. lf.f = fopen(filename, "r");
  431. if (lf.f == NULL) return errfile(L, "open", fnameindex);
  432. }
  433. c = getc(lf.f);
  434. if (c == '#') { /* Unix exec. file? */
  435. lf.extraline = 1;
  436. while ((c = getc(lf.f)) != EOF && c != '\n') ; /* skip first line */
  437. if (c == '\n') c = getc(lf.f);
  438. }
  439. if (c == LUA_SIGNATURE[0] && lf.f != stdin) { /* binary file? */
  440. fclose(lf.f);
  441. lf.f = fopen(filename, "rb"); /* reopen in binary mode */
  442. if (lf.f == NULL) return errfile(L, "reopen", fnameindex);
  443. /* skip eventual `#!...' */
  444. while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ;
  445. lf.extraline = 0;
  446. }
  447. ungetc(c, lf.f);
  448. status = lua_load(L, getF, &lf, lua_tostring(L, -1));
  449. readstatus = ferror(lf.f);
  450. if (lf.f != stdin) fclose(lf.f); /* close file (even in case of errors) */
  451. if (readstatus) {
  452. lua_settop(L, fnameindex); /* ignore results from `lua_load' */
  453. return errfile(L, "read", fnameindex);
  454. }
  455. lua_remove(L, fnameindex);
  456. return status;
  457. }
  458. typedef struct LoadS {
  459. const char *s;
  460. size_t size;
  461. } LoadS;
  462. static const char *getS (lua_State *L, void *ud, size_t *size) {
  463. LoadS *ls = (LoadS *)ud;
  464. (void)L;
  465. if (ls->size == 0) return NULL;
  466. *size = ls->size;
  467. ls->size = 0;
  468. return ls->s;
  469. }
  470. LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size,
  471. const char *name) {
  472. LoadS ls;
  473. ls.s = buff;
  474. ls.size = size;
  475. return lua_load(L, getS, &ls, name);
  476. }
  477. LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) {
  478. return luaL_loadbuffer(L, s, strlen(s), s);
  479. }
  480. /* }====================================================== */
  481. static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) {
  482. (void)ud;
  483. (void)osize;
  484. if (nsize == 0) {
  485. free(ptr);
  486. return NULL;
  487. }
  488. else
  489. return realloc(ptr, nsize);
  490. }
  491. static int panic (lua_State *L) {
  492. (void)L; /* to avoid warnings */
  493. fprintf(stderr, "PANIC: unprotected error in call to Lua API (%s)\n",
  494. lua_tostring(L, -1));
  495. return 0;
  496. }
  497. LUALIB_API lua_State *luaL_newstate (void) {
  498. lua_State *L = lua_newstate(l_alloc, NULL);
  499. if (L) lua_atpanic(L, &panic);
  500. return L;
  501. }