aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config
diff options
context:
space:
mode:
Diffstat (limited to 'sway/config')
-rw-r--r--sway/config/input.c105
-rw-r--r--sway/config/seat.c132
2 files changed, 237 insertions, 0 deletions
diff --git a/sway/config/input.c b/sway/config/input.c
new file mode 100644
index 00000000..6f8d31f7
--- /dev/null
+++ b/sway/config/input.c
@@ -0,0 +1,105 @@
1#define _XOPEN_SOURCE 700
2#include <stdlib.h>
3#include <limits.h>
4#include <float.h>
5#include "sway/config.h"
6#include "log.h"
7
8struct input_config *new_input_config(const char* identifier) {
9 struct input_config *input = calloc(1, sizeof(struct input_config));
10 if (!input) {
11 sway_log(L_DEBUG, "Unable to allocate input config");
12 return NULL;
13 }
14 sway_log(L_DEBUG, "new_input_config(%s)", identifier);
15 if (!(input->identifier = strdup(identifier))) {
16 free(input);
17 sway_log(L_DEBUG, "Unable to allocate input config");
18 return NULL;
19 }
20
21 input->tap = INT_MIN;
22 input->drag_lock = INT_MIN;
23 input->dwt = INT_MIN;
24 input->send_events = INT_MIN;
25 input->click_method = INT_MIN;
26 input->middle_emulation = INT_MIN;
27 input->natural_scroll = INT_MIN;
28 input->accel_profile = INT_MIN;
29 input->pointer_accel = FLT_MIN;
30 input->scroll_method = INT_MIN;
31 input->left_handed = INT_MIN;
32
33 return input;
34}
35
36void merge_input_config(struct input_config *dst, struct input_config *src) {
37 if (src->identifier) {
38 free(dst->identifier);
39 dst->identifier = strdup(src->identifier);
40 }
41 if (src->accel_profile != INT_MIN) {
42 dst->accel_profile = src->accel_profile;
43 }
44 if (src->click_method != INT_MIN) {
45 dst->click_method = src->click_method;
46 }
47 if (src->drag_lock != INT_MIN) {
48 dst->drag_lock = src->drag_lock;
49 }
50 if (src->dwt != INT_MIN) {
51 dst->dwt = src->dwt;
52 }
53 if (src->middle_emulation != INT_MIN) {
54 dst->middle_emulation = src->middle_emulation;
55 }
56 if (src->natural_scroll != INT_MIN) {
57 dst->natural_scroll = src->natural_scroll;
58 }
59 if (src->pointer_accel != FLT_MIN) {
60 dst->pointer_accel = src->pointer_accel;
61 }
62 if (src->scroll_method != INT_MIN) {
63 dst->scroll_method = src->scroll_method;
64 }
65 if (src->send_events != INT_MIN) {
66 dst->send_events = src->send_events;
67 }
68 if (src->tap != INT_MIN) {
69 dst->tap = src->tap;
70 }
71 if (src->xkb_layout) {
72 free(dst->xkb_layout);
73 dst->xkb_layout = strdup(src->xkb_layout);
74 }
75 if (src->xkb_model) {
76 free(dst->xkb_model);
77 dst->xkb_model = strdup(src->xkb_model);
78 }
79 if (src->xkb_options) {
80 free(dst->xkb_options);
81 dst->xkb_options = strdup(src->xkb_options);
82 }
83 if (src->xkb_rules) {
84 free(dst->xkb_rules);
85 dst->xkb_rules = strdup(src->xkb_rules);
86 }
87 if (src->xkb_variant) {
88 free(dst->xkb_variant);
89 dst->xkb_variant = strdup(src->xkb_variant);
90 }
91}
92
93void free_input_config(struct input_config *ic) {
94 if (!ic) {
95 return;
96 }
97 free(ic->identifier);
98 free(ic);
99}
100
101int input_identifier_cmp(const void *item, const void *data) {
102 const struct input_config *ic = item;
103 const char *identifier = data;
104 return strcmp(ic->identifier, identifier);
105}
diff --git a/sway/config/seat.c b/sway/config/seat.c
new file mode 100644
index 00000000..4c9e8d0d
--- /dev/null
+++ b/sway/config/seat.c
@@ -0,0 +1,132 @@
1#define _XOPEN_SOURCE 700
2#include <stdlib.h>
3#include <string.h>
4#include "sway/config.h"
5#include "log.h"
6
7struct seat_config *new_seat_config(const char* name) {
8 struct seat_config *seat = calloc(1, sizeof(struct seat_config));
9 if (!seat) {
10 sway_log(L_DEBUG, "Unable to allocate seat config");
11 return NULL;
12 }
13
14 sway_log(L_DEBUG, "new_seat_config(%s)", name);
15 seat->name = strdup(name);
16 if (!sway_assert(seat->name, "could not allocate name for seat")) {
17 return NULL;
18 }
19
20 seat->fallback = -1;
21 seat->attachments = create_list();
22 if (!sway_assert(seat->attachments,
23 "could not allocate seat attachments list")) {
24 return NULL;
25 }
26
27 return seat;
28}
29
30struct seat_attachment_config *seat_attachment_config_new() {
31 struct seat_attachment_config *attachment =
32 calloc(1, sizeof(struct seat_attachment_config));
33 if (!attachment) {
34 sway_log(L_DEBUG, "cannot allocate attachment config");
35 return NULL;
36 }
37 return attachment;
38}
39
40static void seat_attachment_config_free(
41 struct seat_attachment_config *attachment) {
42 free(attachment->identifier);
43 free(attachment);
44 return;
45}
46
47static struct seat_attachment_config *seat_attachment_config_copy(
48 struct seat_attachment_config *attachment) {
49 struct seat_attachment_config *copy = seat_attachment_config_new();
50 if (!copy) {
51 return NULL;
52 }
53
54 copy->identifier = strdup(attachment->identifier);
55
56 return copy;
57}
58
59static void merge_seat_attachment_config(struct seat_attachment_config *dest,
60 struct seat_attachment_config *source) {
61 // nothing to merge yet, but there will be some day
62}
63
64void merge_seat_config(struct seat_config *dest, struct seat_config *source) {
65 if (source->name) {
66 free(dest->name);
67 dest->name = strdup(source->name);
68 }
69
70 if (source->fallback != -1) {
71 dest->fallback = source->fallback;
72 }
73
74 for (int i = 0; i < source->attachments->length; ++i) {
75 struct seat_attachment_config *source_attachment =
76 source->attachments->items[i];
77 bool found = false;
78 for (int j = 0; j < dest->attachments->length; ++j) {
79 struct seat_attachment_config *dest_attachment =
80 dest->attachments->items[j];
81 if (strcmp(source_attachment->identifier,
82 dest_attachment->identifier) == 0) {
83 merge_seat_attachment_config(dest_attachment,
84 source_attachment);
85 found = true;
86 }
87 }
88
89 if (!found) {
90 struct seat_attachment_config *copy =
91 seat_attachment_config_copy(source_attachment);
92 if (copy) {
93 list_add(dest->attachments, copy);
94 }
95 }
96 }
97}
98
99void free_seat_config(struct seat_config *seat) {
100 if (!seat) {
101 return;
102 }
103
104 free(seat->name);
105 for (int i = 0; i < seat->attachments->length; ++i) {
106 struct seat_attachment_config *attachment =
107 seat->attachments->items[i];
108 seat_attachment_config_free(attachment);
109 }
110
111 list_free(seat->attachments);
112 free(seat);
113}
114
115int seat_name_cmp(const void *item, const void *data) {
116 const struct seat_config *sc = item;
117 const char *name = data;
118 return strcmp(sc->name, name);
119}
120
121struct seat_attachment_config *seat_config_get_attachment(
122 struct seat_config *seat_config, char *identifier) {
123 for (int i = 0; i < seat_config->attachments->length; ++i) {
124 struct seat_attachment_config *attachment =
125 seat_config->attachments->items[i];
126 if (strcmp(attachment->identifier, identifier) == 0) {
127 return attachment;
128 }
129 }
130
131 return NULL;
132}