File: opal_hash_table.c

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (971 lines) | stat: -rw-r--r-- 31,921 bytes parent folder | download | duplicates (5)
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
/*
 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
 *                         University Research and Technology
 *                         Corporation.  All rights reserved.
 * Copyright (c) 2004-2005 The University of Tennessee and The University
 *                         of Tennessee Research Foundation.  All rights
 *                         reserved.
 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
 *                         University of Stuttgart.  All rights reserved.
 * Copyright (c) 2004-2005 The Regents of the University of California.
 *                         All rights reserved.
 * Copyright (c) 2014-2015 Hewlett-Packard Development Company, LP.
 *                         All rights reserved.
 * Copyright (c) 2014-2015 Mellanox Technologies, Inc.
 *                         All rights reserved.
 * Copyright (c) 2014      Research Organization for Information Science
 *                         and Technology (RIST). All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#include "opal_config.h"

#include <stdlib.h>
#include <string.h>

#include "opal/class/opal_hash_table.h"
#include "opal/constants.h"
#include "opal/util/output.h"

/*
 * opal_hash_table_t
 *
 * Sketch: [Contributed by David Linden of Hewlett-Packard]
 *
 * This has been found to be good for search and insert and
 * (seldom-)remove, all with probabilistic O(1) time.  Having a good
 * distribution of the hash indices is important, so even if you know
 * the keys distribute well under a mask, that micro-optimization
 * isn't worth doing.
 *
 * One aspect is that the concept of buckets and elements is
 * unified. The buckets aka elements are in a single array, each
 * element having a valid flag.  The key hashes to a keyhash, the
 * keyhash determines the first index to probe.  Missing probes search
 * forward (wrapping) until the key is found or an invalid entry is
 * found.
 *
 * One parameter of the hash table is a maximum density, which must be
 * less than 1, expressed a numerator and denominator.  1/2 seems to
 * work well.  A density less than 1 ensures the search will stop
 * because searching will eventually find an invalid element.  At
 * maximum density, assuming random usage of the elements, the
 * expected search length is 1/(1-density); for a density of 1/2, this
 * is 2.
 *
 * I believe this blinded bucket/element scheme is actually more
 * storage-efficient than a bucket having a linear list of elements.
 * It is certainly better on the cache.
 *
 * Another parameter is the growth factor, another ratio, greater than
 * 1, expressed as a numerator and denominator.  2/1 seems to work
 * well.  When the hash table reaches maximum density, it is grown by
 * the growth factor (thus reducing the density).  Growing requires
 * rehashing and reinserting existing elements.  It turns out this
 * keeps insertion at O(1): multiplies the coefficient by
 * growth/(growth-1); for a growth of 2/1 this is 2.
 *
 * The key is hashed to a keyhash.  The keyhash determines the first
 * index to probe by using the remainder of the keyhash by the table's
 * 'capacity.'  The capacity is not a power of 2.  (Keys that vary
 * only in the high 32 bits of a 64 bit key would always colide with a
 * power-of-2 capacity.)  Rather, the capacity is arranged not to be a
 * multiple of 2, 3 or 5.  A potential capacity is rounded up to be (1
 * mod 30).
 *
 * Removing a key is the most involved operation.  It is necessary to
 * rehash any valid elements immediately after the removed element,
 * because some (perhaps all) of those elements would normally hash
 * lower if the removed key were never there.  This remains O(1); the
 * implementation just needs to be a little careful.
 *
 */

#define HASH_MULTIPLIER 31

/*
 * Define the structs that are opaque in the .h
 */

struct opal_hash_element_t {
    int valid; /* whether this element is valid */
    union {    /* the key, in its various forms */
        uint32_t u32;
        uint64_t u64;
        struct {
            const void *key;
            size_t key_size;
        } ptr;
    } key;
    void *value; /* the value */
};
typedef struct opal_hash_element_t opal_hash_element_t;

struct opal_hash_type_methods_t {
    /* Frees any storage associated with the element
     * The value is not owned by the hash table
     * The key,key_size of pointer keys is
     */
    void (*elt_destructor)(opal_hash_element_t *elt);
    /* Hash the key of the element -- for growing and adjusting-after-removal */
    uint64_t (*hash_elt)(opal_hash_element_t *elt);
};

