lbaselib.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. /*
  2. ** $Id: lbaselib.c,v 1.97 2002/08/08 20:08:41 roberto Exp roberto $
  3. ** Basic library
  4. ** See Copyright Notice in lua.h
  5. */
  6. #include <ctype.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include "lua.h"
  11. #include "lauxlib.h"
  12. #include "lualib.h"
  13. /*
  14. ** If your system does not support `stdout', you can just remove this function.
  15. ** If you need, you can define your own `print' function, following this
  16. ** model but changing `fputs' to put the strings at a proper place
  17. ** (a console window or a log file, for instance).
  18. */
  19. static int luaB_print (lua_State *L) {
  20. int n = lua_gettop(L); /* number of arguments */
  21. int i;
  22. lua_getglobal(L, "tostring");
  23. for (i=1; i<=n; i++) {
  24. const char *s;
  25. lua_pushvalue(L, -1); /* function to be called */
  26. lua_pushvalue(L, i); /* value to print */
  27. lua_call(L, 1, 1);
  28. s = lua_tostring(L, -1); /* get result */
  29. if (s == NULL)
  30. return luaL_error(L, "`tostring' must return a string to `print'");
  31. if (i>1) fputs("\t", stdout);
  32. fputs(s, stdout);
  33. lua_pop(L, 1); /* pop result */
  34. }
  35. fputs("\n", stdout);
  36. return 0;
  37. }
  38. static int luaB_tonumber (lua_State *L) {
  39. int base = luaL_opt_int(L, 2, 10);
  40. if (base == 10) { /* standard conversion */
  41. luaL_check_any(L, 1);
  42. if (lua_isnumber(L, 1)) {
  43. lua_pushnumber(L, lua_tonumber(L, 1));
  44. return 1;
  45. }
  46. }
  47. else {
  48. const char *s1 = luaL_check_string(L, 1);
  49. char *s2;
  50. unsigned long n;
  51. luaL_arg_check(L, 2 <= base && base <= 36, 2, "base out of range");
  52. n = strtoul(s1, &s2, base);
  53. if (s1 != s2) { /* at least one valid digit? */
  54. while (isspace((unsigned char)(*s2))) s2++; /* skip trailing spaces */
  55. if (*s2 == '\0') { /* no invalid trailing characters? */
  56. lua_pushnumber(L, n);
  57. return 1;
  58. }
  59. }
  60. }
  61. lua_pushnil(L); /* else not a number */
  62. return 1;
  63. }
  64. static int luaB_error (lua_State *L) {
  65. int level = luaL_opt_int(L, 2, 1);
  66. luaL_check_any(L, 1);
  67. if (!lua_isstring(L, 1) || level == 0)
  68. lua_pushvalue(L, 1); /* propagate error mesage without changes */
  69. else { /* add extra information */
  70. luaL_where(L, level);
  71. lua_pushvalue(L, 1);
  72. lua_concat(L, 2);
  73. }
  74. return lua_error(L);
  75. }
  76. static int luaB_getmode (lua_State *L) {
  77. luaL_check_type(L, 1, LUA_TTABLE);
  78. lua_pushstring(L, lua_getmode(L, 1));
  79. return 1;
  80. }
  81. static int luaB_setmode (lua_State *L) {
  82. luaL_check_type(L, 1, LUA_TTABLE);
  83. lua_setmode(L, 1, luaL_check_string(L, 2));
  84. lua_settop(L, 1);
  85. return 1;
  86. }
  87. static int luaB_getmetatable (lua_State *L) {
  88. luaL_check_any(L, 1);
  89. if (!lua_getmetatable(L, 1)) {
  90. lua_pushnil(L);
  91. return 1; /* no metatable */
  92. }
  93. else {
  94. lua_pushliteral(L, "__metatable");
  95. lua_rawget(L, -2);
  96. if (lua_isnil(L, -1))
  97. lua_pop(L, 1);
  98. /* otherwise returns metatable.__metatable */
  99. }
  100. return 1;
  101. }
  102. static int luaB_setmetatable (lua_State *L) {
  103. int t = lua_type(L, 2);
  104. luaL_check_type(L, 1, LUA_TTABLE);
  105. luaL_arg_check(L, t == LUA_TNIL || t == LUA_TTABLE, 2,
  106. "nil or table expected");
  107. lua_settop(L, 2);
  108. lua_setmetatable(L, 1);
  109. return 1;
  110. }
  111. static void getfunc (lua_State *L) {
  112. if (lua_isfunction(L, 1)) lua_pushvalue(L, 1);
  113. else {
  114. lua_Debug ar;
  115. int level = luaL_opt_int(L, 1, 1);
  116. luaL_arg_check(L, level >= 0, 1, "level must be non-negative");
  117. if (lua_getstack(L, level, &ar) == 0)
  118. luaL_argerror(L, 1, "invalid level");
  119. lua_getinfo(L, "f", &ar);
  120. }
  121. }
  122. static int luaB_getglobals (lua_State *L) {
  123. getfunc(L);
  124. lua_getglobals(L, -1);
  125. return 1;
  126. }
  127. static int luaB_setglobals (lua_State *L) {
  128. luaL_check_type(L, 2, LUA_TTABLE);
  129. getfunc(L);
  130. lua_pushvalue(L, 2);
  131. if (lua_setglobals(L, -2) == 0)
  132. luaL_error(L, "cannot change global table of given function");
  133. return 0;
  134. }
  135. static int luaB_rawequal (lua_State *L) {
  136. luaL_check_any(L, 1);
  137. luaL_check_any(L, 2);
  138. lua_pushboolean(L, lua_rawequal(L, 1, 2));
  139. return 1;
  140. }
  141. static int luaB_rawget (lua_State *L) {
  142. luaL_check_type(L, 1, LUA_TTABLE);
  143. luaL_check_any(L, 2);
  144. lua_rawget(L, 1);
  145. return 1;
  146. }
  147. static int luaB_rawset (lua_State *L) {
  148. luaL_check_type(L, 1, LUA_TTABLE);
  149. luaL_check_any(L, 2);
  150. luaL_check_any(L, 3);
  151. lua_rawset(L, 1);
  152. return 1;
  153. }
  154. static int luaB_gcinfo (lua_State *L) {
  155. lua_pushnumber(L, lua_getgccount(L));
  156. lua_pushnumber(L, lua_getgcthreshold(L));
  157. return 2;
  158. }
  159. static int luaB_collectgarbage (lua_State *L) {
  160. lua_setgcthreshold(L, luaL_opt_int(L, 1, 0));
  161. return 0;
  162. }
  163. static int luaB_type (lua_State *L) {
  164. luaL_check_any(L, 1);
  165. lua_pushstring(L, lua_typename(L, lua_type(L, 1)));
  166. return 1;
  167. }
  168. static int luaB_next (lua_State *L) {
  169. luaL_check_type(L, 1, LUA_TTABLE);
  170. lua_settop(L, 2); /* create a 2nd argument if there isn't one */
  171. if (lua_next(L, 1))
  172. return 2;
  173. else {
  174. lua_pushnil(L);
  175. return 1;
  176. }
  177. }
  178. static int luaB_pairs (lua_State *L) {
  179. luaL_check_type(L, 1, LUA_TTABLE);
  180. lua_getglobal(L, "next"); /* return generator, */
  181. lua_pushvalue(L, 1); /* state, */
  182. lua_pushnil(L); /* and initial value */
  183. return 3;
  184. }
  185. static int luaB_ipairs (lua_State *L) {
  186. lua_Number i = lua_tonumber(L, 2);
  187. luaL_check_type(L, 1, LUA_TTABLE);
  188. if (i == 0 && lua_isnull(L, 2)) { /* `for' start? */
  189. lua_getglobal(L, "ipairs"); /* return generator, */
  190. lua_pushvalue(L, 1); /* state, */
  191. lua_pushnumber(L, 0); /* and initial value */
  192. return 3;
  193. }
  194. else { /* `for' step */
  195. i++; /* next value */
  196. lua_pushnumber(L, i);
  197. lua_rawgeti(L, 1, (int)i);
  198. return (lua_isnil(L, -1)) ? 0 : 2;
  199. }
  200. }
  201. static int passresults (lua_State *L, int status) {
  202. if (status == 0) return 1;
  203. else {
  204. lua_pushnil(L);
  205. lua_insert(L, -2);
  206. return 2;
  207. }
  208. }
  209. static int luaB_loadstring (lua_State *L) {
  210. size_t l;
  211. const char *s = luaL_check_lstr(L, 1, &l);
  212. const char *chunkname = luaL_opt_string(L, 2, s);
  213. return passresults(L, luaL_loadbuffer(L, s, l, chunkname));
  214. }
  215. static int luaB_loadfile (lua_State *L) {
  216. const char *fname = luaL_opt_string(L, 1, NULL);
  217. return passresults(L, luaL_loadfile(L, fname));
  218. }
  219. static int luaB_dofile (lua_State *L) {
  220. const char *fname = luaL_opt_string(L, 1, NULL);
  221. int status = luaL_loadfile(L, fname);
  222. if (status != 0) lua_error(L);
  223. lua_call(L, 0, LUA_MULTRET);
  224. return lua_gettop(L) - 1;
  225. }
  226. static int luaB_assert (lua_State *L) {
  227. luaL_check_any(L, 1);
  228. if (!lua_toboolean(L, 1))
  229. return luaL_error(L, "%s", luaL_opt_string(L, 2, "assertion failed!"));
  230. lua_settop(L, 1);
  231. return 1;
  232. }
  233. static int luaB_unpack (lua_State *L) {
  234. int n, i;
  235. luaL_check_type(L, 1, LUA_TTABLE);
  236. lua_pushliteral(L, "n");
  237. lua_rawget(L, 1);
  238. n = (lua_isnumber(L, -1)) ? (int)lua_tonumber(L, -1) : -1;
  239. for (i=0; i<n || n==-1; i++) { /* push arg[1...n] */
  240. luaL_check_stack(L, LUA_MINSTACK, "table too big to unpack");
  241. lua_rawgeti(L, 1, i+1);
  242. if (n == -1) { /* no explicit limit? */
  243. if (lua_isnil(L, -1)) { /* stop at first `nil' element */
  244. lua_pop(L, 1); /* remove `nil' */
  245. break;
  246. }
  247. }
  248. }
  249. return i;
  250. }
  251. static int luaB_pcall (lua_State *L) {
  252. int status;
  253. luaL_check_any(L, 1);
  254. status = lua_pcall(L, lua_gettop(L) - 1, LUA_MULTRET, 0);
  255. lua_pushboolean(L, (status == 0));
  256. lua_insert(L, 1);
  257. return lua_gettop(L); /* return status + all results */
  258. }
  259. static int luaB_xpcall (lua_State *L) {
  260. int status;
  261. luaL_check_any(L, 2);
  262. lua_settop(L, 2);
  263. lua_insert(L, 1); /* put error function under function to be called */
  264. status = lua_pcall(L, 0, LUA_MULTRET, 1);
  265. lua_pushboolean(L, (status == 0));
  266. lua_replace(L, 1);
  267. return lua_gettop(L); /* return status + all results */
  268. }
  269. static int luaB_tostring (lua_State *L) {
  270. char buff[64];
  271. luaL_checkany(L, 1);
  272. if (luaL_callmeta(L, 1, "__tostring")) /* is there a metafield? */
  273. return 1; /* use its value */
  274. switch (lua_type(L, 1)) {
  275. case LUA_TNUMBER:
  276. lua_pushstring(L, lua_tostring(L, 1));
  277. return 1;
  278. case LUA_TSTRING:
  279. lua_pushvalue(L, 1);
  280. return 1;
  281. case LUA_TBOOLEAN:
  282. lua_pushstring(L, (lua_toboolean(L, 1) ? "true" : "false"));
  283. return 1;
  284. case LUA_TTABLE:
  285. sprintf(buff, "table: %p", lua_topointer(L, 1));
  286. break;
  287. case LUA_TFUNCTION:
  288. sprintf(buff, "function: %p", lua_topointer(L, 1));
  289. break;
  290. case LUA_TUSERDATA:
  291. case LUA_TLIGHTUSERDATA:
  292. sprintf(buff, "userdata: %p", lua_touserdata(L, 1));
  293. break;
  294. case LUA_TNIL:
  295. lua_pushliteral(L, "nil");
  296. return 1;
  297. }
  298. lua_pushstring(L, buff);
  299. return 1;
  300. }
  301. static int luaB_newproxy (lua_State *L) {
  302. lua_settop(L, 1);
  303. lua_newuserdata(L, 0); /* create proxy */
  304. if (lua_toboolean(L, 1) == 0)
  305. return 1; /* no metatable */
  306. else if (lua_isboolean(L, 1)) {
  307. lua_newtable(L); /* create a new metatable `m' ... */
  308. lua_pushvalue(L, -1); /* ... and mark `m' as a valid metatable */
  309. lua_pushboolean(L, 1);
  310. lua_rawset(L, lua_upvalueindex(1)); /* weaktable[m] = true */
  311. }
  312. else {
  313. int validproxy = 0; /* to check if weaktable[metatable(u)] == true */
  314. if (lua_getmetatable(L, 1)) {
  315. lua_rawget(L, lua_upvalueindex(1));
  316. validproxy = lua_toboolean(L, -1);
  317. lua_pop(L, 1); /* remove value */
  318. }
  319. luaL_arg_check(L, validproxy, 1, "boolean/proxy expected");
  320. lua_getmetatable(L, 1); /* metatable is valid; get it */
  321. }
  322. lua_setmetatable(L, 2);
  323. return 1;
  324. }
  325. /*
  326. ** {======================================================
  327. ** `require' function
  328. ** =======================================================
  329. */
  330. /* name of global that holds table with loaded packages */
  331. #define REQTAB "_LOADED"
  332. /* name of global that holds the search path for packages */
  333. #define LUA_PATH "LUA_PATH"
  334. #ifndef LUA_PATH_SEP
  335. #define LUA_PATH_SEP ';'
  336. #endif
  337. #ifndef LUA_PATH_DEFAULT
  338. #define LUA_PATH_DEFAULT "?;?.lua"
  339. #endif
  340. static const char *getpath (lua_State *L) {
  341. const char *path;
  342. lua_getglobal(L, LUA_PATH); /* try global variable */
  343. path = lua_tostring(L, -1);
  344. lua_pop(L, 1);
  345. if (path) return path;
  346. path = getenv(LUA_PATH); /* else try environment variable */
  347. if (path) return path;
  348. return LUA_PATH_DEFAULT; /* else use default */
  349. }
  350. static const char *pushnextpath (lua_State *L, const char *path) {
  351. const char *l;
  352. if (*path == '\0') return NULL; /* no more pathes */
  353. if (*path == LUA_PATH_SEP) path++; /* skip separator */
  354. l = strchr(path, LUA_PATH_SEP); /* find next separator */
  355. if (l == NULL) l = path+strlen(path);
  356. lua_pushlstring(L, path, l - path); /* directory name */
  357. return l;
  358. }
  359. static void pushcomposename (lua_State *L) {
  360. const char *path = lua_tostring(L, -1);
  361. const char *wild = strchr(path, '?');
  362. if (wild == NULL) return; /* no wild char; path is the file name */
  363. lua_pushlstring(L, path, wild - path);
  364. lua_pushvalue(L, 1); /* package name */
  365. lua_pushstring(L, wild + 1);
  366. lua_concat(L, 3);
  367. }
  368. static int luaB_require (lua_State *L) {
  369. const char *path;
  370. int status = LUA_ERRFILE; /* not found (yet) */
  371. luaL_check_string(L, 1);
  372. lua_settop(L, 1);
  373. lua_pushvalue(L, 1);
  374. lua_setglobal(L, "_REQUIREDNAME");
  375. lua_getglobal(L, REQTAB);
  376. if (!lua_istable(L, 2)) return luaL_error(L, "`" REQTAB "' is not a table");
  377. path = getpath(L);
  378. lua_pushvalue(L, 1); /* check package's name in book-keeping table */
  379. lua_rawget(L, 2);
  380. if (!lua_isnil(L, -1)) /* is it there? */
  381. return 0; /* package is already loaded */
  382. else { /* must load it */
  383. while (status == LUA_ERRFILE) {
  384. lua_settop(L, 3); /* reset stack position */
  385. if ((path = pushnextpath(L, path)) == NULL) break;
  386. pushcomposename(L);
  387. status = luaL_loadfile(L, lua_tostring(L, -1)); /* try to load it */
  388. }
  389. }
  390. switch (status) {
  391. case 0: {
  392. lua_call(L, 0, 0); /* run loaded module */
  393. lua_pushvalue(L, 1);
  394. lua_pushboolean(L, 1);
  395. lua_rawset(L, 2); /* mark it as loaded */
  396. return 0;
  397. }
  398. case LUA_ERRFILE: { /* file not found */
  399. return luaL_error(L, "could not load package `%s' from path `%s'",
  400. lua_tostring(L, 1), getpath(L));
  401. }
  402. default: {
  403. return luaL_error(L, "error loading package\n%s", lua_tostring(L, -1));
  404. }
  405. }
  406. }
  407. /* }====================================================== */
  408. static const luaL_reg base_funcs[] = {
  409. {"error", luaB_error},
  410. {"getmetatable", luaB_getmetatable},
  411. {"setmetatable", luaB_setmetatable},
  412. {"getglobals", luaB_getglobals},
  413. {"setglobals", luaB_setglobals},
  414. {"getmode", luaB_getmode},
  415. {"setmode", luaB_setmode},
  416. {"next", luaB_next},
  417. {"ipairs", luaB_ipairs},
  418. {"pairs", luaB_pairs},
  419. {"print", luaB_print},
  420. {"tonumber", luaB_tonumber},
  421. {"tostring", luaB_tostring},
  422. {"type", luaB_type},
  423. {"assert", luaB_assert},
  424. {"unpack", luaB_unpack},
  425. {"rawequal", luaB_rawequal},
  426. {"rawget", luaB_rawget},
  427. {"rawset", luaB_rawset},
  428. {"pcall", luaB_pcall},
  429. {"xpcall", luaB_xpcall},
  430. {"collectgarbage", luaB_collectgarbage},
  431. {"gcinfo", luaB_gcinfo},
  432. {"loadfile", luaB_loadfile},
  433. {"dofile", luaB_dofile},
  434. {"loadstring", luaB_loadstring},
  435. {"require", luaB_require},
  436. {NULL, NULL}
  437. };
  438. /*
  439. ** {======================================================
  440. ** Coroutine library
  441. ** =======================================================
  442. */
  443. static int luaB_resume (lua_State *L) {
  444. lua_State *co = (lua_State *)lua_unboxpointer(L, lua_upvalueindex(1));
  445. int status;
  446. lua_settop(L, 0);
  447. status = lua_resume(L, co);
  448. if (status != 0)
  449. return lua_error(L);
  450. return lua_gettop(L);
  451. }
  452. static int gc_coroutine (lua_State *L) {
  453. lua_State *co = (lua_State *)lua_unboxpointer(L, 1);
  454. lua_closethread(L, co);
  455. return 0;
  456. }
  457. static int luaB_coroutine (lua_State *L) {
  458. lua_State *NL;
  459. int ref;
  460. int i;
  461. int n = lua_gettop(L);
  462. luaL_arg_check(L, lua_isfunction(L, 1) && !lua_iscfunction(L, 1), 1,
  463. "Lua function expected");
  464. NL = lua_newthread(L);
  465. if (NL == NULL) return luaL_error(L, "unable to create new thread");
  466. /* move function and arguments from L to NL */
  467. for (i=0; i<n; i++) {
  468. ref = lua_ref(L, 1);
  469. lua_getref(NL, ref);
  470. lua_insert(NL, 1);
  471. lua_unref(L, ref);
  472. }
  473. lua_cobegin(NL, n-1);
  474. lua_boxpointer(L, NL);
  475. lua_pushliteral(L, "Coroutine");
  476. lua_rawget(L, LUA_REGISTRYINDEX);
  477. lua_setmetatable(L, -2);
  478. lua_pushcclosure(L, luaB_resume, 1);
  479. return 1;
  480. }
  481. static int luaB_yield (lua_State *L) {
  482. return lua_yield(L, lua_gettop(L));
  483. }
  484. static const luaL_reg co_funcs[] = {
  485. {"create", luaB_coroutine},
  486. {"yield", luaB_yield},
  487. {NULL, NULL}
  488. };
  489. static void co_open (lua_State *L) {
  490. luaL_opennamedlib(L, LUA_COLIBNAME, co_funcs, 0);
  491. /* create metatable for coroutines */
  492. lua_pushliteral(L, "Coroutine");
  493. lua_newtable(L);
  494. lua_pushliteral(L, "__gc");
  495. lua_pushcfunction(L, gc_coroutine);
  496. lua_rawset(L, -3);
  497. lua_rawset(L, LUA_REGISTRYINDEX);
  498. }
  499. /* }====================================================== */
  500. static void base_open (lua_State *L) {
  501. lua_pushliteral(L, "_G");
  502. lua_pushvalue(L, LUA_GLOBALSINDEX);
  503. luaL_openlib(L, base_funcs, 0); /* open lib into global table */
  504. lua_pushliteral(L, "_VERSION");
  505. lua_pushliteral(L, LUA_VERSION);
  506. lua_rawset(L, -3); /* set global _VERSION */
  507. /* `newproxy' needs a weaktable as upvalue */
  508. lua_pushliteral(L, "newproxy");
  509. lua_newtable(L); /* new table `w' */
  510. lua_setmode(L, -1, "k");
  511. lua_pushcclosure(L, luaB_newproxy, 1);
  512. lua_rawset(L, -3); /* set global `newproxy' */
  513. lua_rawset(L, -1); /* set global _G */
  514. }
  515. LUALIB_API int lua_baselibopen (lua_State *L) {
  516. base_open(L);
  517. co_open(L);
  518. lua_newtable(L);
  519. lua_setglobal(L, REQTAB);
  520. return 0;
  521. }