PostgreSQL Source Code  git master
dshash.h File Reference
#include "utils/dsa.h"
Include dependency graph for dshash.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  dshash_parameters
 
struct  dshash_seq_status
 

Macros

#define DSHASH_HANDLE_INVALID   ((dshash_table_handle) InvalidDsaPointer)
 

Typedefs

typedef struct dshash_table dshash_table
 
typedef dsa_pointer dshash_table_handle
 
typedef uint32 dshash_hash
 
typedef int(* dshash_compare_function) (const void *a, const void *b, size_t size, void *arg)
 
typedef dshash_hash(* dshash_hash_function) (const void *v, size_t size, void *arg)
 
typedef struct dshash_parameters dshash_parameters
 
typedef struct dshash_table_item dshash_table_item
 
typedef struct dshash_seq_status dshash_seq_status
 

Functions

dshash_tabledshash_create (dsa_area *area, const dshash_parameters *params, void *arg)
 
dshash_tabledshash_attach (dsa_area *area, const dshash_parameters *params, dshash_table_handle handle, void *arg)
 
void dshash_detach (dshash_table *hash_table)
 
dshash_table_handle dshash_get_hash_table_handle (dshash_table *hash_table)
 
void dshash_destroy (dshash_table *hash_table)
 
void * dshash_find (dshash_table *hash_table, const void *key, bool exclusive)
 
void * dshash_find_or_insert (dshash_table *hash_table, const void *key, bool *found)
 
bool dshash_delete_key (dshash_table *hash_table, const void *key)
 
void dshash_delete_entry (dshash_table *hash_table, void *entry)
 
void dshash_release_lock (dshash_table *hash_table, void *entry)
 
void dshash_seq_init (dshash_seq_status *status, dshash_table *hash_table, bool exclusive)
 
void * dshash_seq_next (dshash_seq_status *status)
 
void dshash_seq_term (dshash_seq_status *status)
 
void dshash_delete_current (dshash_seq_status *status)
 
int dshash_memcmp (const void *a, const void *b, size_t size, void *arg)
 
dshash_hash dshash_memhash (const void *v, size_t size, void *arg)
 
void dshash_dump (dshash_table *hash_table)
 

Macro Definition Documentation

◆ DSHASH_HANDLE_INVALID

#define DSHASH_HANDLE_INVALID   ((dshash_table_handle) InvalidDsaPointer)

Definition at line 27 of file dshash.h.

Typedef Documentation

◆ dshash_compare_function

typedef int(* dshash_compare_function) (const void *a, const void *b, size_t size, void *arg)

Definition at line 33 of file dshash.h.

◆ dshash_hash

Definition at line 30 of file dshash.h.

◆ dshash_hash_function

typedef dshash_hash(* dshash_hash_function) (const void *v, size_t size, void *arg)

Definition at line 37 of file dshash.h.

◆ dshash_parameters

◆ dshash_seq_status

◆ dshash_table

typedef struct dshash_table dshash_table

Definition at line 1 of file dshash.h.

◆ dshash_table_handle

Definition at line 24 of file dshash.h.

◆ dshash_table_item

Definition at line 37 of file dshash.h.

Function Documentation

◆ dshash_attach()

dshash_table* dshash_attach ( dsa_area area,
const dshash_parameters params,
dshash_table_handle  handle,
void *  arg 
)

Definition at line 270 of file dshash.c.

272 {
273  dshash_table *hash_table;
274  dsa_pointer control;
275 
276  /* Allocate the backend-local object representing the hash table. */
277  hash_table = palloc(sizeof(dshash_table));
278 
279  /* Find the control object in shared memory. */
280  control = handle;
281 
282  /* Set up the local hash table struct. */
283  hash_table->area = area;
284  hash_table->params = *params;
285  hash_table->arg = arg;
286  hash_table->control = dsa_get_address(area, control);
287  Assert(hash_table->control->magic == DSHASH_MAGIC);
288 
289  /*
290  * These will later be set to the correct values by
291  * ensure_valid_bucket_pointers(), at which time we'll be holding a
292  * partition lock for interlocking against concurrent resizing.
293  */
294  hash_table->buckets = NULL;
295  hash_table->size_log2 = 0;
296 
297  return hash_table;
298 }
void * dsa_get_address(dsa_area *area, dsa_pointer dp)
Definition: dsa.c:949
uint64 dsa_pointer
Definition: dsa.h:62
#define DSHASH_MAGIC
Definition: dshash.c:65
Assert(fmt[strlen(fmt) - 1] !='\n')
void * palloc(Size size)
Definition: mcxt.c:1226
void * arg
dshash_parameters params
Definition: dshash.c:108
dsa_pointer * buckets
Definition: dshash.c:111
dsa_area * area
Definition: dshash.c:107
void * arg
Definition: dshash.c:109
size_t size_log2
Definition: dshash.c:112
dshash_table_control * control
Definition: dshash.c:110

