Small cleanups

Use client properties to get the remote name to connect to.
Allow NULL values in properties and make sure they are copied
correctly.
This commit is contained in:
Wim Taymans 2017-09-11 15:26:50 +02:00
parent c72d797dde
commit 78ebe2b76e
3 changed files with 35 additions and 14 deletions

View file

@ -65,6 +65,7 @@ struct protocol_data {
struct client { struct client {
struct pw_protocol_client this; struct pw_protocol_client this;
struct pw_properties *properties;
struct spa_source *source; struct spa_source *source;
struct pw_protocol_native_connection *connection; struct pw_protocol_native_connection *connection;
@ -406,14 +407,14 @@ static bool add_socket(struct pw_protocol *protocol, struct server *s)
} }
static const char * static const char *
get_name(const struct pw_properties *properties) get_remote(const struct pw_properties *properties)
{ {
const char *name = NULL; const char *name = NULL;
if (properties) if (properties)
name = pw_properties_get(properties, "pipewire.core.name"); name = pw_properties_get(properties, "pipewire.remote.name");
if (name == NULL) if (name == NULL)
name = getenv("PIPEWIRE_CORE"); name = getenv("PIPEWIRE_REMOTE");
if (name == NULL) if (name == NULL)
name = "pipewire-0"; name = "pipewire-0";
return name; return name;
@ -421,6 +422,7 @@ get_name(const struct pw_properties *properties)
static int impl_connect(struct pw_protocol_client *client) static int impl_connect(struct pw_protocol_client *client)
{ {
struct client *impl = SPA_CONTAINER_OF(client, struct client, this);
struct sockaddr_un addr; struct sockaddr_un addr;
socklen_t size; socklen_t size;
const char *runtime_dir, *name = NULL; const char *runtime_dir, *name = NULL;
@ -431,7 +433,7 @@ static int impl_connect(struct pw_protocol_client *client)
return -1; return -1;
} }
name = get_name(NULL); name = get_remote(impl->properties);
if ((fd = socket(PF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)) < 0) if ((fd = socket(PF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)) < 0)
return -1; return -1;
@ -604,6 +606,9 @@ static void impl_destroy(struct pw_protocol_client *client)
pw_loop_destroy_source(remote->core->main_loop, impl->flush_event); pw_loop_destroy_source(remote->core->main_loop, impl->flush_event);
if (impl->properties)
pw_properties_free(impl->properties);
spa_list_remove(&client->link); spa_list_remove(&client->link);
free(impl); free(impl);
} }
@ -623,6 +628,8 @@ impl_new_client(struct pw_protocol *protocol,
this->protocol = protocol; this->protocol = protocol;
this->remote = remote; this->remote = remote;
impl->properties = properties ? pw_properties_copy(properties) : NULL;
this->connect = impl_connect; this->connect = impl_connect;
this->connect_fd = impl_connect_fd; this->connect_fd = impl_connect_fd;
this->disconnect = impl_disconnect; this->disconnect = impl_disconnect;
@ -674,6 +681,20 @@ static const struct spa_loop_control_hooks impl_hooks = {
.before = on_before_hook, .before = on_before_hook,
}; };
static const char *
get_name(const struct pw_properties *properties)
{
const char *name = NULL;
if (properties)
name = pw_properties_get(properties, "pipewire.core.name");
if (name == NULL)
name = getenv("PIPEWIRE_CORE");
if (name == NULL)
name = "pipewire-0";
return name;
}
static struct pw_protocol_server * static struct pw_protocol_server *
impl_add_server(struct pw_protocol *protocol, impl_add_server(struct pw_protocol *protocol,
struct pw_core *core, struct pw_core *core,

View file

@ -86,7 +86,7 @@ struct pw_properties *pw_properties_new(const char *key, ...)
va_start(varargs, key); va_start(varargs, key);
while (key != NULL) { while (key != NULL) {
value = va_arg(varargs, char *); value = va_arg(varargs, char *);
add_func(&impl->this, strdup(key), strdup(value)); add_func(&impl->this, strdup(key), value ? strdup(value) : NULL);
key = va_arg(varargs, char *); key = va_arg(varargs, char *);
} }
va_end(varargs); va_end(varargs);
@ -112,8 +112,11 @@ struct pw_properties *pw_properties_new_dict(const struct spa_dict *dict)
pw_array_init(&impl->items, 16); pw_array_init(&impl->items, 16);
for (i = 0; i < dict->n_items; i++) for (i = 0; i < dict->n_items; i++) {
add_func(&impl->this, strdup(dict->items[i].key), strdup(dict->items[i].value)); if (dict->items[i].key != NULL)
add_func(&impl->this, strdup(dict->items[i].key),
dict->items[i].value ? strdup(dict->items[i].value) : NULL);
}
return &impl->this; return &impl->this;
} }
@ -136,7 +139,7 @@ struct pw_properties *pw_properties_copy(const struct pw_properties *properties)
return NULL; return NULL;
pw_array_for_each(item, &impl->items) pw_array_for_each(item, &impl->items)
add_func(copy, strdup(item->key), strdup(item->value)); add_func(copy, strdup(item->key), item->value ? strdup(item->value) : NULL);
return copy; return copy;
} }
@ -211,10 +214,7 @@ static void do_replace(struct pw_properties *properties, char *key, char *value)
clear_item(item); clear_item(item);
if (value == NULL) { if (value == NULL) {
struct spa_dict_item *other = pw_array_get_unchecked(&impl->items, struct spa_dict_item *other = pw_array_get_unchecked(&impl->items,
pw_array_get_len pw_array_get_len(&impl->items, struct spa_dict_item) - 1,
(&impl->items,
struct spa_dict_item)
- 1,
struct spa_dict_item); struct spa_dict_item);
item->key = other->key; item->key = other->key;
item->value = other->value; item->value = other->value;

View file

@ -247,7 +247,7 @@ struct pw_remote *pw_remote_new(struct pw_core *core,
pw_module_load(core, "libpipewire-module-client-node", NULL); pw_module_load(core, "libpipewire-module-client-node", NULL);
spa_list_insert(core->remote_list.prev, &this->link); spa_list_append(&core->remote_list, &this->link);
return this; return this;