arraylist: add find, copy and copy_reverse

Some more common helpers for GArrayList migration.
This commit is contained in:
Christian Hergert 2015-09-13 04:35:58 -07:00
parent 7fdc32230b
commit 2f272a2c0b
3 changed files with 132 additions and 0 deletions

View File

@ -427,6 +427,29 @@ g_array_list_remove_index (GArrayList *self,
any->destroy (data);
}
gssize
g_array_list_find (GArrayList *self,
gpointer data)
{
GArrayListAny *any = (GArrayListAny *)self;
GArrayListEmbed *embed = (GArrayListEmbed *)self;
GArrayListAlloc *alloc = (GArrayListAlloc *)self;
GList *items;
gsize i;
g_return_if_fail (self != NULL);
items = (any->mode == MODE_EMBED) ? embed->items : alloc->items;
for (i = 0; i < any->len; i++)
{
if (items [i].data == data)
return i;
}
return -1;
}
void
g_array_list_remove (GArrayList *self,
gpointer data)
@ -527,3 +550,95 @@ g_array_list_clear (GArrayList *self)
any->len = 0;
any->mode = MODE_EMBED;
}
/**
* g_array_list_copy:
* @self: A #GArrayList.
* @copy_func: (scope call): A #GCopyFunc
* @copy_data: (allow-none): data for @copy_func or %NULL.
*
* Creates a new array containing the data found within the #GListArray.
* The result should be freed with g_free() when no longer used. If you
* incremented a reference count or allocated a new structure in your
* copy func, you are responsible for freeing it as well.
*
* Returns: (transfer full): A newly allocated array that should be freed
* with g_free().
*/
gpointer *
g_array_list_copy (GArrayList *self,
GCopyFunc copy_func,
gpointer copy_data)
{
GArrayListAny *any = (GArrayListAny *)self;
GArrayListEmbed *embed = (GArrayListEmbed *)self;
GArrayListAlloc *alloc = (GArrayListAlloc *)self;
const GList *items;
gpointer *ret;
gsize i;
g_return_if_fail (self != NULL);
ret = g_malloc_n (self->len, sizeof (gpointer));
items = (any->mode == MODE_EMBED) ? embed->items : alloc->items;
if (!copy_func)
{
for (i = 0; i < self->len; i++)
ret [i] = items [i].data;
}
else
{
for (i = 0; i < self->len; i++)
ret [i] = copy_func (items [i].data, copy_data);
}
return ret;
}
/**
* g_array_list_copy_reversed:
* @self: A #GArrayList.
* @copy_func: (scope call): A #GCopyFunc
* @copy_data: (allow-none): data for @copy_func or %NULL.
*
* Creates a new array containing the data found within the #GListArray.
* The result should be freed with g_free() when no longer used. If you
* incremented a reference count or allocated a new structure in your
* copy func, you are responsible for freeing it as well.
*
* This function creates the array in reverse order.
*
* Returns: (transfer full): A newly allocated array that should be freed
* with g_free().
*/
gpointer *
g_array_list_copy_reversed (GArrayList *self,
GCopyFunc copy_func,
gpointer copy_data)
{
GArrayListAny *any = (GArrayListAny *)self;
GArrayListEmbed *embed = (GArrayListEmbed *)self;
GArrayListAlloc *alloc = (GArrayListAlloc *)self;
const GList *items;
gpointer *ret;
gsize i;
g_return_if_fail (self != NULL);
ret = g_malloc_n (self->len, sizeof (gpointer));
items = (any->mode == MODE_EMBED) ? embed->items : alloc->items;
if (!copy_func)
{
for (i = self->len; i > 0; i--)
ret [i-1] = items [i-1].data;
}
else
{
for (i = self->len; i > 0; i--)
ret [i-1] = copy_func (items [i-1].data, copy_data);
}
return ret;
}

View File

@ -81,6 +81,20 @@ void g_array_list_prepend (GArrayList *list,
GLIB_AVAILABLE_IN_2_46
void g_array_list_clear (GArrayList *list);
GLIB_AVAILABLE_IN_2_46
gssize g_array_list_find (GArrayList *list,
gpointer data);
GLIB_AVAILABLE_IN_2_46
gpointer *g_array_list_copy (GArrayList *list,
GCopyFunc copy_func,
gpointer copy_data);
GLIB_AVAILABLE_IN_2_46
gpointer *g_array_list_copy_reversed(GArrayList *list,
GCopyFunc copy_func,
gpointer copy_data);
#define g_array_list_empty(list) ((list)->len == 0)
#define g_array_list_first(list) (((list)->len == 0) ? NULL : g_array_list_index((list),0))
#define g_array_list_last(list) (((list)->len == 0) ? NULL : g_array_list_index((list),(list)->len-1))

View File

@ -47,6 +47,9 @@ test_basic (GArrayList *al)
g_assert_cmpint (al->len, ==, i);
}
g_assert_cmpint (g_array_list_find (al, GSIZE_TO_POINTER (12345)), ==, -1);
g_assert_cmpint (g_array_list_find (al, GSIZE_TO_POINTER (500)), ==, 499);
g_assert_cmpint (GPOINTER_TO_SIZE (g_array_list_first(al)), ==, 1);
g_assert_cmpint (GPOINTER_TO_SIZE (g_array_list_last(al)), ==, 1000);