References dshash_table::area, dshash_table::arg, arg, Assert(), dshash_table::buckets, dshash_table::control, dsa_get_address(), DSHASH_MAGIC, dshash_table_control::magic, palloc(), dshash_table::params, and dshash_table::size_log2.

Referenced by logicalrep_launcher_attach_dshmem(), pgstat_attach_shmem(), and SharedRecordTypmodRegistryAttach().

◆ dshash_create()

dshash_table* dshash_create ( dsa_area area,
const dshash_parameters params,
void *  arg 
)

Definition at line 206 of file dshash.c.

207 {
208  dshash_table *hash_table;
209  dsa_pointer control;
210 
211  /* Allocate the backend-local object representing the hash table. */
212  hash_table = palloc(sizeof(dshash_table));
213 
214  /* Allocate the control object in shared memory. */
215  control = dsa_allocate(area, sizeof(dshash_table_control));
216 
217  /* Set up the local and shared hash table structs. */
218  hash_table->area = area;
219  hash_table->params = *params;
220  hash_table->arg = arg;
221  hash_table->control = dsa_get_address(area, control);
222  hash_table->control->handle = control;
223  hash_table->control->magic = DSHASH_MAGIC;
224  hash_table->control->lwlock_tranche_id = params->tranche_id;
225 
226  /* Set up the array of lock partitions. */
227  {
229  int tranche_id = hash_table->control->lwlock_tranche_id;
230  int i;
231 
232  for (i = 0; i < DSHASH_NUM_PARTITIONS; ++i)
233  {
234  LWLockInitialize(&partitions[i].lock, tranche_id);
235  partitions[i].count = 0;
236  }
237  }
238 
239  /*
240  * Set up the initial array of buckets. Our initial size is the same as
241  * the number of partitions.
242  */
244  hash_table->control->buckets =
248  if (!DsaPointerIsValid(hash_table->control->buckets))
249  {
250  dsa_free(area, control);
251  ereport(ERROR,
252  (errcode(ERRCODE_OUT_OF_MEMORY),
253  errmsg("out of memory"),
254  errdetail("Failed on DSA request of size %zu.",
255  sizeof(dsa_pointer) * DSHASH_NUM_PARTITIONS)));
256  }
257  hash_table->buckets = dsa_get_address(area,
258  hash_table->control->buckets);
259  hash_table->size_log2 = hash_table->control->size_log2;
260 
261  return hash_table;
262 }
dsa_pointer dsa_allocate_extended(dsa_area *area, size_t size, int flags)
Definition: dsa.c:678
void dsa_free(dsa_area *area, dsa_pointer dp)
Definition: dsa.c:833
#define dsa_allocate(area, size)
Definition: dsa.h:84
#define DSA_ALLOC_NO_OOM
Definition: dsa.h:74
#define DsaPointerIsValid(x)
Definition: dsa.h:81
#define DSA_ALLOC_ZERO
Definition: dsa.h:75
#define DSHASH_NUM_PARTITIONS
Definition: dshash.c:62
#define DSHASH_NUM_PARTITIONS_LOG2
Definition: dshash.c:61
int errdetail(const char *fmt,...)
Definition: elog.c:1202
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
int i
Definition: isn.c:73
void LWLockInitialize(LWLock *lock, int tranche_id)
Definition: lwlock.c:730
static int partitions
Definition: pgbench.c:223
size_t size_log2
Definition: dshash.c:98
dshash_partition partitions[DSHASH_NUM_PARTITIONS]
Definition: dshash.c:89
dshash_table_handle handle
Definition: dshash.c:87
dsa_pointer buckets
Definition: dshash.c:99

