util: Implement a hash table cloning function
authorThomas Helland <thomashelland90@gmail.com>
Mon, 9 Jan 2017 22:01:50 +0000 (23:01 +0100)
committerThomas Helland <thomashelland90@gmail.com>
Wed, 14 Mar 2018 18:52:01 +0000 (19:52 +0100)
V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav)

Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
src/util/hash_table.c
src/util/hash_table.h

index b7421a0144cdc71fec07a5354feb27167082b8bd..f8d5d0f88aa1e9108198f24342a9103fe90b37b4 100644 (file)
@@ -141,6 +141,28 @@ _mesa_hash_table_create(void *mem_ctx,
    return ht;
 }
 
+struct hash_table *
+_mesa_hash_table_clone(struct hash_table *src, void *dst_mem_ctx)
+{
+   struct hash_table *ht;
+
+   ht = ralloc(dst_mem_ctx, struct hash_table);
+   if (ht == NULL)
+      return NULL;
+
+   memcpy(ht, src, sizeof(struct hash_table));
+
+   ht->table = ralloc_array(ht, struct hash_entry, ht->size);
+   if (ht->table == NULL) {
+      ralloc_free(ht);
+      return NULL;
+   }
+
+   memcpy(ht->table, src->table, ht->size * sizeof(struct hash_entry));
+
+   return ht;
+}
+
 /**
  * Frees the given hash table.
  *
index d3e0758b26517c4225ea302e3d892e4a42c6d709..3846dad4b4a9abb2a79ba311a8b4146efb04e395 100644 (file)
@@ -62,6 +62,8 @@ _mesa_hash_table_create(void *mem_ctx,
                         uint32_t (*key_hash_function)(const void *key),
                         bool (*key_equals_function)(const void *a,
                                                     const void *b));
+struct hash_table *
+_mesa_hash_table_clone(struct hash_table *src, void *dst_mem_ctx);
 void _mesa_hash_table_destroy(struct hash_table *ht,
                               void (*delete_function)(struct hash_entry *entry));
 void _mesa_hash_table_clear(struct hash_table *ht,