[PATCH weston v3 16/36] libweston: add weston_head_is_device_changed() API

Pekka Paalanen ppaalanen at gmail.com
Tue Oct 31 11:48:26 UTC 2017


From: Pekka Paalanen <pekka.paalanen at collabora.co.uk>

Reacting to DRM hotplug events is racy. It is theoretically possible to
get hotplug events for a quick swap from one monitor to another and
process both only after the new monitor is connected. Hence it is
possible for display device information to change without going through
a disconnected state for the head.

To support such cases, add API to allow detecting it in the compositor.

Signed-off-by: Pekka Paalanen <pekka.paalanen at collabora.co.uk>
---
 libweston/compositor.c | 88 ++++++++++++++++++++++++++++++++++++++++++++++----
 libweston/compositor.h |  7 ++++
 2 files changed, 89 insertions(+), 6 deletions(-)

diff --git a/libweston/compositor.c b/libweston/compositor.c
index 5fa22ad6..fbfdd397 100644
--- a/libweston/compositor.c
+++ b/libweston/compositor.c
@@ -4688,6 +4688,31 @@ weston_head_release(struct weston_head *head)
 	wl_list_remove(&head->compositor_link);
 }
 
+static void
+weston_head_condition_device_changed(struct weston_head *head, bool condition)
+{
+	if (!condition)
+		return;
+
+	head->device_changed = true;
+
+	if (head->compositor)
+		weston_compositor_schedule_heads_changed(head->compositor);
+}
+
+/** String non-equal comparison with NULLs being equal */
+static bool
+str_null_neq(const char *a, const char *b)
+{
+	if (!a && !b)
+		return false;
+
+	if (!!a != !!b)
+		return true;
+
+	return strcmp(a, b);
+}
+
 /** Store monitor make, model and serial number
  *
  * \param head The head to modify.
@@ -4698,6 +4723,8 @@ weston_head_release(struct weston_head *head)
  * \param serialno The monitor serial number, a made-up string, or NULL for
  * none.
  *
+ * This may set the device_changed flag.
+ *
  * \memberof weston_head
  * \internal
  */
@@ -4707,6 +4734,11 @@ weston_head_set_monitor_strings(struct weston_head *head,
 				const char *model,
 				const char *serialno)
 {
+	weston_head_condition_device_changed(head,
+				str_null_neq(head->make, make) ||
+				str_null_neq(head->model, model) ||
+				str_null_neq(head->serial_number, serialno));
+
 	free(head->make);
 	free(head->model);
 	free(head->serial_number);
@@ -4722,6 +4754,8 @@ weston_head_set_monitor_strings(struct weston_head *head,
  * \param mm_width Image area width in millimeters.
  * \param mm_height Image area height in millimeters.
  *
+ * This may set the device_changed flag.
+ *
  * \memberof weston_head
  * \internal
  */
@@ -4729,6 +4763,10 @@ WL_EXPORT void
 weston_head_set_physical_size(struct weston_head *head,
 			      int32_t mm_width, int32_t mm_height)
 {
+	weston_head_condition_device_changed(head,
+					     head->mm_width != mm_width ||
+					     head->mm_height != mm_height);
+
 	head->mm_width = mm_width;
 	head->mm_height = mm_height;
 }
@@ -4744,6 +4782,8 @@ weston_head_set_physical_size(struct weston_head *head,
  * - WL_OUTPUT_SUBPIXEL_VERTICAL_RGB,
  * - WL_OUTPUT_SUBPIXEL_VERTICAL_BGR
  *
+ * This may set the device_changed flag.
+ *
  * \memberof weston_head
  * \internal
  */
@@ -4751,6 +4791,8 @@ WL_EXPORT void
 weston_head_set_subpixel(struct weston_head *head,
 			 enum wl_output_subpixel sp)
 {
+	weston_head_condition_device_changed(head, head->subpixel != sp);
+
 	head->subpixel = sp;
 }
 
@@ -4786,7 +4828,7 @@ weston_head_set_internal(struct weston_head *head)
  * connection to the parent display server.
  *
  * When the connection status changes, it schedules a call to the heads_changed
- * hook.
+ * hook and sets the device_changed flag.
  *
  * \sa weston_compositor_set_heads_changed_cb
  * \memberof weston_head
@@ -4795,13 +4837,9 @@ weston_head_set_internal(struct weston_head *head)
 WL_EXPORT void
 weston_head_set_connection_status(struct weston_head *head, bool connected)
 {
-	if (head->connected == connected)
-		return;
+	weston_head_condition_device_changed(head, head->connected != connected);
 
 	head->connected = connected;
-
-	if (head->compositor)
-		weston_compositor_schedule_heads_changed(head->compositor);
 }
 
 /** Is the head currently connected?
@@ -4845,6 +4883,44 @@ weston_head_is_enabled(struct weston_head *head)
 	return head->output->enabled;
 }
 
+/** Has the device information changed?
+ *
+ * \param head The head to query.
+ * \return True if the device information has changed since last reset.
+ *
+ * The information about the connected display device, e.g. a monitor, may
+ * change without being disconnected in between. Changing information
+ * causes a call to the heads_changed hook.
+ *
+ * The information includes make, model, serial number, physical size,
+ * and sub-pixel type. The connection status is also included.
+ *
+ * \sa weston_head_reset_device_changed, weston_compositor_set_heads_changed_cb
+ * \memberof weston_head
+ */
+WL_EXPORT bool
+weston_head_is_device_changed(struct weston_head *head)
+{
+	return head->device_changed;
+}
+
+/** Acknowledge device information change
+ *
+ * \param head The head to acknowledge.
+ *
+ * Clears the device changed flag on this head. When a compositor has processed
+ * device information, it should call this to be able to notice further
+ * changes.
+ *
+ * \sa weston_head_is_device_changed
+ * \memberof weston_head
+ */
+WL_EXPORT void
+weston_head_reset_device_changed(struct weston_head *head)
+{
+	head->device_changed = false;
+}
+
 /** Get the name of a head
  *
  * \param head The head to query.
diff --git a/libweston/compositor.h b/libweston/compositor.h
index 5a530aaf..97071c1e 100644
--- a/libweston/compositor.h
+++ b/libweston/compositor.h
@@ -169,6 +169,7 @@ struct weston_head {
 	char *serial_number;		/**< monitor serial */
 	uint32_t subpixel;		/**< enum wl_output_subpixel */
 	bool connection_internal;	/**< embedded monitor (e.g. laptop) */
+	bool device_changed;		/**< monitor information has changed */
 
 	char *name;			/**< head name, e.g. connector name */
 	bool connected;			/**< is physically connected */
@@ -2026,6 +2027,12 @@ weston_head_is_connected(struct weston_head *head);
 bool
 weston_head_is_enabled(struct weston_head *head);
 
+bool
+weston_head_is_device_changed(struct weston_head *head);
+
+void
+weston_head_reset_device_changed(struct weston_head *head);
+
 const char *
 weston_head_get_name(struct weston_head *head);
 
-- 
2.13.6



More information about the wayland-devel mailing list