summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-02-12 14:12:14 -0800
committerPatrick Griffis <pgriffis@igalia.com>2020-08-24 12:04:31 -0700
commitada8604fc1766bf7260fe2366db0250745851b75 (patch)
treed1717146fa85e2834eaea2a1aec98f7a1e7190f9
parentcd02b303bdc30f4d55e669733de265edd448c9b2 (diff)
downloadlibsoup-ada8604fc1766bf7260fe2366db0250745851b75.tar.gz
Remove deprecated SoupValue APIs
-rw-r--r--libsoup/meson.build2
-rw-r--r--libsoup/soup-value-utils.c529
-rw-r--r--libsoup/soup-value-utils.h114
-rw-r--r--libsoup/soup.h1
4 files changed, 0 insertions, 646 deletions
diff --git a/libsoup/meson.build b/libsoup/meson.build
index 19eace43..eef8d4ad 100644
--- a/libsoup/meson.build
+++ b/libsoup/meson.build
@@ -76,7 +76,6 @@ soup_sources = [
'soup-status.c',
'soup-tld.c',
'soup-uri.c',
- 'soup-value-utils.c',
'soup-version.c',
'soup-websocket.c',
'soup-websocket-connection.c',
@@ -163,7 +162,6 @@ soup_introspection_headers = [
'soup-tld.h',
'soup-types.h',
'soup-uri.h',
- 'soup-value-utils.h',
'soup-websocket.h',
'soup-websocket-connection.h',
'soup-websocket-extension.h',
diff --git a/libsoup/soup-value-utils.c b/libsoup/soup-value-utils.c
deleted file mode 100644
index 014eb5bc..00000000
--- a/libsoup/soup-value-utils.c
+++ /dev/null
@@ -1,529 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * soup-type-utils.c: GValue and GType-related utilities
- *
- * Copyright (C) 2007 Red Hat, Inc.
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <string.h>
-
-#include "soup-value-utils.h"
-
-/**
- * SECTION:soup-value-utils
- * @short_description: GValue utilities
- *
- * These methods are useful for manipulating #GValue<!-- -->s, and in
- * particular, arrays and hash tables of #GValue<!-- -->s, in a
- * slightly nicer way than the standard #GValue API.
- *
- * They are written for use with soup-xmlrpc, but they also work with
- * types not used by XML-RPC.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-
-/**
- * SOUP_VALUE_SETV:
- * @val: a #GValue
- * @type: a #GType
- * @args: #va_list pointing to a value of type @type
- *
- * Copies an argument of type @type from @args into @val. @val will
- * point directly to the value in @args rather than copying it, so you
- * must g_value_copy() it if you want it to remain valid.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-
-/**
- * SOUP_VALUE_GETV:
- * @val: a #GValue
- * @type: a #GType
- * @args: #va_list pointing to a value of type pointer-to-@type
- *
- * Extracts a value of type @type from @val into @args. The return
- * value will point to the same data as @val rather than being a copy
- * of it.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-
-/* This whole file is deprecated and replaced by GVariant API */
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS
-
-static void
-soup_value_hash_value_free (gpointer val)
-{
- g_value_unset (val);
- g_free (val);
-}
-
-/**
- * soup_value_hash_new:
- *
- * Creates a #GHashTable whose keys are strings and whose values
- * are #GValue.
- *
- * Return value: (element-type utf8 GValue) (transfer full): a new
- * empty #GHashTable
- *
- * Deprecated: Use #GVariant API instead.
- **/
-GHashTable *
-soup_value_hash_new (void)
-{
- return g_hash_table_new_full (g_str_hash, g_str_equal,
- g_free, soup_value_hash_value_free);
-}
-
-static void
-soup_value_hash_insert_valist (GHashTable *hash, const char *first_key,
- va_list args)
-{
- const char *key;
- GType type;
- GValue value;
-
- key = first_key;
- while (key) {
- type = va_arg (args, GType);
- SOUP_VALUE_SETV (&value, type, args);
-
- soup_value_hash_insert_value (hash, key, &value);
- key = va_arg (args, const char *);
- }
-}
-
-/**
- * soup_value_hash_new_with_vals:
- * @first_key: the key for the first value
- * @...: the type of @first_key, followed by the value, followed
- * by additional key/type/value triplets, terminated by %NULL
- *
- * Creates a #GHashTable whose keys are strings and whose values
- * are #GValue, and initializes it with the provided data. As
- * with soup_value_hash_insert(), the keys and values are copied
- * rather than being inserted directly.
- *
- * Return value: (element-type utf8 GValue) (transfer full): a new
- * #GHashTable, initialized with the given values
- *
- * Deprecated: Use #GVariant API instead.
- **/
-GHashTable *
-soup_value_hash_new_with_vals (const char *first_key, ...)
-{
- GHashTable *hash = soup_value_hash_new ();
- va_list args;
-
- va_start (args, first_key);
- soup_value_hash_insert_valist (hash, first_key, args);
- va_end (args);
-
- return hash;
-}
-
-/**
- * soup_value_hash_insert_value:
- * @hash: (element-type utf8 GValue): a value hash
- * @key: the key
- * @value: a value
- *
- * Inserts @value into @hash. (Unlike with g_hash_table_insert(), both
- * the key and the value are copied).
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_hash_insert_value (GHashTable *hash, const char *key, GValue *value)
-{
- GValue *copy = g_new0 (GValue, 1);
-
- g_value_init (copy, G_VALUE_TYPE (value));
- g_value_copy (value, copy);
- g_hash_table_insert (hash, g_strdup (key), copy);
-}
-
-/**
- * soup_value_hash_insert:
- * @hash: (element-type utf8 GValue): a value hash
- * @key: the key
- * @type: a #GType
- * @...: a value of type @type
- *
- * Inserts the provided value of type @type into @hash. (Unlike with
- * g_hash_table_insert(), both the key and the value are copied).
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_hash_insert (GHashTable *hash, const char *key, GType type, ...)
-{
- va_list args;
- GValue val;
-
- va_start (args, type);
- SOUP_VALUE_SETV (&val, type, args);
- va_end (args);
- soup_value_hash_insert_value (hash, key, &val);
-}
-
-/**
- * soup_value_hash_insert_vals:
- * @hash: (element-type utf8 GValue): a value hash
- * @first_key: the key for the first value
- * @...: the type of @first_key, followed by the value, followed
- * by additional key/type/value triplets, terminated by %NULL
- *
- * Inserts the given data into @hash. As with
- * soup_value_hash_insert(), the keys and values are copied rather
- * than being inserted directly.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_hash_insert_vals (GHashTable *hash, const char *first_key, ...)
-{
- va_list args;
-
- va_start (args, first_key);
- soup_value_hash_insert_valist (hash, first_key, args);
- va_end (args);
-}
-
-/**
- * soup_value_hash_lookup:
- * @hash: (element-type utf8 GValue): a value hash
- * @key: the key to look up
- * @type: a #GType
- * @...: a value of type pointer-to-@type
- *
- * Looks up @key in @hash and stores its value into the provided
- * location.
- *
- * Return value: %TRUE if @hash contained a value with key @key and
- * type @type, %FALSE if not.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-gboolean
-soup_value_hash_lookup (GHashTable *hash, const char *key, GType type, ...)
-{
- va_list args;
- GValue *value;
-
- value = g_hash_table_lookup (hash, key);
- if (!value || !G_VALUE_HOLDS (value, type))
- return FALSE;
-
- va_start (args, type);
- SOUP_VALUE_GETV (value, type, args);
- va_end (args);
-
- return TRUE;
-}
-
-/**
- * soup_value_hash_lookup_vals:
- * @hash: (element-type utf8 GValue): a value hash
- * @first_key: the first key to look up
- * @...: the type of @first_key, a pointer to that type, and
- * then additional key/type/pointer triplets, terminated
- * by %NULL.
- *
- * Looks up a number of keys in @hash and returns their values.
- *
- * Return value: %TRUE if all of the keys were found, %FALSE
- * if any were missing; note that you will generally need to
- * initialize each destination variable to a reasonable default
- * value, since there is no way to tell which keys were found
- * and which were not.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-gboolean
-soup_value_hash_lookup_vals (GHashTable *hash, const char *first_key, ...)
-{
- va_list args;
- GValue *value;
- const char *key;
- GType type;
- gboolean found_all = TRUE;
-
- va_start (args, first_key);
- key = first_key;
- while (key) {
- type = va_arg (args, GType);
-
- value = g_hash_table_lookup (hash, key);
- if (!value || !G_VALUE_HOLDS (value, type)) {
- found_all = FALSE;
- /* skip a pointer */
- va_arg (args, gpointer);
- } else
- SOUP_VALUE_GETV (value, type, args);
-
- key = va_arg (args, const char *);
- }
- va_end (args);
-
- return found_all;
-}
-
-
-/**
- * soup_value_array_from_args:
- * @args: arguments to create a #GValueArray from
- *
- * Creates a #GValueArray from the provided arguments, which must
- * consist of pairs of a #GType and a value of that type, terminated
- * by %G_TYPE_INVALID. (The array will contain copies of the provided
- * data rather than pointing to the passed-in data directly.)
- *
- * Return value: (nullable): a new #GValueArray, or %NULL if an error
- * occurred.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-GValueArray *
-soup_value_array_from_args (va_list args)
-{
- GValueArray *array;
- GType type;
- GValue val;
-
- array = g_value_array_new (1);
- while ((type = va_arg (args, GType)) != G_TYPE_INVALID) {
- SOUP_VALUE_SETV (&val, type, args);
- g_value_array_append (array, &val);
- }
- return array;
-}
-
-/**
- * soup_value_array_to_args:
- * @array: a #GValueArray
- * @args: arguments to extract @array into
- *
- * Extracts a #GValueArray into the provided arguments, which must
- * consist of pairs of a #GType and a value of pointer-to-that-type,
- * terminated by %G_TYPE_INVALID. The returned values will point to the
- * same memory as the values in the array.
- *
- * Return value: success or failure
- *
- * Deprecated: Use #GVariant API instead.
- **/
-gboolean
-soup_value_array_to_args (GValueArray *array, va_list args)
-{
- GType type;
- GValue *value;
- guint i;
-
- for (i = 0; i < array->n_values; i++) {
- type = va_arg (args, GType);
- if (type == G_TYPE_INVALID)
- return FALSE;
- value = g_value_array_get_nth (array, i);
- if (!G_VALUE_HOLDS (value, type))
- return FALSE;
- SOUP_VALUE_GETV (value, type, args);
- }
- return TRUE;
-}
-
-/**
- * soup_value_array_new:
- *
- * Creates a new %GValueArray. (This is just a wrapper around
- * g_value_array_new(), for naming consistency purposes.)
- *
- * Return value: a new %GValueArray
- *
- * Deprecated: Use #GVariant API instead.
- **/
-GValueArray *
-soup_value_array_new (void)
-{
- return g_value_array_new (1);
-}
-
-static void
-soup_value_array_append_valist (GValueArray *array,
- GType first_type, va_list args)
-{
- GType type;
- GValue value;
-
- type = first_type;
- while (type != G_TYPE_INVALID) {
- SOUP_VALUE_SETV (&value, type, args);
-
- g_value_array_append (array, &value);
- type = va_arg (args, GType);
- }
-}
-
-/**
- * soup_value_array_new_with_vals:
- * @first_type: the type of the first value to add
- * @...: the first value to add, followed by other type/value
- * pairs, terminated by %G_TYPE_INVALID
- *
- * Creates a new %GValueArray and copies the provided values
- * into it.
- *
- * Return value: a new %GValueArray
- *
- * Deprecated: Use #GVariant API instead.
- **/
-GValueArray *
-soup_value_array_new_with_vals (GType first_type, ...)
-{
- GValueArray *array = soup_value_array_new ();
- va_list args;
-
- va_start (args, first_type);
- soup_value_array_append_valist (array, first_type, args);
- va_end (args);
-
- return array;
-}
-
-/**
- * soup_value_array_insert:
- * @array: a #GValueArray
- * @index_: the index to insert at
- * @type: a #GType
- * @...: a value of type @type
- *
- * Inserts the provided value of type @type into @array as with
- * g_value_array_insert(). (The provided data is copied rather than
- * being inserted directly.)
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_array_insert (GValueArray *array, guint index_, GType type, ...)
-{
- va_list args;
- GValue val;
-
- va_start (args, type);
- SOUP_VALUE_SETV (&val, type, args);
- va_end (args);
- g_value_array_insert (array, index_, &val);
-}
-
-/**
- * soup_value_array_append:
- * @array: a #GValueArray
- * @type: a #GType
- * @...: a value of type @type
- *
- * Appends the provided value of type @type to @array as with
- * g_value_array_append(). (The provided data is copied rather than
- * being inserted directly.)
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_array_append (GValueArray *array, GType type, ...)
-{
- va_list args;
- GValue val;
-
- va_start (args, type);
- SOUP_VALUE_SETV (&val, type, args);
- va_end (args);
- g_value_array_append (array, &val);
-}
-
-/**
- * soup_value_array_append_vals:
- * @array: a #GValueArray
- * @first_type: the type of the first value to add
- * @...: the first value to add, followed by other type/value
- * pairs, terminated by %G_TYPE_INVALID
- *
- * Appends the provided values into @array as with
- * g_value_array_append(). (The provided data is copied rather than
- * being inserted directly.)
- *
- * Deprecated: Use #GVariant API instead.
- **/
-void
-soup_value_array_append_vals (GValueArray *array, GType first_type, ...)
-{
- va_list args;
-
- va_start (args, first_type);
- soup_value_array_append_valist (array, first_type, args);
- va_end (args);
-}
-
-/**
- * soup_value_array_get_nth:
- * @array: a #GValueArray
- * @index_: the index to look up
- * @type: a #GType
- * @...: a value of type pointer-to-@type
- *
- * Gets the @index_ element of @array and stores its value into the
- * provided location.
- *
- * Return value: %TRUE if @array contained a value with index @index_
- * and type @type, %FALSE if not.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-gboolean
-soup_value_array_get_nth (GValueArray *array, guint index_, GType type, ...)
-{
- GValue *value;
- va_list args;
-
- value = g_value_array_get_nth (array, index_);
- if (!value || !G_VALUE_HOLDS (value, type))
- return FALSE;
-
- va_start (args, type);
- SOUP_VALUE_GETV (value, type, args);
- va_end (args);
- return TRUE;
-}
-
-static GByteArray *
-soup_byte_array_copy (GByteArray *ba)
-{
- GByteArray *copy;
-
- copy = g_byte_array_sized_new (ba->len);
- g_byte_array_append (copy, ba->data, ba->len);
- return copy;
-}
-
-static void
-soup_byte_array_free (GByteArray *ba)
-{
- g_byte_array_free (ba, TRUE);
-}
-
-/**
- * SOUP_TYPE_BYTE_ARRAY:
- *
- * glib did not used to define a #GType for #GByteArray, so libsoup
- * defines this one itself.
- *
- * Deprecated: Use #GVariant API instead.
- **/
-typedef GByteArray SoupByteArray;
-G_DEFINE_BOXED_TYPE (SoupByteArray, soup_byte_array, soup_byte_array_copy, soup_byte_array_free)
-
-G_GNUC_END_IGNORE_DEPRECATIONS
diff --git a/libsoup/soup-value-utils.h b/libsoup/soup-value-utils.h
deleted file mode 100644
index 9fa19c35..00000000
--- a/libsoup/soup-value-utils.h
+++ /dev/null
@@ -1,114 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Copyright (C) 2007 Red Hat, Inc.
- */
-
-#ifndef __SOUP_VALUE_UTILS_H__
-#define __SOUP_VALUE_UTILS_H__ 1
-
-#include <libsoup/soup-types.h>
-#include <gobject/gvaluecollector.h>
-
-G_BEGIN_DECLS
-
-#define SOUP_VALUE_SETV(val, type, args) \
-G_STMT_START { \
- char *setv_error = NULL; \
- \
- memset (val, 0, sizeof (GValue)); \
- g_value_init (val, type); \
- G_VALUE_COLLECT (val, args, G_VALUE_NOCOPY_CONTENTS, &setv_error); \
- g_free (setv_error); \
-} G_STMT_END
-
-#define SOUP_VALUE_GETV(val, type, args) \
-G_STMT_START { \
- char *getv_error = NULL; \
- \
- G_VALUE_LCOPY (val, args, G_VALUE_NOCOPY_CONTENTS, &getv_error); \
- g_free (getv_error); \
-} G_STMT_END
-
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GHashTable *soup_value_hash_new (void);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GHashTable *soup_value_hash_new_with_vals (const char *first_key,
- ...) G_GNUC_NULL_TERMINATED;
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_hash_insert_value (GHashTable *hash,
- const char *key,
- GValue *value);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_hash_insert (GHashTable *hash,
- const char *key,
- GType type,
- ...);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_hash_insert_vals (GHashTable *hash,
- const char *first_key,
- ...) G_GNUC_NULL_TERMINATED;
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-gboolean soup_value_hash_lookup (GHashTable *hash,
- const char *key,
- GType type,
- ...);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-gboolean soup_value_hash_lookup_vals (GHashTable *hash,
- const char *first_key,
- ...) G_GNUC_NULL_TERMINATED;
-
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GValueArray *soup_value_array_from_args (va_list args);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-gboolean soup_value_array_to_args (GValueArray *array,
- va_list args);
-
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GValueArray *soup_value_array_new (void);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GValueArray *soup_value_array_new_with_vals (GType first_type,
- ...) G_GNUC_NULL_TERMINATED;
-
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_array_insert (GValueArray *array,
- guint index_,
- GType type,
- ...);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_array_append (GValueArray *array,
- GType type,
- ...);
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-void soup_value_array_append_vals (GValueArray *array,
- GType first_type,
- ...) G_GNUC_NULL_TERMINATED;
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-gboolean soup_value_array_get_nth (GValueArray *array,
- guint index_,
- GType type,
- ...);
-
-
-SOUP_AVAILABLE_IN_2_4
-SOUP_DEPRECATED_IN_2_52
-GType soup_byte_array_get_type (void);
-#define SOUP_TYPE_BYTE_ARRAY (soup_byte_array_get_type ())
-
-G_END_DECLS
-
-#endif /* __SOUP_VALUE_UTILS_H__ */
diff --git a/libsoup/soup.h b/libsoup/soup.h
index cb61b34f..55f06ee7 100644
--- a/libsoup/soup.h
+++ b/libsoup/soup.h
@@ -53,7 +53,6 @@ extern "C" {
#include <libsoup/soup-status.h>
#include <libsoup/soup-tld.h>
#include <libsoup/soup-uri.h>
-#include <libsoup/soup-value-utils.h>
#include <libsoup/soup-version.h>
#include <libsoup/soup-websocket.h>
#include <libsoup/soup-websocket-connection.h>