create mod_ssl.
[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 #include "../mutt.h"
25 #include "../charset.h"
26 #include "../buffy.h"
27 #include <lib-sys/mutt_ssl.li>
28
29 static lua_State *L;
30
31 void luaM_initialize(void)
32 {
33     static const luaL_Reg lualibs[] = {
34         {"",              luaopen_base},
35         {LUA_OSLIBNAME,   luaopen_os},
36         {LUA_LOADLIBNAME, luaopen_package},
37         {LUA_TABLIBNAME,  luaopen_table},
38         {LUA_IOLIBNAME,   luaopen_io},
39         {LUA_STRLIBNAME,  luaopen_string},
40         {LUA_MATHLIBNAME, luaopen_math},
41         {LUA_DBLIBNAME,   luaopen_debug},
42         {"MCore",         luaopen_MCore},
43         {"MTransport",    luaopen_MTransport},
44         {"MAlias",        luaopen_MAlias},
45         {"MCharset",      luaopen_MCharset},
46         {"Mime",          luaopen_Mime},
47         {"Buffy",         luaopen_Buffy},
48         {"mod_ssl",       luaopen_mod_ssl},
49     };
50
51     int i;
52
53     L = lua_open();
54     for (i = 0; i < countof(lualibs); i++) {
55         lua_pushcfunction(L, lualibs[i].func);
56         lua_pushstring(L, lualibs[i].name);
57         lua_call(L, 1, 0);
58     }
59 }
60
61 void luaM_shutdown(void)
62 {
63     lua_close(L);
64 }
65
66 lua_State *luaM_getruntime(void)
67 {
68     return L;
69 }
70
71 int luaM_dofile(const char *filename)
72 {
73     return luaL_dofile(L, filename);
74 }
75
76 int luaM_wrap(void (*errfun)(const char *fmt, ...), int status)
77 {
78     if (status) {
79         (*errfun)("-[lua]-: %s\n", lua_tostring(L, -1));
80         lua_pop(L, 1);
81     }
82     return status;
83 }
84
85
86 quadopt_t luaM_checkquadopt(lua_State *Ls, int narg)
87 {
88     const char *s;
89     int i;
90
91     if (lua_type(Ls, narg) == LUA_TSTRING) {
92         s = lua_tostring(Ls, narg);
93         switch (mlua_which_token(s, -1)) {
94           case LTK_YES:     return M_YES;
95           case LTK_NO:      return M_NO;
96           case LTK_ASK_YES: return M_ASKYES;
97           case LTK_ASK_NO:  return M_ASKNO;
98           default:
99             break;
100         }
101     }
102
103     i = luaL_checkinteger(Ls, narg);
104     if (i & ~3) {
105         s = lua_pushfstring(Ls, "int in [0-3] expected, got %d", i);
106         return luaL_argerror(Ls, narg, s);
107     }
108     return i;
109 }
110
111 void luaM_pushquadopt(lua_State *Ls, int val)
112 {
113     switch (val) {
114       case M_YES:    return lua_pushstring(Ls, "yes");
115       case M_NO:     return lua_pushstring(Ls, "no");
116       case M_ASKYES: return lua_pushstring(Ls, "ask-yes");
117       case M_ASKNO:  return lua_pushstring(Ls, "ask-no");
118       default:       return lua_pushnil(Ls);
119     }
120 }
121
122 const char *luaM_checkrx(lua_State *Ls, int narg)
123 {
124     const char *s = luaL_checkstring(Ls, narg);
125     char buf[STRING];
126
127     if (rx_validate(s, buf, ssizeof(buf))) {
128         s = lua_pushfstring(Ls, "invalid regexp: `%s'", buf);
129         luaL_argerror(Ls, narg, s);
130         return NULL;
131     }
132
133     return s;
134 }
135
136 rx_t *luaM_rxnew(const char *val)
137 {
138     if (m_strisempty(val))
139         val = ".";
140
141     return rx_compile(val, mutt_which_case(val));
142 }
143
144 char *luaM_pathnew(const char *val)
145 {
146     char path[PATH_MAX];
147     _mutt_expand_path(path, sizeof(path), val, 0);
148     return m_strdup(path);
149 }
150
151
152 void luaM_pushaddr(lua_State *Ls, address_t *addr)
153 {
154     char s[HUGE_STRING] = "";
155     rfc822_addrcat(s, sizeof(s), addr, 0);
156     lua_pushstring(Ls, s);
157 }