2008-05-26 20:39:54 +02:00
|
|
|
/*
|
2009-04-03 13:09:17 +02:00
|
|
|
* luaa.c - Lua configuration management
|
2008-05-26 20:39:54 +02:00
|
|
|
*
|
2009-01-06 17:02:08 +01:00
|
|
|
* Copyright © 2008-2009 Julien Danjou <julien@danjou.info>
|
2008-05-26 20:39:54 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-04-17 16:52:25 +02:00
|
|
|
#define _GNU_SOURCE
|
2008-11-08 14:22:20 +01:00
|
|
|
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "luaa.h"
|
|
|
|
#include "globalconf.h"
|
|
|
|
#include "awesome-version-internal.h"
|
2008-09-02 17:12:10 +02:00
|
|
|
#include "awesome.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "common/backtrace.h"
|
2009-09-07 17:28:55 +02:00
|
|
|
#include "config.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "event.h"
|
2009-09-14 20:22:12 +02:00
|
|
|
#include "objects/client.h"
|
2012-10-14 17:14:22 +02:00
|
|
|
#include "objects/drawable.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "objects/drawin.h"
|
2014-03-30 15:12:47 +02:00
|
|
|
#include "objects/screen.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "objects/tag.h"
|
|
|
|
#include "objects/timer.h"
|
2014-03-07 13:49:24 +01:00
|
|
|
#include "property.h"
|
2009-01-06 17:02:08 +01:00
|
|
|
#include "selection.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "spawn.h"
|
2010-10-06 15:38:44 +02:00
|
|
|
#include "systray.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
|
|
|
|
#include <lua.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
#include <lualib.h>
|
|
|
|
|
|
|
|
#include <basedir_fs.h>
|
|
|
|
|
|
|
|
#include <xcb/xcb_atom.h>
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2009-04-18 16:07:31 +02:00
|
|
|
#ifdef WITH_DBUS
|
2012-06-06 23:07:07 +02:00
|
|
|
extern const struct luaL_Reg awesome_dbus_lib[];
|
2009-04-18 16:07:31 +02:00
|
|
|
#endif
|
2012-06-06 23:07:07 +02:00
|
|
|
extern const struct luaL_Reg awesome_keygrabber_lib[];
|
|
|
|
extern const struct luaL_Reg awesome_mousegrabber_lib[];
|
|
|
|
extern const struct luaL_Reg awesome_root_lib[];
|
|
|
|
extern const struct luaL_Reg awesome_mouse_methods[];
|
|
|
|
extern const struct luaL_Reg awesome_mouse_meta[];
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2009-11-10 10:22:04 +01:00
|
|
|
/** Path to config file */
|
|
|
|
static char *conffile;
|
|
|
|
|
2014-02-23 12:14:50 +01:00
|
|
|
/** Check whether a composite manager is running.
|
|
|
|
* \return True if such a manager is running.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
composite_manager_running(void)
|
|
|
|
{
|
|
|
|
xcb_intern_atom_reply_t *atom_r;
|
|
|
|
xcb_get_selection_owner_reply_t *selection_r;
|
|
|
|
char *atom_name;
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
if(!(atom_name = xcb_atom_name_by_screen("_NET_WM_CM", globalconf.default_screen)))
|
|
|
|
{
|
|
|
|
warn("error getting composite manager atom");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
atom_r = xcb_intern_atom_reply(globalconf.connection,
|
|
|
|
xcb_intern_atom_unchecked(globalconf.connection, false,
|
|
|
|
a_strlen(atom_name), atom_name),
|
|
|
|
NULL);
|
|
|
|
p_delete(&atom_name);
|
|
|
|
if(!atom_r)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
selection_r = xcb_get_selection_owner_reply(globalconf.connection,
|
|
|
|
xcb_get_selection_owner_unchecked(globalconf.connection,
|
|
|
|
atom_r->atom),
|
|
|
|
NULL);
|
|
|
|
p_delete(&atom_r);
|
|
|
|
|
|
|
|
result = selection_r != NULL && selection_r->owner != XCB_NONE;
|
|
|
|
p_delete(&selection_r);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-05-26 20:39:54 +02:00
|
|
|
/** Quit awesome.
|
2008-10-01 09:55:28 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
2008-05-26 20:39:54 +02:00
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
2010-08-08 18:19:15 +02:00
|
|
|
luaA_quit(lua_State *L)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2012-11-21 21:01:12 +01:00
|
|
|
g_main_loop_quit(globalconf.loop);
|
2008-05-20 15:39:47 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-26 20:39:54 +02:00
|
|
|
/** Execute another application, probably a window manager, to replace
|
|
|
|
* awesome.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \param L The Lua VM state.
|
2008-10-01 09:55:28 +02:00
|
|
|
* \return The number of elements pushed on stack.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \luastack
|
|
|
|
* \lparam The command line to execute.
|
2008-05-26 20:39:54 +02:00
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_exec(lua_State *L)
|
|
|
|
{
|
|
|
|
const char *cmd = luaL_checkstring(L, 1);
|
|
|
|
|
2011-03-20 23:20:02 +01:00
|
|
|
awesome_atexit(false);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
a_exec(cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-26 20:39:54 +02:00
|
|
|
/** Restart awesome.
|
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
2010-08-08 18:19:15 +02:00
|
|
|
luaA_restart(lua_State *L)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2008-09-02 17:12:10 +02:00
|
|
|
awesome_restart();
|
2008-05-20 15:39:47 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-29 14:08:57 +01:00
|
|
|
/** Load an image from a given path.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam The command line to execute.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_load_image(lua_State *L)
|
|
|
|
{
|
|
|
|
const char *filename = luaL_checkstring(L, 1);
|
2012-05-28 09:29:47 +02:00
|
|
|
cairo_surface_t *surface = draw_load_image(L, filename);
|
|
|
|
if (!surface)
|
|
|
|
return 0;
|
|
|
|
/* lua has to make sure to free the ref or we have a leak */
|
|
|
|
lua_pushlightuserdata(L, surface);
|
|
|
|
return 1;
|
2012-01-29 14:08:57 +01:00
|
|
|
}
|
|
|
|
|
2008-10-19 19:14:55 +02:00
|
|
|
/** UTF-8 aware string length computing.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
2008-06-25 11:42:06 +02:00
|
|
|
static int
|
|
|
|
luaA_mbstrlen(lua_State *L)
|
|
|
|
{
|
|
|
|
const char *cmd = luaL_checkstring(L, 1);
|
2009-03-15 10:01:25 +01:00
|
|
|
lua_pushnumber(L, (ssize_t) mbstowcs(NULL, NONULL(cmd), 0));
|
2008-06-25 11:42:06 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-03 22:33:11 +01:00
|
|
|
/** Enhanced type() function which recognize awesome objects.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of arguments pushed on the stack.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaAe_type(lua_State *L)
|
|
|
|
{
|
|
|
|
luaL_checkany(L, 1);
|
2009-06-15 17:57:04 +02:00
|
|
|
lua_pushstring(L, luaA_typename(L, 1));
|
2008-12-03 22:33:11 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-10-01 09:55:28 +02:00
|
|
|
/** Replace various standards Lua functions with our own.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
*/
|
2008-06-25 11:42:06 +02:00
|
|
|
static void
|
|
|
|
luaA_fixups(lua_State *L)
|
|
|
|
{
|
2008-12-15 14:06:22 +01:00
|
|
|
/* export string.wlen */
|
2008-06-25 11:42:06 +02:00
|
|
|
lua_getglobal(L, "string");
|
|
|
|
lua_pushcfunction(L, luaA_mbstrlen);
|
2008-12-15 14:06:22 +01:00
|
|
|
lua_setfield(L, -2, "wlen");
|
2008-06-25 11:42:06 +02:00
|
|
|
lua_pop(L, 1);
|
2008-12-03 22:33:11 +01:00
|
|
|
/* replace type */
|
|
|
|
lua_pushcfunction(L, luaAe_type);
|
2012-06-08 01:25:35 +02:00
|
|
|
lua_setglobal(L, "type");
|
2009-01-06 17:02:08 +01:00
|
|
|
/* set selection */
|
|
|
|
lua_pushcfunction(L, luaA_selection_get);
|
2012-06-08 01:25:35 +02:00
|
|
|
lua_setglobal(L, "selection");
|
2008-06-25 11:42:06 +02:00
|
|
|
}
|
|
|
|
|
2008-11-13 15:06:42 +01:00
|
|
|
/** awesome global table.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
2008-11-13 15:11:37 +01:00
|
|
|
* \luastack
|
|
|
|
* \lfield conffile The configuration file which has been loaded.
|
2014-03-07 10:44:48 +01:00
|
|
|
* \lfield version The version of awesome.
|
|
|
|
* \lfield release The release name of awesome.
|
2014-03-16 20:09:43 +01:00
|
|
|
* \lfield startup True if we are still in startup, false otherwise.
|
2014-03-07 10:44:48 +01:00
|
|
|
* \lfield startup_errors Error message for errors that occured during startup.
|
|
|
|
* \lfield composite_manager_running True if a composite manager is running.
|
2008-11-13 15:06:42 +01:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_awesome_index(lua_State *L)
|
|
|
|
{
|
|
|
|
if(luaA_usemetatable(L, 1, 2))
|
|
|
|
return 1;
|
|
|
|
|
2010-09-02 19:08:08 +02:00
|
|
|
const char *buf = luaL_checkstring(L, 2);
|
2008-11-13 15:06:42 +01:00
|
|
|
|
2011-11-17 16:38:39 +01:00
|
|
|
if(A_STREQ(buf, "conffile"))
|
|
|
|
{
|
2009-11-10 10:22:04 +01:00
|
|
|
lua_pushstring(L, conffile);
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(A_STREQ(buf, "version"))
|
|
|
|
{
|
2009-04-28 16:21:50 +02:00
|
|
|
lua_pushliteral(L, AWESOME_VERSION);
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(A_STREQ(buf, "release"))
|
|
|
|
{
|
2009-04-28 16:21:50 +02:00
|
|
|
lua_pushliteral(L, AWESOME_RELEASE);
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-03-16 20:09:43 +01:00
|
|
|
if(A_STREQ(buf, "startup"))
|
|
|
|
{
|
|
|
|
lua_pushboolean(L, globalconf.loop == NULL);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-03-23 19:29:04 +01:00
|
|
|
if(A_STREQ(buf, "startup_errors"))
|
2011-10-23 15:59:15 +02:00
|
|
|
{
|
2014-03-23 19:29:04 +01:00
|
|
|
if (globalconf.startup_errors.len == 0)
|
|
|
|
return 0;
|
2011-10-23 15:59:15 +02:00
|
|
|
lua_pushstring(L, globalconf.startup_errors.s);
|
|
|
|
return 1;
|
|
|
|
}
|
2008-11-13 15:06:42 +01:00
|
|
|
|
2014-02-23 12:14:50 +01:00
|
|
|
if(A_STREQ(buf, "composite_manager_running"))
|
|
|
|
{
|
|
|
|
lua_pushboolean(L, composite_manager_running());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-03-23 19:09:11 +01:00
|
|
|
return luaA_default_index(L);
|
2008-11-13 15:06:42 +01:00
|
|
|
}
|
|
|
|
|
2009-07-31 16:28:17 +02:00
|
|
|
/** Add a global signal.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam A string with the event name.
|
|
|
|
* \lparam The function to call.
|
|
|
|
*/
|
|
|
|
static int
|
2009-10-09 20:39:55 +02:00
|
|
|
luaA_awesome_connect_signal(lua_State *L)
|
2009-07-31 16:28:17 +02:00
|
|
|
{
|
|
|
|
const char *name = luaL_checkstring(L, 1);
|
|
|
|
luaA_checkfunction(L, 2);
|
2010-08-25 20:48:42 +02:00
|
|
|
signal_connect(&global_signals, name, luaA_object_ref(L, 2));
|
2009-07-31 16:28:17 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Remove a global signal.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam A string with the event name.
|
|
|
|
* \lparam The function to call.
|
|
|
|
*/
|
|
|
|
static int
|
2009-10-09 20:39:55 +02:00
|
|
|
luaA_awesome_disconnect_signal(lua_State *L)
|
2009-07-31 16:28:17 +02:00
|
|
|
{
|
|
|
|
const char *name = luaL_checkstring(L, 1);
|
|
|
|
luaA_checkfunction(L, 2);
|
|
|
|
const void *func = lua_topointer(L, 2);
|
2010-08-25 20:48:42 +02:00
|
|
|
signal_disconnect(&global_signals, name, func);
|
2009-07-31 16:28:17 +02:00
|
|
|
luaA_object_unref(L, (void *) func);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Emit a global signal.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam A string with the event name.
|
|
|
|
* \lparam The function to call.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_awesome_emit_signal(lua_State *L)
|
|
|
|
{
|
2009-08-18 18:11:27 +02:00
|
|
|
signal_object_emit(L, &global_signals, luaL_checkstring(L, 1), lua_gettop(L) - 1);
|
2009-07-31 16:28:17 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-27 16:04:40 +02:00
|
|
|
static int
|
|
|
|
luaA_panic(lua_State *L)
|
|
|
|
{
|
2009-11-09 12:44:19 +01:00
|
|
|
warn("unprotected error in call to Lua API (%s)",
|
2009-08-27 16:04:40 +02:00
|
|
|
lua_tostring(L, -1));
|
2009-11-09 12:44:19 +01:00
|
|
|
buffer_t buf;
|
|
|
|
backtrace_get(&buf);
|
|
|
|
warn("dumping backtrace\n%s", buf.s);
|
|
|
|
warn("restarting awesome");
|
2009-08-27 16:04:40 +02:00
|
|
|
awesome_restart();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-27 17:53:51 +02:00
|
|
|
static int
|
|
|
|
luaA_dofunction_on_error(lua_State *L)
|
|
|
|
{
|
2009-08-27 17:55:47 +02:00
|
|
|
/* duplicate string error */
|
|
|
|
lua_pushvalue(L, -1);
|
|
|
|
/* emit error signal */
|
|
|
|
signal_object_emit(L, &global_signals, "debug::error", 1);
|
|
|
|
|
2009-08-27 17:53:51 +02:00
|
|
|
if(!luaL_dostring(L, "return debug.traceback(\"error while running function\", 3)"))
|
|
|
|
{
|
|
|
|
/* Move traceback before error */
|
|
|
|
lua_insert(L, -2);
|
|
|
|
/* Insert sentence */
|
|
|
|
lua_pushliteral(L, "\nerror: ");
|
|
|
|
/* Move it before error */
|
|
|
|
lua_insert(L, -2);
|
|
|
|
lua_concat(L, 3);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-06-08 21:49:15 +02:00
|
|
|
/** Initialize the Lua VM
|
2009-04-08 15:47:31 +02:00
|
|
|
* \param xdg An xdg handle to use to get XDG basedir.
|
2008-06-08 21:49:15 +02:00
|
|
|
*/
|
|
|
|
void
|
2009-04-18 18:50:55 +02:00
|
|
|
luaA_init(xdgHandle* xdg)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
|
|
|
lua_State *L;
|
2012-06-06 23:07:07 +02:00
|
|
|
static const struct luaL_Reg awesome_lib[] =
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
|
|
|
{ "quit", luaA_quit },
|
|
|
|
{ "exec", luaA_exec },
|
2008-08-14 22:16:13 +02:00
|
|
|
{ "spawn", luaA_spawn },
|
2008-05-20 15:39:47 +02:00
|
|
|
{ "restart", luaA_restart },
|
2009-10-09 20:39:55 +02:00
|
|
|
{ "connect_signal", luaA_awesome_connect_signal },
|
|
|
|
{ "disconnect_signal", luaA_awesome_disconnect_signal },
|
2009-07-31 16:28:17 +02:00
|
|
|
{ "emit_signal", luaA_awesome_emit_signal },
|
2010-10-06 15:38:44 +02:00
|
|
|
{ "systray", luaA_systray },
|
2012-01-29 14:08:57 +01:00
|
|
|
{ "load_image", luaA_load_image },
|
2014-03-07 13:49:24 +01:00
|
|
|
{ "register_xproperty", luaA_register_xproperty },
|
2014-03-23 18:15:03 +01:00
|
|
|
{ "set_xproperty", luaA_set_xproperty },
|
|
|
|
{ "get_xproperty", luaA_get_xproperty },
|
2008-11-13 15:06:42 +01:00
|
|
|
{ "__index", luaA_awesome_index },
|
2014-03-23 19:09:11 +01:00
|
|
|
{ "__newindex", luaA_default_newindex },
|
2008-05-20 15:39:47 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2008-06-28 13:57:11 +02:00
|
|
|
L = globalconf.L = luaL_newstate();
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2009-08-27 16:04:40 +02:00
|
|
|
/* Set panic function */
|
|
|
|
lua_atpanic(L, luaA_panic);
|
|
|
|
|
2009-08-27 17:53:51 +02:00
|
|
|
/* Set error handling function */
|
|
|
|
lualib_dofunction_on_error = luaA_dofunction_on_error;
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
luaL_openlibs(L);
|
|
|
|
|
2008-06-25 11:42:06 +02:00
|
|
|
luaA_fixups(L);
|
|
|
|
|
2009-07-28 10:40:51 +02:00
|
|
|
luaA_object_setup(L);
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/* Export awesome lib */
|
2008-11-13 15:06:42 +01:00
|
|
|
luaA_openlib(L, "awesome", awesome_lib, awesome_lib);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2009-08-14 16:46:35 +02:00
|
|
|
/* Export root lib */
|
2012-06-12 13:32:40 +02:00
|
|
|
luaA_registerlib(L, "root", awesome_root_lib);
|
|
|
|
lua_pop(L, 1); /* luaA_registerlib() leaves the table on stack */
|
2009-01-05 14:31:42 +01:00
|
|
|
|
2009-04-18 16:07:31 +02:00
|
|
|
#ifdef WITH_DBUS
|
2008-11-18 16:31:27 +01:00
|
|
|
/* Export D-Bus lib */
|
2012-06-12 13:32:40 +02:00
|
|
|
luaA_registerlib(L, "dbus", awesome_dbus_lib);
|
|
|
|
lua_pop(L, 1); /* luaA_registerlib() leaves the table on stack */
|
2009-04-18 16:07:31 +02:00
|
|
|
#endif
|
2008-11-18 16:31:27 +01:00
|
|
|
|
2008-06-10 16:50:55 +02:00
|
|
|
/* Export keygrabber lib */
|
2012-06-12 13:32:40 +02:00
|
|
|
luaA_registerlib(L, "keygrabber", awesome_keygrabber_lib);
|
|
|
|
lua_pop(L, 1); /* luaA_registerlib() leaves the table on stack */
|
2008-06-10 16:50:55 +02:00
|
|
|
|
2008-11-13 16:08:34 +01:00
|
|
|
/* Export mousegrabber lib */
|
2012-06-12 13:32:40 +02:00
|
|
|
luaA_registerlib(L, "mousegrabber", awesome_mousegrabber_lib);
|
|
|
|
lua_pop(L, 1); /* luaA_registerlib() leaves the table on stack */
|
2008-11-13 16:08:34 +01:00
|
|
|
|
2008-06-13 15:35:47 +02:00
|
|
|
/* Export mouse */
|
|
|
|
luaA_openlib(L, "mouse", awesome_mouse_methods, awesome_mouse_meta);
|
|
|
|
|
2014-03-30 16:37:19 +02:00
|
|
|
/* Export screen */
|
|
|
|
screen_class_setup(L);
|
|
|
|
|
2008-08-12 13:23:10 +02:00
|
|
|
/* Export button */
|
2009-08-17 14:10:03 +02:00
|
|
|
button_class_setup(L);
|
2008-08-12 13:23:10 +02:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/* Export tag */
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_class_setup(L);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2009-09-30 16:04:42 +02:00
|
|
|
/* Export window */
|
|
|
|
window_class_setup(L);
|
|
|
|
|
2012-10-14 17:14:22 +02:00
|
|
|
/* Export drawable */
|
|
|
|
drawable_class_setup(L);
|
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
/* Export drawin */
|
|
|
|
drawin_class_setup(L);
|
2008-09-21 20:39:23 +02:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/* Export client */
|
2009-08-17 17:02:45 +02:00
|
|
|
client_class_setup(L);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-05-28 12:15:00 +02:00
|
|
|
/* Export keys */
|
2009-06-24 17:44:06 +02:00
|
|
|
key_class_setup(L);
|
2008-05-28 12:15:00 +02:00
|
|
|
|
2009-06-30 12:10:30 +02:00
|
|
|
/* Export timer */
|
|
|
|
timer_class_setup(L);
|
|
|
|
|
2009-09-04 21:53:38 +02:00
|
|
|
/* add Lua search paths */
|
2009-05-09 10:09:21 +02:00
|
|
|
lua_getglobal(L, "package");
|
|
|
|
if (LUA_TTABLE != lua_type(L, 1))
|
|
|
|
{
|
|
|
|
warn("package is not a table");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lua_getfield(L, 1, "path");
|
|
|
|
if (LUA_TSTRING != lua_type(L, 2))
|
|
|
|
{
|
|
|
|
warn("package.path is not a string");
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return;
|
|
|
|
}
|
2008-11-08 14:22:20 +01:00
|
|
|
|
2009-04-07 17:57:01 +02:00
|
|
|
/* add XDG_CONFIG_DIR as include path */
|
|
|
|
const char * const *xdgconfigdirs = xdgSearchableConfigDirectories(xdg);
|
|
|
|
for(; *xdgconfigdirs; xdgconfigdirs++)
|
2008-11-08 14:22:20 +01:00
|
|
|
{
|
2009-04-26 20:22:10 +02:00
|
|
|
size_t len = a_strlen(*xdgconfigdirs);
|
2009-05-09 10:09:21 +02:00
|
|
|
lua_pushliteral(L, ";");
|
|
|
|
lua_pushlstring(L, *xdgconfigdirs, len);
|
|
|
|
lua_pushliteral(L, "/awesome/?.lua");
|
|
|
|
lua_concat(L, 3);
|
|
|
|
|
|
|
|
lua_pushliteral(L, ";");
|
|
|
|
lua_pushlstring(L, *xdgconfigdirs, len);
|
|
|
|
lua_pushliteral(L, "/awesome/?/init.lua");
|
|
|
|
lua_concat(L, 3);
|
|
|
|
|
|
|
|
lua_concat(L, 3); /* concatenate with package.path */
|
2008-11-08 14:22:20 +01:00
|
|
|
}
|
2009-09-04 21:53:38 +02:00
|
|
|
|
|
|
|
/* add Lua lib path (/usr/share/awesome/lib by default) */
|
|
|
|
lua_pushliteral(L, ";" AWESOME_LUA_LIB_PATH "/?.lua");
|
|
|
|
lua_pushliteral(L, ";" AWESOME_LUA_LIB_PATH "/?/init.lua");
|
|
|
|
lua_concat(L, 3); /* concatenate with package.path */
|
2009-05-09 10:09:21 +02:00
|
|
|
lua_setfield(L, 1, "path"); /* package.path = "concatenated string" */
|
2010-08-22 17:01:28 +02:00
|
|
|
|
|
|
|
lua_getfield(L, 1, "loaded");
|
|
|
|
|
|
|
|
lua_pop(L, 2); /* pop "package" and "package.loaded" */
|
2010-08-25 23:00:36 +02:00
|
|
|
|
2010-08-27 21:42:14 +02:00
|
|
|
signal_add(&global_signals, "debug::error");
|
2011-12-05 00:34:04 +01:00
|
|
|
signal_add(&global_signals, "debug::deprecation");
|
2010-08-25 23:00:36 +02:00
|
|
|
signal_add(&global_signals, "debug::index::miss");
|
|
|
|
signal_add(&global_signals, "debug::newindex::miss");
|
2010-10-06 15:38:44 +02:00
|
|
|
signal_add(&global_signals, "systray::update");
|
2012-04-07 21:52:24 +02:00
|
|
|
signal_add(&global_signals, "wallpaper_changed");
|
2010-10-15 18:48:07 +02:00
|
|
|
signal_add(&global_signals, "refresh");
|
2010-08-26 17:46:17 +02:00
|
|
|
signal_add(&global_signals, "exit");
|
2008-11-08 14:22:20 +01:00
|
|
|
}
|
2008-07-08 14:07:56 +02:00
|
|
|
|
2011-10-23 15:59:15 +02:00
|
|
|
static void
|
|
|
|
luaA_startup_error(const char *err)
|
|
|
|
{
|
|
|
|
if (globalconf.startup_errors.len > 0)
|
|
|
|
buffer_addsl(&globalconf.startup_errors, "\n\n");
|
|
|
|
buffer_adds(&globalconf.startup_errors, err);
|
|
|
|
}
|
|
|
|
|
2008-09-30 16:59:08 +02:00
|
|
|
static bool
|
|
|
|
luaA_loadrc(const char *confpath, bool run)
|
|
|
|
{
|
2009-03-02 14:16:08 +01:00
|
|
|
if(!luaL_loadfile(globalconf.L, confpath))
|
2008-09-30 16:59:08 +02:00
|
|
|
{
|
2009-03-02 14:16:08 +01:00
|
|
|
if(run)
|
2008-09-30 16:59:08 +02:00
|
|
|
{
|
2011-09-17 17:21:34 +02:00
|
|
|
/* Set the conffile right now so it can be used inside the
|
|
|
|
* configuration file. */
|
|
|
|
conffile = a_strdup(confpath);
|
2013-06-08 13:21:14 +02:00
|
|
|
/* Move error handling function before function */
|
|
|
|
lua_pushcfunction(globalconf.L, luaA_dofunction_on_error);
|
|
|
|
lua_insert(globalconf.L, -2);
|
|
|
|
if(lua_pcall(globalconf.L, 0, LUA_MULTRET, -2))
|
2011-09-17 17:21:34 +02:00
|
|
|
{
|
2011-10-23 15:59:15 +02:00
|
|
|
const char *err = lua_tostring(globalconf.L, -1);
|
|
|
|
luaA_startup_error(err);
|
|
|
|
fprintf(stderr, "%s\n", err);
|
2011-09-17 17:21:34 +02:00
|
|
|
/* An error happened, so reset this. */
|
|
|
|
conffile = NULL;
|
|
|
|
}
|
2009-03-02 14:16:08 +01:00
|
|
|
else
|
|
|
|
return true;
|
2008-09-30 16:59:08 +02:00
|
|
|
}
|
|
|
|
else
|
2010-07-15 19:21:02 +02:00
|
|
|
{
|
2009-03-02 14:16:08 +01:00
|
|
|
lua_pop(globalconf.L, 1);
|
2010-07-15 19:21:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-09-30 16:59:08 +02:00
|
|
|
}
|
2009-03-02 14:16:08 +01:00
|
|
|
else
|
2011-10-23 15:59:15 +02:00
|
|
|
{
|
|
|
|
const char *err = lua_tostring(globalconf.L, -1);
|
|
|
|
luaA_startup_error(err);
|
|
|
|
fprintf(stderr, "%s\n", err);
|
|
|
|
}
|
2009-03-02 14:16:08 +01:00
|
|
|
|
2008-09-30 16:59:08 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-07-08 14:07:56 +02:00
|
|
|
/** Load a configuration file.
|
2009-04-08 15:47:31 +02:00
|
|
|
* \param xdg An xdg handle to use to get XDG basedir.
|
2008-09-30 16:59:08 +02:00
|
|
|
* \param confpatharg The configuration file to load.
|
|
|
|
* \param run Run the configuration file.
|
2008-06-08 21:49:15 +02:00
|
|
|
*/
|
2008-09-30 16:59:08 +02:00
|
|
|
bool
|
2009-04-18 18:50:55 +02:00
|
|
|
luaA_parserc(xdgHandle* xdg, const char *confpatharg, bool run)
|
2008-06-08 21:49:15 +02:00
|
|
|
{
|
2009-04-07 17:57:01 +02:00
|
|
|
char *confpath = NULL;
|
2008-11-08 14:22:20 +01:00
|
|
|
bool ret = false;
|
2008-07-08 14:07:56 +02:00
|
|
|
|
2008-11-08 14:22:20 +01:00
|
|
|
/* try to load, return if it's ok */
|
2009-03-02 14:16:08 +01:00
|
|
|
if(confpatharg)
|
2008-07-08 14:07:56 +02:00
|
|
|
{
|
2009-03-02 14:16:08 +01:00
|
|
|
if(luaA_loadrc(confpatharg, run))
|
|
|
|
{
|
|
|
|
ret = true;
|
|
|
|
goto bailout;
|
|
|
|
}
|
|
|
|
else if(!run)
|
|
|
|
goto bailout;
|
2008-07-08 14:07:56 +02:00
|
|
|
}
|
2008-11-08 14:22:20 +01:00
|
|
|
|
2009-04-07 17:57:01 +02:00
|
|
|
confpath = xdgConfigFind("awesome/rc.lua", xdg);
|
2008-07-08 14:07:56 +02:00
|
|
|
|
2009-04-07 17:57:01 +02:00
|
|
|
char *tmp = confpath;
|
2008-07-08 14:07:56 +02:00
|
|
|
|
2009-04-07 17:57:01 +02:00
|
|
|
/* confpath is "string1\0string2\0string3\0\0" */
|
2009-06-01 13:01:31 +02:00
|
|
|
while(*tmp)
|
2008-07-08 14:07:56 +02:00
|
|
|
{
|
2009-04-07 17:57:01 +02:00
|
|
|
if(luaA_loadrc(tmp, run))
|
2008-11-08 14:22:20 +01:00
|
|
|
{
|
|
|
|
ret = true;
|
|
|
|
goto bailout;
|
|
|
|
}
|
2009-03-02 14:16:08 +01:00
|
|
|
else if(!run)
|
|
|
|
goto bailout;
|
2009-04-07 17:57:01 +02:00
|
|
|
tmp += a_strlen(tmp) + 1;
|
2009-06-01 13:01:31 +02:00
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-11-08 14:22:20 +01:00
|
|
|
bailout:
|
|
|
|
|
|
|
|
p_delete(&confpath);
|
|
|
|
|
2008-09-30 16:59:08 +02:00
|
|
|
return ret;
|
2008-05-20 15:39:47 +02:00
|
|
|
}
|
|
|
|
|
2009-08-20 17:37:46 +02:00
|
|
|
int
|
|
|
|
luaA_class_index_miss_property(lua_State *L, lua_object_t *obj)
|
|
|
|
{
|
|
|
|
signal_object_emit(L, &global_signals, "debug::index::miss", 2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
luaA_class_newindex_miss_property(lua_State *L, lua_object_t *obj)
|
|
|
|
{
|
|
|
|
signal_object_emit(L, &global_signals, "debug::newindex::miss", 3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-15 18:48:07 +02:00
|
|
|
void
|
|
|
|
luaA_emit_refresh()
|
|
|
|
{
|
|
|
|
signal_object_emit(globalconf.L, &global_signals, "refresh", 0);
|
|
|
|
}
|
|
|
|
|
2014-03-23 19:09:11 +01:00
|
|
|
int
|
|
|
|
luaA_default_index(lua_State *L)
|
|
|
|
{
|
|
|
|
return luaA_class_index_miss_property(L, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
luaA_default_newindex(lua_State *L)
|
|
|
|
{
|
|
|
|
return luaA_class_newindex_miss_property(L, NULL);
|
|
|
|
}
|
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|