]> code.delx.au - pulseaudio/commitdiff
add pa_client_update_proplist() call
authorLennart Poettering <lennart@poettering.net>
Thu, 5 Feb 2009 03:06:50 +0000 (04:06 +0100)
committerLennart Poettering <lennart@poettering.net>
Thu, 5 Feb 2009 03:06:50 +0000 (04:06 +0100)
src/pulsecore/client.c
src/pulsecore/client.h

index 18004412239a8c26b2062223af4c5adc20e2cc9b..6f3e08e25f5408cb51d8f56a1cf0a2cddb300f40 100644 (file)
@@ -126,8 +126,21 @@ void pa_client_kill(pa_client *c) {
 
 void pa_client_set_name(pa_client *c, const char *name) {
     pa_assert(c);
+    pa_assert(name);
 
     pa_log_info("Client %u changed name from \"%s\" to \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME)), name);
     pa_proplist_sets(c->proplist, PA_PROP_APPLICATION_NAME, name);
+
+    pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CLIENT_PROPLIST_CHANGED], c);
+    pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
+}
+
+void pa_client_update_proplist(pa_client *c, pa_update_mode_t mode, pa_proplist *p) {
+    pa_assert(c);
+    pa_assert(p);
+
+    pa_proplist_update(c->proplist, mode, p);
+
+    pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CLIENT_PROPLIST_CHANGED], c);
     pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
 }
index 48e9bc7a79d290b136fd366d8f93258f9834a8fd..8ac80dd96e341de9d17365f05ff6a70f93d07ccc 100644 (file)
@@ -71,4 +71,6 @@ void pa_client_kill(pa_client *c);
 /* Rename the client */
 void pa_client_set_name(pa_client *c, const char *name);
 
+void pa_client_update_proplist(pa_client *c, pa_update_mode_t mode, pa_proplist *p);
+
 #endif