NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_lua.c File Reference

Integrated Lua scripting. More...

#include "config.h"
#include <lauxlib.h>
#include <limits.h>
#include <lua.h>
#include <lualib.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "mutt_lua.h"
#include "parse/lib.h"
#include "muttlib.h"
+ Include dependency graph for mutt_lua.c:

Go to the source code of this file.

Macros

#define LUA_COMPAT_ALL
 
#define LUA_COMPAT_5_1
 

Functions

static int handle_panic (lua_State *l)
 Handle a panic in the Lua interpreter.
 
static int handle_error (lua_State *l)
 Handle an error in the Lua interpreter.
 
static int lua_mutt_call (lua_State *l)
 Call a NeoMutt command by name.
 
static int lua_mutt_set (lua_State *l)
 Set a NeoMutt variable.
 
static int lua_mutt_get (lua_State *l)
 Get a NeoMutt variable.
 
static int lua_mutt_enter (lua_State *l)
 Execute NeoMutt config from Lua.
 
static int lua_mutt_message (lua_State *l)
 Display a message in Neomutt.
 
static int lua_mutt_error (lua_State *l)
 Display an error in Neomutt.
 
static void lua_expose_command (lua_State *l, const struct Command *cmd)
 Expose a NeoMutt command to the Lua interpreter.
 
static int luaopen_mutt_decl (lua_State *l)
 Declare some NeoMutt types to the Lua interpreter.
 
static void luaopen_mutt (lua_State *l)
 Expose a 'Mutt' object to the Lua interpreter.
 
static bool lua_init (lua_State **l)
 Initialise a Lua State.
 
void mutt_lua_init (void)
 Setup feature commands.
 
