2009-04-03 13:09:17 +02:00
|
|
|
/*
|
|
|
|
* spawn.c - Lua configuration management
|
|
|
|
*
|
|
|
|
* Copyright © 2009 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2009-04-27 20:18:39 +02:00
|
|
|
#include <glib/gspawn.h>
|
|
|
|
|
2009-04-03 13:09:17 +02:00
|
|
|
#include "spawn.h"
|
2009-04-03 16:30:18 +02:00
|
|
|
#include "screen.h"
|
2009-04-03 13:09:17 +02:00
|
|
|
#include "luaa.h"
|
2009-04-03 16:30:18 +02:00
|
|
|
#include "event.h"
|
|
|
|
|
|
|
|
/** 20 seconds timeout */
|
|
|
|
#define AWESOME_SPAWN_TIMEOUT 20.0
|
|
|
|
|
|
|
|
/** Wrapper for unrefing startup sequence.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
a_sn_startup_sequence_unref(SnStartupSequence **sss)
|
|
|
|
{
|
|
|
|
return sn_startup_sequence_unref(*sss);
|
|
|
|
}
|
|
|
|
|
|
|
|
DO_ARRAY(SnStartupSequence *, SnStartupSequence, a_sn_startup_sequence_unref)
|
|
|
|
|
|
|
|
/** The array of startup sequence running */
|
|
|
|
SnStartupSequence_array_t sn_waits;
|
|
|
|
|
|
|
|
/** Remove a SnStartupSequence pointer from an array and forget about it.
|
|
|
|
* \param s The startup sequence to found, remove and unref.
|
2009-05-10 01:10:39 +02:00
|
|
|
* \return True if found and removed.
|
2009-04-03 16:30:18 +02:00
|
|
|
*/
|
2009-05-10 01:10:39 +02:00
|
|
|
static inline bool
|
2009-04-03 16:30:18 +02:00
|
|
|
spawn_sequence_remove(SnStartupSequence *s)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < sn_waits.len; i++)
|
|
|
|
if(sn_waits.tab[i] == s)
|
|
|
|
{
|
|
|
|
SnStartupSequence_array_take(&sn_waits, i);
|
2009-05-12 08:11:35 +02:00
|
|
|
sn_startup_sequence_unref(s);
|
2009-05-10 01:10:39 +02:00
|
|
|
return true;
|
2009-04-03 16:30:18 +02:00
|
|
|
}
|
2009-05-10 01:10:39 +02:00
|
|
|
return false;
|
2009-04-03 16:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spawn_monitor_timeout(struct ev_loop *loop, ev_timer *w, int revents)
|
|
|
|
{
|
2009-07-31 16:28:17 +02:00
|
|
|
if(spawn_sequence_remove(w->data))
|
2009-05-09 16:03:27 +02:00
|
|
|
{
|
2009-07-31 16:28:17 +02:00
|
|
|
signal_t *sig = signal_array_getbyid(&global_signals,
|
|
|
|
a_strhash((const unsigned char *) "spawn::timeout"));
|
|
|
|
if(sig)
|
|
|
|
{
|
|
|
|
/* send a timeout signal */
|
|
|
|
lua_createtable(globalconf.L, 0, 2);
|
|
|
|
lua_pushstring(globalconf.L, sn_startup_sequence_get_id(w->data));
|
|
|
|
lua_setfield(globalconf.L, -2, "id");
|
|
|
|
foreach(func, sig->sigfuncs)
|
|
|
|
{
|
|
|
|
lua_pushvalue(globalconf.L, -1);
|
|
|
|
luaA_object_push(globalconf.L, (void *) *func);
|
|
|
|
luaA_dofunction(globalconf.L, 1, 0);
|
|
|
|
}
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2009-05-09 16:03:27 +02:00
|
|
|
}
|
2009-05-09 15:48:45 +02:00
|
|
|
sn_startup_sequence_unref(w->data);
|
2009-04-03 16:30:18 +02:00
|
|
|
p_delete(&w);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spawn_monitor_event(SnMonitorEvent *event, void *data)
|
|
|
|
{
|
|
|
|
SnStartupSequence *sequence = sn_monitor_event_get_startup_sequence(event);
|
|
|
|
SnMonitorEventType event_type = sn_monitor_event_get_type(event);
|
|
|
|
|
2009-04-25 15:04:27 +02:00
|
|
|
lua_createtable(globalconf.L, 0, 2);
|
2009-04-03 16:30:18 +02:00
|
|
|
lua_pushstring(globalconf.L, sn_startup_sequence_get_id(sequence));
|
|
|
|
lua_setfield(globalconf.L, -2, "id");
|
|
|
|
|
2009-07-31 16:28:17 +02:00
|
|
|
const char *event_type_str = NULL;
|
|
|
|
|
2009-04-03 16:30:18 +02:00
|
|
|
switch(event_type)
|
|
|
|
{
|
|
|
|
case SN_MONITOR_EVENT_INITIATED:
|
2009-05-09 15:48:45 +02:00
|
|
|
/* ref the sequence for the array */
|
2009-04-03 16:30:18 +02:00
|
|
|
sn_startup_sequence_ref(sequence);
|
|
|
|
SnStartupSequence_array_append(&sn_waits, sequence);
|
2009-07-31 16:28:17 +02:00
|
|
|
event_type_str = "spawn::initiated";
|
2009-04-03 16:30:18 +02:00
|
|
|
|
|
|
|
/* Add a timeout function so we do not wait for this event to complete
|
|
|
|
* for ever */
|
|
|
|
struct ev_timer *ev_timeout = p_new(struct ev_timer, 1);
|
|
|
|
ev_timer_init(ev_timeout, spawn_monitor_timeout, AWESOME_SPAWN_TIMEOUT, 0.);
|
2009-05-09 15:48:45 +02:00
|
|
|
/* ref the sequence for the callback event */
|
|
|
|
sn_startup_sequence_ref(sequence);
|
2009-04-03 16:30:18 +02:00
|
|
|
ev_timeout->data = sequence;
|
|
|
|
ev_timer_start(globalconf.loop, ev_timeout);
|
|
|
|
break;
|
|
|
|
case SN_MONITOR_EVENT_CHANGED:
|
2009-07-31 16:28:17 +02:00
|
|
|
event_type_str = "spawn::change";
|
2009-04-03 16:30:18 +02:00
|
|
|
break;
|
|
|
|
case SN_MONITOR_EVENT_COMPLETED:
|
2009-07-31 16:28:17 +02:00
|
|
|
event_type_str = "spawn::completed";
|
2009-04-03 16:30:18 +02:00
|
|
|
break;
|
|
|
|
case SN_MONITOR_EVENT_CANCELED:
|
2009-07-31 16:28:17 +02:00
|
|
|
event_type_str = "spawn::canceled";
|
2009-04-03 16:30:18 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* common actions */
|
|
|
|
switch(event_type)
|
|
|
|
{
|
|
|
|
case SN_MONITOR_EVENT_INITIATED:
|
|
|
|
case SN_MONITOR_EVENT_CHANGED:
|
|
|
|
{
|
|
|
|
const char *s = sn_startup_sequence_get_name(sequence);
|
|
|
|
if(s)
|
|
|
|
{
|
|
|
|
lua_pushstring(globalconf.L, s);
|
|
|
|
lua_setfield(globalconf.L, -2, "name");
|
|
|
|
}
|
|
|
|
|
|
|
|
if((s = sn_startup_sequence_get_description(sequence)))
|
|
|
|
{
|
|
|
|
lua_pushstring(globalconf.L, s);
|
|
|
|
lua_setfield(globalconf.L, -2, "description");
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pushnumber(globalconf.L, sn_startup_sequence_get_workspace(sequence));
|
|
|
|
lua_setfield(globalconf.L, -2, "workspace");
|
|
|
|
|
|
|
|
if((s = sn_startup_sequence_get_binary_name(sequence)))
|
|
|
|
{
|
|
|
|
lua_pushstring(globalconf.L, s);
|
|
|
|
lua_setfield(globalconf.L, -2, "binary_name");
|
|
|
|
}
|
|
|
|
|
|
|
|
if((s = sn_startup_sequence_get_icon_name(sequence)))
|
|
|
|
{
|
|
|
|
lua_pushstring(globalconf.L, s);
|
|
|
|
lua_setfield(globalconf.L, -2, "icon_name");
|
|
|
|
}
|
|
|
|
|
|
|
|
if((s = sn_startup_sequence_get_wmclass(sequence)))
|
|
|
|
{
|
|
|
|
lua_pushstring(globalconf.L, s);
|
|
|
|
lua_setfield(globalconf.L, -2, "wmclass");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SN_MONITOR_EVENT_COMPLETED:
|
|
|
|
case SN_MONITOR_EVENT_CANCELED:
|
|
|
|
spawn_sequence_remove(sequence);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-07-31 16:28:17 +02:00
|
|
|
/* send the signal */
|
|
|
|
signal_t *sig = signal_array_getbyid(&global_signals,
|
|
|
|
a_strhash((const unsigned char *) event_type_str));
|
|
|
|
|
|
|
|
if(sig)
|
|
|
|
{
|
|
|
|
foreach(func, sig->sigfuncs)
|
|
|
|
{
|
|
|
|
lua_pushvalue(globalconf.L, -1);
|
|
|
|
luaA_object_push(globalconf.L, (void *) *func);
|
|
|
|
luaA_dofunction(globalconf.L, 1, 0);
|
|
|
|
}
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2009-04-03 16:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Tell the spawn module that an app has been started.
|
|
|
|
* \param c The client that just started.
|
2009-08-24 10:16:52 +02:00
|
|
|
* \param startup_id The startup id of the started application.
|
2009-04-03 16:30:18 +02:00
|
|
|
*/
|
|
|
|
void
|
2009-08-24 10:16:52 +02:00
|
|
|
spawn_start_notify(client_t *c, const char * startup_id)
|
2009-04-03 16:30:18 +02:00
|
|
|
{
|
|
|
|
foreach(_seq, sn_waits)
|
|
|
|
{
|
|
|
|
SnStartupSequence *seq = *_seq;
|
|
|
|
bool found = false;
|
|
|
|
const char *seqid = sn_startup_sequence_get_id(seq);
|
|
|
|
|
2009-08-24 10:16:52 +02:00
|
|
|
if(!a_strcmp(seqid, startup_id))
|
2009-04-03 16:30:18 +02:00
|
|
|
found = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char *seqclass = sn_startup_sequence_get_wmclass(seq);
|
|
|
|
if(!a_strcmp(seqclass, c->class) || !a_strcmp(seqclass, c->instance))
|
|
|
|
found = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char *seqbin = sn_startup_sequence_get_binary_name(seq);
|
|
|
|
if(!a_strcasecmp(seqbin, c->class) || !a_strcasecmp(seqbin, c->instance))
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(found)
|
|
|
|
{
|
|
|
|
sn_startup_sequence_complete(seq);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Initialize program spawner.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
spawn_init(void)
|
|
|
|
{
|
|
|
|
globalconf.sndisplay = sn_xcb_display_new(globalconf.connection, NULL, NULL);
|
|
|
|
|
|
|
|
const int screen_max = xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
|
|
|
|
|
|
|
for(int screen = 0; screen < screen_max; screen++)
|
2009-04-17 16:14:09 +02:00
|
|
|
globalconf.screens.tab[screen].snmonitor = sn_monitor_context_new(globalconf.sndisplay,
|
|
|
|
screen,
|
|
|
|
spawn_monitor_event,
|
|
|
|
NULL, NULL);
|
2009-04-03 16:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spawn_launchee_timeout(struct ev_loop *loop, ev_timer *w, int revents)
|
|
|
|
{
|
|
|
|
sn_launcher_context_complete(w->data);
|
|
|
|
sn_launcher_context_unref(w->data);
|
|
|
|
p_delete(&w);
|
|
|
|
}
|
2009-04-03 13:09:17 +02:00
|
|
|
|
2009-08-25 11:05:58 +02:00
|
|
|
/** Spawn a command.
|
|
|
|
* \param command_line The command line to launch.
|
|
|
|
* \param error A error pointer to fill with the possible error from
|
|
|
|
* g_spawn_async.
|
|
|
|
* \return g_spawn_async value.
|
|
|
|
*/
|
2010-04-24 11:49:57 +02:00
|
|
|
static GPid
|
2009-08-25 11:05:58 +02:00
|
|
|
spawn_command(const gchar *command_line, GError **error)
|
|
|
|
{
|
|
|
|
gboolean retval;
|
2010-04-24 11:49:57 +02:00
|
|
|
GPid pid;
|
2009-08-25 11:05:58 +02:00
|
|
|
gchar **argv = 0;
|
|
|
|
|
|
|
|
if(!g_shell_parse_argv(command_line, NULL, &argv, error))
|
2010-04-24 11:49:57 +02:00
|
|
|
return 0;
|
2009-08-25 11:05:58 +02:00
|
|
|
|
|
|
|
retval = g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH,
|
2010-04-24 11:49:57 +02:00
|
|
|
NULL, NULL, &pid, error);
|
2009-08-25 11:05:58 +02:00
|
|
|
g_strfreev (argv);
|
|
|
|
|
2010-04-24 11:49:57 +02:00
|
|
|
if (!retval)
|
|
|
|
return 0;
|
|
|
|
return pid;
|
2009-08-25 11:05:58 +02:00
|
|
|
}
|
|
|
|
|
2009-04-03 13:09:17 +02:00
|
|
|
/** Spawn a program.
|
|
|
|
* This function is multi-head (Zaphod) aware and will set display to
|
|
|
|
* the right screen according to mouse position.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack
|
|
|
|
* \luastack
|
|
|
|
* \lparam The command to launch.
|
2009-04-03 16:30:18 +02:00
|
|
|
* \lparam Use startup-notification, true or false, default to true.
|
2009-04-03 13:09:17 +02:00
|
|
|
* \lparam The optional screen number to spawn the command on.
|
2010-04-24 17:52:52 +02:00
|
|
|
* \lreturn Process ID if everything is OK, or an error string if an error occured.
|
2009-04-03 13:09:17 +02:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
luaA_spawn(lua_State *L)
|
|
|
|
{
|
|
|
|
char *host, newdisplay[128];
|
|
|
|
const char *cmd;
|
2009-04-03 16:30:18 +02:00
|
|
|
bool use_sn = true;
|
2009-04-03 13:09:17 +02:00
|
|
|
int screen = 0, screenp, displayp;
|
|
|
|
|
2009-04-03 16:30:18 +02:00
|
|
|
if(lua_gettop(L) >= 2)
|
|
|
|
use_sn = luaA_checkboolean(L, 2);
|
|
|
|
|
|
|
|
if(lua_gettop(L) == 3)
|
2009-04-03 13:09:17 +02:00
|
|
|
{
|
2009-04-03 16:30:18 +02:00
|
|
|
screen = luaL_checknumber(L, 3) - 1;
|
2009-04-03 13:09:17 +02:00
|
|
|
luaA_checkscreen(screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = luaL_checkstring(L, 1);
|
|
|
|
|
|
|
|
if(!globalconf.xinerama_is_active)
|
|
|
|
{
|
|
|
|
xcb_parse_display(NULL, &host, &displayp, &screenp);
|
|
|
|
snprintf(newdisplay, sizeof(newdisplay), "%s:%d.%d", host, displayp, screen);
|
|
|
|
setenv("DISPLAY", newdisplay, 1);
|
|
|
|
p_delete(&host);
|
|
|
|
}
|
|
|
|
|
2009-04-27 20:18:39 +02:00
|
|
|
SnLauncherContext *context = NULL;
|
2009-04-03 16:30:18 +02:00
|
|
|
if(use_sn)
|
|
|
|
{
|
|
|
|
char *cmdname, *space;
|
2009-06-09 15:59:38 +02:00
|
|
|
const char *first_no_space_char = cmd;
|
|
|
|
/* Look for the first char which is not space */
|
|
|
|
while(*first_no_space_char && *first_no_space_char == ' ')
|
|
|
|
first_no_space_char++;
|
|
|
|
/* Look for space in the string to get the command name. */
|
|
|
|
if((space = strchr(first_no_space_char, ' ')))
|
2009-04-03 16:30:18 +02:00
|
|
|
cmdname = a_strndup(cmd, space - cmd);
|
|
|
|
else
|
|
|
|
cmdname = a_strdup(cmd);
|
|
|
|
|
2009-04-27 20:18:39 +02:00
|
|
|
context = sn_launcher_context_new(globalconf.sndisplay, screen_virttophys(screen));
|
2009-04-03 16:30:18 +02:00
|
|
|
sn_launcher_context_set_name(context, "awesome");
|
|
|
|
sn_launcher_context_set_description(context, "awesome spawn");
|
|
|
|
sn_launcher_context_set_binary_name(context, cmdname);
|
2010-08-12 14:52:23 +02:00
|
|
|
sn_launcher_context_initiate(context, "awesome", cmdname, globalconf.timestamp);
|
2009-04-03 16:30:18 +02:00
|
|
|
p_delete(&cmdname);
|
|
|
|
|
|
|
|
/* app will have AWESOME_SPAWN_TIMEOUT seconds to complete,
|
|
|
|
* or the timeout function will terminate the launch sequence anyway */
|
|
|
|
struct ev_timer *ev_timeout = p_new(struct ev_timer, 1);
|
|
|
|
ev_timer_init(ev_timeout, spawn_launchee_timeout, AWESOME_SPAWN_TIMEOUT, 0.);
|
|
|
|
ev_timeout->data = context;
|
|
|
|
ev_timer_start(globalconf.loop, ev_timeout);
|
|
|
|
sn_launcher_context_setup_child_process(context);
|
|
|
|
}
|
|
|
|
|
2009-04-27 20:18:39 +02:00
|
|
|
GError *error = NULL;
|
2010-04-24 11:49:57 +02:00
|
|
|
GPid pid = spawn_command(cmd, &error);
|
|
|
|
if(!pid)
|
2009-04-03 13:09:17 +02:00
|
|
|
{
|
2009-04-27 20:18:39 +02:00
|
|
|
/* push error on stack */
|
|
|
|
lua_pushstring(L, error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
if(context)
|
|
|
|
sn_launcher_context_complete(context);
|
|
|
|
return 1;
|
2009-04-03 13:09:17 +02:00
|
|
|
}
|
|
|
|
|
2010-04-24 11:49:57 +02:00
|
|
|
/* push pid on stack */
|
|
|
|
lua_pushnumber(L, pid);
|
|
|
|
|
|
|
|
return 1;
|
2009-04-03 13:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|