[Telepathy-commits] [telepathy-glib/master] Change filename of channelspecific room manager to match class name

Simon McVittie simon.mcvittie at collabora.co.uk
Wed Jan 7 07:32:27 PST 2009


---
 examples/cm/channelspecific/Makefile.am    |    4 +-
 examples/cm/channelspecific/conn.c         |    2 +-
 examples/cm/channelspecific/room-factory.c |  376 ----------------------------
 examples/cm/channelspecific/room-factory.h |   55 ----
 examples/cm/channelspecific/room-manager.c |  376 ++++++++++++++++++++++++++++
 examples/cm/channelspecific/room-manager.h |   55 ++++
 6 files changed, 434 insertions(+), 434 deletions(-)
 delete mode 100644 examples/cm/channelspecific/room-factory.c
 delete mode 100644 examples/cm/channelspecific/room-factory.h
 create mode 100644 examples/cm/channelspecific/room-manager.c
 create mode 100644 examples/cm/channelspecific/room-manager.h

diff --git a/examples/cm/channelspecific/Makefile.am b/examples/cm/channelspecific/Makefile.am
index 48bb8d8..a147855 100644
--- a/examples/cm/channelspecific/Makefile.am
+++ b/examples/cm/channelspecific/Makefile.am
@@ -11,8 +11,8 @@ libexample_cm_csh_la_SOURCES = \
     connection-manager.h \
     room.c \
     room.h \
-    room-factory.c \
-    room-factory.h
+    room-manager.c \
+    room-manager.h
 
 # In an external project you'd use $(TP_GLIB_LIBS) (obtained from
 # pkg-config via autoconf) instead of the .la path
diff --git a/examples/cm/channelspecific/conn.c b/examples/cm/channelspecific/conn.c
index 96f08fb..cb46433 100644
--- a/examples/cm/channelspecific/conn.c
+++ b/examples/cm/channelspecific/conn.c
@@ -20,7 +20,7 @@
 #include <telepathy-glib/handle-repo-dynamic.h>
 #include <telepathy-glib/interfaces.h>
 
