2015-04-16 16:58:33 +02:00
|
|
|
/* Pulsevideo
|
|
|
|
|
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include "server/pv-daemon.h"
|
|
|
|
|
#include "server/pv-client.h"
|
2015-05-04 10:38:26 +02:00
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
#include "dbus/org-pulsevideo.h"
|
|
|
|
|
|
2015-05-04 10:38:26 +02:00
|
|
|
#include "modules/v4l2/pv-v4l2-source.h"
|
|
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
#define PV_DAEMON_GET_PRIVATE(obj) \
|
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), PV_TYPE_DAEMON, PvDaemonPrivate))
|
|
|
|
|
|
|
|
|
|
struct _PvDaemonPrivate
|
|
|
|
|
{
|
|
|
|
|
guint id;
|
|
|
|
|
GDBusConnection *connection;
|
|
|
|
|
GDBusObjectManagerServer *server_manager;
|
2015-04-20 17:24:58 +02:00
|
|
|
PvSubscribe *subscribe;
|
2015-04-16 16:58:33 +02:00
|
|
|
|
2015-05-04 10:38:26 +02:00
|
|
|
GHashTable *senders;
|
2015-04-16 16:58:33 +02:00
|
|
|
};
|
|
|
|
|
|
2015-05-04 10:38:26 +02:00
|
|
|
typedef struct {
|
|
|
|
|
guint id;
|
|
|
|
|
gchar *sender;
|
|
|
|
|
PvDaemon *daemon;
|
|
|
|
|
GList *clients;
|
|
|
|
|
} SenderData;
|
|
|
|
|
|
2015-04-20 15:03:14 +02:00
|
|
|
static void
|
2015-04-20 17:24:58 +02:00
|
|
|
on_server_subscription_event (PvSubscribe *subscribe,
|
|
|
|
|
PvSubscriptionEvent event,
|
|
|
|
|
PvSubscriptionFlags flags,
|
2015-04-27 09:05:14 +02:00
|
|
|
GDBusProxy *object,
|
2015-04-20 17:24:58 +02:00
|
|
|
gpointer user_data)
|
2015-04-20 15:03:14 +02:00
|
|
|
{
|
2015-04-27 09:05:14 +02:00
|
|
|
const gchar *name, *object_path;
|
2015-04-20 17:24:58 +02:00
|
|
|
|
2015-04-27 09:05:14 +02:00
|
|
|
name = g_dbus_proxy_get_name (object);
|
|
|
|
|
object_path = g_dbus_proxy_get_object_path (object);
|
2015-04-20 17:24:58 +02:00
|
|
|
|
2015-04-27 09:05:14 +02:00
|
|
|
g_print ("got event %d %d %s:%s\n", event, flags, name, object_path);
|
2015-04-20 17:24:58 +02:00
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
|
case PV_SUBSCRIPTION_EVENT_NEW:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PV_SUBSCRIPTION_EVENT_CHANGE:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PV_SUBSCRIPTION_EVENT_REMOVE:
|
2015-04-20 15:03:14 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-04 10:38:26 +02:00
|
|
|
static void
|
|
|
|
|
client_name_appeared_handler (GDBusConnection *connection,
|
|
|
|
|
const gchar *name,
|
|
|
|
|
const gchar *name_owner,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
SenderData *data = user_data;
|
|
|
|
|
|
|
|
|
|
g_print ("client name appeared def: %p\n", g_main_context_get_thread_default ());
|
|
|
|
|
|
|
|
|
|
if (!g_strcmp0 (name, g_dbus_connection_get_unique_name (connection)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
g_print ("appeared client %s %p\n", name, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
client_name_vanished_handler (GDBusConnection *connection,
|
|
|
|
|
const gchar *name,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
SenderData *data = user_data;
|
|
|
|
|
|
|
|
|
|
g_print ("vanished client %s %p\n", name, data);
|
|
|
|
|
|
|
|
|
|
g_bus_unwatch_name (data->id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
data_free (SenderData *data)
|
|
|
|
|
{
|
|
|
|
|
g_print ("free client %s %p\n", data->sender, data);
|
|
|
|
|
|
|
|
|
|
g_list_free_full (data->clients, g_object_unref);
|
|
|
|
|
g_hash_table_remove (data->daemon->priv->senders, data->sender);
|
|
|
|
|
g_free (data->sender);
|
|
|
|
|
g_free (data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static SenderData *
|
|
|
|
|
sender_data_new (PvDaemon *daemon, const gchar *sender)
|
|
|
|
|
{
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
SenderData *data;
|
|
|
|
|
|
|
|
|
|
data = g_new0 (SenderData, 1);
|
|
|
|
|
data->daemon = daemon;
|
|
|
|
|
data->sender = g_strdup (sender);
|
|
|
|
|
|
|
|
|
|
g_print ("watch name def: %p\n", g_main_context_get_thread_default ());
|
|
|
|
|
g_print ("watch name %s %p\n", sender, data);
|
|
|
|
|
|
|
|
|
|
data->id = g_bus_watch_name_on_connection (priv->connection,
|
|
|
|
|
sender,
|
|
|
|
|
G_BUS_NAME_WATCHER_FLAGS_NONE,
|
|
|
|
|
client_name_appeared_handler,
|
|
|
|
|
client_name_vanished_handler,
|
|
|
|
|
data,
|
|
|
|
|
(GDestroyNotify) data_free);
|
|
|
|
|
|
|
|
|
|
g_hash_table_insert (priv->senders, data->sender, data);
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 15:03:14 +02:00
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
static gboolean
|
|
|
|
|
handle_connect_client (PvDaemon1 *interface,
|
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
|
GVariant *arg_properties,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
PvDaemon *daemon = user_data;
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
PvClient *client;
|
|
|
|
|
const gchar *sender, *object_path;
|
2015-05-04 10:38:26 +02:00
|
|
|
SenderData *data;
|
2015-04-16 16:58:33 +02:00
|
|
|
|
|
|
|
|
sender = g_dbus_method_invocation_get_sender (invocation);
|
|
|
|
|
|
|
|
|
|
g_print ("connect client %s\n", sender);
|
2015-05-04 10:38:26 +02:00
|
|
|
data = g_hash_table_lookup (priv->senders, sender);
|
|
|
|
|
if (data == NULL)
|
|
|
|
|
data = sender_data_new (daemon, sender);
|
2015-04-16 16:58:33 +02:00
|
|
|
|
2015-04-27 09:05:14 +02:00
|
|
|
client = pv_client_new (daemon, sender, PV_DBUS_OBJECT_PREFIX);
|
2015-04-16 16:58:33 +02:00
|
|
|
object_path = pv_client_get_object_path (client);
|
|
|
|
|
|
2015-05-04 10:38:26 +02:00
|
|
|
data->clients = g_list_prepend (data->clients, client);
|
2015-04-16 16:58:33 +02:00
|
|
|
|
|
|
|
|
pv_daemon1_complete_connect_client (interface, invocation, object_path);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
export_server_object (PvDaemon *daemon, GDBusObjectManagerServer *manager)
|
|
|
|
|
{
|
2015-04-20 17:24:58 +02:00
|
|
|
PvObjectSkeleton *skel;
|
2015-04-16 16:58:33 +02:00
|
|
|
|
2015-04-20 17:24:58 +02:00
|
|
|
skel = pv_object_skeleton_new (PV_DBUS_OBJECT_SERVER);
|
2015-04-16 16:58:33 +02:00
|
|
|
{
|
|
|
|
|
PvDaemon1 *iface;
|
|
|
|
|
|
|
|
|
|
iface = pv_daemon1_skeleton_new ();
|
|
|
|
|
g_signal_connect (iface, "handle-connect-client", (GCallback) handle_connect_client, daemon);
|
|
|
|
|
pv_daemon1_set_user_name (iface, g_get_user_name ());
|
|
|
|
|
pv_daemon1_set_host_name (iface, g_get_host_name ());
|
|
|
|
|
pv_daemon1_set_version (iface, PACKAGE_VERSION);
|
|
|
|
|
pv_daemon1_set_name (iface, PACKAGE_NAME);
|
2015-04-20 17:24:58 +02:00
|
|
|
pv_object_skeleton_set_daemon1 (skel, iface);
|
2015-04-16 16:58:33 +02:00
|
|
|
g_object_unref (iface);
|
|
|
|
|
}
|
2015-04-20 17:24:58 +02:00
|
|
|
g_dbus_object_manager_server_export (manager, G_DBUS_OBJECT_SKELETON (skel));
|
2015-04-16 16:58:33 +02:00
|
|
|
g_object_unref (skel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
bus_acquired_handler (GDBusConnection *connection,
|
|
|
|
|
const gchar *name,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
PvDaemon *daemon = user_data;
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
|
|
|
|
|
priv->connection = connection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
name_acquired_handler (GDBusConnection *connection,
|
|
|
|
|
const gchar *name,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
PvDaemon *daemon = user_data;
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
2015-04-20 17:24:58 +02:00
|
|
|
GDBusObjectManagerServer *manager = priv->server_manager;
|
|
|
|
|
|
2015-04-29 17:51:51 +02:00
|
|
|
export_server_object (daemon, manager);
|
|
|
|
|
|
2015-04-20 17:24:58 +02:00
|
|
|
g_object_set (priv->subscribe, "service", PV_DBUS_SERVICE,
|
2015-04-27 09:05:14 +02:00
|
|
|
"subscription-mask", PV_SUBSCRIPTION_FLAGS_ALL,
|
2015-04-20 17:24:58 +02:00
|
|
|
"connection", connection,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
g_dbus_object_manager_server_set_connection (manager, connection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
name_lost_handler (GDBusConnection *connection,
|
|
|
|
|
const gchar *name,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
PvDaemon *daemon = user_data;
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
GDBusObjectManagerServer *manager = priv->server_manager;
|
|
|
|
|
|
2015-04-20 17:24:58 +02:00
|
|
|
g_object_set (priv->subscribe, "connection", connection, NULL);
|
|
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
g_dbus_object_manager_server_unexport (manager, PV_DBUS_OBJECT_SERVER);
|
2015-04-20 17:24:58 +02:00
|
|
|
g_dbus_object_manager_server_set_connection (manager, connection);
|
2015-04-16 16:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_new:
|
|
|
|
|
*
|
|
|
|
|
* Make a new #PvDaemon object
|
|
|
|
|
*
|
|
|
|
|
* Returns: a new #PvDaemon
|
|
|
|
|
*/
|
2015-04-16 16:58:33 +02:00
|
|
|
PvDaemon *
|
|
|
|
|
pv_daemon_new (void)
|
|
|
|
|
{
|
|
|
|
|
return g_object_new (PV_TYPE_DAEMON, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_start:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
*
|
|
|
|
|
* Start the @daemon.
|
|
|
|
|
*/
|
2015-04-16 16:58:33 +02:00
|
|
|
void
|
|
|
|
|
pv_daemon_start (PvDaemon *daemon)
|
|
|
|
|
{
|
|
|
|
|
PvDaemonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (PV_IS_DAEMON (daemon));
|
|
|
|
|
|
|
|
|
|
priv = daemon->priv;
|
|
|
|
|
g_return_if_fail (priv->id == 0);
|
|
|
|
|
|
|
|
|
|
priv->id = g_bus_own_name (G_BUS_TYPE_SESSION,
|
|
|
|
|
PV_DBUS_SERVICE,
|
|
|
|
|
G_BUS_NAME_OWNER_FLAGS_REPLACE,
|
|
|
|
|
bus_acquired_handler,
|
|
|
|
|
name_acquired_handler,
|
|
|
|
|
name_lost_handler,
|
|
|
|
|
daemon,
|
|
|
|
|
NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_stop:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
*
|
|
|
|
|
* Stop the @daemon.
|
|
|
|
|
*/
|
2015-04-16 16:58:33 +02:00
|
|
|
void
|
|
|
|
|
pv_daemon_stop (PvDaemon *daemon)
|
|
|
|
|
{
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (PV_IS_DAEMON (daemon));
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
if (priv->id != 0) {
|
|
|
|
|
g_bus_unown_name (priv->id);
|
|
|
|
|
priv->id = 0;
|
|
|
|
|
}
|
2015-04-16 16:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_export_uniquely:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
* @skel: a #GDBusObjectSkeleton
|
|
|
|
|
*
|
|
|
|
|
* Export @skel with @daemon with a unique name
|
|
|
|
|
*
|
|
|
|
|
* Returns: the unique named used to export @skel.
|
|
|
|
|
*/
|
2015-04-16 16:58:33 +02:00
|
|
|
gchar *
|
|
|
|
|
pv_daemon_export_uniquely (PvDaemon *daemon, GDBusObjectSkeleton *skel)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (PV_IS_DAEMON (daemon), NULL);
|
|
|
|
|
g_return_val_if_fail (G_IS_DBUS_OBJECT_SKELETON (skel), NULL);
|
|
|
|
|
|
|
|
|
|
g_dbus_object_manager_server_export_uniquely (daemon->priv->server_manager, skel);
|
|
|
|
|
|
|
|
|
|
return g_strdup (g_dbus_object_get_object_path (G_DBUS_OBJECT (skel)));
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_unexport:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
* @object_path: an object path
|
|
|
|
|
*
|
|
|
|
|
* Unexport the object on @object_path
|
|
|
|
|
*/
|
2015-04-16 16:58:33 +02:00
|
|
|
void
|
|
|
|
|
pv_daemon_unexport (PvDaemon *daemon, const gchar *object_path)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (PV_IS_DAEMON (daemon));
|
|
|
|
|
g_return_if_fail (g_variant_is_object_path (object_path));
|
|
|
|
|
|
|
|
|
|
g_dbus_object_manager_server_unexport (daemon->priv->server_manager, object_path);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_add_source:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
* @source: a #PvSource
|
|
|
|
|
*
|
|
|
|
|
* Register @source with @daemon so that it becomes available to clients.
|
|
|
|
|
*/
|
2015-04-20 17:24:58 +02:00
|
|
|
void
|
|
|
|
|
pv_daemon_add_source (PvDaemon *daemon, PvSource *source)
|
|
|
|
|
{
|
|
|
|
|
PvDaemonPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (PV_IS_DAEMON (daemon));
|
|
|
|
|
g_return_if_fail (PV_IS_SOURCE (source));
|
|
|
|
|
priv = daemon->priv;
|
|
|
|
|
|
|
|
|
|
pv_source_set_manager (source, priv->server_manager);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 16:57:09 +02:00
|
|
|
/**
|
|
|
|
|
* pv_daemon_remove_source:
|
|
|
|
|
* @daemon: a #PvDaemon
|
|
|
|
|
* @source: a #PvSource
|
|
|
|
|
*
|
|
|
|
|
* Unregister @source from @daemon so that it becomes unavailable to clients.
|
|
|
|
|
*/
|
2015-04-20 17:24:58 +02:00
|
|
|
void
|
|
|
|
|
pv_daemon_remove_source (PvDaemon *daemon, PvSource *source)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (PV_IS_DAEMON (daemon));
|
|
|
|
|
g_return_if_fail (PV_IS_SOURCE (source));
|
|
|
|
|
|
|
|
|
|
pv_source_set_manager (source, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-16 16:58:33 +02:00
|
|
|
G_DEFINE_TYPE (PvDaemon, pv_daemon, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
pv_daemon_finalize (GObject * object)
|
|
|
|
|
{
|
|
|
|
|
PvDaemon *daemon = PV_DAEMON_CAST (object);
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv;
|
|
|
|
|
|
2015-04-20 17:24:58 +02:00
|
|
|
g_clear_object (&priv->server_manager);
|
2015-04-16 16:58:33 +02:00
|
|
|
pv_daemon_stop (daemon);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (pv_daemon_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
pv_daemon_class_init (PvDaemonClass * klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (PvDaemonPrivate));
|
|
|
|
|
|
|
|
|
|
gobject_class->finalize = pv_daemon_finalize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
pv_daemon_init (PvDaemon * daemon)
|
|
|
|
|
{
|
|
|
|
|
PvDaemonPrivate *priv = daemon->priv = PV_DAEMON_GET_PRIVATE (daemon);
|
|
|
|
|
|
2015-04-20 17:24:58 +02:00
|
|
|
priv->server_manager = g_dbus_object_manager_server_new (PV_DBUS_OBJECT_PREFIX);
|
2015-05-04 10:38:26 +02:00
|
|
|
priv->senders = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
|
2015-04-20 17:24:58 +02:00
|
|
|
|
|
|
|
|
priv->subscribe = pv_subscribe_new ();
|
|
|
|
|
g_signal_connect (priv->subscribe,
|
|
|
|
|
"subscription-event",
|
|
|
|
|
(GCallback) on_server_subscription_event,
|
|
|
|
|
daemon);
|
2015-04-16 16:58:33 +02:00
|
|
|
}
|
|
|
|
|
|