enum CommandResult mutt_lua_parse (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
 Parse the 'lua' command - Implements Command::parse() -.
 
enum CommandResult mutt_lua_source_file (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
 Parse the 'lua-source' command - Implements Command::parse() -.
 

Variables

static lua_State * LuaState = NULL
 Global Lua State.
 
static const struct Command LuaCommands []
 List of NeoMutt commands to register.
 
static const luaL_Reg LuaMuttCommands []
 List of Lua commands to register.
 

Detailed Description

Integrated Lua scripting.

Authors
  • Bernard Pratz
  • Richard Russon
  • Victor Fernandes
  • Ian Zimmerman
  • Pietro Cerutti
  • Rayford Shireman

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file mutt_lua.c.

Macro Definition Documentation

◆ LUA_COMPAT_ALL

#define LUA_COMPAT_ALL

Definition at line 35 of file mutt_lua.c.

◆ LUA_COMPAT_5_1

#define LUA_COMPAT_5_1

Definition at line 38 of file mutt_lua.c.

Function Documentation

◆ handle_panic()

static int handle_panic ( lua_State *  l)
static

Handle a panic in the Lua interpreter.

Parameters
lLua State
Return values
-1Always

Definition at line 74 of file mutt_lua.c.

75{
76 mutt_debug(LL_DEBUG1, "lua runtime panic: %s\n", lua_tostring(l, -1));
77 mutt_error("Lua runtime panic: %s", lua_tostring(l, -1));
78 lua_pop(l, 1);
79 return -1;
80}
#define mutt_error(...)
Definition: logging2.h:92
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
+ Here is the caller graph for this function:

◆ handle_error()

static int handle_error ( lua_State *  l)
static

Handle an error in the Lua interpreter.

Parameters
lLua State
Return values
-1Always

Definition at line 87 of file mutt_lua.c.

88{
89 mutt_debug(LL_DEBUG1, "lua runtime error: %s\n", lua_tostring(l, -1));
90 mutt_error("Lua runtime error: %s", lua_tostring(l, -1));
91 lua_pop(l, 1);
92 return -1;
93}
+ Here is the caller graph for this function:

◆ lua_mutt_call()

static int lua_mutt_call ( lua_State *  l)
static

Call a NeoMutt command by name.

Parameters
lLua State
Return values
>=0Success
-1Error

Definition at line 101 of file mutt_lua.c.

102{
103 mutt_debug(LL_DEBUG2, " * lua_mutt_call()\n");
104 struct Buffer *err = buf_pool_get();
105 struct Buffer *token = buf_pool_get();
106 struct Buffer *buf = buf_pool_get();
107 const struct Command *cmd = NULL;
108 int rc = 0;
109
110 if (lua_gettop(l) == 0)
111 {
112 luaL_error(l, "Error command argument required.");
113 return -1;
114 }
115
116 cmd = command_get(lua_tostring(l, 1));
117 if (!cmd)
118 {
119 luaL_error(l, "Error command %s not found.", lua_tostring(l, 1));
120 return -1;
121 }
122
123 for (int i = 2; i <= lua_gettop(l); i++)
124 {
125 buf_addstr(buf, lua_tostring(l, i));
126 buf_addch(buf, ' ');
127 }
128
129 if (cmd->parse(token, buf, cmd->data, err))
130 {
131 luaL_error(l, "NeoMutt error: %s", buf_string(err));
132 rc = -1;
133 }
134 else
135 {
136 if (!lua_pushstring(l, buf_string(err)))
137 handle_error(l);
138 else
139 rc++;
140 }
141
142 buf_pool_release(&buf);
143 buf_pool_release(&token);
144 buf_pool_release(&err);
145 return rc;
146}
size_t buf_addch(struct Buffer *buf, char c)
Add a single character to a Buffer.
Definition: buffer.c:240
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition: buffer.c:225
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
struct Command * command_get(const char *s)
Get a Command by its name.
Definition: command.c:87
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
static int handle_error(lua_State *l)
Handle an error in the Lua interpreter.
Definition: mutt_lua.c:87
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:81
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:94
String manipulation buffer.
Definition: buffer.h:36
enum CommandResult(* parse)(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
Definition: command.h:65
intptr_t data
Data or flags to pass to the command.
Definition: command.h:67
+ Here is the call graph for this function:

◆ lua_mutt_set()

static int lua_mutt_set ( lua_State *  l)
static

Set a NeoMutt variable.

Parameters
lLua State
Return values
0Success
-1Error

Definition at line 154 of file mutt_lua.c.

155{
156 const char *param = lua_tostring(l, -2);
157 mutt_debug(LL_DEBUG2, " * lua_mutt_set(%s)\n", param);
158
159 struct Buffer *err = buf_pool_get();
160 struct HashElem *he = cs_subset_lookup(NeoMutt->sub, param);
161 if (!he)
162 {
163 // In case it is a my_var, we have to create it
164 if (mutt_str_startswith(param, "my_"))
165 {
166 struct ConfigDef my_cdef = { 0 };
167 my_cdef.name = param;
168 my_cdef.type = DT_MYVAR;
169 he = cs_create_variable(NeoMutt->sub->cs, &my_cdef, err);
170 if (!he)
171 return -1;
172 }
173 else
174 {
175 luaL_error(l, "NeoMutt parameter not found %s", param);
176 return -1;
177 }
178 }
179
180 struct ConfigDef *cdef = he->data;
181
182 int rc = 0;
183
184 switch (DTYPE(cdef->type))
185 {
186 case DT_ADDRESS:
187 case DT_ENUM:
188 case DT_MBTABLE:
189 case DT_MYVAR:
190 case DT_PATH:
191 case DT_REGEX:
192 case DT_SLIST:
193 case DT_SORT:
194 case DT_STRING:
195 {
196 const char *value = lua_tostring(l, -1);
197 size_t val_size = lua_rawlen(l, -1);
198 struct Buffer *value_buf = buf_pool_get();
199 buf_strcpy_n(value_buf, value, val_size);
200 if (DTYPE(he->type) == DT_PATH)
201 buf_expand_path(value_buf);
202
203 int rv = cs_subset_he_string_set(NeoMutt->sub, he, buf_string(value_buf), err);
204 buf_pool_release(&value_buf);
205 if (CSR_RESULT(rv) != CSR_SUCCESS)
206 rc = -1;
207 break;
208 }
209 case DT_NUMBER:
210 case DT_QUAD:
211 {
212 const intptr_t value = lua_tointeger(l, -1);
213 int rv = cs_subset_he_native_set(NeoMutt->sub, he, value, err);
214 if (CSR_RESULT(rv) != CSR_SUCCESS)
215 rc = -1;
216 break;
217 }
218 case DT_BOOL:
219 {
220 const intptr_t value = lua_toboolean(l, -1);
221 int rv = cs_subset_he_native_set(NeoMutt->sub, he, value, err);
222 if (CSR_RESULT(rv) != CSR_SUCCESS)
223 rc = -1;
224 break;
225 }
226 default:
227 luaL_error(l, "Unsupported NeoMutt parameter type %d for %s", DTYPE(cdef->type), param);
228 rc = -1;
229 break;
230 }
231
232 buf_pool_release(&err);
233 return rc;
234}
size_t buf_strcpy_n(struct Buffer *buf, const char *s, size_t len)
Copy a string into a Buffer.
Definition: buffer.c:415
struct HashElem * cs_create_variable(const struct ConfigSet *cs, struct ConfigDef *cdef, struct Buffer *err)
Create and register one config item.
Definition: set.c:318
#define CSR_RESULT(x)
Definition: set.h:52
#define CSR_SUCCESS
Action completed successfully.
Definition: set.h:35
size_t mutt_str_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix.
Definition: string.c:230
void buf_expand_path(struct Buffer *buf)
Create the canonical path.
Definition: muttlib.c:328
Definition: set.h:64
const char * name
User-visible name.
Definition: set.h:65
uint32_t type
Variable type, e.g. DT_STRING.
Definition: set.h:66
struct ConfigSet * cs
Parent ConfigSet.
Definition: subset.h:51
The item stored in a Hash Table.
Definition: hash.h:43
int type
Type of data stored in Hash Table, e.g. DT_STRING.
Definition: hash.h:44
void * data
User-supplied data.
Definition: hash.h:46
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
int cs_subset_he_native_set(const struct ConfigSubset *sub, struct HashElem *he, intptr_t value, struct Buffer *err)
Natively set the value of a HashElem config item.
Definition: subset.c:275
int cs_subset_he_string_set(const struct ConfigSubset *sub, struct HashElem *he, const char *value, struct Buffer *err)
Set a config item by string.
Definition: subset.c:364
struct HashElem * cs_subset_lookup(const struct ConfigSubset *sub, const char *name)
Find an inherited config item.
Definition: subset.c:187
#define DTYPE(t)
Definition: types.h:50
@ DT_NUMBER
a number
Definition: types.h:39
@ DT_SLIST
a list of strings
Definition: types.h:43
@ DT_BOOL
boolean option
Definition: types.h:32
@ DT_QUAD
quad-option (no/yes/ask-no/ask-yes)
Definition: types.h:41
@ DT_STRING
a string
Definition: types.h:45
@ DT_SORT
sorting methods
Definition: types.h:44
@ DT_MYVAR
a user-defined variable (my_foo)
Definition: types.h:38
@ DT_MBTABLE
multibyte char table
Definition: types.h:37
@ DT_ADDRESS
e-mail address
Definition: types.h:31
@ DT_ENUM
an enumeration
Definition: types.h:33
@ DT_REGEX
regular expressions
Definition: types.h:42
@ DT_PATH
a path to a file/directory
Definition: types.h:40
+ Here is the call graph for this function:

◆ lua_mutt_get()

static int lua_mutt_get ( lua_State *  l)
static

Get a NeoMutt variable.

Parameters
lLua State
Return values
1Success
-1Error

Definition at line 242 of file mutt_lua.c.

243{
244 const char *param = lua_tostring(l, -1);
245 mutt_debug(LL_DEBUG2, " * lua_mutt_get(%s)\n", param);
246
247 struct HashElem *he = cs_subset_lookup(NeoMutt->sub, param);
248 if (!he)
249 {
250 mutt_debug(LL_DEBUG2, " * error\n");
251 luaL_error(l, "NeoMutt parameter not found %s", param);
252 return -1;
253 }
254
255 struct ConfigDef *cdef = he->data;
256
257 switch (DTYPE(cdef->type))
258 {
259 case DT_ADDRESS:
260 case DT_ENUM:
261 case DT_MBTABLE:
262 case DT_MYVAR:
263 case DT_REGEX:
264 case DT_SLIST:
265 case DT_SORT:
266 case DT_STRING:
267 {
268 struct Buffer *value = buf_pool_get();
269 int rc = cs_subset_he_string_get(NeoMutt->sub, he, value);
270 if (CSR_RESULT(rc) != CSR_SUCCESS)
271 {
272 buf_pool_release(&value);
273 return -1;
274 }
275
276 struct Buffer *escaped = buf_pool_get();
277 escape_string(escaped, buf_string(value));
278 lua_pushstring(l, buf_string(escaped));
279 buf_pool_release(&value);
280 buf_pool_release(&escaped);
281 return 1;
282 }
283 case DT_QUAD:
284 lua_pushinteger(l, (unsigned char) cdef->var);
285 return 1;
286 case DT_NUMBER:
287 lua_pushinteger(l, (signed short) cdef->var);
288 return 1;
289 case DT_BOOL:
290 lua_pushboolean(l, (bool) cdef->var);
291 return 1;
292 default:
293 luaL_error(l, "NeoMutt parameter type %d unknown for %s", cdef->type, param);
294 return -1;
295 }
296}
size_t escape_string(struct Buffer *buf, const char *src)
Write a string to a buffer, escaping special characters.
Definition: dump.c:48
intptr_t var
Storage for the variable.
Definition: set.h:85
int cs_subset_he_string_get(const struct ConfigSubset *sub, struct HashElem *he, struct Buffer *result)
Get a config item as a string.
Definition: subset.c:332
+ Here is the call graph for this function:

◆ lua_mutt_enter()

static int lua_mutt_enter ( lua_State *  l)
static

Execute NeoMutt config from Lua.

Parameters
lLua State
Return values
>=0Success
-1Error

Definition at line 304 of file mutt_lua.c.

305{
306 mutt_debug(LL_DEBUG2, " * lua_mutt_enter()\n");
307 struct Buffer *err = buf_pool_get();
308 char *buf = mutt_str_dup(lua_tostring(l, -1));
309 int rc = 0;
310
311 if (parse_rc_line(buf, err))
312 {
313 luaL_error(l, "NeoMutt error: %s", buf_string(err));
314 rc = -1;
315 }
316 else
317 {
318 if (!lua_pushstring(l, buf_string(err)))
319 handle_error(l);
320 else
321 rc++;
322 }
323
324 FREE(&buf);
325 buf_pool_release(&err);
326
327 return rc;
328}
#define FREE(x)
Definition: memory.h:45
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition: string.c:253
enum CommandResult parse_rc_line(const char *line, struct Buffer *err)
Parse a line of user config.
Definition: rc.c:104
+ Here is the call graph for this function:

◆ lua_mutt_message()

static int lua_mutt_message ( lua_State *  l)
static

Display a message in Neomutt.

Parameters
lLua State
Return values
0Always

Definition at line 335 of file mutt_lua.c.

336{
337 mutt_debug(LL_DEBUG2, " * lua_mutt_message()\n");
338 const char *msg = lua_tostring(l, -1);
339 if (msg)
340 mutt_message("%s", msg);
341 return 0;
342}
#define mutt_message(...)
Definition: logging2.h:91

◆ lua_mutt_error()

static int lua_mutt_error ( lua_State *  l)
static

Display an error in Neomutt.

Parameters
lLua State
Return values
0Always

Definition at line 349 of file mutt_lua.c.

350{
351 mutt_debug(LL_DEBUG2, " * lua_mutt_error()\n");
352 const char *msg = lua_tostring(l, -1);
353 if (msg)
354 mutt_error("%s", msg);
355 return 0;
356}

◆ lua_expose_command()

static void lua_expose_command ( lua_State *  l,
const struct Command cmd 
)
static

Expose a NeoMutt command to the Lua interpreter.

Parameters
lLua state
cmdNeoMutt Command

Definition at line 363 of file mutt_lua.c.

364{
365 char buf[1024] = { 0 };
366 snprintf(buf, sizeof(buf), "mutt.command.%s = function (...); mutt.call('%s', ...); end",
367 cmd->name, cmd->name);
368 (void) luaL_dostring(l, buf);
369}
const char * name
Name of the command.
Definition: command.h:52
+ Here is the caller graph for this function:

◆ luaopen_mutt_decl()

static int luaopen_mutt_decl ( lua_State *  l)
static

Declare some NeoMutt types to the Lua interpreter.

Parameters
lLua State
Return values
1Always

Definition at line 398 of file mutt_lua.c.

399{
400 mutt_debug(LL_DEBUG2, " * luaopen_mutt()\n");
401 luaL_newlib(l, LuaMuttCommands);
402 int lib_idx = lua_gettop(l);
403
404 // clang-format off
405 lua_pushstring(l, "VERSION"); lua_pushstring(l, mutt_make_version()); lua_settable(l, lib_idx);;
406 lua_pushstring(l, "QUAD_YES"); lua_pushinteger(l, MUTT_YES); lua_settable(l, lib_idx);;
407 lua_pushstring(l, "QUAD_NO"); lua_pushinteger(l, MUTT_NO); lua_settable(l, lib_idx);;
408 lua_pushstring(l, "QUAD_ASKYES"); lua_pushinteger(l, MUTT_ASKYES); lua_settable(l, lib_idx);;
409 lua_pushstring(l, "QUAD_ASKNO"); lua_pushinteger(l, MUTT_ASKNO); lua_settable(l, lib_idx);;
410 // clang-format on
411
412 return 1;
413}
static const luaL_Reg LuaMuttCommands[]
List of Lua commands to register.
Definition: mutt_lua.c:380
const char * mutt_make_version(void)
Generate the NeoMutt version string.
Definition: muttlib.c:893
@ MUTT_ASKNO
Ask the user, defaulting to 'No'.
Definition: quad.h:40
@ MUTT_NO
User answered 'No', or assume 'No'.
Definition: quad.h:38
@ MUTT_ASKYES
Ask the user, defaulting to 'Yes'.
Definition: quad.h:41
@ MUTT_YES
User answered 'Yes', or assume 'Yes'.
Definition: quad.h:39
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ luaopen_mutt()

static void luaopen_mutt ( lua_State *  l)
static

Expose a 'Mutt' object to the Lua interpreter.

Parameters
lLua State

Definition at line 419 of file mutt_lua.c.

420{
421 luaL_requiref(l, "mutt", luaopen_mutt_decl, 1);
422 (void) luaL_dostring(l, "mutt.command = {}");
423
424 struct Command *c = NULL;
425 for (size_t i = 0, size = commands_array(&c); i < size; i++)
426 {
427 lua_expose_command(l, &c[i]);
428 }
429}
size_t commands_array(struct Command **first)
Get Commands array.
Definition: command.c:75
static void lua_expose_command(lua_State *l, const struct Command *cmd)
Expose a NeoMutt command to the Lua interpreter.
Definition: mutt_lua.c:363
static int luaopen_mutt_decl(lua_State *l)
Declare some NeoMutt types to the Lua interpreter.
Definition: mutt_lua.c:398
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ lua_init()

static bool lua_init ( lua_State **  l)
static

Initialise a Lua State.

Parameters
[out]lLua State
Return values
trueSuccessful

Definition at line 436 of file mutt_lua.c.

437{
438 if (!l)
439 return false;
440 if (*l)
441 return true;
442
443 mutt_debug(LL_DEBUG2, " * lua_init()\n");
444 *l = luaL_newstate();
445
446 if (!*l)
447 {
448 mutt_error(_("Error: Couldn't load the lua interpreter"));
449 return false;
450 }
451
452 lua_atpanic(*l, handle_panic);
453
454 /* load various Lua libraries */
455 luaL_openlibs(*l);
456 luaopen_mutt(*l);
457
458 return true;
459}
#define _(a)
Definition: message.h:28
static void luaopen_mutt(lua_State *l)
Expose a 'Mutt' object to the Lua interpreter.
Definition: mutt_lua.c:419
static int handle_panic(lua_State *l)
Handle a panic in the Lua interpreter.
Definition: mutt_lua.c:74
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_lua_init()

void mutt_lua_init ( void  )

Setup feature commands.

Definition at line 464 of file mutt_lua.c.

465{
467}
void commands_register(const struct Command *cmds, const size_t num_cmds)
Add commands to Commands array.
Definition: command.c:53
#define mutt_array_size(x)
Definition: memory.h:38
static const struct Command LuaCommands[]
List of NeoMutt commands to register.
Definition: mutt_lua.c:62
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ LuaState

lua_State* LuaState = NULL
static

Global Lua State.

Definition at line 57 of file mutt_lua.c.

◆ LuaCommands

const struct Command LuaCommands[]
static
Initial value:
= {
{ "lua", mutt_lua_parse, 0 },
{ "lua-source", mutt_lua_source_file, 0 },
}
enum CommandResult mutt_lua_source_file(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
Parse the 'lua-source' command - Implements Command::parse() -.
Definition: mutt_lua.c:494
enum CommandResult mutt_lua_parse(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err)
Parse the 'lua' command - Implements Command::parse() -.
Definition: mutt_lua.c:472

List of NeoMutt commands to register.

Definition at line 62 of file mutt_lua.c.

◆ LuaMuttCommands

const luaL_Reg LuaMuttCommands[]
static
Initial value:
= {
{ "set", lua_mutt_set },
{ "get", lua_mutt_get },
{ "call", lua_mutt_call },
{ "enter", lua_mutt_enter },
{ "print", lua_mutt_message },
{ "message", lua_mutt_message },
{ "error", lua_mutt_error },
{ NULL, NULL },
}
static int lua_mutt_enter(lua_State *l)
Execute NeoMutt config from Lua.
Definition: mutt_lua.c:304
static int lua_mutt_message(lua_State *l)
Display a message in Neomutt.
Definition: mutt_lua.c:335
static int lua_mutt_call(lua_State *l)
Call a NeoMutt command by name.
Definition: mutt_lua.c:101
static int lua_mutt_get(lua_State *l)
Get a NeoMutt variable.
Definition: mutt_lua.c:242
static int lua_mutt_error(lua_State *l)
Display an error in Neomutt.
Definition: mutt_lua.c:349
static int lua_mutt_set(lua_State *l)
Set a NeoMutt variable.
Definition: mutt_lua.c:154

List of Lua commands to register.

In NeoMutt, run:

‘:lua mutt.message('hello’)`

and it will call lua_mutt_message()

Definition at line 380 of file mutt_lua.c.