References dshash_table::area, dshash_table::arg, arg, dshash_table_control::buckets, dshash_table::buckets, dshash_table::control, DSA_ALLOC_NO_OOM, DSA_ALLOC_ZERO, dsa_allocate, dsa_allocate_extended(), dsa_free(), dsa_get_address(), DsaPointerIsValid, DSHASH_MAGIC, DSHASH_NUM_PARTITIONS, DSHASH_NUM_PARTITIONS_LOG2, ereport, errcode(), errdetail(), errmsg(), ERROR, dshash_table_control::handle, i, dshash_table_control::lwlock_tranche_id, LWLockInitialize(), dshash_table_control::magic, palloc(), dshash_table::params, dshash_table_control::partitions, partitions, dshash_table_control::size_log2, dshash_table::size_log2, and dshash_parameters::tranche_id.

Referenced by logicalrep_launcher_attach_dshmem(), SharedRecordTypmodRegistryInit(), and StatsShmemInit().

◆ dshash_delete_current()

void dshash_delete_current ( dshash_seq_status status)

Definition at line 714 of file dshash.c.

715 {
716  dshash_table *hash_table = status->hash_table;
717  dshash_table_item *item = status->curitem;
718  size_t partition PG_USED_FOR_ASSERTS_ONLY;
719 
720  partition = PARTITION_FOR_HASH(item->hash);
721 
722  Assert(status->exclusive);
723  Assert(hash_table->control->magic == DSHASH_MAGIC);
724  Assert(LWLockHeldByMeInMode(PARTITION_LOCK(hash_table, partition),
725  LW_EXCLUSIVE));
726 
727  delete_item(hash_table, item);
728 }
#define PG_USED_FOR_ASSERTS_ONLY
Definition: c.h:171
#define PARTITION_LOCK(hash_table, i)
Definition: dshash.c:192
static void delete_item(dshash_table *hash_table, dshash_table_item *item)
Definition: dshash.c:789
#define PARTITION_FOR_HASH(hash)
Definition: dshash.c:142
bool LWLockHeldByMeInMode(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1964
@ LW_EXCLUSIVE
Definition: lwlock.h:116
bool exclusive
Definition: dshash.h:77
dshash_table_item * curitem
Definition: dshash.h:74
dshash_table * hash_table
Definition: dshash.h:71
dshash_hash hash
Definition: dshash.c:51

References Assert(), dshash_table::control, dshash_seq_status::curitem, delete_item(), DSHASH_MAGIC, dshash_seq_status::exclusive, dshash_table_item::hash, dshash_seq_status::hash_table, LW_EXCLUSIVE, LWLockHeldByMeInMode(), dshash_table_control::magic, PARTITION_FOR_HASH, PARTITION_LOCK, and PG_USED_FOR_ASSERTS_ONLY.

Referenced by pgstat_free_entry().

◆ dshash_delete_entry()

void dshash_delete_entry ( dshash_table hash_table,
void *  entry 
)

Definition at line 541 of file dshash.c.

542 {
543  dshash_table_item *item = ITEM_FROM_ENTRY(entry);
544  size_t partition = PARTITION_FOR_HASH(item->hash);
545 
546  Assert(hash_table->control->magic == DSHASH_MAGIC);
547  Assert(LWLockHeldByMeInMode(PARTITION_LOCK(hash_table, partition),
548  LW_EXCLUSIVE));
549 
550  delete_item(hash_table, item);
551  LWLockRelease(PARTITION_LOCK(hash_table, partition));
552 }
#define ITEM_FROM_ENTRY(entry)
Definition: dshash.c:120
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1808

References Assert(), dshash_table::control, delete_item(), DSHASH_MAGIC, dshash_table_item::hash, ITEM_FROM_ENTRY, LW_EXCLUSIVE, LWLockHeldByMeInMode(), LWLockRelease(), dshash_table_control::magic, PARTITION_FOR_HASH, and PARTITION_LOCK.

Referenced by pgstat_free_entry().

◆ dshash_delete_key()

bool dshash_delete_key ( dshash_table hash_table,
const void *  key 
)

Definition at line 503 of file dshash.c.

504 {
506  size_t partition;
507  bool found;
508 
509  Assert(hash_table->control->magic == DSHASH_MAGIC);
511 
512  hash = hash_key(hash_table, key);
513  partition = PARTITION_FOR_HASH(hash);
514 
515  LWLockAcquire(PARTITION_LOCK(hash_table, partition), LW_EXCLUSIVE);
516  ensure_valid_bucket_pointers(hash_table);
517 
518  if (delete_key_from_bucket(hash_table, key,
519  &BUCKET_FOR_HASH(hash_table, hash)))
520  {
521  Assert(hash_table->control->partitions[partition].count > 0);
522  found = true;
523  --hash_table->control->partitions[partition].count;
524  }
525  else
526  found = false;
527 
528  LWLockRelease(PARTITION_LOCK(hash_table, partition));
529 
530  return found;
531 }
static bool delete_key_from_bucket(dshash_table *hash_table, const void *key, dsa_pointer *bucket_head)
Definition: dshash.c:961
static dshash_hash hash_key(dshash_table *hash_table, const void *key)
Definition: dshash.c:1018
#define ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME(hash_table)
Definition: dshash.c:195
static void ensure_valid_bucket_pointers(dshash_table *hash_table)
Definition: dshash.c:892
#define BUCKET_FOR_HASH(hash_table, hash)
Definition: dshash.c:163
uint32 dshash_hash
Definition: dshash.h:30
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1195
static unsigned hash(unsigned *uv, int n)
Definition: rege_dfa.c:715
size_t count
Definition: dshash.c:78

References Assert(), ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, BUCKET_FOR_HASH, dshash_table::control, dshash_partition::count, delete_key_from_bucket(), DSHASH_MAGIC, ensure_valid_bucket_pointers(), hash(), hash_key(), sort-test::key, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), dshash_table_control::magic, PARTITION_FOR_HASH, PARTITION_LOCK, and dshash_table_control::partitions.

