2017-05-23 19:15:33 +02:00
|
|
|
/* PipeWire
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2016-09-15 17:51:34 +02:00
|
|
|
*/
|
|
|
|
|
|
2017-07-12 18:04:00 +02:00
|
|
|
#include <stdio.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
#include <dlfcn.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <poll.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/mman.h>
|
2018-04-24 17:06:37 +02:00
|
|
|
#include <time.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/node/node.h>
|
|
|
|
|
#include <spa/monitor/monitor.h>
|
|
|
|
|
#include <spa/pod/parser.h>
|
2018-09-05 16:41:07 +02:00
|
|
|
#include <spa/debug/pod.h>
|
2017-07-11 15:57:20 +02:00
|
|
|
|
|
|
|
|
#include <pipewire/log.h>
|
2017-08-08 19:55:14 +02:00
|
|
|
#include <pipewire/type.h>
|
2017-07-11 15:57:20 +02:00
|
|
|
#include <pipewire/node.h>
|
2018-11-23 12:43:47 +01:00
|
|
|
#include <pipewire/device.h>
|
2019-05-24 15:47:48 +02:00
|
|
|
#include <pipewire/keys.h>
|
2019-05-29 17:53:25 +02:00
|
|
|
#include <pipewire/pipewire.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
#include "spa-monitor.h"
|
2018-11-23 12:43:47 +01:00
|
|
|
#include "spa-device.h"
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object {
|
|
|
|
|
uint32_t id;
|
|
|
|
|
char *name;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_list link;
|
2017-08-22 18:30:10 +02:00
|
|
|
struct spa_handle *handle;
|
2018-11-23 12:43:47 +01:00
|
|
|
uint32_t type;
|
|
|
|
|
void *object;
|
2019-05-27 16:02:36 +02:00
|
|
|
struct spa_hook object_listener;
|
2017-05-23 19:15:33 +02:00
|
|
|
};
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
struct impl {
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_spa_monitor this;
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_core *core;
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent;
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_list item_list;
|
2017-05-23 19:15:33 +02:00
|
|
|
};
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2019-05-27 16:02:36 +02:00
|
|
|
static void device_free(void *data)
|
|
|
|
|
{
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object *obj = data;
|
|
|
|
|
spa_hook_remove(&obj->object_listener);
|
|
|
|
|
spa_list_remove(&obj->link);
|
|
|
|
|
spa_handle_clear(obj->handle);
|
|
|
|
|
free(obj->handle);
|
|
|
|
|
free(obj);
|
2019-05-27 16:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_device_events device_events = {
|
|
|
|
|
PW_VERSION_DEVICE_EVENTS,
|
|
|
|
|
.free = device_free
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
static struct monitor_object *add_object(struct pw_spa_monitor *this, uint32_t id,
|
|
|
|
|
const struct spa_monitor_object_info *info, uint64_t now)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(this, struct impl, this);
|
|
|
|
|
int res;
|
|
|
|
|
struct spa_handle *handle;
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object *obj;
|
|
|
|
|
const char *name, *str;
|
2018-11-23 12:43:47 +01:00
|
|
|
void *iface;
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_properties *props = NULL;
|
2017-08-04 10:18:54 +02:00
|
|
|
const struct spa_support *support;
|
2019-05-30 12:45:06 +02:00
|
|
|
uint32_t n_support;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
if (info->props)
|
|
|
|
|
props = pw_properties_new_dict(info->props);
|
|
|
|
|
else
|
|
|
|
|
props = pw_properties_new(NULL, NULL);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
if ((name = pw_properties_get(props, PW_KEY_DEVICE_NAME)) == NULL)
|
|
|
|
|
name = "unknown";
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_log_debug("monitor %p: add: \"%s\" (%u)", this, name, id);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
if ((str = pw_properties_get(props, PW_KEY_DEVICE_FORM_FACTOR)) != NULL)
|
2018-04-24 17:06:37 +02:00
|
|
|
if (strcmp(str, "internal") == 0)
|
|
|
|
|
now = 0;
|
2019-05-24 15:47:48 +02:00
|
|
|
if (now != 0 && pw_properties_get(props, PW_KEY_DEVICE_PLUGGED) == NULL)
|
|
|
|
|
pw_properties_setf(props, PW_KEY_DEVICE_PLUGGED, "%"PRIu64, now);
|
2018-04-24 17:06:37 +02:00
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
support = pw_core_get_support(impl->core, &n_support);
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
handle = calloc(1, spa_handle_factory_get_size(info->factory, NULL));
|
|
|
|
|
if ((res = spa_handle_factory_init(info->factory,
|
2017-05-26 08:05:01 +02:00
|
|
|
handle,
|
|
|
|
|
&props->dict,
|
2017-08-04 10:18:54 +02:00
|
|
|
support,
|
|
|
|
|
n_support)) < 0) {
|
2018-09-24 09:33:09 +02:00
|
|
|
pw_properties_free(props);
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't make factory instance: %d", res);
|
2018-04-24 17:06:37 +02:00
|
|
|
return NULL;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, info->type, &iface)) < 0) {
|
|
|
|
|
pw_log_error("can't get %d interface: %d", info->type, res);
|
2018-09-24 09:33:09 +02:00
|
|
|
pw_properties_free(props);
|
2018-04-24 17:06:37 +02:00
|
|
|
return NULL;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
obj = calloc(1, sizeof(struct monitor_object));
|
|
|
|
|
obj->id = id;
|
|
|
|
|
obj->name = strdup(name);
|
|
|
|
|
obj->handle = handle;
|
|
|
|
|
obj->type = info->type;
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
switch (obj->type) {
|
2018-11-23 12:43:47 +01:00
|
|
|
case SPA_TYPE_INTERFACE_Device:
|
2019-05-27 16:02:36 +02:00
|
|
|
{
|
|
|
|
|
struct pw_device *device;
|
|
|
|
|
device = pw_spa_device_new(impl->core, NULL, impl->parent, name,
|
2018-11-23 12:43:47 +01:00
|
|
|
0, iface, handle, props, 0);
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_device_add_listener(device, &obj->object_listener,
|
|
|
|
|
&device_events, obj);
|
|
|
|
|
obj->object = device;
|
2018-11-23 12:43:47 +01:00
|
|
|
break;
|
2019-05-27 16:02:36 +02:00
|
|
|
}
|
2018-11-23 12:43:47 +01:00
|
|
|
default:
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_log_error("interface %d not implemented", obj->type);
|
|
|
|
|
free(obj->name);
|
|
|
|
|
free(obj);
|
2018-11-23 12:43:47 +01:00
|
|
|
return NULL;
|
|
|
|
|
}
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
spa_list_append(&impl->item_list, &obj->link);
|
2018-04-24 17:06:37 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
return obj;
|
2016-11-15 20:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
static struct monitor_object *find_object(struct pw_spa_monitor *this, uint32_t id)
|
2016-11-15 20:12:31 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(this, struct impl, this);
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object *obj;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
spa_list_for_each(obj, &impl->item_list, link) {
|
|
|
|
|
if (obj->id == id) {
|
|
|
|
|
return obj;
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2016-11-15 20:12:31 +01:00
|
|
|
}
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
void destroy_object(struct monitor_object *obj)
|
2016-11-15 20:12:31 +01:00
|
|
|
{
|
2019-05-30 12:45:06 +02:00
|
|
|
switch (obj->type) {
|
2018-11-23 12:43:47 +01:00
|
|
|
case SPA_TYPE_INTERFACE_Node:
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_node_destroy(obj->object);
|
2018-11-23 12:43:47 +01:00
|
|
|
break;
|
|
|
|
|
case SPA_TYPE_INTERFACE_Device:
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_device_destroy(obj->object);
|
2018-11-23 12:43:47 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
static void change_object(struct pw_spa_monitor *this, struct monitor_object *obj,
|
|
|
|
|
const struct spa_monitor_object_info *info, uint64_t now)
|
2018-01-30 15:08:44 +01:00
|
|
|
{
|
2019-05-30 12:45:06 +02:00
|
|
|
pw_log_debug("monitor %p: change: \"%s\" (%u)", this, obj->name, obj->id);
|
2018-01-30 15:08:44 +01:00
|
|
|
}
|
|
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
static int on_monitor_object_info(void *data, uint32_t id,
|
|
|
|
|
const struct spa_monitor_object_info *info)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-08-06 06:42:26 +02:00
|
|
|
struct impl *impl = data;
|
2017-06-14 18:32:39 +02:00
|
|
|
struct pw_spa_monitor *this = &impl->this;
|
2018-04-24 17:06:37 +02:00
|
|
|
struct timespec now;
|
|
|
|
|
uint64_t now_nsec;
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object *obj;
|
2018-04-24 17:06:37 +02:00
|
|
|
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
2018-11-23 19:14:47 +01:00
|
|
|
now_nsec = SPA_TIMESPEC_TO_NSEC(&now);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
obj = find_object(this, id);
|
|
|
|
|
|
|
|
|
|
if (info == NULL) {
|
|
|
|
|
if (obj == NULL)
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
|
|
pw_log_debug("monitor %p: remove: (%s) %u", this, obj->name, id);
|
|
|
|
|
destroy_object(obj);
|
|
|
|
|
} else if (obj == NULL) {
|
|
|
|
|
obj = add_object(this, id, info, now_nsec);
|
|
|
|
|
if (obj == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
} else {
|
|
|
|
|
change_object(this, obj, info, now_nsec);
|
2017-05-26 08:05:01 +02:00
|
|
|
}
|
2019-02-18 12:31:36 +01:00
|
|
|
return 0;
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
static void update_monitor(struct pw_core *core, const char *name)
|
2017-01-20 15:53:03 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
const char *monitors;
|
|
|
|
|
struct spa_dict_item item;
|
2017-08-08 15:01:36 +02:00
|
|
|
const struct pw_properties *props;
|
2017-11-20 15:26:44 +01:00
|
|
|
struct spa_dict dict = SPA_DICT_INIT(&item, 1);
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-08-04 10:18:54 +02:00
|
|
|
props = pw_core_get_properties(core);
|
|
|
|
|
|
|
|
|
|
if (props)
|
2017-08-08 15:01:36 +02:00
|
|
|
monitors = pw_properties_get(props, "monitors");
|
2017-05-26 08:05:01 +02:00
|
|
|
else
|
|
|
|
|
monitors = NULL;
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
item.key = "monitors";
|
|
|
|
|
if (monitors == NULL)
|
|
|
|
|
item.value = name;
|
|
|
|
|
else
|
|
|
|
|
asprintf((char **) &item.value, "%s,%s", monitors, name);
|
2017-03-24 16:14:17 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_core_update_properties(core, &dict);
|
2017-01-20 15:53:03 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
if (monitors != NULL)
|
|
|
|
|
free((void *) item.value);
|
2017-01-20 15:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-25 13:28:15 +02:00
|
|
|
static const struct spa_monitor_callbacks callbacks = {
|
2017-06-14 18:32:39 +02:00
|
|
|
SPA_VERSION_MONITOR_CALLBACKS,
|
2019-05-30 12:45:06 +02:00
|
|
|
.object_info = on_monitor_object_info,
|
2017-05-25 13:28:15 +02:00
|
|
|
};
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_spa_monitor *pw_spa_monitor_load(struct pw_core *core,
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent,
|
2017-06-19 12:19:22 +02:00
|
|
|
const char *dir,
|
2017-05-26 08:05:01 +02:00
|
|
|
const char *lib,
|
2017-08-22 18:30:10 +02:00
|
|
|
const char *factory_name,
|
|
|
|
|
const char *system_name,
|
|
|
|
|
size_t user_data_size)
|
2016-09-15 17:51:34 +02:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl;
|
|
|
|
|
struct pw_spa_monitor *this;
|
|
|
|
|
struct spa_handle *handle;
|
|
|
|
|
int res;
|
|
|
|
|
void *iface;
|
2017-06-19 12:19:22 +02:00
|
|
|
char *filename;
|
2017-08-04 10:18:54 +02:00
|
|
|
const struct spa_support *support;
|
|
|
|
|
uint32_t n_support;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2017-06-19 12:19:22 +02:00
|
|
|
asprintf(&filename, "%s/%s.so", dir, lib);
|
|
|
|
|
|
2019-05-29 17:53:25 +02:00
|
|
|
support = pw_core_get_support(core, &n_support);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
2019-05-29 17:53:25 +02:00
|
|
|
handle = pw_load_spa_handle(lib,
|
|
|
|
|
factory_name,
|
|
|
|
|
NULL,
|
|
|
|
|
n_support, support);
|
2018-04-09 10:06:17 +02:00
|
|
|
if (handle == NULL)
|
|
|
|
|
goto no_mem;
|
|
|
|
|
|
2018-08-27 15:03:11 +02:00
|
|
|
if ((res = spa_handle_get_interface(handle, SPA_TYPE_INTERFACE_Monitor, &iface)) < 0) {
|
2017-05-26 08:05:01 +02:00
|
|
|
pw_log_error("can't get MONITOR interface: %d", res);
|
|
|
|
|
goto interface_failed;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
impl = calloc(1, sizeof(struct impl) + user_data_size);
|
2017-05-26 08:05:01 +02:00
|
|
|
impl->core = core;
|
2017-07-18 14:58:14 +02:00
|
|
|
impl->parent = parent;
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
this = &impl->this;
|
|
|
|
|
this->monitor = iface;
|
2017-06-19 12:19:22 +02:00
|
|
|
this->lib = filename;
|
2017-05-26 08:05:01 +02:00
|
|
|
this->factory_name = strdup(factory_name);
|
|
|
|
|
this->system_name = strdup(system_name);
|
|
|
|
|
this->handle = handle;
|
|
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
if (user_data_size > 0)
|
|
|
|
|
this->user_data = SPA_MEMBER(impl, sizeof(struct impl), void);
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
update_monitor(core, this->system_name);
|
|
|
|
|
|
|
|
|
|
spa_list_init(&impl->item_list);
|
|
|
|
|
|
2017-06-18 19:48:31 +02:00
|
|
|
spa_monitor_set_callbacks(this->monitor, &callbacks, impl);
|
2017-05-26 08:05:01 +02:00
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
|
|
interface_failed:
|
2019-05-29 17:53:25 +02:00
|
|
|
pw_unload_spa_handle(handle);
|
2018-04-09 10:06:17 +02:00
|
|
|
no_mem:
|
2017-06-19 12:19:22 +02:00
|
|
|
free(filename);
|
2017-05-26 08:05:01 +02:00
|
|
|
return NULL;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
void pw_spa_monitor_destroy(struct pw_spa_monitor *monitor)
|
2016-11-14 12:42:00 +01:00
|
|
|
{
|
2017-05-26 08:05:01 +02:00
|
|
|
struct impl *impl = SPA_CONTAINER_OF(monitor, struct impl, this);
|
2019-05-30 12:45:06 +02:00
|
|
|
struct monitor_object *obj, *tmp;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-08-22 18:30:10 +02:00
|
|
|
pw_log_debug("spa-monitor %p: destroy", impl);
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2019-05-30 12:45:06 +02:00
|
|
|
spa_list_for_each_safe(obj, tmp, &impl->item_list, link)
|
|
|
|
|
destroy_object(obj);
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2019-05-29 17:53:25 +02:00
|
|
|
pw_unload_spa_handle(monitor->handle);
|
2017-05-26 08:05:01 +02:00
|
|
|
free(monitor->lib);
|
|
|
|
|
free(monitor->factory_name);
|
|
|
|
|
free(monitor->system_name);
|
2016-11-15 20:12:31 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
free(impl);
|
2016-09-15 17:51:34 +02:00
|
|
|
}
|