/* interact with the class-like mechanism */

static void opal_hash_table_construct(opal_hash_table_t *ht);
static void opal_hash_table_destruct(opal_hash_table_t *ht);

OBJ_CLASS_INSTANCE(opal_hash_table_t, opal_object_t, opal_hash_table_construct,
                   opal_hash_table_destruct);

static void opal_hash_table_construct(opal_hash_table_t *ht)
{
    ht->ht_table = NULL;
    ht->ht_capacity = ht->ht_size = ht->ht_growth_trigger = 0;
    ht->ht_density_numer = ht->ht_density_denom = 0;
    ht->ht_growth_numer = ht->ht_growth_denom = 0;
    ht->ht_type_methods = NULL;
}

static void opal_hash_table_destruct(opal_hash_table_t *ht)
{
    opal_hash_table_remove_all(ht);
    free(ht->ht_table);
}

/*
 * Init, etc
 */

static size_t opal_hash_round_capacity_up(size_t capacity)
{
    /* round up to (1 mod 30) */
    return ((capacity + 29) / 30 * 30 + 1);
}

/* this could be the new init if people wanted a more general API */
/* (that's why it isn't static) */
int /* OPAL_ return code */
opal_hash_table_init2(opal_hash_table_t *ht, size_t estimated_max_size, int density_numer,
                      int density_denom, int growth_numer, int growth_denom)
{
    size_t est_capacity = estimated_max_size * density_denom / density_numer;
    size_t capacity = opal_hash_round_capacity_up(est_capacity);
    ht->ht_table = (opal_hash_element_t *) calloc(capacity, sizeof(opal_hash_element_t));
    if (NULL == ht->ht_table) {
        return OPAL_ERR_OUT_OF_RESOURCE;
    }
    ht->ht_capacity = capacity;
    ht->ht_density_numer = density_numer;
    ht->ht_density_denom = density_denom;
    ht->ht_growth_numer = growth_numer;
    ht->ht_growth_denom = growth_denom;
    ht->ht_growth_trigger = capacity * density_numer / density_denom;
    ht->ht_type_methods = NULL;
    return OPAL_SUCCESS;
}

int /* OPAL_ return code */
opal_hash_table_init(opal_hash_table_t *ht, size_t table_size)
{
    /* default to density of 1/2 and growth of 2/1 */
    return opal_hash_table_init2(ht, table_size, 1, 2, 2, 1);
}

int /* OPAL_ return code */
opal_hash_table_remove_all(opal_hash_table_t *ht)
{
    size_t ii;
    for (ii = 0; ii < ht->ht_capacity; ii += 1) {
        opal_hash_element_t *elt = &ht->ht_table[ii];
        if (elt->valid && ht->ht_type_methods && ht->ht_type_methods->elt_destructor) {
            ht->ht_type_methods->elt_destructor(elt);
        }
        elt->valid = 0;
        elt->value = NULL;
    }
    ht->ht_size = 0;
    /* the tests reuse the hash table for different types after removing all */
    /* so we should allow that by forgetting what type it used to be */
    ht->ht_type_methods = NULL;
    return OPAL_SUCCESS;
}

