mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 21:02:14 +00:00
remote-desktop/session: Add API to acquire new mapping ID
They are guaranteed to be unique per session, and never reused. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3228>
This commit is contained in:
parent
b3ba8aedcb
commit
7faac2aef4
@ -102,6 +102,8 @@ struct _MetaRemoteDesktopSession
|
|||||||
MetaSelectionSourceRemote *current_source;
|
MetaSelectionSourceRemote *current_source;
|
||||||
GHashTable *transfer_requests;
|
GHashTable *transfer_requests;
|
||||||
guint transfer_request_timeout_id;
|
guint transfer_request_timeout_id;
|
||||||
|
|
||||||
|
GHashTable *mapping_ids;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void initable_init_iface (GInitableIface *iface);
|
static void initable_init_iface (GInitableIface *iface);
|
||||||
@ -296,6 +298,25 @@ meta_remote_desktop_session_register_screen_cast (MetaRemoteDesktopSession *ses
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
meta_remote_desktop_session_acquire_mapping_id (MetaRemoteDesktopSession *session)
|
||||||
|
{
|
||||||
|
while (TRUE)
|
||||||
|
{
|
||||||
|
char *mapping_id;
|
||||||
|
|
||||||
|
mapping_id = g_uuid_string_random ();
|
||||||
|
if (g_hash_table_contains (session->mapping_ids, mapping_id))
|
||||||
|
{
|
||||||
|
g_free (mapping_id);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_hash_table_add (session->mapping_ids, mapping_id);
|
||||||
|
return mapping_id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
check_permission (MetaRemoteDesktopSession *session,
|
check_permission (MetaRemoteDesktopSession *session,
|
||||||
GDBusMethodInvocation *invocation)
|
GDBusMethodInvocation *invocation)
|
||||||
@ -1731,6 +1752,8 @@ meta_remote_desktop_session_initable_init (GInitable *initable,
|
|||||||
session, "num-lock-state",
|
session, "num-lock-state",
|
||||||
G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE);
|
G_BINDING_DEFAULT | G_BINDING_SYNC_CREATE);
|
||||||
|
|
||||||
|
session->mapping_ids = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1784,6 +1807,8 @@ meta_remote_desktop_session_finalize (GObject *object)
|
|||||||
cancel_selection_read (session);
|
cancel_selection_read (session);
|
||||||
g_hash_table_unref (session->transfer_requests);
|
g_hash_table_unref (session->transfer_requests);
|
||||||
|
|
||||||
|
g_clear_pointer (&session->mapping_ids, g_hash_table_unref);
|
||||||
|
|
||||||
g_clear_object (&session->handle);
|
g_clear_object (&session->handle);
|
||||||
g_free (session->peer_name);
|
g_free (session->peer_name);
|
||||||
g_free (session->session_id);
|
g_free (session->session_id);
|
||||||
|
@ -42,6 +42,8 @@ gboolean meta_remote_desktop_session_register_screen_cast (MetaRemoteDesktopSess
|
|||||||
MetaScreenCastSession *screen_cast_session,
|
MetaScreenCastSession *screen_cast_session,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
|
const char * meta_remote_desktop_session_acquire_mapping_id (MetaRemoteDesktopSession *session);
|
||||||
|
|
||||||
void meta_remote_desktop_session_request_transfer (MetaRemoteDesktopSession *session,
|
void meta_remote_desktop_session_request_transfer (MetaRemoteDesktopSession *session,
|
||||||
const char *mime_type,
|
const char *mime_type,
|
||||||
GTask *task);
|
GTask *task);
|
||||||
|
Loading…
Reference in New Issue
Block a user