mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
launcher: initialize launcher_ctxs once on startup
This commit is contained in:
parent
864b3a9a18
commit
66568508c0
@ -23,6 +23,6 @@ void launcher_ctx_consume(struct launcher_ctx *ctx);
|
|||||||
|
|
||||||
void launcher_ctx_destroy(struct launcher_ctx *ctx);
|
void launcher_ctx_destroy(struct launcher_ctx *ctx);
|
||||||
|
|
||||||
void launcher_ctx_create(pid_t pid);
|
struct launcher_ctx *launcher_ctx_create(pid_t pid);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -116,6 +116,8 @@ struct sway_server {
|
|||||||
struct wlr_xdg_activation_v1 *xdg_activation_v1;
|
struct wlr_xdg_activation_v1 *xdg_activation_v1;
|
||||||
struct wl_listener xdg_activation_v1_request_activate;
|
struct wl_listener xdg_activation_v1_request_activate;
|
||||||
|
|
||||||
|
struct wl_list pending_launcher_ctxs; // launcher_ctx::link
|
||||||
|
|
||||||
// The timeout for transactions, after which a transaction is applied
|
// The timeout for transactions, after which a transaction is applied
|
||||||
// regardless of readiness.
|
// regardless of readiness.
|
||||||
size_t txn_timeout_ms;
|
size_t txn_timeout_ms;
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
#include "sway/server.h"
|
#include "sway/server.h"
|
||||||
#include "sway/desktop/launcher.h"
|
#include "sway/desktop/launcher.h"
|
||||||
|
#include "sway/server.h"
|
||||||
#include "sway/tree/container.h"
|
#include "sway/tree/container.h"
|
||||||
#include "sway/tree/root.h"
|
#include "sway/tree/root.h"
|
||||||
#include "sway/tree/workspace.h"
|
#include "sway/tree/workspace.h"
|
||||||
|
@ -11,8 +11,6 @@
|
|||||||
#include "sway/tree/root.h"
|
#include "sway/tree/root.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
static struct wl_list launcher_ctxs;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the pid of a parent process given the pid of a child process.
|
* Get the pid of a parent process given the pid of a child process.
|
||||||
*
|
*
|
||||||
@ -73,8 +71,7 @@ void launcher_ctx_destroy(struct launcher_ctx *ctx) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct launcher_ctx *launcher_ctx_find_pid(pid_t pid) {
|
struct launcher_ctx *launcher_ctx_find_pid(pid_t pid) {
|
||||||
if (!launcher_ctxs.prev && !launcher_ctxs.next) {
|
if (wl_list_empty(&server.pending_launcher_ctxs)) {
|
||||||
wl_list_init(&launcher_ctxs);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,7 +80,7 @@ struct launcher_ctx *launcher_ctx_find_pid(pid_t pid) {
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
struct launcher_ctx *_ctx = NULL;
|
struct launcher_ctx *_ctx = NULL;
|
||||||
wl_list_for_each(_ctx, &launcher_ctxs, link) {
|
wl_list_for_each(_ctx, &server.pending_launcher_ctxs, link) {
|
||||||
if (pid == _ctx->pid) {
|
if (pid == _ctx->pid) {
|
||||||
ctx = _ctx;
|
ctx = _ctx;
|
||||||
sway_log(SWAY_DEBUG,
|
sway_log(SWAY_DEBUG,
|
||||||
@ -178,17 +175,14 @@ static void token_handle_destroy(struct wl_listener *listener, void *data) {
|
|||||||
launcher_ctx_destroy(ctx);
|
launcher_ctx_destroy(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
void launcher_ctx_create(pid_t pid) {
|
struct launcher_ctx *launcher_ctx_create(pid_t pid) {
|
||||||
sway_log(SWAY_DEBUG, "Recording workspace for process %d", pid);
|
sway_log(SWAY_DEBUG, "Recording workspace for process %d", pid);
|
||||||
if (!launcher_ctxs.prev && !launcher_ctxs.next) {
|
|
||||||
wl_list_init(&launcher_ctxs);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_seat *seat = input_manager_current_seat();
|
struct sway_seat *seat = input_manager_current_seat();
|
||||||
struct sway_workspace *ws = seat_get_focused_workspace(seat);
|
struct sway_workspace *ws = seat_get_focused_workspace(seat);
|
||||||
if (!ws) {
|
if (!ws) {
|
||||||
sway_log(SWAY_DEBUG, "Bailing out, no workspace");
|
sway_log(SWAY_DEBUG, "Bailing out, no workspace");
|
||||||
return;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct launcher_ctx *ctx = calloc(1, sizeof(struct launcher_ctx));
|
struct launcher_ctx *ctx = calloc(1, sizeof(struct launcher_ctx));
|
||||||
@ -206,5 +200,7 @@ void launcher_ctx_create(pid_t pid) {
|
|||||||
ctx->token_destroy.notify = token_handle_destroy;
|
ctx->token_destroy.notify = token_handle_destroy;
|
||||||
wl_signal_add(&token->events.destroy, &ctx->token_destroy);
|
wl_signal_add(&token->events.destroy, &ctx->token_destroy);
|
||||||
|
|
||||||
wl_list_insert(&launcher_ctxs, &ctx->link);
|
wl_list_init(&ctx->link);
|
||||||
|
wl_list_insert(&server.pending_launcher_ctxs, &ctx->link);
|
||||||
|
return ctx;
|
||||||
}
|
}
|
||||||
|
@ -220,6 +220,8 @@ bool server_init(struct sway_server *server) {
|
|||||||
wl_signal_add(&server->xdg_activation_v1->events.request_activate,
|
wl_signal_add(&server->xdg_activation_v1->events.request_activate,
|
||||||
&server->xdg_activation_v1_request_activate);
|
&server->xdg_activation_v1_request_activate);
|
||||||
|
|
||||||
|
wl_list_init(&server->pending_launcher_ctxs);
|
||||||
|
|
||||||
// Avoid using "wayland-0" as display socket
|
// Avoid using "wayland-0" as display socket
|
||||||
char name_candidate[16];
|
char name_candidate[16];
|
||||||
for (unsigned int i = 1; i <= 32; ++i) {
|
for (unsigned int i = 1; i <= 32; ++i) {
|
||||||
|
Loading…
Reference in New Issue
Block a user