static int /* OPAL_ return code */
opal_hash_grow(opal_hash_table_t *ht)
{
    size_t jj, ii;
    opal_hash_element_t *old_table;
    opal_hash_element_t *new_table;
    size_t old_capacity;
    size_t new_capacity;

    old_table = ht->ht_table;
    old_capacity = ht->ht_capacity;

    new_capacity = old_capacity * ht->ht_growth_numer / ht->ht_growth_denom;
    new_capacity = opal_hash_round_capacity_up(new_capacity);

    new_table = (opal_hash_element_t *) calloc(new_capacity, sizeof(new_table[0]));
    if (NULL == new_table) {
        return OPAL_ERR_OUT_OF_RESOURCE;
    }

    /* for each element of the old table (indexed by jj), insert it
       into the new table (indexed by ii), using the hash_elt method
       to generically hash an element, then modulo the new capacity,
       and using struct-assignment to copy an old element into its
       place int he new table.  The hash table never owns the value,
       and in the case of ptr keys the old dlements will be blindly
       deleted, so we still own the ptr key storage, just in the new
       table now */
    for (jj = 0; jj < old_capacity; jj += 1) {
        opal_hash_element_t *old_elt;
        opal_hash_element_t *new_elt;
        old_elt = &old_table[jj];
        if (old_elt->valid) {
            for (ii = (ht->ht_type_methods->hash_elt(old_elt) % new_capacity);; ii += 1) {
                if (ii == new_capacity) {
                    ii = 0;
                }
                new_elt = &new_table[ii];
                if (!new_elt->valid) {
                    *new_elt = *old_elt;
                    break;
                }
            }
        }
    }
    /* update with the new, free the old, return */
    ht->ht_table = new_table;
    ht->ht_capacity = new_capacity;
    ht->ht_growth_trigger = new_capacity * ht->ht_density_numer / ht->ht_density_denom;
    free(old_table);
    return OPAL_SUCCESS;
}

/* one of the removal functions has determined which element should be
   removed.  With the help of the type methods this can be generic.
   The important thing is to rehash any valid elements immediately
   following the element-being-removed */
static int /* OPAL_ return code */
opal_hash_table_remove_elt_at(opal_hash_table_t *ht, size_t ii)
{
    size_t jj, capacity = ht->ht_capacity;
    opal_hash_element_t *elts = ht->ht_table;
    opal_hash_element_t *elt;

    elt = &elts[ii];

    if (!elt->valid) {
        /* huh?  removing a not-valid element? */
        return OPAL_ERROR;
    }

    elt->valid = 0;
    if (ht->ht_type_methods->elt_destructor) {
        ht->ht_type_methods->elt_destructor(elt);
    }

    /* need to possibly re-insert followers because of the now-gap */
    /* E.g., XYyAaCbz.  (where upper is ideal, lower is not)
     * remove A
     * leaving XYy.aCbz. and we need to reconsider aCbz
     * first a gets reinserted where it wants to be: XYya.Cbz.
     * next  C doesn't move:                         XYya.Cbz.
     * then  b gets put where it wants to be:        XYyabC.z.
     * then  z moves down a little:                  XYyabCz..
     * then  . means we're done
     */
    for (ii = ii + 1;; ii += 1) { /* scan immediately following elements */
        if (ii == capacity) {
            ii = 0;
        }
        elt = &elts[ii];
        if (!elt->valid) {
            break; /* done */
        }
        /* rehash it and move it if necessary */
        for (jj = ht->ht_type_methods->hash_elt(elt) % capacity;; jj += 1) {
            if (jj == capacity) {
                jj = 0;
            }
            if (jj == ii) {
                /* already in place, either ideal or best-for-now */
                break;
            } else if (!elts[jj].valid) {
                /* move it down, and invalidate where it came from */
                elts[jj] = elts[ii];
                elts[ii].valid = 0;
                break;
            } else {
                /* still need to find its place */
            }
        }
    }
    ht->ht_size -= 1;
    return OPAL_SUCCESS;
}

/***************************************************************************/

static uint64_t opal_hash_hash_elt_uint32(opal_hash_element_t *elt)
{
    return elt->key.u32;
}

static const struct opal_hash_type_methods_t opal_hash_type_methods_uint32
    = {NULL, opal_hash_hash_elt_uint32};

int /* OPAL_ return code */
opal_hash_table_get_value_uint32(opal_hash_table_t *ht, uint32_t key, void **value)
{
    size_t ii, capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_uint32:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint32 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_get_value_uint32:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint32;
    for (ii = key % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.u32 == key) {
            *value = elt->value;
            return OPAL_SUCCESS;
        } else {
            /* keey looking */
        }
    }
}