Referenced by ApplyLauncherForgetWorkerStartTime(), and find_or_make_matching_shared_tupledesc().

◆ dshash_destroy()

void dshash_destroy ( dshash_table hash_table)

Definition at line 323 of file dshash.c.

324 {
325  size_t size;
326  size_t i;
327 
328  Assert(hash_table->control->magic == DSHASH_MAGIC);
329  ensure_valid_bucket_pointers(hash_table);
330 
331  /* Free all the entries. */
332  size = NUM_BUCKETS(hash_table->size_log2);
333  for (i = 0; i < size; ++i)
334  {
335  dsa_pointer item_pointer = hash_table->buckets[i];
336 
337  while (DsaPointerIsValid(item_pointer))
338  {
339  dshash_table_item *item;
340  dsa_pointer next_item_pointer;
341 
342  item = dsa_get_address(hash_table->area, item_pointer);
343  next_item_pointer = item->next;
344  dsa_free(hash_table->area, item_pointer);
345  item_pointer = next_item_pointer;
346  }
347  }
348 
349  /*
350  * Vandalize the control block to help catch programming errors where
351  * other backends access the memory formerly occupied by this hash table.
352  */
353  hash_table->control->magic = 0;
354 
355  /* Free the active table and control object. */
356  dsa_free(hash_table->area, hash_table->control->buckets);
357  dsa_free(hash_table->area, hash_table->control->handle);
358 
359  pfree(hash_table);
360 }
#define NUM_BUCKETS(size_log2)
Definition: dshash.c:129
void pfree(void *pointer)
Definition: mcxt.c:1456
dsa_pointer next
Definition: dshash.c:49

References dshash_table::area, Assert(), dshash_table_control::buckets, dshash_table::buckets, dshash_table::control, dsa_free(), dsa_get_address(), DsaPointerIsValid, DSHASH_MAGIC, ensure_valid_bucket_pointers(), dshash_table_control::handle, i, dshash_table_control::magic, dshash_table_item::next, NUM_BUCKETS, pfree(), and dshash_table::size_log2.

◆ dshash_detach()

void dshash_detach ( dshash_table hash_table)

Definition at line 307 of file dshash.c.

308 {
310 
311  /* The hash table may have been destroyed. Just free local memory. */
312  pfree(hash_table);
313 }

References ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, and pfree().

Referenced by pgstat_detach_shmem(), shared_record_typmod_registry_detach(), and StatsShmemInit().

◆ dshash_dump()

void dshash_dump ( dshash_table hash_table)

Definition at line 735 of file dshash.c.

