1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
* peas-lua-internal.c
* This file is part of libpeas
*
* Copyright (C) 2015 - Garrett Regier
*
* libpeas is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* libpeas 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "peas-lua-internal.h"
#include <lauxlib.h>
#include "peas-lua-utils.h"
static gpointer hooks_key = NULL;
static gpointer failed_err_key = NULL;
static int
failed_fn (lua_State *L)
{
gchar *msg;
/* The first parameter is the Hooks table instance */
luaL_checktype (L, 1, LUA_TTABLE);
/* The tracebacks have a trailing newline */
msg = g_strchomp (g_strdup (luaL_checkstring (L, 2)));
g_warning ("%s", msg);
/* peas_lua_internal_call() knows to check for this value */
lua_pushlightuserdata (L, &failed_err_key);
g_free (msg);
return lua_error (L);
}
gboolean
peas_lua_internal_setup (lua_State *L)
{
if (!peas_lua_utils_load_resource (L, "internal.lua", 0, 1))
{
/* Already warned */
return FALSE;
}
if (!lua_istable (L, -1))
{
g_warning ("Invalid result from 'internal.lua' resource: %s",
lua_tostring (L, -1));
/* Pop result */
lua_pop (L, 1);
return FALSE;
}
/* Set Hooks.failed to failed_fn */
lua_pushcfunction (L, failed_fn);
lua_setfield (L, -2, "failed");
/* Set registry[&hooks_key] = hooks */
lua_pushlightuserdata (L, &hooks_key);
lua_pushvalue (L, -2);
lua_rawset (L, LUA_REGISTRYINDEX);
/* Pop hooks */
lua_pop (L, -1);
return TRUE;
}
void
peas_lua_internal_shutdown (lua_State *L)
{
lua_pushlightuserdata (L, &hooks_key);
lua_pushnil (L);
lua_rawset (L, LUA_REGISTRYINDEX);
}
gboolean
peas_lua_internal_call (lua_State *L,
const gchar *name,
guint n_args,
gint return_type)
{
/* Get the Hooks table */
lua_pushlightuserdata (L, &hooks_key);
lua_rawget (L, LUA_REGISTRYINDEX);
/* Get the method */
lua_getfield (L, -1, name);
/* Swap the method and the table */
lua_insert (L, -2);
if (n_args > 0)
{
/* Before: [args..., method, table]
* After: [method, table, args...]
*/
lua_insert (L, -n_args - 2);
lua_insert (L, -n_args - 2);
}
if (!peas_lua_utils_call (L, 1 + n_args, 1))
{
/* Raised by failed_fn() to prevent printing the error */
if (!lua_isuserdata (L, -1) ||
lua_touserdata (L, -1) != &failed_err_key)
{
g_warning ("Failed to run internal Lua hook '%s':\n%s",
name, lua_tostring (L, -1));
}
/* Pop the error */
lua_pop (L, 1);
return FALSE;
}
if (lua_type (L, -1) != return_type)
{
/* Don't warn for a nil result */
if (lua_type (L, -1) != LUA_TNIL)
{
g_warning ("Invalid return value for internal Lua hook '%s': "
"expected %s, got: %s (%s)", name,
lua_typename (L, return_type),
lua_typename (L, lua_type (L, -1)),
lua_tostring (L, -1));
}
/* Pop result */
lua_pop (L, 1);
return FALSE;
}
/* Pop the result if nil */
if (return_type == LUA_TNIL)
lua_pop (L, 1);
return TRUE;
}
|