int /* OPAL_ return code */
opal_hash_table_set_value_uint32(opal_hash_table_t *ht, uint32_t key, void *value)
{
    int rc;
    size_t ii, capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_set_value_uint32:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERR_BAD_PARAM;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint32 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_set_value_uint32:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint32;
    for (ii = key % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            /* new entry */
            elt->key.u32 = key;
            elt->value = value;
            elt->valid = 1;
            ht->ht_size += 1;
            if (ht->ht_size >= ht->ht_growth_trigger) {
                if (OPAL_SUCCESS != (rc = opal_hash_grow(ht))) {
                    return rc;
                }
            }
            return OPAL_SUCCESS;
        } else if (elt->key.u32 == key) {
            /* replace existing element */
            elt->value = value;
            return OPAL_SUCCESS;
        } else {
            /* keep looking */
        }
    }
}

int opal_hash_table_remove_value_uint32(opal_hash_table_t *ht, uint32_t key)
{
    size_t ii, capacity = ht->ht_capacity;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_uint32:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint32 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_remove_value_uint32:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint32;
    for (ii = key % capacity;; ii += 1) {
        opal_hash_element_t *elt;
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.u32 == key) {
            return opal_hash_table_remove_elt_at(ht, ii);
        } else {
            /* keep looking */
        }
    }
}

/***************************************************************************/

static uint64_t opal_hash_hash_elt_uint64(opal_hash_element_t *elt)
{
    return elt->key.u64;
}

static const struct opal_hash_type_methods_t opal_hash_type_methods_uint64
    = {NULL, opal_hash_hash_elt_uint64};

int /* OPAL_ return code */
opal_hash_table_get_value_uint64(opal_hash_table_t *ht, uint64_t key, void **value)
{
    size_t ii;
    size_t capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_uint64:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint64 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_get_value_uint64:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint64;
    for (ii = key % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.u64 == key) {
            *value = elt->value;
            return OPAL_SUCCESS;
        } else {
            /* keep looking */
        }
    }
}

int /* OPAL_ return code */
opal_hash_table_set_value_uint64(opal_hash_table_t *ht, uint64_t key, void *value)
{
    int rc;
    size_t ii, capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_set_value_uint64:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERR_BAD_PARAM;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint64 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_set_value_uint64:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint64;
    for (ii = key % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            /* new entry */
            elt->key.u64 = key;
            elt->value = value;
            elt->valid = 1;
            ht->ht_size += 1;
            if (ht->ht_size >= ht->ht_growth_trigger) {
                if (OPAL_SUCCESS != (rc = opal_hash_grow(ht))) {
                    return rc;
                }
            }
            return OPAL_SUCCESS;
        } else if (elt->key.u64 == key) {
            elt->value = value;
            return OPAL_SUCCESS;
        } else {
            /* keep looking */
        }
    }
}

int /* OPAL_ return code */
opal_hash_table_remove_value_uint64(opal_hash_table_t *ht, uint64_t key)
{
    size_t ii, capacity = ht->ht_capacity;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_uint64:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_uint64 != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_remove_value_uint64:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_uint64;
    for (ii = key % capacity;; ii += 1) {
        opal_hash_element_t *elt;
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.u64 == key) {
            return opal_hash_table_remove_elt_at(ht, ii);
        } else {
            /* keep looking */
        }
    }
}

/***************************************************************************/

/* helper function used in several places */
static uint64_t opal_hash_hash_key_ptr(const void *key, size_t key_size)
{
    uint64_t hash;
    const unsigned char *scanner;
    size_t ii;

    hash = 0;
    scanner = (const unsigned char *) key;
    for (ii = 0; ii < key_size; ii += 1) {
        hash = HASH_MULTIPLIER * hash + *scanner++;
    }
    return hash;
}

/* ptr methods */

static void opal_hash_destruct_elt_ptr(opal_hash_element_t *elt)
{
    elt->key.ptr.key_size = 0;
    void *key = (void *) elt->key.ptr.key; /* cast away const so we can free it */
    if (NULL != key) {
        elt->key.ptr.key = NULL;
        free(key);
    }
}

