[gupnp] Revert "Add gupnp_service_info_get_introspection_async_full()"
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gupnp] Revert "Add gupnp_service_info_get_introspection_async_full()"
- Date: Sat, 7 Dec 2013 23:35:17 +0000 (UTC)
commit 64e5b087c104fa6ba5bccc10a8db3cd6540bdb3a
Author: Jens Georg <mail jensge org>
Date: Sun Dec 8 00:35:02 2013 +0100
Revert "Add gupnp_service_info_get_introspection_async_full()"
This reverts commit 909e721c52a335aa8b0ef8f3c37fa62216451530.
libgupnp/gupnp-service-info.c | 89 -----------------------------------------
libgupnp/gupnp-service-info.h | 7 ---
2 files changed, 0 insertions(+), 96 deletions(-)
---
diff --git a/libgupnp/gupnp-service-info.c b/libgupnp/gupnp-service-info.c
index 8e0d1be..1da6c19 100644
--- a/libgupnp/gupnp-service-info.c
+++ b/libgupnp/gupnp-service-info.c
@@ -77,18 +77,12 @@ typedef struct {
GUPnPServiceIntrospectionCallback callback;
gpointer user_data;
- GCancellable *cancellable;
- gulong cancelled_id;
-
SoupMessage *message;
} GetSCPDURLData;
static void
get_scpd_url_data_free (GetSCPDURLData *data)
{
- if (data->cancellable) {
- g_object_unref (data->cancellable);
- }
g_slice_free (GetSCPDURLData, data);
}
@@ -193,11 +187,6 @@ gupnp_service_info_dispose (GObject *object)
data = info->priv->pending_gets->data;
- if (data->cancellable) {
- g_cancellable_disconnect (data->cancellable,
- data->cancelled_id);
- }
-
soup_session_cancel_message (session,
data->message,
SOUP_STATUS_CANCELLED);
@@ -660,13 +649,6 @@ got_scpd_url (G_GNUC_UNUSED SoupSession *session,
} else
error = _gupnp_error_new_server_error (msg);
- /* prevent the callback from canceling the cancellable
- * (and so freeing data just before we do) */
- if (data->cancellable) {
- g_cancellable_disconnect (data->cancellable,
- data->cancelled_id);
- }
-
data->info->priv->pending_gets =
g_list_remove (data->info->priv->pending_gets, data);
@@ -681,39 +663,6 @@ got_scpd_url (G_GNUC_UNUSED SoupSession *session,
get_scpd_url_data_free (data);
}
-static void
-cancellable_cancelled_cb (GCancellable *cancellable,
- gpointer user_data)
-{
-
- GUPnPServiceInfo *info;
- GetSCPDURLData *data;
- SoupSession *session;
- GError *error;
-
- data = user_data;
- info = data->info;
-
- session = gupnp_context_get_session (info->priv->context);
- soup_session_cancel_message (session,
- data->message,
- SOUP_STATUS_CANCELLED);
-
- info->priv->pending_gets =
- g_list_remove (info->priv->pending_gets, data);
-
- error = g_error_new (G_IO_ERROR,
- G_IO_ERROR_CANCELLED,
- "The call was canceled");
-
- data->callback (data->info,
- NULL,
- error,
- data->user_data);
-
- get_scpd_url_data_free (data);
-}
-
/**
* gupnp_service_info_get_introspection_async:
* @info: A #GUPnPServiceInfo
@@ -730,35 +679,6 @@ gupnp_service_info_get_introspection_async
GUPnPServiceIntrospectionCallback callback,
gpointer user_data)
{
- gupnp_service_info_get_introspection_async_full (info,
- callback,
- NULL,
- user_data);
-}
-
-/**
- * gupnp_service_info_get_introspection_async_full:
- * @info: A #GUPnPServiceInfo
- * @callback: (scope async) : callback to be called when introspection object is ready.
- * @cancellable: : GCancellable that can be used to cancel the call, or %NULL.
- * @user_data: user_data to be passed to the callback.
- *
- * Note that introspection object is created from the information in service
- * description document (SCPD) provided by the service so it can not be created
- * if the service does not provide an SCPD.
- *
- * If @cancellable is used to cancel the call, @callback will be called with
- * error code G_IO_ERROR_CANCELLED.
- *
- * Since: 0.20.10.
- **/
-void
-gupnp_service_info_get_introspection_async_full
- (GUPnPServiceInfo *info,
- GUPnPServiceIntrospectionCallback callback,
- GCancellable *cancellable,
- gpointer user_data)
-{
GetSCPDURLData *data;
char *scpd_url;
SoupSession *session;
@@ -809,13 +729,4 @@ gupnp_service_info_get_introspection_async_full
data->message,
(SoupSessionCallback) got_scpd_url,
data);
-
- data->cancellable = g_object_ref (cancellable);
- if (data->cancellable) {
- data->cancelled_id = g_cancellable_connect
- (data->cancellable,
- G_CALLBACK (cancellable_cancelled_cb),
- data,
- NULL);
- }
}
diff --git a/libgupnp/gupnp-service-info.h b/libgupnp/gupnp-service-info.h
index 3fe2b3e..c81c29e 100644
--- a/libgupnp/gupnp-service-info.h
+++ b/libgupnp/gupnp-service-info.h
@@ -133,13 +133,6 @@ gupnp_service_info_get_introspection_async
GUPnPServiceIntrospectionCallback callback,
gpointer user_data);
-void
-gupnp_service_info_get_introspection_async_full
- (GUPnPServiceInfo *info,
- GUPnPServiceIntrospectionCallback callback,
- GCancellable *cancellable,
- gpointer user_data);
-
G_END_DECLS
#endif /* __GUPNP_SERVICE_INFO_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]