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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/*
* peas-plugin-loader-lua.c
* This file is part of libpeas
*
* Copyright (C) 2014-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.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "config.h"
#include "peas-plugin-loader-lua.h"
#include "libpeas/peas-plugin-info-priv.h"
#include <string.h>
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
#include "peas-lua-internal.h"
#include "peas-lua-utils.h"
typedef void (* LgiLockFunc) (gpointer lgi_lock);
typedef struct {
lua_State *L;
gpointer lgi_lock;
LgiLockFunc lgi_enter_func;
LgiLockFunc lgi_leave_func;
} PeasPluginLoaderLuaPrivate;
G_DEFINE_TYPE_WITH_PRIVATE (PeasPluginLoaderLua,
peas_plugin_loader_lua,
PEAS_TYPE_PLUGIN_LOADER)
#define GET_PRIV(o) \
(peas_plugin_loader_lua_get_instance_private (o))
static GQuark quark_extension_type = 0;
G_MODULE_EXPORT void
peas_register_types (PeasObjectModule *module)
{
peas_object_module_register_extension_type (module,
PEAS_TYPE_PLUGIN_LOADER,
PEAS_TYPE_PLUGIN_LOADER_LUA);
}
static lua_State *
thread_enter (PeasPluginLoaderLua *lua_loader,
PeasPluginInfo *info)
{
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
lua_State *L = priv->L;
lua_State *NL = info->loader_data;
priv->lgi_enter_func (priv->lgi_lock);
if (NL != NULL)
{
/* We should never have multiple values on the stack */
g_assert_cmpint (lua_gettop (NL), ==, 0);
}
else
{
luaL_checkstack (L, 2, "");
lua_pushlightuserdata (L, info);
NL = lua_newthread (L);
lua_rawset (L, LUA_REGISTRYINDEX);
info->loader_data = NL;
}
return NL;
}
static void
thread_leave (PeasPluginLoaderLua *lua_loader,
PeasPluginInfo *info,
lua_State **L_ptr)
{
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
lua_State *L = info->loader_data;
/* Prevent keeping the L as a usable variable */
g_assert (*L_ptr == L);
*L_ptr = NULL;
/* The stack should always be empty */
g_assert_cmpint (lua_gettop (L), ==, 0);
priv->lgi_leave_func (priv->lgi_lock);
}
static GType
find_lua_extension_type (lua_State *L,
PeasPluginInfo *info,
GType exten_type)
{
luaL_checkstack (L, 2, "");
lua_pushstring (L, info->filename);
lua_pushlightuserdata (L, GSIZE_TO_POINTER (exten_type));
if (peas_lua_internal_call (L, "find_extension_type",
2, LUA_TLIGHTUSERDATA))
{
GType extension_type;
extension_type = (GType) lua_touserdata (L, -1);
lua_pop (L, 1);
if (g_type_is_a (extension_type, exten_type))
return extension_type;
g_warning ("Found invalid extension type '%s' for '%s'",
g_type_name (extension_type), g_type_name (exten_type));
}
return G_TYPE_INVALID;
}
static gboolean
peas_plugin_loader_lua_provides_extension (PeasPluginLoader *loader,
PeasPluginInfo *info,
GType exten_type)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
lua_State *L;
GType the_type;
L = thread_enter (lua_loader, info);
the_type = find_lua_extension_type (L, info, exten_type);
thread_leave (lua_loader, info, &L);
return the_type != G_TYPE_INVALID;
}
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
static GObject *
peas_plugin_loader_lua_create_extension (PeasPluginLoader *loader,
PeasPluginInfo *info,
GType exten_type,
guint n_parameters,
GParameter *parameters)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
lua_State *L;
GType the_type;
GObject *object = NULL;
L = thread_enter (lua_loader, info);
the_type = find_lua_extension_type (L, info, exten_type);
if (the_type == G_TYPE_INVALID)
goto out;
object = g_object_newv (the_type, n_parameters, parameters);
if (object == NULL)
goto out;
/* We have to remember which interface we are instantiating
* for the deprecated peas_extension_get_extension_type().
*/
g_object_set_qdata (object, quark_extension_type,
GSIZE_TO_POINTER (exten_type));
luaL_checkstack (L, 2, "");
lua_pushlightuserdata (L, object);
lua_pushlightuserdata (L, info);
if (!peas_lua_internal_call (L, "setup_extension", 2, LUA_TNIL))
g_clear_object (&object);
out:
thread_leave (lua_loader, info, &L);
return object;
}
G_GNUC_END_IGNORE_DEPRECATIONS
static gboolean
peas_plugin_loader_lua_load (PeasPluginLoader *loader,
PeasPluginInfo *info)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
lua_State *L;
gboolean success = FALSE;
L = thread_enter (lua_loader, info);
luaL_checkstack (L, 3, "");
lua_pushstring (L, info->filename);
lua_pushstring (L, peas_plugin_info_get_module_dir (info));
lua_pushstring (L, peas_plugin_info_get_module_name (info));
if (peas_lua_internal_call (L, "load", 3, LUA_TBOOLEAN))
{
success = lua_toboolean (L, -1);
lua_pop (L, 1);
}
thread_leave (lua_loader, info, &L);
return success;
}
static void
peas_plugin_loader_lua_unload (PeasPluginLoader *loader,
PeasPluginInfo *info)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
lua_State *L = priv->L;
priv->lgi_enter_func (priv->lgi_lock);
/* The stack should always be empty */
g_assert_cmpint (lua_gettop (info->loader_data), ==, 0);
/* Delete the thread's reference */
lua_pushlightuserdata (L, info);
lua_pushnil (L);
lua_rawset (L, LUA_REGISTRYINDEX);
info->loader_data = NULL;
priv->lgi_leave_func (priv->lgi_lock);
}
static void
peas_plugin_loader_lua_garbage_collect (PeasPluginLoader *loader)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
lua_State *L = priv->L;
priv->lgi_enter_func (priv->lgi_lock);
peas_lua_internal_call (L, "garbage_collect", 0, LUA_TNIL);
priv->lgi_leave_func (priv->lgi_lock);
}
static int
atpanic_handler (lua_State *L)
{
G_BREAKPOINT ();
return 0;
}
static gboolean
peas_plugin_loader_lua_initialize (PeasPluginLoader *loader)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (loader);
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
lua_State *L;
priv->L = L = luaL_newstate ();
if (L == NULL)
{
g_critical ("Failed to allocate lua_State");
return FALSE;
}
/* Set before any other code is run */
if (g_getenv ("PEAS_LUA_DEBUG") != NULL)
lua_atpanic (L, atpanic_handler);
luaL_openlibs (L);
if (!peas_lua_utils_load_resource (L, "strict.lua", 0, 0) ||
!peas_lua_utils_require (L, "lgi") ||
!peas_lua_utils_check_version (L,
LGI_MAJOR_VERSION,
LGI_MINOR_VERSION,
LGI_MICRO_VERSION))
{
/* Already warned */
return FALSE;
}
lua_pushliteral (L, "lock");
lua_rawget (L, -2);
priv->lgi_lock = lua_touserdata (L, -1);
lua_pop (L, 1);
lua_pushliteral (L, "enter");
lua_rawget (L, -2);
priv->lgi_enter_func = lua_touserdata (L, -1);
lua_pop (L, 1);
lua_pushliteral (L, "leave");
lua_rawget (L, -2);
priv->lgi_leave_func = lua_touserdata (L, -1);
lua_pop (L, 1);
if (priv->lgi_lock == NULL ||
priv->lgi_enter_func == NULL ||
priv->lgi_leave_func == NULL)
{
g_warning ("Failed to find 'lgi.lock', 'lgi.enter' and 'lgi.leave'");
return FALSE;
}
/* Pop lgi's module table */
lua_pop (L, 1);
if (!peas_lua_internal_setup (L))
{
/* Already warned */
return FALSE;
}
/* Assert that no values were leaked to the stack */
g_assert_cmpint (lua_gettop (L), ==, 0);
/* Initially the lock is taken by LGI,
* release as we are not running Lua code
*/
priv->lgi_leave_func (priv->lgi_lock);
return TRUE;
}
static gboolean
peas_plugin_loader_lua_is_global (PeasPluginLoader *loader)
{
return FALSE;
}
static void
peas_plugin_loader_lua_init (PeasPluginLoaderLua *lua_loader)
{
}
static void
peas_plugin_loader_lua_finalize (GObject *object)
{
PeasPluginLoaderLua *lua_loader = PEAS_PLUGIN_LOADER_LUA (object);
PeasPluginLoaderLuaPrivate *priv = GET_PRIV (lua_loader);
/* Must take the lock as Lua code will run on lua_close
* and another thread might be running Lua code already
*/
if (priv->lgi_enter_func != NULL)
priv->lgi_enter_func (priv->lgi_lock);
peas_lua_internal_shutdown (priv->L);
g_clear_pointer (&priv->L, lua_close);
G_OBJECT_CLASS (peas_plugin_loader_lua_parent_class)->finalize (object);
}
static void
peas_plugin_loader_lua_class_init (PeasPluginLoaderLuaClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
PeasPluginLoaderClass *loader_class = PEAS_PLUGIN_LOADER_CLASS (klass);
quark_extension_type = g_quark_from_static_string ("peas-extension-type");
object_class->finalize = peas_plugin_loader_lua_finalize;
loader_class->initialize = peas_plugin_loader_lua_initialize;
loader_class->is_global = peas_plugin_loader_lua_is_global;
loader_class->load = peas_plugin_loader_lua_load;
loader_class->unload = peas_plugin_loader_lua_unload;
loader_class->create_extension = peas_plugin_loader_lua_create_extension;
loader_class->provides_extension = peas_plugin_loader_lua_provides_extension;
loader_class->garbage_collect = peas_plugin_loader_lua_garbage_collect;
}
|