static uint64_t opal_hash_hash_elt_ptr(opal_hash_element_t *elt)
{
    return opal_hash_hash_key_ptr(elt->key.ptr.key, elt->key.ptr.key_size);
}

static const struct opal_hash_type_methods_t opal_hash_type_methods_ptr
    = {opal_hash_destruct_elt_ptr, opal_hash_hash_elt_ptr};

int /* OPAL_ return code */
opal_hash_table_get_value_ptr(opal_hash_table_t *ht, const void *key, size_t key_size, void **value)
{
    size_t ii, capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_ptr:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_ptr != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_get_value_ptr:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_ptr;
    for (ii = opal_hash_hash_key_ptr(key, key_size) % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.ptr.key_size == key_size
                   && 0 == memcmp(elt->key.ptr.key, key, key_size)) {
            *value = elt->value;
            return OPAL_SUCCESS;
        } else {
            /* keep going */
        }
    }
}

int /* OPAL_ return code */
opal_hash_table_set_value_ptr(opal_hash_table_t *ht, const void *key, size_t key_size, void *value)
{
    int rc;
    size_t ii, capacity = ht->ht_capacity;
    opal_hash_element_t *elt;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_set_value_ptr:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERR_BAD_PARAM;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_ptr != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_set_value_ptr:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_ptr;
    for (ii = opal_hash_hash_key_ptr(key, key_size) % capacity;; ii += 1) {
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            /* new entry */
            void *key_local = malloc(key_size);
            memcpy(key_local, key, key_size);
            elt->key.ptr.key = key_local;
            elt->key.ptr.key_size = key_size;
            elt->value = value;
            elt->valid = 1;
            ht->ht_size += 1;
            if (ht->ht_size >= ht->ht_growth_trigger) {
                if (OPAL_SUCCESS != (rc = opal_hash_grow(ht))) {
                    return rc;
                }
            }
            return OPAL_SUCCESS;
        } else if (elt->key.ptr.key_size == key_size
                   && 0 == memcmp(elt->key.ptr.key, key, key_size)) {
            /* replace existing value */
            elt->value = value;
            return OPAL_SUCCESS;
        } else {
            /* keep looking */
        }
    }
}

int /* OPAL_ return code */
opal_hash_table_remove_value_ptr(opal_hash_table_t *ht, const void *key, size_t key_size)
{
    size_t ii, capacity = ht->ht_capacity;

#if OPAL_ENABLE_DEBUG
    if (capacity == 0) {
        opal_output(0, "opal_hash_table_get_value_ptr:"
                       "opal_hash_table_init() has not been called");
        return OPAL_ERROR;
    }
    if (NULL != ht->ht_type_methods && &opal_hash_type_methods_ptr != ht->ht_type_methods) {
        opal_output(0, "opal_hash_table_remove_value_ptr:"
                       "hash table is for a different key type");
        return OPAL_ERROR;
    }
#endif

    ht->ht_type_methods = &opal_hash_type_methods_ptr;
    for (ii = opal_hash_hash_key_ptr(key, key_size) % capacity;; ii += 1) {
        opal_hash_element_t *elt;
        if (ii == capacity) {
            ii = 0;
        }
        elt = &ht->ht_table[ii];
        if (!elt->valid) {
            return OPAL_ERR_NOT_FOUND;
        } else if (elt->key.ptr.key_size == key_size
                   && 0 == memcmp(elt->key.ptr.key, key, key_size)) {
            return opal_hash_table_remove_elt_at(ht, ii);
        } else {
            /* keep looking */
        }
    }
}

/***************************************************************************/
/* Traversals */

static int /* OPAL_ return code */
opal_hash_table_get_next_elt(opal_hash_table_t *ht,
                             opal_hash_element_t *prev_elt, /* NULL means find first */
                             opal_hash_element_t **next_elt)
{
    opal_hash_element_t *elts = ht->ht_table;
    size_t ii, capacity = ht->ht_capacity;

    for (ii = (NULL == prev_elt ? 0 : (prev_elt - elts) + 1); ii < capacity; ii += 1) {
        opal_hash_element_t *elt = &elts[ii];
        if (elt->valid) {
            *next_elt = elt;
            return OPAL_SUCCESS;
        }
    }
    return OPAL_ERROR;
}

