kiwmi/kiwmi/server.c

145 lines
3.9 KiB
C
Raw Normal View History

2019-02-17 13:23:20 +01:00
/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2019-10-16 18:59:29 +02:00
#include "server.h"
2019-02-17 13:19:28 +01:00
2019-10-18 22:42:30 +02:00
#include <stdio.h>
2019-02-17 13:19:28 +01:00
#include <stdlib.h>
2019-10-18 22:42:30 +02:00
#include <limits.h>
2019-02-17 13:19:28 +01:00
#include <wayland-server.h>
#include <wlr/backend.h>
2019-03-21 22:12:54 +01:00
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_data_control_v1.h>
2021-08-01 16:41:03 +00:00
#include <wlr/types/wlr_gamma_control_v1.h>
#include <wlr/types/wlr_primary_selection_v1.h>
2019-12-04 16:54:46 +00:00
#include <wlr/types/wlr_screencopy_v1.h>
2019-02-17 13:19:28 +01:00
#include <wlr/util/log.h>
2020-01-02 00:11:46 +00:00
#include "luak/luak.h"
2019-10-18 23:32:29 +02:00
2019-02-17 13:19:28 +01:00
bool
2019-10-18 22:42:30 +02:00
server_init(struct kiwmi_server *server, char *config_path)
2019-02-17 13:19:28 +01:00
{
wlr_log(WLR_DEBUG, "Initializing Wayland server");
2019-12-04 16:55:25 +00:00
server->wl_display = wl_display_create();
if (!server->wl_display) {
wlr_log(WLR_ERROR, "Failed to create display");
return false;
}
2019-04-08 18:10:37 +02:00
server->wl_event_loop = wl_display_get_event_loop(server->wl_display);
2019-12-04 16:55:25 +00:00
server->backend = wlr_backend_autocreate(server->wl_display);
2019-02-17 13:19:28 +01:00
if (!server->backend) {
wlr_log(WLR_ERROR, "Failed to create backend");
2019-02-18 12:37:23 +01:00
wl_display_destroy(server->wl_display);
2019-02-17 13:19:28 +01:00
return false;
}
struct wlr_renderer *renderer = wlr_backend_get_renderer(server->backend);
wlr_renderer_init_wl_display(renderer, server->wl_display);
2019-03-17 20:04:52 +01:00
if (!desktop_init(&server->desktop, renderer)) {
wlr_log(WLR_ERROR, "Failed to initialize desktop");
2019-03-07 19:25:38 +01:00
wl_display_destroy(server->wl_display);
return false;
}
2019-03-17 20:17:41 +01:00
if (!input_init(&server->input)) {
wlr_log(WLR_ERROR, "Failed to initialize input");
wl_display_destroy(server->wl_display);
return false;
}
2019-03-07 23:36:45 +01:00
wlr_data_control_manager_v1_create(server->wl_display);
2021-08-01 16:41:03 +00:00
wlr_gamma_control_manager_v1_create(server->wl_display);
wlr_primary_selection_v1_device_manager_create(server->wl_display);
2019-04-08 18:10:37 +02:00
server->socket = wl_display_add_socket_auto(server->wl_display);
if (!server->socket) {
wlr_log(WLR_ERROR, "Failed to open Wayland socket");
wl_display_destroy(server->wl_display);
return false;
}
2019-10-18 22:42:30 +02:00
if (!config_path) {
// default config path
2019-12-11 13:46:09 +00:00
config_path = realloc(config_path, PATH_MAX);
2019-10-18 22:42:30 +02:00
if (!config_path) {
wlr_log(WLR_ERROR, "Falied to allocate memory");
wl_display_destroy(server->wl_display);
return false;
}
const char *config_home = getenv("XDG_CONFIG_HOME");
if (config_home) {
snprintf(config_path, PATH_MAX, "%s/kiwmi/init.lua", config_home);
} else {
2019-12-04 16:55:25 +00:00
snprintf(
config_path,
PATH_MAX,
"%s/.config/kiwmi/init.lua",
getenv("HOME"));
2019-10-18 22:42:30 +02:00
}
}
2019-12-04 16:54:46 +00:00
wlr_screencopy_manager_v1_create(server->wl_display);
2019-10-18 22:42:30 +02:00
server->config_path = config_path;
2020-01-02 00:11:46 +00:00
if (!(server->lua = luaK_create(server))) {
2019-10-18 23:32:29 +02:00
wlr_log(WLR_ERROR, "Failed to initialize Lua");
wl_display_destroy(server->wl_display);
return false;
}
2019-02-18 12:37:23 +01:00
return true;
}
bool
server_run(struct kiwmi_server *server)
{
wlr_log(
WLR_DEBUG, "Running Wayland server on display '%s'", server->socket);
setenv("WAYLAND_DISPLAY", server->socket, true);
if (!luaK_dofile(server->lua, server->config_path)) {
2019-02-17 13:19:28 +01:00
wl_display_destroy(server->wl_display);
return false;
}
if (!wlr_backend_start(server->backend)) {
wlr_log(WLR_ERROR, "Failed to start backend");
2019-10-18 23:32:29 +02:00
wl_display_destroy(server->wl_display);
return false;
}
2019-02-17 13:19:28 +01:00
wl_display_run(server->wl_display);
2019-02-18 12:37:23 +01:00
return true;
2019-02-17 13:19:28 +01:00
}
void
server_fini(struct kiwmi_server *server)
{
wlr_log(WLR_DEBUG, "Shutting down Wayland server");
wl_display_destroy_clients(server->wl_display);
wl_display_destroy(server->wl_display);
2019-10-18 22:42:30 +02:00
2020-01-15 20:52:26 +00:00
desktop_fini(&server->desktop);
input_fini(&server->input);
2020-01-02 00:11:46 +00:00
luaK_destroy(server->lua);
2019-12-31 00:09:06 +00:00
2019-10-18 22:42:30 +02:00
free(server->config_path);
2019-02-17 13:19:28 +01:00
}