736 {
737  size_t i;
738  size_t j;
739 
740  Assert(hash_table->control->magic == DSHASH_MAGIC);
742 
743  for (i = 0; i < DSHASH_NUM_PARTITIONS; ++i)
744  {
745  Assert(!LWLockHeldByMe(PARTITION_LOCK(hash_table, i)));
746  LWLockAcquire(PARTITION_LOCK(hash_table, i), LW_SHARED);
747  }
748 
749  ensure_valid_bucket_pointers(hash_table);
750 
751  fprintf(stderr,
752  "hash table size = %zu\n", (size_t) 1 << hash_table->size_log2);
753  for (i = 0; i < DSHASH_NUM_PARTITIONS; ++i)
754  {
755  dshash_partition *partition = &hash_table->control->partitions[i];
756  size_t begin = BUCKET_INDEX_FOR_PARTITION(i, hash_table->size_log2);
757  size_t end = BUCKET_INDEX_FOR_PARTITION(i + 1, hash_table->size_log2);
758 
759  fprintf(stderr, " partition %zu\n", i);
760  fprintf(stderr,
761  " active buckets (key count = %zu)\n", partition->count);
762 
763  for (j = begin; j < end; ++j)
764  {
765  size_t count = 0;
766  dsa_pointer bucket = hash_table->buckets[j];
767 
768  while (DsaPointerIsValid(bucket))
769  {
770  dshash_table_item *item;
771 
772  item = dsa_get_address(hash_table->area, bucket);
773 
774  bucket = item->next;
775  ++count;
776  }
777  fprintf(stderr, " bucket %zu (key count = %zu)\n", j, count);
778  }
779  }
780 
781  for (i = 0; i < DSHASH_NUM_PARTITIONS; ++i)
782  LWLockRelease(PARTITION_LOCK(hash_table, i));
783 }
#define BUCKET_INDEX_FOR_PARTITION(partition, size_log2)
Definition: dshash.c:155
int j
Definition: isn.c:74
bool LWLockHeldByMe(LWLock *lock)
Definition: lwlock.c:1920
@ LW_SHARED
Definition: lwlock.h:117
#define fprintf
Definition: port.h:242

References dshash_table::area, Assert(), ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, BUCKET_INDEX_FOR_PARTITION, dshash_table::buckets, dshash_table::control, dshash_partition::count, dsa_get_address(), DsaPointerIsValid, DSHASH_MAGIC, DSHASH_NUM_PARTITIONS, ensure_valid_bucket_pointers(), fprintf, i, j, LW_SHARED, LWLockAcquire(), LWLockHeldByMe(), LWLockRelease(), dshash_table_control::magic, dshash_table_item::next, PARTITION_LOCK, dshash_table_control::partitions, and dshash_table::size_log2.

◆ dshash_find()

void* dshash_find ( dshash_table hash_table,
const void *  key,
bool  exclusive 
)

Definition at line 390 of file dshash.c.

391 {
393  size_t partition;
394  dshash_table_item *item;
395 
396  hash = hash_key(hash_table, key);
397  partition = PARTITION_FOR_HASH(hash);
398 
399  Assert(hash_table->control->magic == DSHASH_MAGIC);
401 
402  LWLockAcquire(PARTITION_LOCK(hash_table, partition),
403  exclusive ? LW_EXCLUSIVE : LW_SHARED);
404  ensure_valid_bucket_pointers(hash_table);
405 
406  /* Search the active bucket. */
407  item = find_in_bucket(hash_table, key, BUCKET_FOR_HASH(hash_table, hash));
408 
409  if (!item)
410  {
411  /* Not found. */
412  LWLockRelease(PARTITION_LOCK(hash_table, partition));
413  return NULL;
414  }
415  else
416  {
417  /* The caller will free the lock by calling dshash_release_lock. */
418  return ENTRY_FROM_ITEM(item);
419  }
420 }
#define ENTRY_FROM_ITEM(item)
Definition: dshash.c:116
static dshash_table_item * find_in_bucket(dshash_table *hash_table, const void *key, dsa_pointer item_pointer)
Definition: dshash.c:906

References Assert(), ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, BUCKET_FOR_HASH, dshash_table::control, DSHASH_MAGIC, ensure_valid_bucket_pointers(), ENTRY_FROM_ITEM, find_in_bucket(), hash(), hash_key(), sort-test::key, LW_EXCLUSIVE, LW_SHARED, LWLockAcquire(), LWLockRelease(), dshash_table_control::magic, PARTITION_FOR_HASH, and PARTITION_LOCK.

