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