2020-07-31 00:22:18 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "libseat.h"
|
|
|
|
|
|
|
|
static void handle_enable(struct libseat *backend, void *data) {
|
|
|
|
(void)backend;
|
|
|
|
int *active = (int *)data;
|
|
|
|
(*active)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_disable(struct libseat *backend, void *data) {
|
|
|
|
(void)backend;
|
|
|
|
int *active = (int *)data;
|
|
|
|
(*active)--;
|
|
|
|
|
|
|
|
libseat_disable_seat(backend);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2020-08-01 02:47:45 +02:00
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stderr, "Specify name of file to open as argument\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
char *file = argv[1];
|
2020-07-31 00:22:18 +02:00
|
|
|
|
|
|
|
int active = 0;
|
|
|
|
struct libseat_seat_listener listener = {
|
|
|
|
.enable_seat = handle_enable,
|
|
|
|
.disable_seat = handle_disable,
|
|
|
|
};
|
2020-08-28 01:26:39 +02:00
|
|
|
libseat_set_log_level(LIBSEAT_LOG_LEVEL_DEBUG);
|
2020-07-31 00:22:18 +02:00
|
|
|
struct libseat *backend = libseat_open_seat(&listener, &active);
|
|
|
|
fprintf(stderr, "libseat_open_seat(listener: %p, userdata: %p) = %p\n", (void *)&listener,
|
|
|
|
(void *)&active, (void *)backend);
|
|
|
|
if (backend == NULL) {
|
|
|
|
fprintf(stderr, "libseat_open_seat() failed: %s\n", strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (active == 0) {
|
|
|
|
fprintf(stderr, "waiting for activation...\n");
|
|
|
|
libseat_dispatch(backend, -1);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "active!\n");
|
|
|
|
|
|
|
|
int fd, device;
|
2020-08-01 02:47:45 +02:00
|
|
|
device = libseat_open_device(backend, file, &fd);
|
2020-07-31 00:22:18 +02:00
|
|
|
fprintf(stderr, "libseat_open_device(backend: %p, path: %s, fd: %p) = %d\n",
|
2020-08-01 02:47:45 +02:00
|
|
|
(void *)backend, file, (void *)&fd, device);
|
2020-07-31 00:22:18 +02:00
|
|
|
if (device == -1) {
|
|
|
|
fprintf(stderr, "libseat_open_device() failed: %s\n", strerror(errno));
|
|
|
|
libseat_close_seat(backend);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
libseat_close_device(backend, device);
|
2020-12-14 23:41:00 +01:00
|
|
|
close(fd);
|
2020-07-31 00:22:18 +02:00
|
|
|
libseat_close_seat(backend);
|
|
|
|
return 0;
|
|
|
|
}
|