summaryrefslogtreecommitdiff
path: root/telepathy-glib/simple-client-factory.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-07-15 16:30:59 +0200
committerXavier Claessens <xclaesse@gmail.com>2011-07-20 15:00:23 +0200
commitebe0c53202e216cd049e4b59e4d49d5b5e7f67db (patch)
tree1f80465a66b006f42366ab7dc66deb78c3f8444e /telepathy-glib/simple-client-factory.h
parentf35ecbc1b9dcc50f79c895e806854938244a37f7 (diff)
downloadtelepathy-glib-ebe0c53202e216cd049e4b59e4d49d5b5e7f67db.tar.gz
Add TpSimpleClientFactory
This is a new object replacing TpBasicProxyFactory but can construct any known TpProxy subclasses, guarantee their uniqueness per object-path and keep a user-defined set of features to prepare on them.
Diffstat (limited to 'telepathy-glib/simple-client-factory.h')
-rw-r--r--telepathy-glib/simple-client-factory.h174
1 files changed, 174 insertions, 0 deletions
diff --git a/telepathy-glib/simple-client-factory.h b/telepathy-glib/simple-client-factory.h
new file mode 100644
index 000000000..36cb5c830
--- /dev/null
+++ b/telepathy-glib/simple-client-factory.h
@@ -0,0 +1,174 @@
+/*
+ * Simple client factory
+ *
+ * Copyright © 2011 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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
+ */
+
+#ifndef __TP_SIMPLE_CLIENT_FACTORY_H__
+#define __TP_SIMPLE_CLIENT_FACTORY_H__
+
+#include <telepathy-glib/account-manager.h>
+#include <telepathy-glib/account.h>
+#include <telepathy-glib/channel.h>
+#include <telepathy-glib/channel-dispatch-operation.h>
+#include <telepathy-glib/channel-request.h>
+#include <telepathy-glib/connection.h>
+#include <telepathy-glib/contact.h>
+#include <telepathy-glib/dbus-daemon.h>
+
+G_BEGIN_DECLS
+
+/* TpSimpleClientFactory is typedef'd in proxy.h */
+typedef struct _TpSimpleClientFactoryPrivate TpSimpleClientFactoryPrivate;
+typedef struct _TpSimpleClientFactoryClass TpSimpleClientFactoryClass;
+
+struct _TpSimpleClientFactoryClass {
+ /*<public>*/
+ GObjectClass parent_class;
+
+ /* TpAccountManager */
+ TpAccountManager * (*create_account_manager) (TpSimpleClientFactory *self);
+ GArray * (*dup_account_manager_features) (TpSimpleClientFactory *self,
+ TpAccountManager *manager);
+
+ /* TpAccount */
+ TpAccount * (*create_account) (TpSimpleClientFactory *self,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+ GArray * (*dup_account_features) (TpSimpleClientFactory *self,
+ TpAccount *account);
+
+ /* TpConnection */
+ TpConnection * (*create_connection) (TpSimpleClientFactory *self,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+ GArray * (*dup_connection_features) (TpSimpleClientFactory *self,
+ TpConnection *connection);
+
+ /* TpChannel */
+ TpChannel * (*create_channel) (TpSimpleClientFactory *self,
+ TpConnection *conn,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+ GArray * (*dup_channel_features) (TpSimpleClientFactory *self,
+ TpChannel *channel);
+
+ /* TpContact */
+ TpContact * (*create_contact) (TpSimpleClientFactory *self,
+ TpConnection *connection,
+ TpHandle handle,
+ const gchar *identifier);
+ GArray * (*dup_contact_features) (TpSimpleClientFactory *self,
+ TpConnection *connection);
+
+ /*<private>*/
+ GCallback padding[20];
+};
+
+struct _TpSimpleClientFactory {
+ /*<private>*/
+ GObject parent;
+ TpSimpleClientFactoryPrivate *priv;
+};
+
+GType tp_simple_client_factory_get_type (void);
+
+#define TP_TYPE_SIMPLE_CLIENT_FACTORY \
+ (tp_simple_client_factory_get_type ())
+#define TP_SIMPLE_CLIENT_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), TP_TYPE_SIMPLE_CLIENT_FACTORY, \
+ TpSimpleClientFactory))
+#define TP_SIMPLE_CLIENT_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), TP_TYPE_SIMPLE_CLIENT_FACTORY, \
+ TpSimpleClientFactoryClass))
+#define TP_IS_SIMPLE_CLIENT_FACTORY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_SIMPLE_CLIENT_FACTORY))
+#define TP_IS_SIMPLE_CLIENT_FACTORY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_SIMPLE_CLIENT_FACTORY))
+#define TP_SIMPLE_CLIENT_FACTORY_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_SIMPLE_CLIENT_FACTORY, \
+ TpSimpleClientFactoryClass))
+
+TpSimpleClientFactory * tp_simple_client_factory_new (TpDBusDaemon *dbus);
+
+TpDBusDaemon *tp_simple_client_factory_get_dbus_daemon (
+ TpSimpleClientFactory *self);
+
+/* TpAccountManager */
+TpAccountManager *tp_simple_client_factory_ensure_account_manager (
+ TpSimpleClientFactory *self);
+GArray *tp_simple_client_factory_dup_account_manager_features (
+ TpSimpleClientFactory *self,
+ TpAccountManager *manager);
+void tp_simple_client_factory_add_account_manager_features (
+ TpSimpleClientFactory *self,
+ const GQuark *features);
+
+/* TpAccount */
+TpAccount *tp_simple_client_factory_ensure_account (TpSimpleClientFactory *self,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+GArray *tp_simple_client_factory_dup_account_features (
+ TpSimpleClientFactory *self,
+ TpAccount *account);
+void tp_simple_client_factory_add_account_features (TpSimpleClientFactory *self,
+ const GQuark *features);
+
+/* TpConnection */
+TpConnection *tp_simple_client_factory_ensure_connection (
+ TpSimpleClientFactory *self,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+GArray *tp_simple_client_factory_dup_connection_features (
+ TpSimpleClientFactory *self,
+ TpConnection *connection);
+void tp_simple_client_factory_add_connection_features (
+ TpSimpleClientFactory *self,
+ const GQuark *features);
+
+/* TpChannel */
+TpChannel *tp_simple_client_factory_ensure_channel (TpSimpleClientFactory *self,
+ TpConnection *connection,
+ const gchar *object_path,
+ const GHashTable *immutable_properties,
+ GError **error);
+GArray *tp_simple_client_factory_dup_channel_features (
+ TpSimpleClientFactory *self,
+ TpChannel *channel);
+void tp_simple_client_factory_add_channel_features (TpSimpleClientFactory *self,
+ const GQuark *features);
+
+/* TpContact */
+TpContact *tp_simple_client_factory_ensure_contact (TpSimpleClientFactory *self,
+ TpConnection *connection,
+ TpHandle handle,
+ const gchar *identifier);
+GArray *tp_simple_client_factory_dup_contact_features (
+ TpSimpleClientFactory *self,
+ TpConnection *connection);
+void tp_simple_client_factory_add_contact_features (TpSimpleClientFactory *self,
+ guint n_features,
+ const TpContactFeature *features);
+
+G_END_DECLS
+
+#endif