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
|
/* multimap.c generated by valac 0.56.17, the Vala compiler
* generated from multimap.vala, do not modify */
/* multimap.vala
*
* Copyright (C) 2009 Ali Sabil
*
* 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:
* Ali Sabil <ali.sabil@gmail.com>
*/
#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 GEE_TYPE_READ_ONLY_MULTI_MAP (gee_read_only_multi_map_get_type ())
#define GEE_READ_ONLY_MULTI_MAP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEE_TYPE_READ_ONLY_MULTI_MAP, GeeReadOnlyMultiMap))
#define GEE_READ_ONLY_MULTI_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEE_TYPE_READ_ONLY_MULTI_MAP, GeeReadOnlyMultiMapClass))
#define GEE_IS_READ_ONLY_MULTI_MAP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEE_TYPE_READ_ONLY_MULTI_MAP))
#define GEE_IS_READ_ONLY_MULTI_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEE_TYPE_READ_ONLY_MULTI_MAP))
#define GEE_READ_ONLY_MULTI_MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEE_TYPE_READ_ONLY_MULTI_MAP, GeeReadOnlyMultiMapClass))
typedef struct _GeeReadOnlyMultiMap GeeReadOnlyMultiMap;
typedef struct _GeeReadOnlyMultiMapClass GeeReadOnlyMultiMapClass;
G_GNUC_INTERNAL GeeReadOnlyMultiMap* gee_read_only_multi_map_new (GType k_type,
GBoxedCopyFunc k_dup_func,
GDestroyNotify k_destroy_func,
GType v_type,
GBoxedCopyFunc v_dup_func,
GDestroyNotify v_destroy_func,
GeeMultiMap* multimap);
G_GNUC_INTERNAL GeeReadOnlyMultiMap* gee_read_only_multi_map_construct (GType object_type,
GType k_type,
GBoxedCopyFunc k_dup_func,
GDestroyNotify k_destroy_func,
GType v_type,
GBoxedCopyFunc v_dup_func,
GDestroyNotify v_destroy_func,
GeeMultiMap* multimap);
G_GNUC_INTERNAL GType gee_read_only_multi_map_get_type (void) G_GNUC_CONST G_GNUC_UNUSED ;
static GType gee_multi_map_get_type_once (void);
/**
* Returns the keys of this multimap as a read-only set.
*
* @return the keys of the map
*/
GeeSet*
gee_multi_map_get_keys (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_keys) {
return _iface_->get_keys (self);
}
return NULL;
}
/**
* Returns the keys of this multimap as a read-only set.
*
* @return the keys of the map
*/
GeeMultiSet*
gee_multi_map_get_all_keys (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_all_keys) {
return _iface_->get_all_keys (self);
}
return NULL;
}
/**
* Returns the values of this map as a read-only collection.
*
* @return the values of the map
*/
GeeCollection*
gee_multi_map_get_values (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_values) {
return _iface_->get_values (self);
}
return NULL;
}
/**
* Determines whether this map contains the specified key.
*
* @param key the key to locate in the map
*
* @return ``true`` if key is found, ``false`` otherwise
*/
gboolean
gee_multi_map_contains (GeeMultiMap* self,
gconstpointer key)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->contains) {
return _iface_->contains (self, key);
}
return FALSE;
}
/**
* Returns the values for the specified key in this map.
*
* @param key the key whose values are to be retrieved
*
* @return a Collection of values associated with the given key
*/
GeeCollection*
gee_multi_map_get (GeeMultiMap* self,
gconstpointer key)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get) {
return _iface_->get (self, key);
}
return NULL;
}
/**
* Inserts a key/value pair into this map.
*
* @param key the key to insert
* @param value the value to associate with the key
*/
void
gee_multi_map_set (GeeMultiMap* self,
gconstpointer key,
gconstpointer value)
{
GeeMultiMapIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->set) {
_iface_->set (self, key, value);
}
}
/**
* Removes the specified key/value pair from this multimap.
*
* @param key the key to remove from the map
* @param value the value to remove from the map
*
* @return ``true`` if the map has been changed, ``false`` otherwise
*/
gboolean
gee_multi_map_remove (GeeMultiMap* self,
gconstpointer key,
gconstpointer value)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->remove) {
return _iface_->remove (self, key, value);
}
return FALSE;
}
/**
* Removes the specified key and all the associated values from this
* multimap.
*
* @param key the key to remove from the map
*
* @return ``true`` if the map has been changed, ``false`` otherwise
*/
gboolean
gee_multi_map_remove_all (GeeMultiMap* self,
gconstpointer key)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->remove_all) {
return _iface_->remove_all (self, key);
}
return FALSE;
}
/**
* Removes all items from this collection.
*/
void
gee_multi_map_clear (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_if_fail (self != NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->clear) {
_iface_->clear (self);
}
}
/**
* Returns an iterator for this map.
*
* @return a map iterator
*/
GeeMapIterator*
gee_multi_map_map_iterator (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->map_iterator) {
return _iface_->map_iterator (self);
}
return NULL;
}
gint
gee_multi_map_get_size (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, 0);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_size) {
return _iface_->get_size (self);
}
return -1;
}
gboolean
gee_multi_map_get_read_only (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, FALSE);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_read_only) {
return _iface_->get_read_only (self);
}
return FALSE;
}
GType
gee_multi_map_get_key_type (GeeMultiMap* self)
{
GType result;
g_return_val_if_fail (self != NULL, 0UL);
result = GEE_MULTI_MAP_GET_INTERFACE (self)->get_k_type (self);
return result;
}
GType
gee_multi_map_get_value_type (GeeMultiMap* self)
{
GType result;
g_return_val_if_fail (self != NULL, 0UL);
result = GEE_MULTI_MAP_GET_INTERFACE (self)->get_v_type (self);
return result;
}
GeeMultiMap*
gee_multi_map_get_read_only_view (GeeMultiMap* self)
{
GeeMultiMapIface* _iface_;
g_return_val_if_fail (self != NULL, NULL);
_iface_ = GEE_MULTI_MAP_GET_INTERFACE (self);
if (_iface_->get_read_only_view) {
return _iface_->get_read_only_view (self);
}
return NULL;
}
static GeeMultiMap*
gee_multi_map_real_get_read_only_view (GeeMultiMap* base)
{
GeeMultiMap* result;
GeeMultiMap* self;
GeeReadOnlyMultiMap* _tmp0_;
self = base;
_tmp0_ = gee_read_only_multi_map_new (GEE_MULTI_MAP_GET_INTERFACE (self)->get_k_type (self), (GBoxedCopyFunc) GEE_MULTI_MAP_GET_INTERFACE (self)->get_k_dup_func (self), (GDestroyNotify) GEE_MULTI_MAP_GET_INTERFACE (self)->get_k_destroy_func (self), GEE_MULTI_MAP_GET_INTERFACE (self)->get_v_type (self), (GBoxedCopyFunc) GEE_MULTI_MAP_GET_INTERFACE (self)->get_v_dup_func (self), (GDestroyNotify) GEE_MULTI_MAP_GET_INTERFACE (self)->get_v_destroy_func (self), self);
result = (GeeMultiMap*) _tmp0_;
return result;
}
static void
gee_multi_map_default_init (GeeMultiMapIface * iface,
gpointer iface_data)
{
/**
* The number of key/value pairs in this map.
*/
g_object_interface_install_property (iface, g_param_spec_int ("size", "size", "size", G_MININT, G_MAXINT, 0, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
/**
* Specifies whether this collection can change - i.e. whether {@link set},
* {@link remove} etc. are legal operations.
*/
g_object_interface_install_property (iface, g_param_spec_boolean ("read-only", "read-only", "read-only", FALSE, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
iface->get_read_only_view = gee_multi_map_real_get_read_only_view;
}
/**
* A map with multiple values per key.
*/
static GType
gee_multi_map_get_type_once (void)
{
static const GTypeInfo g_define_type_info = { sizeof (GeeMultiMapIface), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) gee_multi_map_default_init, (GClassFinalizeFunc) NULL, NULL, 0, 0, (GInstanceInitFunc) NULL, NULL };
GType gee_multi_map_type_id;
gee_multi_map_type_id = g_type_register_static (G_TYPE_INTERFACE, "GeeMultiMap", &g_define_type_info, 0);
g_type_interface_add_prerequisite (gee_multi_map_type_id, G_TYPE_OBJECT);
return gee_multi_map_type_id;
}
GType
gee_multi_map_get_type (void)
{
static volatile gsize gee_multi_map_type_id__once = 0;
if (g_once_init_enter (&gee_multi_map_type_id__once)) {
GType gee_multi_map_type_id;
gee_multi_map_type_id = gee_multi_map_get_type_once ();
g_once_init_leave (&gee_multi_map_type_id__once, gee_multi_map_type_id);
}
return gee_multi_map_type_id__once;
}
|