1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
/* list.c generated by valac 0.56.17, the Vala compiler
* generated from list.vala, do not modify */
/* list.vala
*
* Copyright (C) 2007 Jürg Billeter
*
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jürg Billeter <j@bitron.ch>
*/
#include "gee.h"
#include <glib-object.h>
#include <glib.h>
#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
static gpointer gee_list_real_first (GeeList* self);
static gpointer gee_list_real_last (GeeList* self);
static void gee_list_real_insert_all (GeeList* self,
gint index,
GeeCollection* collection);
static void gee_list_real_sort (GeeList* self,
GCompareDataFunc compare_func,
gpointer compare_func_target,
GDestroyNotify compare_func_target_destroy_notify);
G_GNUC_INTERNAL void gee_tim_sort_sort (GType g_type,
GBoxedCopyFunc g_dup_func,
GDestroyNotify g_destroy_func,
GeeList* list,
GCompareDataFunc compare,
gpointer compare_target);
static GType gee_list_get_type_once (void);
/**
* Returns a ListIterator that can be used for iteration over this list.
*
* @return a ListIterator that can be used for iteration over this list
*/
GeeListIterator*
gee_list_list_iterator (GeeList* self)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->list_iterator) {
return _iface_->list_iterator (self);
}
return NULL;
}
/**
* Returns the item at the specified index in this list.
*
* @param index zero-based index of the item to be returned
*
* @return the item at the specified index in the list
*/
gpointer
gee_list_get (GeeList* self,
gint index)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->get) {
return _iface_->get (self, index);
}
return NULL;
}
/**
* Sets the item at the specified index in this list.
*
* @param index zero-based index of the item to be set
*/
void
gee_list_set (GeeList* self,
gint index,
gconstpointer item)
{
GeeListIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->set) {
_iface_->set (self, index, item);
}
}
/**
* Returns the index of the first occurrence of the specified item in
* this list.
*
* @return the index of the first occurrence of the specified item, or
* -1 if the item could not be found
*/
gint
gee_list_index_of (GeeList* self,
gconstpointer item)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, 0);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->index_of) {
return _iface_->index_of (self, item);
}
return -1;
}
/**
* Inserts an item into this list at the specified position.
*
* @param index zero-based index at which item is inserted
* @param item item to insert into the list
*/
void
gee_list_insert (GeeList* self,
gint index,
gconstpointer item)
{
GeeListIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->insert) {
_iface_->insert (self, index, item);
}
}
/**
* Removes the item at the specified index of this list.
*
* @param index zero-based index of the item to be removed
*
* @return the removed element
*/
gpointer
gee_list_remove_at (GeeList* self,
gint index)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->remove_at) {
return _iface_->remove_at (self, index);
}
return NULL;
}
/**
* Returns a slice of this list.
*
* @param start zero-based index of the slice's first element
* @param stop zero-based index of the position after the end of the slice
*
* @return A list containing a slice of this list
*/
GeeList*
gee_list_slice (GeeList* self,
gint start,
gint stop)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->slice) {
return _iface_->slice (self, start, stop);
}
return NULL;
}
/**
* Returns the first item of the list. Fails if the list is empty.
*
* @return first item in the list
*/
static gpointer
gee_list_real_first (GeeList* self)
{
gpointer _tmp0_;
gpointer result;
_tmp0_ = gee_list_get (self, 0);
result = _tmp0_;
return result;
}
gpointer
gee_list_first (GeeList* self)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->first) {
return _iface_->first (self);
}
return NULL;
}
/**
* Returns the last item of the list. Fails if the list is empty.
*
* @return last item in the list
*/
static gpointer
gee_list_real_last (GeeList* self)
{
gint _tmp0_;
gint _tmp1_;
gpointer _tmp2_;
gpointer result;
_tmp0_ = gee_collection_get_size ((GeeCollection*) self);
_tmp1_ = _tmp0_;
_tmp2_ = gee_list_get (self, _tmp1_ - 1);
result = _tmp2_;
return result;
}
gpointer
gee_list_last (GeeList* self)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->last) {
return _iface_->last (self);
}
return NULL;
}
/**
* Inserts items into this list for the input collection at the
* specified position.
*
* @param index zero-based index of the items to be inserted
* @param collection collection of items to be inserted
*/
static void
gee_list_real_insert_all (GeeList* self,
gint index,
GeeCollection* collection)
{
g_return_if_fail (collection != NULL);
{
GeeIterator* _item_it = NULL;
GeeIterator* _tmp0_;
_tmp0_ = gee_iterable_iterator ((GeeIterable*) collection);
_item_it = _tmp0_;
while (TRUE) {
GeeIterator* _tmp1_;
gpointer item = NULL;
GeeIterator* _tmp2_;
gpointer _tmp3_;
gconstpointer _tmp4_;
gint _tmp5_;
_tmp1_ = _item_it;
if (!gee_iterator_next (_tmp1_)) {
break;
}
_tmp2_ = _item_it;
_tmp3_ = gee_iterator_get (_tmp2_);
item = _tmp3_;
_tmp4_ = item;
gee_list_insert (self, index, _tmp4_);
_tmp5_ = index;
index = _tmp5_ + 1;
((item == NULL) || (GEE_LIST_GET_INTERFACE (self)->get_g_destroy_func (self) == NULL)) ? NULL : (item = (GEE_LIST_GET_INTERFACE (self)->get_g_destroy_func (self) (item), NULL));
}
_g_object_unref0 (_item_it);
}
}
void
gee_list_insert_all (GeeList* self,
gint index,
GeeCollection* collection)
{
GeeListIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->insert_all) {
_iface_->insert_all (self, index, collection);
}
}
/**
* Sorts items by comparing with the specified compare function.
*
* @param compare_func compare function to use to compare items
*/
static void
gee_list_real_sort (GeeList* self,
GCompareDataFunc compare_func,
gpointer compare_func_target,
GDestroyNotify compare_func_target_destroy_notify)
{
if (compare_func == NULL) {
gpointer _tmp0_ = NULL;
GDestroyNotify _tmp1_ = NULL;
GCompareDataFunc _tmp2_;
_tmp2_ = gee_functions_get_compare_func_for (GEE_LIST_GET_INTERFACE (self)->get_g_type (self), &_tmp0_, &_tmp1_);
(compare_func_target_destroy_notify == NULL) ? NULL : (compare_func_target_destroy_notify (compare_func_target), NULL);
compare_func = NULL;
compare_func_target = NULL;
compare_func_target_destroy_notify = NULL;
compare_func = _tmp2_;
compare_func_target = _tmp0_;
compare_func_target_destroy_notify = _tmp1_;
}
gee_tim_sort_sort (GEE_LIST_GET_INTERFACE (self)->get_g_type (self), (GBoxedCopyFunc) GEE_LIST_GET_INTERFACE (self)->get_g_dup_func (self), (GDestroyNotify) GEE_LIST_GET_INTERFACE (self)->get_g_destroy_func (self), self, compare_func, compare_func_target);
(compare_func_target_destroy_notify == NULL) ? NULL : (compare_func_target_destroy_notify (compare_func_target), NULL);
compare_func = NULL;
compare_func_target = NULL;
compare_func_target_destroy_notify = NULL;
}
void
gee_list_sort (GeeList* self,
GCompareDataFunc compare_func,
gpointer compare_func_target,
GDestroyNotify compare_func_target_destroy_notify)
{
GeeListIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->sort) {
_iface_->sort (self, compare_func, compare_func_target, compare_func_target_destroy_notify);
}
}
/**
* Returns an immutable empty list.
*
* @return an immutable empty list
*/
GeeList*
gee_list_empty (GType g_type,
GBoxedCopyFunc g_dup_func,
GDestroyNotify g_destroy_func)
{
GeeLinkedList* _tmp0_;
GeeLinkedList* _tmp1_;
GeeBidirList* _tmp2_;
GeeBidirList* _tmp3_;
GeeList* _tmp4_;
GeeList* result;
_tmp0_ = gee_linked_list_new (g_type, (GBoxedCopyFunc) g_dup_func, (GDestroyNotify) g_destroy_func, NULL, NULL, NULL);
_tmp1_ = _tmp0_;
_tmp2_ = gee_abstract_bidir_list_get_read_only_view ((GeeAbstractBidirList*) _tmp1_);
_tmp3_ = _tmp2_;
_tmp4_ = (GeeList*) _tmp3_;
_g_object_unref0 (_tmp1_);
result = _tmp4_;
return result;
}
GeeList*
gee_list_get_read_only_view (GeeList* self)
{
GeeListIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_LIST_GET_INTERFACE (self);
if (_iface_->get_read_only_view) {
return _iface_->get_read_only_view (self);
}
return NULL;
}
static void
gee_list_default_init (GeeListIface * iface,
gpointer iface_data)
{
/**
* The read-only view of this list.
*/
g_object_interface_install_property (iface, g_param_spec_object ("read-only-view", "read-only-view", "read-only-view", GEE_TYPE_LIST, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
iface->first = gee_list_real_first;
iface->last = gee_list_real_last;
iface->insert_all = gee_list_real_insert_all;
iface->sort = gee_list_real_sort;
}
/**
* An ordered collection.
*/
static GType
gee_list_get_type_once (void)
{
static const GTypeInfo g_define_type_info = { sizeof (GeeListIface), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) gee_list_default_init, (GClassFinalizeFunc) NULL, NULL, 0, 0, (GInstanceInitFunc) NULL, NULL };
GType gee_list_type_id;
gee_list_type_id = g_type_register_static (G_TYPE_INTERFACE, "GeeList", &g_define_type_info, 0);
g_type_interface_add_prerequisite (gee_list_type_id, GEE_TYPE_COLLECTION);
return gee_list_type_id;
}
GType
gee_list_get_type (void)
{
static volatile gsize gee_list_type_id__once = 0;
if (g_once_init_enter (&gee_list_type_id__once)) {
GType gee_list_type_id;
gee_list_type_id = gee_list_get_type_once ();
g_once_init_leave (&gee_list_type_id__once, gee_list_type_id);
}
return gee_list_type_id__once;
}
|