2 GLIB - Library of useful routines for C programming
4 Copyright (C) 2009-2024
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2009, 2013.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /** \file glibcompat.c
27 * \brief Source: compatibility with older versions of glib
29 * Following code was copied from glib to GNU Midnight Commander to
30 * provide compatibility with older versions of glib.
37 #include "glibcompat.h"
39 /*** global variables ****************************************************************************/
41 /*** file scope macro definitions ****************************************************************/
43 /*** file scope type declarations ****************************************************************/
45 /*** file scope variables ************************************************************************/
47 /* --------------------------------------------------------------------------------------------- */
48 /*** file scope functions ************************************************************************/
49 /* --------------------------------------------------------------------------------------------- */
51 /* --------------------------------------------------------------------------------------------- */
52 /*** public functions ****************************************************************************/
53 /* --------------------------------------------------------------------------------------------- */
55 #if ! GLIB_CHECK_VERSION (2, 54, 0)
57 * g_ptr_array_find_with_equal_func: (skip)
58 * @haystack: pointer array to be searched
59 * @needle: pointer to look for
60 * @equal_func: (nullable): the function to call for each element, which should
61 * return %TRUE when the desired element is found; or %NULL to use pointer
63 * @index_: (optional) (out): return location for the index of
64 * the element, if found
66 * Checks whether @needle exists in @haystack, using the given @equal_func.
67 * If the element is found, %TRUE is returned and the element^A^A^As index is
68 * returned in @index_ (if non-%NULL). Otherwise, %FALSE is returned and @index_
69 * is undefined. If @needle exists multiple times in @haystack, the index of
70 * the first instance is returned.
72 * @equal_func is called with the element from the array as its first parameter,
73 * and @needle as its second parameter. If @equal_func is %NULL, pointer
76 * Returns: %TRUE if @needle is one of the elements of @haystack
80 g_ptr_array_find_with_equal_func (GPtrArray
*haystack
, gconstpointer needle
, GEqualFunc equal_func
,
85 g_return_val_if_fail (haystack
!= NULL
, FALSE
);
87 if (equal_func
== NULL
)
88 equal_func
= g_direct_equal
;
90 for (i
= 0; i
< haystack
->len
; i
++)
91 if (equal_func (g_ptr_array_index (haystack
, i
), needle
))
100 #endif /* ! GLIB_CHECK_VERSION (2, 54, 0) */
102 /* --------------------------------------------------------------------------------------------- */
104 #if ! GLIB_CHECK_VERSION (2, 63, 3)
106 * g_clear_slist: (skip)
107 * @slist_ptr: (not nullable): a #GSList return location
108 * @destroy: (nullable): the function to pass to g_slist_free_full() or NULL to not free elements
110 * Clears a pointer to a #GSList, freeing it and, optionally, freeing its elements using @destroy.
112 * @slist_ptr must be a valid pointer. If @slist_ptr points to a null #GSList, this does nothing.
117 g_clear_slist (GSList
**slist_ptr
, GDestroyNotify destroy
)
128 g_slist_free_full (slist
, destroy
);
130 g_slist_free (slist
);
134 /* --------------------------------------------------------------------------------------------- */
138 * @list_ptr: (not nullable): a #GList return location
139 * @destroy: (nullable): the function to pass to g_list_free_full() or NULL to not free elements
141 * Clears a pointer to a #GList, freeing it and, optionally, freeing its elements using @destroy.
143 * @list_ptr must be a valid pointer. If @list_ptr points to a null #GList, this does nothing.
148 g_clear_list (GList
**list_ptr
, GDestroyNotify destroy
)
159 g_list_free_full (list
, destroy
);
165 #endif /* ! GLIB_CHECK_VERSION (2, 63, 3) */
167 /* --------------------------------------------------------------------------------------------- */
169 #if ! GLIB_CHECK_VERSION (2, 60, 0)
171 * g_queue_clear_full:
172 * @queue: a pointer to a #GQueue
173 * @free_func: (nullable): the function to be called to free memory allocated
175 * Convenience method, which frees all the memory used by a #GQueue,
176 * and calls the provided @free_func on each item in the #GQueue.
181 g_queue_clear_full (GQueue
*queue
, GDestroyNotify free_func
)
183 g_return_if_fail (queue
!= NULL
);
185 if (free_func
!= NULL
)
186 g_queue_foreach (queue
, (GFunc
) free_func
, NULL
);
188 g_queue_clear (queue
);
190 #endif /* ! GLIB_CHECK_VERSION (2, 60, 0) */
192 /* --------------------------------------------------------------------------------------------- */
194 #if ! GLIB_CHECK_VERSION (2, 77, 0)
197 * @init: (nullable): initial text used as the string.
198 * Ownership of the string is transferred to the #GString.
199 * Passing NULL creates an empty string.
201 * Creates a new #GString, initialized with the given string.
203 * After this call, @init belongs to the #GString and may no longer be
204 * modified by the caller. The memory of @data has to be dynamically
205 * allocated and will eventually be freed with g_free().
207 * Returns: the new #GString
210 g_string_new_take (char *init
)
215 return g_string_new (NULL
);
217 string
= g_slice_new (GString
);
220 string
->len
= strlen (string
->str
);
221 string
->allocated_len
= string
->len
+ 1;
225 #endif /* ! GLIB_CHECK_VERSION (2, 77, 0) */
227 /* --------------------------------------------------------------------------------------------- */
231 * @dest: (not nullable): the destination #GString. Its current contents are destroyed
232 * @src: (not nullable): the source #GString
235 * Copies the bytes from a #GString into a #GString, destroying any previous contents.
236 * It is rather like the standard strcpy() function, except that you do not have to worry about
237 * having enough space to copy the string.
239 * There is no such API in GLib2.
242 mc_g_string_copy (GString
*dest
, const GString
*src
)
244 g_return_val_if_fail (src
!= NULL
, NULL
);
245 g_return_val_if_fail (dest
!= NULL
, NULL
);
247 g_string_set_size (dest
, 0);
248 g_string_append_len (dest
, src
->str
, src
->len
);
253 /* --------------------------------------------------------------------------------------------- */
257 * @s: (nullable): the source #GString
258 * @return: @copy of @s
260 * Copies the bytes from one #GString to another.
262 * There is no such API in GLib2.
265 mc_g_string_dup (const GString
*s
)
270 ret
= g_string_new_len (s
->str
, s
->len
);
275 /* --------------------------------------------------------------------------------------------- */
278 * mc_g_string_append_c_len:
279 * @s: (not nullable): the destination #GString.
280 * @c: the byte to append onto the end of @s
281 * @len: the number of bytes @c to append onto the end of @s
284 * Adds @len bytes @c onto the end of @s.
286 * There is no such API in GLib2.
289 mc_g_string_append_c_len (GString
*s
, gchar c
, guint len
)
291 g_return_val_if_fail (s
!= NULL
, NULL
);
295 guint s_len
= s
->len
;
297 g_string_set_size (s
, s
->len
+ len
);
298 memset (s
->str
+ s_len
, (unsigned char) c
, len
);
304 /* --------------------------------------------------------------------------------------------- */