Referenced by ApplyLauncherGetWorkerStartTime(), find_or_make_matching_shared_tupledesc(), lookup_rowtype_tupdesc_internal(), pgstat_drop_entry(), pgstat_get_entry_ref(), and pgstat_release_entry_ref().

◆ dshash_find_or_insert()

void* dshash_find_or_insert ( dshash_table hash_table,
const void *  key,
bool found 
)

Definition at line 433 of file dshash.c.

436 {
438  size_t partition_index;
439  dshash_partition *partition;
440  dshash_table_item *item;
441 
442  hash = hash_key(hash_table, key);
443  partition_index = PARTITION_FOR_HASH(hash);
444  partition = &hash_table->control->partitions[partition_index];
445 
446  Assert(hash_table->control->magic == DSHASH_MAGIC);
448 
449 restart:
450  LWLockAcquire(PARTITION_LOCK(hash_table, partition_index),
451  LW_EXCLUSIVE);
452  ensure_valid_bucket_pointers(hash_table);
453 
454  /* Search the active bucket. */
455  item = find_in_bucket(hash_table, key, BUCKET_FOR_HASH(hash_table, hash));
456 
457  if (item)
458  *found = true;
459  else
460  {
461  *found = false;
462 
463  /* Check if we are getting too full. */
464  if (partition->count > MAX_COUNT_PER_PARTITION(hash_table))
465  {
466  /*
467  * The load factor (= keys / buckets) for all buckets protected by
468  * this partition is > 0.75. Presumably the same applies
469  * generally across the whole hash table (though we don't attempt
470  * to track that directly to avoid contention on some kind of
471  * central counter; we just assume that this partition is
472  * representative). This is a good time to resize.
473  *
474  * Give up our existing lock first, because resizing needs to
475  * reacquire all the locks in the right order to avoid deadlocks.
476  */
477  LWLockRelease(PARTITION_LOCK(hash_table, partition_index));
478  resize(hash_table, hash_table->size_log2 + 1);
479 
480  goto restart;
481  }
482 
483  /* Finally we can try to insert the new item. */
484  item = insert_into_bucket(hash_table, key,
485  &BUCKET_FOR_HASH(hash_table, hash));
486  item->hash = hash;
487  /* Adjust per-lock-partition counter for load factor knowledge. */
488  ++partition->count;
489  }
490 
491  /* The caller must release the lock with dshash_release_lock. */
492  return ENTRY_FROM_ITEM(item);
493 }
static dshash_table_item * insert_into_bucket(dshash_table *hash_table, const void *key, dsa_pointer *bucket)
Definition: dshash.c:941
#define MAX_COUNT_PER_PARTITION(hash_table)
Definition: dshash.c:137
static void resize(dshash_table *hash_table, size_t new_size_log2)
Definition: dshash.c:815

References Assert(), ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, BUCKET_FOR_HASH, dshash_table::control, dshash_partition::count, DSHASH_MAGIC, ensure_valid_bucket_pointers(), ENTRY_FROM_ITEM, find_in_bucket(), dshash_table_item::hash, hash(), hash_key(), insert_into_bucket(), sort-test::key, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), dshash_table_control::magic, MAX_COUNT_PER_PARTITION, PARTITION_FOR_HASH, PARTITION_LOCK, dshash_table_control::partitions, resize(), and dshash_table::size_log2.

Referenced by ApplyLauncherSetWorkerStartTime(), find_or_make_matching_shared_tupledesc(), pgstat_get_entry_ref(), pgstat_read_statsfile(), and SharedRecordTypmodRegistryInit().

◆ dshash_get_hash_table_handle()

dshash_table_handle dshash_get_hash_table_handle ( dshash_table hash_table)

Definition at line 367 of file dshash.c.

368 {
369  Assert(hash_table->control->magic == DSHASH_MAGIC);
370 
371  return hash_table->control->handle;
372 }

References Assert(), dshash_table::control, DSHASH_MAGIC, dshash_table_control::handle, and dshash_table_control::magic.

Referenced by logicalrep_launcher_attach_dshmem(), SharedRecordTypmodRegistryInit(), and StatsShmemInit().

◆ dshash_memcmp()

int dshash_memcmp ( const void *  a,
const void *  b,
size_t  size,
void *  arg 
)

