Files
grd/grd-stream.c
2026-02-13 13:06:50 +09:00

210 lines
5.6 KiB
C

/*
* Copyright (C) 2017 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
*/
#include "config.h"
#include "grd-stream.h"
enum
{
READY,
N_SIGNALS
};
static guint signals[N_SIGNALS];
typedef struct _GrdStreamPrivate
{
uint32_t stream_id;
uint32_t pipewire_node_id;
char *mapping_id;
GrdDBusMutterScreenCastStream *proxy;
GCancellable *cancellable;
unsigned long pipewire_stream_added_id;
} GrdStreamPrivate;
G_DEFINE_TYPE_WITH_PRIVATE (GrdStream, grd_stream, G_TYPE_OBJECT)
uint32_t
grd_stream_get_stream_id (GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
return priv->stream_id;
}
uint32_t
grd_stream_get_pipewire_node_id (GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
return priv->pipewire_node_id;
}
const char *
grd_stream_get_mapping_id (GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
return priv->mapping_id;
}
void
grd_stream_disconnect_proxy_signals (GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
g_clear_signal_handler (&priv->pipewire_stream_added_id, priv->proxy);
}
static void
on_pipewire_stream_added (GrdDBusMutterScreenCastStream *proxy,
unsigned int node_id,
GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
priv->pipewire_node_id = (uint32_t) node_id;
g_signal_emit (stream, signals[READY], 0);
}
GrdStream *
grd_stream_new (uint32_t stream_id,
GrdDBusMutterScreenCastStream *proxy,
GCancellable *cancellable,
GError **error)
{
GrdStream *stream;
GrdStreamPrivate *priv;
GVariant *parameters;
char *mapping_id = NULL;
parameters = grd_dbus_mutter_screen_cast_stream_get_parameters (proxy);
if (!parameters)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
"Failed to get stream parameters for stream %u", stream_id);
return NULL;
}
g_variant_lookup (parameters, "mapping-id", "s", &mapping_id);
if (!mapping_id)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
"Missing mapping-id for stream %u", stream_id);
return NULL;
}
g_debug ("PipeWire stream %u mapping ID: %s", stream_id, mapping_id);
stream = g_object_new (GRD_TYPE_STREAM, NULL);
priv = grd_stream_get_instance_private (stream);
priv->stream_id = stream_id;
priv->mapping_id = mapping_id;
priv->proxy = g_object_ref (proxy);
priv->cancellable = g_object_ref (cancellable);
priv->pipewire_stream_added_id =
g_signal_connect (proxy, "pipewire-stream-added",
G_CALLBACK (on_pipewire_stream_added),
stream);
return stream;
}
static void
on_screen_cast_stream_stop_finished (GObject *object,
GAsyncResult *result,
gpointer user_data)
{
GrdStream *stream = user_data;
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
g_debug ("Stream %u stopped", priv->stream_id);
g_object_run_dispose (G_OBJECT (stream));
g_object_unref (stream);
}
void
grd_stream_destroy (GrdStream *stream)
{
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
g_assert (priv->proxy);
g_assert (priv->cancellable);
grd_stream_disconnect_proxy_signals (stream);
g_debug ("Stopping stream %u", priv->stream_id);
grd_dbus_mutter_screen_cast_stream_call_stop (priv->proxy, priv->cancellable,
on_screen_cast_stream_stop_finished,
stream);
}
static void
grd_stream_finalize (GObject *object)
{
GrdStream *stream = GRD_STREAM (object);
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
g_clear_pointer (&priv->mapping_id, g_free);
G_OBJECT_CLASS (grd_stream_parent_class)->finalize (object);
}
static void
grd_stream_dispose (GObject *object)
{
GrdStream *stream = GRD_STREAM (object);
GrdStreamPrivate *priv = grd_stream_get_instance_private (stream);
g_clear_object (&priv->cancellable);
g_clear_object (&priv->proxy);
G_OBJECT_CLASS (grd_stream_parent_class)->finalize (object);
}
static void
grd_stream_init (GrdStream *stream)
{
}
static void
grd_stream_class_init (GrdStreamClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->dispose = grd_stream_dispose;
object_class->finalize = grd_stream_finalize;
signals[READY] = g_signal_new ("ready",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
0,
NULL, NULL, NULL,
G_TYPE_NONE, 0);
}