D-Bus 1.15.8
dbus-hash.h
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-hash.h Generic hash table utility (internal to D-Bus implementation)
3 *
4 * Copyright (C) 2002 Red Hat, Inc.
5 *
6 * SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later
7 *
8 * Licensed under the Academic Free License version 2.1
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 */
25
26#ifndef DBUS_HASH_H
27#define DBUS_HASH_H
28
29#include <stdint.h>
30
31#ifdef HAVE_INTTYPES_H
32#include <inttypes.h>
33#endif
34
35#include <dbus/dbus-memory.h>
36#include <dbus/dbus-types.h>
37#include <dbus/dbus-sysdeps.h>
38
40
50{
51 void *dummy1;
52 void *dummy2;
53 void *dummy3;
54 void *dummy4;
55 int dummy5;
56 int dummy6;
57};
58
61
62/* Allowing an arbitrary function as with GLib
63 * would be nicer for a public API, but for
64 * an internal API this saves typing, we can add
65 * more whenever we feel like it.
66 */
67typedef enum
68{
73
74DBUS_PRIVATE_EXPORT
76 DBusFreeFunction key_free_function,
77 DBusFreeFunction value_free_function);
78DBUS_PRIVATE_EXPORT
80DBUS_PRIVATE_EXPORT
83DBUS_PRIVATE_EXPORT
85 DBusHashIter *iter);
86DBUS_PRIVATE_EXPORT
88DBUS_PRIVATE_EXPORT
90DBUS_PRIVATE_EXPORT
92DBUS_PRIVATE_EXPORT
94 void *value);
95DBUS_PRIVATE_EXPORT
97DBUS_PRIVATE_EXPORT
99DBUS_PRIVATE_EXPORT
101DBUS_PRIVATE_EXPORT
103 void *key,
104 dbus_bool_t create_if_not_found,
105 DBusHashIter *iter);
106DBUS_PRIVATE_EXPORT
108 const char *key);
109DBUS_PRIVATE_EXPORT
111 int key);
112DBUS_PRIVATE_EXPORT
114 uintptr_t key);
115DBUS_PRIVATE_EXPORT
117 const char *key);
118DBUS_PRIVATE_EXPORT
120 int key);
121DBUS_PRIVATE_EXPORT
123 uintptr_t key);
124DBUS_PRIVATE_EXPORT
126 char *key,
127 void *value);
128DBUS_PRIVATE_EXPORT
130 int key,
131 void *value);
132DBUS_PRIVATE_EXPORT
134 uintptr_t key,
135 void *value);
136DBUS_PRIVATE_EXPORT
138
139DBUS_PRIVATE_EXPORT
141 char delimiter);
142DBUS_PRIVATE_EXPORT
144 char **array,
145 char delimiter);
146
147/* Preallocation */
148
151
152DBUS_PRIVATE_EXPORT
154DBUS_PRIVATE_EXPORT
156 DBusPreallocatedHash *preallocated);
157DBUS_PRIVATE_EXPORT
159 DBusPreallocatedHash *preallocated,
160 char *key,
161 void *value);
162
163#ifdef DBUS_WIN
164# define DBUS_HASH_POLLABLE DBUS_HASH_UINTPTR
165#else
166# define DBUS_HASH_POLLABLE DBUS_HASH_INT
167#endif
168
169static inline DBusPollable
170_dbus_hash_iter_get_pollable_key (DBusHashIter *iter)
171{
172#ifdef DBUS_WIN
173 DBusSocket s;
174
175 s.sock = _dbus_hash_iter_get_uintptr_key (iter);
176 return s;
177#else
178 return _dbus_hash_iter_get_int_key (iter);
179#endif
180}
181
182static inline void *
183_dbus_hash_table_lookup_pollable (DBusHashTable *table,
184 DBusPollable key)
185{
186#ifdef DBUS_WIN
187 return _dbus_hash_table_lookup_uintptr (table, key.sock);
188#else
189 return _dbus_hash_table_lookup_int (table, key);
190#endif
191}
192
193static inline dbus_bool_t
194_dbus_hash_table_remove_pollable (DBusHashTable *table,
195 DBusPollable key)
196{
197#ifdef DBUS_WIN
198 return _dbus_hash_table_remove_uintptr (table, key.sock);
199#else
200 return _dbus_hash_table_remove_int (table, key);
201#endif
202}
203
204static inline dbus_bool_t
205_dbus_hash_table_insert_pollable (DBusHashTable *table,
206 DBusPollable key,
207 void *value)
208{
209#ifdef DBUS_WIN
210 return _dbus_hash_table_insert_uintptr (table, key.sock, value);
211#else
212 return _dbus_hash_table_insert_int (table, key, value);
213#endif
214}
215
216static inline void
217_dbus_clear_hash_table (DBusHashTable **table_p)
218{
219 _dbus_clear_pointer_impl (DBusHashTable, table_p, _dbus_hash_table_unref);
220}
221
225
226#endif /* DBUS_HASH_H */
int _dbus_hash_table_get_n_entries(DBusHashTable *table)
Gets the number of hash entries in a hash table.
Definition: dbus-hash.c:1461
DBusHashTable * _dbus_hash_table_ref(DBusHashTable *table)
Increments the reference count for a hash table.
Definition: dbus-hash.c:354
dbus_bool_t _dbus_hash_table_remove_uintptr(DBusHashTable *table, uintptr_t key)
Removes the hash entry for the given key.
Definition: dbus-hash.c:1243
void * _dbus_hash_iter_get_value(DBusHashIter *iter)
Gets the value of the current entry.
Definition: dbus-hash.c:620
struct DBusPreallocatedHash DBusPreallocatedHash
A preallocated hash entry.
Definition: dbus-hash.h:150
dbus_bool_t _dbus_hash_table_insert_int(DBusHashTable *table, int key, void *value)
Creates a hash entry with the given key and value.
Definition: dbus-hash.c:1312
dbus_bool_t _dbus_hash_table_insert_string(DBusHashTable *table, char *key, void *value)
Creates a hash entry with the given key and value.
Definition: dbus-hash.c:1278
dbus_bool_t _dbus_hash_table_from_array(DBusHashTable *table, char **array, char delimiter)
Imports a string array into a hash table The hash table needs to be initialized with string keys,...
Definition: dbus-hash.c:1479
uintptr_t _dbus_hash_iter_get_uintptr_key(DBusHashIter *iter)
Gets the key for the current entry.
Definition: dbus-hash.c:685
void * _dbus_hash_table_lookup_uintptr(DBusHashTable *table, uintptr_t key)
Looks up the value for a given integer in a hash table of type DBUS_HASH_UINTPTR.
Definition: dbus-hash.c:1163
void _dbus_hash_table_unref(DBusHashTable *table)
Decrements the reference count for a hash table, freeing the hash table if the count reaches zero.
Definition: dbus-hash.c:368
dbus_bool_t _dbus_hash_iter_next(DBusHashIter *iter)
Move the hash iterator forward one step, to the next hash entry.
Definition: dbus-hash.c:550
int _dbus_hash_iter_get_int_key(DBusHashIter *iter)
Gets the key for the current entry.
Definition: dbus-hash.c:666
void _dbus_hash_iter_init(DBusHashTable *table, DBusHashIter *iter)
Initializes a hash table iterator.
Definition: dbus-hash.c:524
void _dbus_hash_table_free_preallocated_entry(DBusHashTable *table, DBusPreallocatedHash *preallocated)
Frees an opaque DBusPreallocatedHash that was not used in order to insert into the hash table.
Definition: dbus-hash.c:1403
DBusHashTable * _dbus_hash_table_new(DBusHashType type, DBusFreeFunction key_free_function, DBusFreeFunction value_free_function)
Constructs a new hash table.
Definition: dbus-hash.c:292
dbus_bool_t _dbus_hash_table_remove_int(DBusHashTable *table, int key)
Removes the hash entry for the given key.
Definition: dbus-hash.c:1215
DBusPreallocatedHash * _dbus_hash_table_preallocate_entry(DBusHashTable *table)
Preallocate an opaque data blob that allows us to insert into the hash table at a later time without ...
Definition: dbus-hash.c:1386
dbus_bool_t _dbus_hash_table_remove_string(DBusHashTable *table, const char *key)
Removes the hash entry for the given key.
Definition: dbus-hash.c:1187
char ** _dbus_hash_table_to_array(DBusHashTable *table, char delimiter)
Creates a string array from a hash table.
Definition: dbus-hash.c:1544
void _dbus_hash_iter_set_value(DBusHashIter *iter, void *value)
Sets the value of the current entry.
Definition: dbus-hash.c:643
DBusHashType
Indicates the type of a key in the hash table.
Definition: dbus-hash.h:68
void * _dbus_hash_table_lookup_string(DBusHashTable *table, const char *key)
Looks up the value for a given string in a hash table of type DBUS_HASH_STRING.
Definition: dbus-hash.c:1113
dbus_bool_t _dbus_hash_iter_lookup(DBusHashTable *table, void *key, dbus_bool_t create_if_not_found, DBusHashIter *iter)
A low-level but efficient interface for manipulating the hash table.
Definition: dbus-hash.c:748
void _dbus_hash_table_remove_all(DBusHashTable *table)
Removed all entries from a hash table.
Definition: dbus-hash.c:425
const char * _dbus_hash_iter_get_string_key(DBusHashIter *iter)
Gets the key for the current entry.
Definition: dbus-hash.c:703
dbus_bool_t _dbus_hash_table_insert_uintptr(DBusHashTable *table, uintptr_t key, void *value)
Creates a hash entry with the given key and value.
Definition: dbus-hash.c:1353
void _dbus_hash_iter_remove_entry(DBusHashIter *iter)
Removes the current entry from the hash table.
Definition: dbus-hash.c:599
void _dbus_hash_table_insert_string_preallocated(DBusHashTable *table, DBusPreallocatedHash *preallocated, char *key, void *value)
Inserts a string-keyed entry into the hash table, using a preallocated data block from _dbus_hash_tab...
Definition: dbus-hash.c:1430
void * _dbus_hash_table_lookup_int(DBusHashTable *table, int key)
Looks up the value for a given integer in a hash table of type DBUS_HASH_INT.
Definition: dbus-hash.c:1138
@ DBUS_HASH_INT
Hash keys are integers.
Definition: dbus-hash.h:70
@ DBUS_HASH_UINTPTR
Hash keys are integer capable to hold a pointer.
Definition: dbus-hash.h:71
@ DBUS_HASH_STRING
Hash keys are strings.
Definition: dbus-hash.h:69
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.
void(* DBusFreeFunction)(void *memory)
The type of a function which frees a block of memory.
Definition: dbus-memory.h:65
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:37
Hash iterator object.
Definition: dbus-hash.h:50
void * dummy1
Do not use.
Definition: dbus-hash.h:51
void * dummy4
Do not use.
Definition: dbus-hash.h:54
int dummy5
Do not use.
Definition: dbus-hash.h:55
int dummy6
Do not use.
Definition: dbus-hash.h:56
void * dummy3
Do not use.
Definition: dbus-hash.h:53
void * dummy2
Do not use.
Definition: dbus-hash.h:52
Internals of DBusHashTable.
Definition: dbus-hash.c:175
Socket interface.
Definition: dbus-sysdeps.h:185