-#include "room-factory.h"
+#include "room-manager.h"
 
 G_DEFINE_TYPE (ExampleCSHConnection,
     example_csh_connection,
diff --git a/examples/cm/channelspecific/room-factory.c b/examples/cm/channelspecific/room-factory.c
deleted file mode 100644
index c716fda..0000000
--- a/examples/cm/channelspecific/room-factory.c
+++ /dev/null
@@ -1,376 +0,0 @@
-/*
- * room-factory.c: example channel factory for chatrooms
- *
- * Copyright (C) 2007-2008 Collabora Ltd. <http://www.collabora.co.uk/>
- * Copyright (C) 2007 Nokia Corporation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
-
-#include "room-factory.h"
-
-#include <dbus/dbus-glib.h>
-
-#include <telepathy-glib/base-connection.h>
-#include <telepathy-glib/dbus.h>
-#include <telepathy-glib/errors.h>
-#include <telepathy-glib/interfaces.h>
-
-#include "room.h"
-
-static void channel_manager_iface_init (gpointer, gpointer);
-
-G_DEFINE_TYPE_WITH_CODE (ExampleCSHRoomManager,
-    example_csh_room_manager,
-    G_TYPE_OBJECT,
-    G_IMPLEMENT_INTERFACE (TP_TYPE_CHANNEL_MANAGER,
-      channel_manager_iface_init))
-
-/* type definition stuff */
-
-enum
-{
-  PROP_CONNECTION = 1,
-  N_PROPS
-};
-
-struct _ExampleCSHRoomManagerPrivate
-{
-  TpBaseConnection *conn;
-
-  /* GUINT_TO_POINTER (room handle) => ExampleCSHRoomChannel */
-  GHashTable *channels;
-  gulong status_changed_id;
-};
-
-static void
-example_csh_room_manager_init (ExampleCSHRoomManager *self)
-{
-  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
-      EXAMPLE_TYPE_CSH_ROOM_MANAGER, ExampleCSHRoomManagerPrivate);
-
-  self->priv->channels = g_hash_table_new_full (g_direct_hash, g_direct_equal,
-      NULL, g_object_unref);
-}
-
-static void example_csh_room_manager_close_all (ExampleCSHRoomManager *self);
-
-static void
-dispose (GObject *object)
-{
-  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
-
-  example_csh_room_manager_close_all (self);
-  g_assert (self->priv->channels == NULL);
-
-  ((GObjectClass *) example_csh_room_manager_parent_class)->dispose (object);
-}
-
-static void
-get_property (GObject *object,
-              guint property_id,
-              GValue *value,
-              GParamSpec *pspec)
-{
-  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
-
-  switch (property_id)
-    {
-    case PROP_CONNECTION:
-      g_value_set_object (value, self->priv->conn);
-      break;
-    default:
-      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
-    }
-}
-
-static void
-set_property (GObject *object,
-              guint property_id,
-              const GValue *value,
-              GParamSpec *pspec)
-{
-  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
-
-  switch (property_id)
-    {
-    case PROP_CONNECTION:
-      /* We don't ref the connection, because it owns a reference to the
-       * manager, and it guarantees that the manager's lifetime is
-       * less than its lifetime */
-      self->priv->conn = g_value_get_object (value);
-      break;
-    default:
-      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
-    }
-}
-
-static void
-status_changed_cb (TpBaseConnection *conn,
-                   guint status,
-                   guint reason,
-                   ExampleCSHRoomManager *self)
-{
-  if (status == TP_CONNECTION_STATUS_DISCONNECTED)
-    example_csh_room_manager_close_all (self);
-}
-
-static void
-constructed (GObject *object)
-{
-  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
-  void (*chain_up) (GObject *) =
-      ((GObjectClass *) example_csh_room_manager_parent_class)->constructed;
-
-  if (chain_up != NULL)
-    {
-      chain_up (object);
-    }
-
-  self->priv->status_changed_id = g_signal_connect (self->priv->conn,
-      "status-changed", (GCallback) status_changed_cb, self);
-}
-
-static void
-example_csh_room_manager_class_init (ExampleCSHRoomManagerClass *klass)
-{
-  GParamSpec *param_spec;
-  GObjectClass *object_class = (GObjectClass *) klass;
-
-  object_class->constructed = constructed;
-  object_class->dispose = dispose;
-  object_class->get_property = get_property;
-  object_class->set_property = set_property;
-
-  param_spec = g_param_spec_object ("connection", "Connection object",
-      "The connection that owns this channel manager",
-      TP_TYPE_BASE_CONNECTION,
-      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
-      G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB);
-  g_object_class_install_property (object_class, PROP_CONNECTION, param_spec);
-
-  g_type_class_add_private (klass, sizeof (ExampleCSHRoomManagerPrivate));
-}
-
-static void
-example_csh_room_manager_close_all (ExampleCSHRoomManager *self)
-{
-  if (self->priv->channels != NULL)
-    {
-      GHashTable *tmp = self->priv->channels;
-
-      self->priv->channels = NULL;
-      g_hash_table_destroy (tmp);
-    }
-
-  if (self->priv->status_changed_id != 0)
-    {
-      g_signal_handler_disconnect (self->priv->conn,
-          self->priv->status_changed_id);
-      self->priv->status_changed_id = 0;
-    }
-}
-
-static void
-example_csh_room_manager_foreach_channel (TpChannelManager *manager,
-                                          TpExportableChannelFunc callback,
-                                          gpointer user_data)
-{
-  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (manager);
-  GHashTableIter iter;
-  gpointer handle, channel;
-
-  g_hash_table_iter_init (&iter, self->priv->channels);
-
-  while (g_hash_table_iter_next (&iter, &handle, &channel))
-    {
-      callback (TP_EXPORTABLE_CHANNEL (channel), user_data);
-    }
-}
-
-static void
-channel_closed_cb (ExampleCSHRoomChannel *chan,
-                   ExampleCSHRoomManager *self)
-{
-  tp_channel_manager_emit_channel_closed_for_object (self,
-      TP_EXPORTABLE_CHANNEL (chan));
-
-  if (self->priv->channels != NULL)
-    {
-      TpHandle handle;
-
-      g_object_get (chan,
-          "handle", &handle,
-          NULL);
-
-      g_hash_table_remove (self->priv->channels, GUINT_TO_POINTER (handle));
-    }
-}
-
-static ExampleCSHRoomChannel *
-new_channel (ExampleCSHRoomManager *self,
-             TpHandle handle,
-             TpHandle initiator,
-             gpointer request_token)
-{
-  ExampleCSHRoomChannel *chan;
-  gchar *object_path;
-  GSList *requests = NULL;
-
-  object_path = g_strdup_printf ("%s/CSHRoomChannel%u",
-      self->priv->conn->object_path, handle);
-
-  chan = g_object_new (EXAMPLE_TYPE_CSH_ROOM_CHANNEL,
-      "connection", self->priv->conn,
-      "object-path", object_path,
-      "handle", handle,
-      /* FIXME: initiator */
-      NULL);
-
-  g_free (object_path);
-
-  g_signal_connect (chan, "closed", (GCallback) channel_closed_cb, self);
-
-  g_hash_table_insert (self->priv->channels, GUINT_TO_POINTER (handle), chan);
-
-  if (request_token != NULL)
-    requests = g_slist_prepend (requests, request_token);
-
-  tp_channel_manager_emit_new_channel (self, TP_EXPORTABLE_CHANNEL (chan),
-      requests);
-  g_slist_free (requests);
-
-  return chan;
-}
-
-static const gchar * const fixed_properties[] = {
-    TP_IFACE_CHANNEL ".ChannelType",
-    TP_IFACE_CHANNEL ".TargetHandleType",
-    NULL
-};
-
-static const gchar * const allowed_properties[] = {
-    TP_IFACE_CHANNEL ".TargetHandle",
-    TP_IFACE_CHANNEL ".TargetID",
-    NULL
-};
-
-static void
-example_csh_room_manager_foreach_channel_class (TpChannelManager *manager,
-    TpChannelManagerChannelClassFunc func,
-    gpointer user_data)
-{
-    GHashTable *table = g_hash_table_new_full (g_str_hash, g_str_equal,
-        NULL, (GDestroyNotify) tp_g_value_slice_free);
-    GValue *value;
-
-    value = tp_g_value_slice_new (G_TYPE_STRING);
-    g_value_set_static_string (value, TP_IFACE_CHANNEL_TYPE_TEXT);
-    g_hash_table_insert (table, TP_IFACE_CHANNEL ".ChannelType", value);
-
-    value = tp_g_value_slice_new (G_TYPE_UINT);
-    g_value_set_uint (value, TP_HANDLE_TYPE_ROOM);
-    g_hash_table_insert (table, TP_IFACE_CHANNEL ".TargetHandleType", value);
-
-    func (manager, table, allowed_properties, user_data);
-
-    g_hash_table_destroy (table);
-}
-
-static gboolean
-example_csh_room_manager_request (ExampleCSHRoomManager *self,
-                                  gpointer request_token,
-                                  GHashTable *request_properties,
-                                  gboolean require_new)
-{
-  TpHandle handle;
-  ExampleCSHRoomChannel *chan;
-  GError *error = NULL;
-
-  if (tp_strdiff (tp_asv_get_string (request_properties,
-          TP_IFACE_CHANNEL ".ChannelType"),
-      TP_IFACE_CHANNEL_TYPE_TEXT))
-    {
-      return FALSE;
-    }
-
-  if (tp_asv_get_uint32 (request_properties,
-      TP_IFACE_CHANNEL ".TargetHandleType", NULL) != TP_HANDLE_TYPE_ROOM)
-    {
-      return FALSE;
-    }
-
-  handle = tp_asv_get_uint32 (request_properties,
-      TP_IFACE_CHANNEL ".TargetHandle", NULL);
-  g_assert (handle != 0);
-
-  if (tp_channel_manager_asv_has_unknown_properties (request_properties,
-        fixed_properties, allowed_properties, &error))
-    {
-      goto error;
-    }
-
-  chan = g_hash_table_lookup (self->priv->channels, GUINT_TO_POINTER (handle));
-
-  if (chan == NULL)
-    {
-      chan = new_channel (self, handle, self->priv->conn->self_handle,
-          request_token);
-    }
-  else if (require_new)
-    {
-      g_set_error (&error, TP_ERRORS, TP_ERROR_NOT_AVAILABLE,
-          "A Text channel for room #%u already exists", handle);
-      goto error;
-    }
-  else
-    {
-      tp_channel_manager_emit_request_already_satisfied (self,
-          request_token, TP_EXPORTABLE_CHANNEL (chan));
-    }
-
-  return TRUE;
-
-error:
-  tp_channel_manager_emit_request_failed (self, request_token,
-      error->domain, error->code, error->message);
-  g_error_free (error);
-  return TRUE;
-}
-
-static gboolean
-example_csh_room_manager_create_channel (TpChannelManager *manager,
-                                         gpointer request_token,
-                                         GHashTable *request_properties)
-{
-    return example_csh_room_manager_request (
-        EXAMPLE_CSH_ROOM_MANAGER (manager), request_token,
-        request_properties, TRUE);
-}
-
-static gboolean
-example_csh_room_manager_ensure_channel (TpChannelManager *manager,
-                                         gpointer request_token,
-                                         GHashTable *request_properties)
-{
-    return example_csh_room_manager_request (
-        EXAMPLE_CSH_ROOM_MANAGER (manager), request_token,
-        request_properties, FALSE);
-}
-
-static void
-channel_manager_iface_init (gpointer g_iface,
-                            gpointer data G_GNUC_UNUSED)
-{
-  TpChannelManagerIface *iface = g_iface;
-
-  iface->foreach_channel = example_csh_room_manager_foreach_channel;
-  iface->foreach_channel_class =
-      example_csh_room_manager_foreach_channel_class;
-  iface->create_channel = example_csh_room_manager_create_channel;
-  iface->ensure_channel = example_csh_room_manager_ensure_channel;
-  /* In this channel manager, Request has the same semantics as Ensure */
-  iface->request_channel = example_csh_room_manager_ensure_channel;
-}
diff --git a/examples/cm/channelspecific/room-factory.h b/examples/cm/channelspecific/room-factory.h
deleted file mode 100644
index 6e9eb27..0000000
--- a/examples/cm/channelspecific/room-factory.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * manager.h - header for an example channel manager
- *
- * Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/>
- * Copyright (C) 2007 Nokia Corporation
- *
- * Copying and distribution of this file, with or without modification,
- * are permitted in any medium without royalty provided the copyright
- * notice and this notice are preserved.
- */
-
-#ifndef __EXAMPLE_CSH_ROOM_MANAGER_H__
-#define __EXAMPLE_CSH_ROOM_MANAGER_H__
-
-#include <glib-object.h>
-#include <telepathy-glib/channel-manager.h>
-
-G_BEGIN_DECLS
-
-typedef struct _ExampleCSHRoomManager ExampleCSHRoomManager;
-typedef struct _ExampleCSHRoomManagerClass ExampleCSHRoomManagerClass;
-typedef struct _ExampleCSHRoomManagerPrivate ExampleCSHRoomManagerPrivate;
-
-struct _ExampleCSHRoomManagerClass {
-    GObjectClass parent_class;
-};
-
-struct _ExampleCSHRoomManager {
-    GObject parent;
-
-    ExampleCSHRoomManagerPrivate *priv;
-};
-
-GType example_csh_room_manager_get_type (void);
-
-/* TYPE MACROS */
-#define EXAMPLE_TYPE_CSH_ROOM_MANAGER \
-  (example_csh_room_manager_get_type ())
-#define EXAMPLE_CSH_ROOM_MANAGER(obj) \
-  (G_TYPE_CHECK_INSTANCE_CAST((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
-                              ExampleCSHRoomManager))
-#define EXAMPLE_CSH_ROOM_MANAGER_CLASS(klass) \
-  (G_TYPE_CHECK_CLASS_CAST((klass), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
-                           ExampleCSHRoomManagerClass))
-#define EXAMPLE_IS_CSH_ROOM_MANAGER(obj) \
-  (G_TYPE_CHECK_INSTANCE_TYPE((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER))
-#define EXAMPLE_IS_CSH_ROOM_MANAGER_CLASS(klass) \
-  (G_TYPE_CHECK_CLASS_TYPE((klass), EXAMPLE_TYPE_CSH_ROOM_MANAGER))
-#define EXAMPLE_CSH_ROOM_MANAGER_GET_CLASS(obj) \
-  (G_TYPE_INSTANCE_GET_CLASS ((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
-                              ExampleCSHRoomManagerClass))
-
-G_END_DECLS
-
-#endif
diff --git a/examples/cm/channelspecific/room-manager.c b/examples/cm/channelspecific/room-manager.c
new file mode 100644
index 0000000..7666927
--- /dev/null
+++ b/examples/cm/channelspecific/room-manager.c
@@ -0,0 +1,376 @@
+/*
+ * room-manager.c: example channel manager for chatrooms
+ *
+ * Copyright (C) 2007-2008 Collabora Ltd. <http://www.collabora.co.uk/>
+ * Copyright (C) 2007 Nokia Corporation
+ *
+ * Copying and distribution of this file, with or without modification,
+ * are permitted in any medium without royalty provided the copyright
+ * notice and this notice are preserved.
+ */
+
+#include "room-manager.h"
+
+#include <dbus/dbus-glib.h>
+
+#include <telepathy-glib/base-connection.h>
+#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/errors.h>
+#include <telepathy-glib/interfaces.h>
+
+#include "room.h"
+
+static void channel_manager_iface_init (gpointer, gpointer);
+
+G_DEFINE_TYPE_WITH_CODE (ExampleCSHRoomManager,
+    example_csh_room_manager,
+    G_TYPE_OBJECT,
+    G_IMPLEMENT_INTERFACE (TP_TYPE_CHANNEL_MANAGER,
+      channel_manager_iface_init))
+
+/* type definition stuff */
+
+enum
+{
+  PROP_CONNECTION = 1,
+  N_PROPS
+};
+
+struct _ExampleCSHRoomManagerPrivate
+{
+  TpBaseConnection *conn;
+
+  /* GUINT_TO_POINTER (room handle) => ExampleCSHRoomChannel */
+  GHashTable *channels;
+  gulong status_changed_id;
+};
+
+static void
+example_csh_room_manager_init (ExampleCSHRoomManager *self)
+{
+  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+      EXAMPLE_TYPE_CSH_ROOM_MANAGER, ExampleCSHRoomManagerPrivate);
+
+  self->priv->channels = g_hash_table_new_full (g_direct_hash, g_direct_equal,
+      NULL, g_object_unref);
+}
+
+static void example_csh_room_manager_close_all (ExampleCSHRoomManager *self);
+
+static void
+dispose (GObject *object)
+{
+  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
+
+  example_csh_room_manager_close_all (self);
+  g_assert (self->priv->channels == NULL);
+
+  ((GObjectClass *) example_csh_room_manager_parent_class)->dispose (object);
+}
+
+static void
+get_property (GObject *object,
+              guint property_id,
+              GValue *value,
+              GParamSpec *pspec)
+{
+  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
+
+  switch (property_id)
+    {
+    case PROP_CONNECTION:
+      g_value_set_object (value, self->priv->conn);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+    }
+}
+
+static void
+set_property (GObject *object,
+              guint property_id,
+              const GValue *value,
+              GParamSpec *pspec)
+{
+  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
+
+  switch (property_id)
+    {
+    case PROP_CONNECTION:
+      /* We don't ref the connection, because it owns a reference to the
+       * manager, and it guarantees that the manager's lifetime is
+       * less than its lifetime */
+      self->priv->conn = g_value_get_object (value);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+    }
+}
+
+static void
+status_changed_cb (TpBaseConnection *conn,
+                   guint status,
+                   guint reason,
+                   ExampleCSHRoomManager *self)
+{
+  if (status == TP_CONNECTION_STATUS_DISCONNECTED)
+    example_csh_room_manager_close_all (self);
+}
+
+static void
+constructed (GObject *object)
+{
+  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (object);
+  void (*chain_up) (GObject *) =
+      ((GObjectClass *) example_csh_room_manager_parent_class)->constructed;
+
+  if (chain_up != NULL)
+    {
+      chain_up (object);
+    }
+
+  self->priv->status_changed_id = g_signal_connect (self->priv->conn,
+      "status-changed", (GCallback) status_changed_cb, self);
+}
+
+static void
+example_csh_room_manager_class_init (ExampleCSHRoomManagerClass *klass)
+{
+  GParamSpec *param_spec;
+  GObjectClass *object_class = (GObjectClass *) klass;
+
+  object_class->constructed = constructed;
+  object_class->dispose = dispose;
+  object_class->get_property = get_property;
+  object_class->set_property = set_property;
+
+  param_spec = g_param_spec_object ("connection", "Connection object",
+      "The connection that owns this channel manager",
+      TP_TYPE_BASE_CONNECTION,
+      G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+      G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB);
+  g_object_class_install_property (object_class, PROP_CONNECTION, param_spec);
+
+  g_type_class_add_private (klass, sizeof (ExampleCSHRoomManagerPrivate));
+}
+
+static void
+example_csh_room_manager_close_all (ExampleCSHRoomManager *self)
+{
+  if (self->priv->channels != NULL)
+    {
+      GHashTable *tmp = self->priv->channels;
+
+      self->priv->channels = NULL;
+      g_hash_table_destroy (tmp);
+    }
+
+  if (self->priv->status_changed_id != 0)
+    {
+      g_signal_handler_disconnect (self->priv->conn,
+          self->priv->status_changed_id);
+      self->priv->status_changed_id = 0;
+    }
+}
+
+static void
+example_csh_room_manager_foreach_channel (TpChannelManager *manager,
+                                          TpExportableChannelFunc callback,
+                                          gpointer user_data)
+{
+  ExampleCSHRoomManager *self = EXAMPLE_CSH_ROOM_MANAGER (manager);
+  GHashTableIter iter;
+  gpointer handle, channel;
+
+  g_hash_table_iter_init (&iter, self->priv->channels);
+
+  while (g_hash_table_iter_next (&iter, &handle, &channel))
+    {
+      callback (TP_EXPORTABLE_CHANNEL (channel), user_data);
+    }
+}
+
+static void
+channel_closed_cb (ExampleCSHRoomChannel *chan,
+                   ExampleCSHRoomManager *self)
+{
+  tp_channel_manager_emit_channel_closed_for_object (self,
+      TP_EXPORTABLE_CHANNEL (chan));
+
+  if (self->priv->channels != NULL)
+    {
+      TpHandle handle;
+
+      g_object_get (chan,
+          "handle", &handle,
+          NULL);
+
+      g_hash_table_remove (self->priv->channels, GUINT_TO_POINTER (handle));
+    }
+}
+
+static ExampleCSHRoomChannel *
+new_channel (ExampleCSHRoomManager *self,
+             TpHandle handle,
+             TpHandle initiator,
+             gpointer request_token)
+{
+  ExampleCSHRoomChannel *chan;
+  gchar *object_path;
+  GSList *requests = NULL;
+
+  object_path = g_strdup_printf ("%s/CSHRoomChannel%u",
+      self->priv->conn->object_path, handle);
+
+  chan = g_object_new (EXAMPLE_TYPE_CSH_ROOM_CHANNEL,
+      "connection", self->priv->conn,
+      "object-path", object_path,
+      "handle", handle,
+      /* FIXME: initiator */
+      NULL);
+
+  g_free (object_path);
+
+  g_signal_connect (chan, "closed", (GCallback) channel_closed_cb, self);
+
+  g_hash_table_insert (self->priv->channels, GUINT_TO_POINTER (handle), chan);
+
+  if (request_token != NULL)
+    requests = g_slist_prepend (requests, request_token);
+
+  tp_channel_manager_emit_new_channel (self, TP_EXPORTABLE_CHANNEL (chan),
+      requests);
+  g_slist_free (requests);
+
+  return chan;
+}
+
+static const gchar * const fixed_properties[] = {
+    TP_IFACE_CHANNEL ".ChannelType",
+    TP_IFACE_CHANNEL ".TargetHandleType",
+    NULL
+};
+
+static const gchar * const allowed_properties[] = {
+    TP_IFACE_CHANNEL ".TargetHandle",
+    TP_IFACE_CHANNEL ".TargetID",
+    NULL
+};
+
+static void
+example_csh_room_manager_foreach_channel_class (TpChannelManager *manager,
+    TpChannelManagerChannelClassFunc func,
+    gpointer user_data)
+{
+    GHashTable *table = g_hash_table_new_full (g_str_hash, g_str_equal,
+        NULL, (GDestroyNotify) tp_g_value_slice_free);
+    GValue *value;
+
+    value = tp_g_value_slice_new (G_TYPE_STRING);
+    g_value_set_static_string (value, TP_IFACE_CHANNEL_TYPE_TEXT);
+    g_hash_table_insert (table, TP_IFACE_CHANNEL ".ChannelType", value);
+
+    value = tp_g_value_slice_new (G_TYPE_UINT);
+    g_value_set_uint (value, TP_HANDLE_TYPE_ROOM);
+    g_hash_table_insert (table, TP_IFACE_CHANNEL ".TargetHandleType", value);
+
+    func (manager, table, allowed_properties, user_data);
+
+    g_hash_table_destroy (table);
+}
+
+static gboolean
+example_csh_room_manager_request (ExampleCSHRoomManager *self,
+                                  gpointer request_token,
+                                  GHashTable *request_properties,
+                                  gboolean require_new)
+{
+  TpHandle handle;
+  ExampleCSHRoomChannel *chan;
+  GError *error = NULL;
+
+  if (tp_strdiff (tp_asv_get_string (request_properties,
+          TP_IFACE_CHANNEL ".ChannelType"),
+      TP_IFACE_CHANNEL_TYPE_TEXT))
+    {
+      return FALSE;
+    }
+
+  if (tp_asv_get_uint32 (request_properties,
+      TP_IFACE_CHANNEL ".TargetHandleType", NULL) != TP_HANDLE_TYPE_ROOM)
+    {
+      return FALSE;
+    }
+
+  handle = tp_asv_get_uint32 (request_properties,
+      TP_IFACE_CHANNEL ".TargetHandle", NULL);
+  g_assert (handle != 0);
+
+  if (tp_channel_manager_asv_has_unknown_properties (request_properties,
+        fixed_properties, allowed_properties, &error))
+    {
+      goto error;
+    }
+
+  chan = g_hash_table_lookup (self->priv->channels, GUINT_TO_POINTER (handle));
+
+  if (chan == NULL)
+    {
+      chan = new_channel (self, handle, self->priv->conn->self_handle,
+          request_token);
+    }
+  else if (require_new)
+    {
+      g_set_error (&error, TP_ERRORS, TP_ERROR_NOT_AVAILABLE,
+          "A Text channel for room #%u already exists", handle);
+      goto error;
+    }
+  else
+    {
+      tp_channel_manager_emit_request_already_satisfied (self,
+          request_token, TP_EXPORTABLE_CHANNEL (chan));
+    }
+
+  return TRUE;
+
+error:
+  tp_channel_manager_emit_request_failed (self, request_token,
+      error->domain, error->code, error->message);
+  g_error_free (error);
+  return TRUE;
+}
+
+static gboolean
+example_csh_room_manager_create_channel (TpChannelManager *manager,
+                                         gpointer request_token,
+                                         GHashTable *request_properties)
+{
+    return example_csh_room_manager_request (
+        EXAMPLE_CSH_ROOM_MANAGER (manager), request_token,
+        request_properties, TRUE);
+}
+
+static gboolean
+example_csh_room_manager_ensure_channel (TpChannelManager *manager,
+                                         gpointer request_token,
+                                         GHashTable *request_properties)
+{
+    return example_csh_room_manager_request (
+        EXAMPLE_CSH_ROOM_MANAGER (manager), request_token,
+        request_properties, FALSE);
+}
+
+static void
+channel_manager_iface_init (gpointer g_iface,
+                            gpointer data G_GNUC_UNUSED)
+{
+  TpChannelManagerIface *iface = g_iface;
+
+  iface->foreach_channel = example_csh_room_manager_foreach_channel;
+  iface->foreach_channel_class =
+      example_csh_room_manager_foreach_channel_class;
+  iface->create_channel = example_csh_room_manager_create_channel;
+  iface->ensure_channel = example_csh_room_manager_ensure_channel;
+  /* In this channel manager, Request has the same semantics as Ensure */
+  iface->request_channel = example_csh_room_manager_ensure_channel;
+}
diff --git a/examples/cm/channelspecific/room-manager.h b/examples/cm/channelspecific/room-manager.h
new file mode 100644
index 0000000..6e9eb27
--- /dev/null
+++ b/examples/cm/channelspecific/room-manager.h
@@ -0,0 +1,55 @@
+/*
+ * manager.h - header for an example channel manager
+ *
+ * Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/>
+ * Copyright (C) 2007 Nokia Corporation
+ *
+ * Copying and distribution of this file, with or without modification,
+ * are permitted in any medium without royalty provided the copyright
+ * notice and this notice are preserved.
+ */
+
+#ifndef __EXAMPLE_CSH_ROOM_MANAGER_H__
+#define __EXAMPLE_CSH_ROOM_MANAGER_H__
+
+#include <glib-object.h>
+#include <telepathy-glib/channel-manager.h>
+
+G_BEGIN_DECLS
+
+typedef struct _ExampleCSHRoomManager ExampleCSHRoomManager;
+typedef struct _ExampleCSHRoomManagerClass ExampleCSHRoomManagerClass;
+typedef struct _ExampleCSHRoomManagerPrivate ExampleCSHRoomManagerPrivate;
+
+struct _ExampleCSHRoomManagerClass {
+    GObjectClass parent_class;
+};
+
+struct _ExampleCSHRoomManager {
+    GObject parent;
+
+    ExampleCSHRoomManagerPrivate *priv;
+};
+
+GType example_csh_room_manager_get_type (void);
+
+/* TYPE MACROS */
+#define EXAMPLE_TYPE_CSH_ROOM_MANAGER \
+  (example_csh_room_manager_get_type ())
+#define EXAMPLE_CSH_ROOM_MANAGER(obj) \
+  (G_TYPE_CHECK_INSTANCE_CAST((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
+                              ExampleCSHRoomManager))
+#define EXAMPLE_CSH_ROOM_MANAGER_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_CAST((klass), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
+                           ExampleCSHRoomManagerClass))
+#define EXAMPLE_IS_CSH_ROOM_MANAGER(obj) \
+  (G_TYPE_CHECK_INSTANCE_TYPE((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER))
+#define EXAMPLE_IS_CSH_ROOM_MANAGER_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_TYPE((klass), EXAMPLE_TYPE_CSH_ROOM_MANAGER))
+#define EXAMPLE_CSH_ROOM_MANAGER_GET_CLASS(obj) \
+  (G_TYPE_INSTANCE_GET_CLASS ((obj), EXAMPLE_TYPE_CSH_ROOM_MANAGER, \
+                              ExampleCSHRoomManagerClass))
+
+G_END_DECLS
+
+#endif
-- 
1.5.6.5




More information about the Telepathy-commits mailing list