Extract rule_list_remove_by_connection
authorWill Thompson <will.thompson@collabora.co.uk>
Wed, 29 Jul 2009 19:03:40 +0000 (20:03 +0100)
committerRalf Habacker <ralf.habacker@freenet.de>
Tue, 5 Jan 2010 20:11:12 +0000 (21:11 +0100)
bus/signals.c

index 3cf846e..c6f122b 100644 (file)
@@ -1285,11 +1285,54 @@ bus_matchmaker_remove_rule_by_value (BusMatchmaker   *matchmaker,
   return TRUE;
 }
 
+static void
+rule_list_remove_by_connection (DBusList       **rules,
+                                DBusConnection  *disconnected)
+{
+  DBusList *link;
+
+  link = _dbus_list_get_first_link (rules);
+  while (link != NULL)
+    {
+      BusMatchRule *rule;
+      DBusList *next;
+
+      rule = link->data;
+      next = _dbus_list_get_next_link (rules, link);
+
+      if (rule->matches_go_to == disconnected)
+        {
+          bus_matchmaker_remove_rule_link (rules, link);
+        }
+      else if (((rule->flags & BUS_MATCH_SENDER) && *rule->sender == ':') ||
+               ((rule->flags & BUS_MATCH_DESTINATION) && *rule->destination == ':'))
+        {
+          /* The rule matches to/from a base service, see if it's the
+           * one being disconnected, since we know this service name
+           * will never be recycled.
+           */
+          const char *name;
+
+          name = bus_connection_get_name (disconnected);
+          _dbus_assert (name != NULL); /* because we're an active connection */
+
+          if (((rule->flags & BUS_MATCH_SENDER) &&
+               strcmp (rule->sender, name) == 0) ||
+              ((rule->flags & BUS_MATCH_DESTINATION) &&
+               strcmp (rule->destination, name) == 0))
+            {
+              bus_matchmaker_remove_rule_link (rules, link);
+            }
+        }
+
+      link = next;
+    }
+}
+
 void
 bus_matchmaker_disconnected (BusMatchmaker   *matchmaker,
                              DBusConnection  *disconnected)
 {
-  DBusList *link;
   int i;
 
   /* FIXME
@@ -1307,42 +1350,7 @@ bus_matchmaker_disconnected (BusMatchmaker   *matchmaker,
     {
       DBusList **rules = bus_matchmaker_get_rules (matchmaker, i);
 
-      link = _dbus_list_get_first_link (rules);
-      while (link != NULL)
-        {
-          BusMatchRule *rule;
-          DBusList *next;
-
-          rule = link->data;
-          next = _dbus_list_get_next_link (rules, link);
-
-          if (rule->matches_go_to == disconnected)
-            {
-              bus_matchmaker_remove_rule_link (rules, link);
-            }
-          else if (((rule->flags & BUS_MATCH_SENDER) && *rule->sender == ':') ||
-                   ((rule->flags & BUS_MATCH_DESTINATION) && *rule->destination == ':'))
-            {
-              /* The rule matches to/from a base service, see if it's the
-               * one being disconnected, since we know this service name
-               * will never be recycled.
-               */
-              const char *name;
-
-              name = bus_connection_get_name (disconnected);
-              _dbus_assert (name != NULL); /* because we're an active connection */
-
-              if (((rule->flags & BUS_MATCH_SENDER) &&
-                   strcmp (rule->sender, name) == 0) ||
-                  ((rule->flags & BUS_MATCH_DESTINATION) &&
-                   strcmp (rule->destination, name) == 0))
-                {
-                  bus_matchmaker_remove_rule_link (rules, link);
-                }
-            }
-
-          link = next;
-        }
+      rule_list_remove_by_connection (rules, disconnected);
     }
 }