int /* OPAL_ return code */
opal_hash_table_get_first_key_uint32(opal_hash_table_t *ht, uint32_t *key, void **value,
                                     void **node)
{
    return opal_hash_table_get_next_key_uint32(ht, key, value, NULL, node);
}

int /* OPAL_ return code */
opal_hash_table_get_next_key_uint32(opal_hash_table_t *ht, uint32_t *key, void **value,
                                    void *in_node, void **out_node)
{
    opal_hash_element_t *elt;
    if (OPAL_SUCCESS == opal_hash_table_get_next_elt(ht, (opal_hash_element_t *) in_node, &elt)) {
        *key = elt->key.u32;
        *value = elt->value;
        *out_node = elt;
        return OPAL_SUCCESS;
    }
    return OPAL_ERROR;
}

int /* OPAL_ return code */
opal_hash_table_get_first_key_ptr(opal_hash_table_t *ht, void **key, size_t *key_size, void **value,
                                  void **node)
{
    return opal_hash_table_get_next_key_ptr(ht, key, key_size, value, NULL, node);
}

int /* OPAL_ return code */
opal_hash_table_get_next_key_ptr(opal_hash_table_t *ht, void **key, size_t *key_size, void **value,
                                 void *in_node, void **out_node)
{
    opal_hash_element_t *elt;
    if (OPAL_SUCCESS == opal_hash_table_get_next_elt(ht, (opal_hash_element_t *) in_node, &elt)) {
        *key = (void *) elt->key.ptr.key;
        *key_size = elt->key.ptr.key_size;
        *value = elt->value;
        *out_node = elt;
        return OPAL_SUCCESS;
    }
    return OPAL_ERROR;
}

int /* OPAL_ return code */
opal_hash_table_get_first_key_uint64(opal_hash_table_t *ht, uint64_t *key, void **value,
                                     void **node)
{
    return opal_hash_table_get_next_key_uint64(ht, key, value, NULL, node);
}

int /* OPAL_ return code */
opal_hash_table_get_next_key_uint64(opal_hash_table_t *ht, uint64_t *key, void **value,
                                    void *in_node, void **out_node)
{
    opal_hash_element_t *elt;
    if (OPAL_SUCCESS == opal_hash_table_get_next_elt(ht, (opal_hash_element_t *) in_node, &elt)) {
        *key = elt->key.u64;
        *value = elt->value;
        *out_node = elt;
        return OPAL_SUCCESS;
    }
    return OPAL_ERROR;
}

/* there was/is no traversal for the ptr case; it would go here */
/* interact with the class-like mechanism */

static void opal_proc_table_construct(opal_proc_table_t *pt);
static void opal_proc_table_destruct(opal_proc_table_t *pt);

OBJ_CLASS_INSTANCE(opal_proc_table_t, opal_hash_table_t, opal_proc_table_construct,
                   opal_proc_table_destruct);

static void opal_proc_table_construct(opal_proc_table_t *pt)
{
    pt->pt_size = 0;
}

static void opal_proc_table_destruct(opal_proc_table_t *pt)
{
}

/*
 * Init, etc
 */

int opal_proc_table_init(opal_proc_table_t *pt, size_t jobids, size_t vpids)
{
    int rc;
    if (OPAL_SUCCESS != (rc = opal_hash_table_init(&pt->super, jobids))) {
        return rc;
    }
    pt->vpids_size = vpids;
    return OPAL_SUCCESS;
}

int opal_proc_table_remove_all(opal_proc_table_t *pt)
{
    int rc;
    opal_hash_table_t *vpids;
    uint32_t jobid;
    void *node;

    rc = opal_hash_table_get_first_key_uint32(&pt->super, &jobid, (void **) &vpids, &node);

    if (OPAL_SUCCESS == rc) {
        do {
            if (NULL != vpids) {
                opal_hash_table_remove_all(vpids);
                OBJ_RELEASE(vpids);
            }
            rc = opal_hash_table_get_next_key_uint32(&pt->super, &jobid, (void **) &vpids, node,
                                                     &node);
        } while (OPAL_SUCCESS == rc);
    }

    return rc;
}

