aboutsummaryrefslogtreecommitdiff
path: root/examples/config.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-08-25 13:26:13 -0400
committerTony Crisci <tony@dubstepdish.com>2017-08-26 08:32:11 -0400
commit0a97b68278a621882c712b55ffe851101e5902d0 (patch)
treeb8cbe14e0aafdccd2e0c366d0b95ae76fef0cde7 /examples/config.c
parentd0cf8d0d01b12d359be5c4216ef5f0bdbdfee622 (diff)
implement cursor and device geometry mapping
Diffstat (limited to 'examples/config.c')
-rw-r--r--examples/config.c75
1 files changed, 75 insertions, 0 deletions
diff --git a/examples/config.c b/examples/config.c
index 31aaa6d7..829350c1 100644
--- a/examples/config.c
+++ b/examples/config.c
@@ -7,6 +7,7 @@
#include <string.h>
#include <unistd.h>
#include <wlr/util/log.h>
+#include <wlr/types/wlr_geometry.h>
#include "shared.h"
#include "config.h"
#include "ini.h"
@@ -21,6 +22,64 @@ static void usage(const char *name, int ret) {
exit(ret);
}
+static struct wlr_geometry *parse_geometry(const char *str) {
+ // format: {width}x{height}+{x}+{y}
+ if (strlen(str) > 255l) {
+ wlr_log(L_ERROR, "cannot parse geometry string, too long");
+ return NULL;
+ }
+
+ char *buf = strdup(str);
+ struct wlr_geometry *geo = calloc(1, sizeof(struct wlr_geometry));
+
+ bool has_width, has_height, has_x, has_y;
+ char *pch = strtok(buf, "x+");
+ while (pch != NULL) {
+ errno = 0;
+ char *endptr;
+ long val = strtol(pch, &endptr, 0);
+
+ if ((errno == ERANGE && (val == LONG_MAX || val == LONG_MIN))
+ || (errno != 0 && val == 0)) {
+ goto invalid_input;
+ }
+
+ if (endptr == pch) {
+ goto invalid_input;
+ }
+
+ if (!has_width) {
+ geo->width = val;
+ has_width = true;
+ } else if (!has_height) {
+ geo->height = val;
+ has_height = true;
+ } else if (!has_x) {
+ geo->x = val;
+ has_x = true;
+ } else if (!has_y) {
+ geo->y = val;
+ has_y = true;
+ } else {
+ goto invalid_input;
+ }
+ pch = strtok(NULL, "x+");
+ }
+
+ if (!has_width || !has_height || !has_x || !has_y) {
+ goto invalid_input;
+ }
+
+ free(buf);
+ return geo;
+
+invalid_input:
+ wlr_log(L_ERROR, "could not parse geometry string: %s", str);
+ free(buf);
+ free(geo);
+ return NULL;
+}
+
static const char *output_prefix = "output:";
static const char *device_prefix = "device:";
@@ -71,6 +130,11 @@ static int config_ini_handler(void *user, const char *section, const char *name,
} else if (strcmp(section, "cursor") == 0) {
if (strcmp(name, "map-to-output") == 0) {
config->cursor.mapped_output = strdup(value);
+ } else if (strcmp(name, "geometry") == 0) {
+ if (config->cursor.mapped_geo) {
+ free(config->cursor.mapped_geo);
+ }
+ config->cursor.mapped_geo = parse_geometry(value);
} else {
wlr_log(L_ERROR, "got unknown cursor config: %s", name);
}
@@ -97,6 +161,11 @@ static int config_ini_handler(void *user, const char *section, const char *name,
free(dc->mapped_output);
}
dc->mapped_output = strdup(value);
+ } else if (strcmp(name, "geometry") == 0) {
+ if (dc->mapped_geo) {
+ free(dc->mapped_geo);
+ }
+ dc->mapped_geo = parse_geometry(value);
} else {
wlr_log(L_ERROR, "got unknown device config: %s", name);
}
@@ -166,6 +235,9 @@ void example_config_destroy(struct example_config *config) {
if (dc->mapped_output) {
free(dc->mapped_output);
}
+ if (dc->mapped_geo) {
+ free(dc->mapped_geo);
+ }
free(dc);
}
@@ -175,6 +247,9 @@ void example_config_destroy(struct example_config *config) {
if (config->cursor.mapped_output) {
free(config->cursor.mapped_output);
}
+ if (config->cursor.mapped_geo) {
+ free(config->cursor.mapped_geo);
+ }
free(config);
}