Definition at line 572 of file dshash.c.

573 {
574  return memcmp(a, b, size);
575 }
int b
Definition: isn.c:70
int a
Definition: isn.c:69

References a, and b.

◆ dshash_memhash()

dshash_hash dshash_memhash ( const void *  v,
size_t  size,
void *  arg 
)

Definition at line 581 of file dshash.c.

582 {
583  return tag_hash(v, size);
584 }
uint32 tag_hash(const void *key, Size keysize)
Definition: hashfn.c:677

References tag_hash().

◆ dshash_release_lock()

◆ dshash_seq_init()

void dshash_seq_init ( dshash_seq_status status,
dshash_table hash_table,
bool  exclusive 
)

◆ dshash_seq_next()

void* dshash_seq_next ( dshash_seq_status status)

Definition at line 614 of file dshash.c.

615 {
616  dsa_pointer next_item_pointer;
617 
618  /*
619  * Not yet holding any partition locks. Need to determine the size of the
620  * hash table, it could have been resized since we were looking last.
621  * Since we iterate in partition order, we can start by unconditionally
622  * lock partition 0.
623  *
624  * Once we hold the lock, no resizing can happen until the scan ends. So
625  * we don't need to repeatedly call ensure_valid_bucket_pointers().
626  */
627  if (status->curpartition == -1)
628  {
629  Assert(status->curbucket == 0);
631 
632  status->curpartition = 0;
633 
635  status->curpartition),
636  status->exclusive ? LW_EXCLUSIVE : LW_SHARED);
637 
639 
640  status->nbuckets =
642  next_item_pointer = status->hash_table->buckets[status->curbucket];
643  }
644  else
645  next_item_pointer = status->pnextitem;
646 
648  status->curpartition),
649  status->exclusive ? LW_EXCLUSIVE : LW_SHARED));
650 
651  /* Move to the next bucket if we finished the current bucket */
652  while (!DsaPointerIsValid(next_item_pointer))
653  {
654  int next_partition;
655 
656  if (++status->curbucket >= status->nbuckets)
657  {
658  /* all buckets have been scanned. finish. */
659  return NULL;
660  }
661 
662  /* Check if move to the next partition */
663  next_partition =
665  status->hash_table->size_log2);
666 
667  if (status->curpartition != next_partition)
668  {
669  /*
670  * Move to the next partition. Lock the next partition then
671  * release the current, not in the reverse order to avoid
672  * concurrent resizing. Avoid dead lock by taking lock in the
673  * same order with resize().
674  */
676  next_partition),
677  status->exclusive ? LW_EXCLUSIVE : LW_SHARED);
679  status->curpartition));
680  status->curpartition = next_partition;
681  }
682 
683  next_item_pointer = status->hash_table->buckets[status->curbucket];
684  }
685 
686  status->curitem =
687  dsa_get_address(status->hash_table->area, next_item_pointer);
688 
689  /*
690  * The caller may delete the item. Store the next item in case of
691  * deletion.
692  */
693  status->pnextitem = status->curitem->next;
694 
695  return ENTRY_FROM_ITEM(status->curitem);
696 }
#define PARTITION_FOR_BUCKET_INDEX(bucket_idx, size_log2)
Definition: dshash.c:159

References dshash_table::area, Assert(), ASSERT_NO_PARTITION_LOCKS_HELD_BY_ME, dshash_table::buckets, dshash_table::control, dshash_seq_status::curbucket, dshash_seq_status::curitem, dshash_seq_status::curpartition, dsa_get_address(), DsaPointerIsValid, ensure_valid_bucket_pointers(), ENTRY_FROM_ITEM, dshash_seq_status::exclusive, dshash_seq_status::hash_table, LW_EXCLUSIVE, LW_SHARED, LWLockAcquire(), LWLockHeldByMeInMode(), LWLockRelease(), dshash_seq_status::nbuckets, dshash_table_item::next, NUM_BUCKETS, PARTITION_FOR_BUCKET_INDEX, PARTITION_LOCK, dshash_seq_status::pnextitem, dshash_table_control::size_log2, and dshash_table::size_log2.

Referenced by pgstat_build_snapshot(), pgstat_drop_all_entries(), pgstat_drop_database_and_contents(), pgstat_reset_matching_entries(), and pgstat_write_statsfile().

◆ dshash_seq_term()