make Alias be a module as well.
[apps/madmutt.git] / lib-lua / runtime.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2007 Pierre Habouzit
18  */
19
20 #include <lib-lib/lib-lib.h>
21 #include <lib-lua/lib-lua.h>
22
23 #include <alias.h>
24
25 static lua_State *L;
26
27 void luaM_initialize(void)
28 {
29     static const luaL_Reg lualibs[] = {
30         {"",              luaopen_base},
31         {LUA_OSLIBNAME,   luaopen_os},
32         {LUA_LOADLIBNAME, luaopen_package},
33         {LUA_TABLIBNAME,  luaopen_table},
34         {LUA_IOLIBNAME,   luaopen_io},
35         {LUA_STRLIBNAME,  luaopen_string},
36         {LUA_MATHLIBNAME, luaopen_math},
37         {LUA_DBLIBNAME,   luaopen_debug},
38         {"MCore",         luaopen_MCore},
39         {"MTransport",    luaopen_MTransport},
40         {"MAlias",        luaopen_MAlias},
41     };
42
43     int i;
44
45     L = lua_open();
46     for (i = 0; i < countof(lualibs); i++) {
47         lua_pushcfunction(L, lualibs[i].func);
48         lua_pushstring(L, lualibs[i].name);
49         lua_call(L, 1, 0);
50     }
51 }
52
53 void luaM_shutdown(void)
54 {
55     lua_close(L);
56 }
57
58
59 int luaM_dofile(const char *filename)
60 {
61     return luaL_dofile(L, filename);
62 }
63
64 int luaM_wrap(void (*errfun)(const char *fmt, ...), int status)
65 {
66     if (status) {
67         (*errfun)("-[lua]-: %s\n", lua_tostring(L, -1));
68         lua_pop(L, 1);
69     }
70     return status;
71 }
72
73
74 quadopt_t luaM_checkquadopt(lua_State *Ls, int narg)
75 {
76     const char *s;
77     int i = luaL_checkinteger(Ls, narg);
78
79     if (i & ~3) {
80         s = lua_pushfstring(Ls, "int in [0-3] expected, got %d", i);
81         return luaL_argerror(Ls, narg, s);
82     }
83     return i;
84 }
85