int opal_proc_table_get_value(opal_proc_table_t *pt, opal_process_name_t key, void **ptr)
{
    int rc;
    opal_hash_table_t *vpids;
    rc = opal_hash_table_get_value_uint32(&pt->super, key.jobid, (void **) &vpids);
    if (rc != OPAL_SUCCESS) {
        return rc;
    }
    rc = opal_hash_table_get_value_uint32(vpids, key.vpid, ptr);
    return rc;
}

int opal_proc_table_set_value(opal_proc_table_t *pt, opal_process_name_t key, void *value)
{
    int rc;
    opal_hash_table_t *vpids;
    rc = opal_hash_table_get_value_uint32(&pt->super, key.jobid, (void **) &vpids);
    if (rc != OPAL_SUCCESS) {
        vpids = OBJ_NEW(opal_hash_table_t);
        if (NULL == vpids) {
            return OPAL_ERR_OUT_OF_RESOURCE;
        }
        if (OPAL_SUCCESS != (rc = opal_hash_table_init(vpids, pt->vpids_size))) {
            OBJ_RELEASE(vpids);
            return rc;
        }
        if (OPAL_SUCCESS != (rc = opal_hash_table_set_value_uint32(&pt->super, key.jobid, vpids))) {
            OBJ_RELEASE(vpids);
            return rc;
        }
    }
    rc = opal_hash_table_set_value_uint32(vpids, key.vpid, value);
    return rc;
}

int opal_proc_table_remove_value(opal_proc_table_t *pt, opal_process_name_t key)
{
    int rc;
    opal_hash_table_t *vpids;
    if (OPAL_SUCCESS
        != (rc = opal_hash_table_get_value_uint32(&pt->super, key.jobid, (void **) &vpids))) {
        return rc;
    }
    if (OPAL_SUCCESS == (rc = opal_hash_table_remove_value_uint32(vpids, key.vpid))) {
        if (0 == vpids->ht_size) {
            opal_hash_table_remove_value_uint32(&pt->super, key.jobid);
            OBJ_RELEASE(vpids);
        }
    }
    return rc;
}

int opal_proc_table_get_first_key(opal_proc_table_t *pt, opal_process_name_t *key, void **value,
                                  void **node1, void **node2)
{
    int rc;
    uint32_t jobid, vpid;
    opal_hash_table_t *vpids;
    if (OPAL_SUCCESS
        != (rc = opal_hash_table_get_first_key_uint32(&pt->super, &jobid, (void **) &vpids,
                                                      node1))) {
        return rc;
    }
    rc = opal_hash_table_get_first_key_uint32(vpids, &vpid, value, node2);
    if (OPAL_SUCCESS == rc) {
        key->jobid = jobid;
        key->vpid = vpid;
    }
    return rc;
}

int opal_proc_table_get_next_key(opal_proc_table_t *pt, opal_process_name_t *key, void **value,
                                 void *in_node1, void **out_node1, void *in_node2, void **out_node2)
{
    int rc;
    uint32_t jobid = ((opal_hash_element_t *) in_node1)->key.u32;
    uint32_t vpid;
    opal_hash_table_t *vpids = ((opal_hash_element_t *) in_node1)->value;

    rc = opal_hash_table_get_next_key_uint32(vpids, &vpid, value, in_node2, out_node2);
    if (OPAL_SUCCESS == rc) {
        key->jobid = jobid;
        key->vpid = vpid;
        *out_node1 = in_node1;
        return rc;
    }
    if (OPAL_SUCCESS
        != (rc = opal_hash_table_get_next_key_uint32(&pt->super, &jobid, (void **) &vpids, in_node1,
                                                     out_node1))) {
        return rc;
    }
    rc = opal_hash_table_get_first_key_uint32(vpids, &vpid, value, out_node2);
    if (OPAL_SUCCESS == rc) {
        key->jobid = jobid;
        key->vpid = vpid;
    }
    return rc;
}