[Spice-devel] [PATCH 13/18] Replace RedClient::channels with GList

Jonathon Jongsma jjongsma at redhat.com
Wed Apr 27 16:50:36 UTC 2016


Allows us to not expose the client_link in RedChannelClient.
---
 server/red-channel.c | 51 ++++++++++++++++++++++++++++-----------------------
 server/red-channel.h |  5 +----
 2 files changed, 29 insertions(+), 27 deletions(-)

diff --git a/server/red-channel.c b/server/red-channel.c
index d77cc89..9629e36 100644
--- a/server/red-channel.c
+++ b/server/red-channel.c
@@ -1809,8 +1809,7 @@ static void red_client_remove_channel(RedClient *client, RedChannelClient *rcc)
 {
     g_return_if_fail(client == rcc->client);
     pthread_mutex_lock(&client->lock);
-    ring_remove(&rcc->client_link);
-    client->channels_num--;
+    client->channels = g_list_remove(client->channels, rcc);
     pthread_mutex_unlock(&client->lock);
 }
 
@@ -2027,7 +2026,6 @@ RedClient *red_client_new(RedsState *reds, int migrated)
 
     client = spice_malloc0(sizeof(RedClient));
     client->reds = reds;
-    ring_init(&client->channels);
     pthread_mutex_init(&client->lock, NULL);
     client->thread_id = pthread_self();
     client->during_target_migrate = migrated;
