summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-07-18 11:06:36 +0200
committerPeter Hutterer <peter.hutterer@who-t.net>2014-07-21 20:20:49 +1000
commitb64fb73ace5a01576670571200f14cf1275a6bd7 (patch)
tree5bef3c7ca7b6de0960a2f870676a45336b144e17
parent0915c2c51a8b3c86c8a19abe9e572af5b58bd4ec (diff)
downloadlibinput-b64fb73ace5a01576670571200f14cf1275a6bd7.tar.gz
touchpad: Protect tp_begin_touch and tp_end_touch against being called twice
They were already protected against being called twice between SYN_REPORT, but not for being called twice before a SYN_REPORT arrives. This allows simplifying tp_process_fake_touch a bit. Note while at it also also flip the if condition in tp_process_fake_touch so that the if is true when the finger is down, and remove the bogus t->state = TOUCH_NONE. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/evdev-mt-touchpad.c47
1 files changed, 21 insertions, 26 deletions
diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c
index 0755f2cd..6466c1bd 100644
--- a/src/evdev-mt-touchpad.c
+++ b/src/evdev-mt-touchpad.c
@@ -128,23 +128,25 @@ tp_get_touch(struct tp_dispatch *tp, unsigned int slot)
}
static inline void
-tp_begin_touch(struct tp_dispatch *tp, struct tp_touch *t)
+tp_begin_touch(struct tp_dispatch *tp, struct tp_touch *t, uint64_t time)
{
- if (t->state != TOUCH_UPDATE) {
- tp_motion_history_reset(t);
- t->dirty = true;
- t->state = TOUCH_BEGIN;
- t->pinned.is_pinned = false;
- tp->nfingers_down++;
- assert(tp->nfingers_down >= 1);
- tp->queued |= TOUCHPAD_EVENT_MOTION;
- }
+ if (t->state == TOUCH_BEGIN || t->state == TOUCH_UPDATE)
+ return;
+
+ tp_motion_history_reset(t);
+ t->dirty = true;
+ t->state = TOUCH_BEGIN;
+ t->pinned.is_pinned = false;
+ t->millis = time;
+ tp->nfingers_down++;
+ assert(tp->nfingers_down >= 1);
+ tp->queued |= TOUCHPAD_EVENT_MOTION;
}
static inline void
-tp_end_touch(struct tp_dispatch *tp, struct tp_touch *t)
+tp_end_touch(struct tp_dispatch *tp, struct tp_touch *t, uint64_t time)
{
- if (t->state == TOUCH_NONE)
+ if (t->state == TOUCH_END || t->state == TOUCH_NONE)
return;
t->dirty = true;
@@ -152,6 +154,7 @@ tp_end_touch(struct tp_dispatch *tp, struct tp_touch *t)
t->palm.is_palm = false;
t->state = TOUCH_END;
t->pinned.is_pinned = false;
+ t->millis = time;
assert(tp->nfingers_down >= 1);
tp->nfingers_down--;
tp->queued |= TOUCHPAD_EVENT_MOTION;
@@ -206,11 +209,10 @@ tp_process_absolute(struct tp_dispatch *tp,
tp->slot = e->value;
break;
case ABS_MT_TRACKING_ID:
- t->millis = time;
if (e->value != -1)
- tp_begin_touch(tp, t);
+ tp_begin_touch(tp, t, time);
else
- tp_end_touch(tp, t);
+ tp_end_touch(tp, t, time);
}
}
@@ -268,18 +270,11 @@ tp_process_fake_touch(struct tp_dispatch *tp,
for (i = 0; i < tp->ntouches; i++) {
t = tp_get_touch(tp, i);
- if (i >= nfake_touches) {
- if (t->state != TOUCH_NONE) {
- tp_end_touch(tp, t);
- t->millis = time;
- }
- } else if (t->state != TOUCH_UPDATE &&
- t->state != TOUCH_BEGIN) {
- t->state = TOUCH_NONE;
- tp_begin_touch(tp, t);
- t->millis = time;
+ if (i < nfake_touches) {
+ tp_begin_touch(tp, t, time);
t->fake =true;
- }
+ } else
+ tp_end_touch(tp, t, time);
}
assert(tp->nfingers_down == nfake_touches);