@@ -2071,15 +2069,14 @@ static gboolean red_channel_client_set_migration_seamless(RedChannelClient *rcc)
 
 void red_client_set_migration_seamless(RedClient *client) // dest
 {
-    RingItem *link;
+    GList *link;
     spice_assert(client->during_target_migrate);
     pthread_mutex_lock(&client->lock);
     client->seamless_migrate = TRUE;
     /* update channel clients that got connected before the migration
      * type was set. red_client_add_channel will handle newer channel clients */
-    RING_FOREACH(link, &client->channels) {
-        RedChannelClient *rcc = SPICE_CONTAINEROF(link, RedChannelClient, client_link);
-        if (red_channel_client_set_migration_seamless(rcc))
+    for (link = client->channels; link != NULL; link = link->next) {
+        if (red_channel_client_set_migration_seamless(link->data))
             client->num_migrated_channels++;
     }
     pthread_mutex_unlock(&client->lock);
@@ -2087,30 +2084,33 @@ void red_client_set_migration_seamless(RedClient *client) // dest
 
 void red_client_migrate(RedClient *client)
 {
-    RingItem *link, *next;
+    GList *link, *next;
     RedChannelClient *rcc;
 
-    spice_printerr("migrate client with #channels %d", client->channels_num);
+    spice_printerr("migrate client with #channels %d", g_list_length(client->channels));
     if (!pthread_equal(pthread_self(), client->thread_id)) {
         spice_warning("client->thread_id (0x%lx) != pthread_self (0x%lx)."
                       "If one of the threads is != io-thread && != vcpu-thread,"
                       " this might be a BUG",
                       client->thread_id, pthread_self());
     }
-    RING_FOREACH_SAFE(link, next, &client->channels) {
-        rcc = SPICE_CONTAINEROF(link, RedChannelClient, client_link);
+    link = client->channels;
+    while (link) {
+        next = link->next;
+        rcc = link->data;
         if (red_channel_client_is_connected(rcc)) {
             rcc->channel->client_cbs.migrate(rcc);
         }
+        link = next;
     }
 }
 
 void red_client_destroy(RedClient *client)
 {
-    RingItem *link, *next;
+    GList *link, *next;
     RedChannelClient *rcc;
 
-    spice_printerr("destroy client %p with #channels=%d", client, client->channels_num);
+    spice_printerr("destroy client %p with #channels=%d", client, g_list_length(client->channels));
     if (!pthread_equal(pthread_self(), client->thread_id)) {
         spice_warning("client->thread_id (0x%lx) != pthread_self (0x%lx)."
                       "If one of the threads is != io-thread && != vcpu-thread,"
@@ -2118,10 +2118,12 @@ void red_client_destroy(RedClient *client)
                       client->thread_id,
                       pthread_self());
     }
-    RING_FOREACH_SAFE(link, next, &client->channels) {
+    link = client->channels;
+    while (link) {
+        next = link->next;
         // some channels may be in other threads, so disconnection
         // is not synchronous.
-        rcc = SPICE_CONTAINEROF(link, RedChannelClient, client_link);
+        rcc = link->data;
         rcc->destroying = 1;
         // some channels may be in other threads. However we currently
         // assume disconnect is synchronous (we changed the dispatcher
@@ -2133,6 +2135,7 @@ void red_client_destroy(RedClient *client)
         spice_assert(rcc->pipe_size == 0);
         spice_assert(rcc->send_data.size == 0);
         red_channel_client_destroy(rcc);
+        link = next;
     }
     red_client_unref(client);
 }
@@ -2140,12 +2143,12 @@ void red_client_destroy(RedClient *client)
 /* client->lock should be locked */
 static RedChannelClient *red_client_get_channel(RedClient *client, int type, int id)
 {
-    RingItem *link;
+    GList *link;
     RedChannelClient *rcc;
     RedChannelClient *ret = NULL;
 
-    RING_FOREACH(link, &client->channels) {
-        rcc = SPICE_CONTAINEROF(link, RedChannelClient, client_link);
+    for (link = client->channels; link != NULL; link = link->next) {
+        rcc = link->data;
         if (rcc->channel->type == type && rcc->channel->id == id) {
             ret = rcc;
             break;
@@ -2158,12 +2161,11 @@ static RedChannelClient *red_client_get_channel(RedClient *client, int type, int
 static void red_client_add_channel(RedClient *client, RedChannelClient *rcc)
 {
     spice_assert(rcc && client);
-    ring_add(&client->channels, &rcc->client_link);
+    client->channels = g_list_append(client->channels, rcc);
     if (client->during_target_migrate && client->seamless_migrate) {
         if (red_channel_client_set_migration_seamless(rcc))
             client->num_migrated_channels++;
     }
-    client->channels_num++;
 }
 
 MainChannelClient *red_client_get_main(RedClient *client) {
@@ -2176,7 +2178,7 @@ void red_client_set_main(RedClient *client, MainChannelClient *mcc) {
 
 void red_client_semi_seamless_migrate_complete(RedClient *client)
 {
-    RingItem *link, *next;
+    GList *link, *next;
 
     pthread_mutex_lock(&client->lock);
     if (!client->during_target_migrate || client->seamless_migrate) {
@@ -2185,12 +2187,15 @@ void red_client_semi_seamless_migrate_complete(RedClient *client)
         return;
     }
     client->during_target_migrate = FALSE;
-    RING_FOREACH_SAFE(link, next, &client->channels) {
-        RedChannelClient *rcc = SPICE_CONTAINEROF(link, RedChannelClient, client_link);
+    link = client->channels;
+    while (link) {
+        next = link->next;
+        RedChannelClient *rcc = link->data;
 
         if (rcc->latency_monitor.timer) {
             red_channel_client_start_ping_timer(rcc, PING_TEST_IDLE_NET_TIMEOUT_MS);
         }
+        link = next;
     }
     pthread_mutex_unlock(&client->lock);
     reds_on_client_semi_seamless_migrate_complete(client->reds, client);
diff --git a/server/red-channel.h b/server/red-channel.h
index 12a259d..436286a 100644
--- a/server/red-channel.h
+++ b/server/red-channel.h
@@ -237,8 +237,6 @@ typedef struct RedChannelClientConnectivityMonitor {
 } RedChannelClientConnectivityMonitor;
 
 struct RedChannelClient {
-    RingItem channel_link;
-    RingItem client_link;
     RedChannel *channel;
     RedClient  *client;
     RedsStream *stream;
@@ -559,8 +557,7 @@ struct RedsState* red_channel_get_server(RedChannel *channel);
 struct RedClient {
     RedsState *reds;
     RingItem link;
-    Ring channels;
-    int channels_num;
+    GList *channels;
     MainChannelClient *mcc;
     pthread_mutex_t lock; // different channels can be in different threads
 
-- 
2.4.11



More information about the Spice-devel mailing list