Blender Git Commit Log
Git Commits -> Revision 1c44d08
Revision 1c44d08 by Jacques Lucke (master) September 13, 2019, 08:06 (GMT) |
BLI: new C++ hash table data structures This commit adds some new hashing based data structures to blenlib. All of them use open addressing with probing currently. Furthermore, they support small object optimization, but it is not customizable yet. I'll add support for this when necessary. The following main data structures are included: **Set** A collection of values, where every value must exist at most once. This is similar to a Python `set`. **SetVector** A combination of a Set and a Vector. It supports fast search for elements and maintains insertion order when there are no deletes. All elements are stored in a continuous array. So they can be iterated over using a normal `ArrayRef`. **Map** A set of key-value-pairs, where every key must exist at most once. This is similar to a Python `dict`. **StringMap** A special map for the case when the keys are strings. This case is fairly common and allows for some optimizations. Most importantly, many unnecessary allocations can be avoided by storing strings in a single buffer. Furthermore, the interface of this class uses `StringRef` to avoid unnecessary conversions. This commit is a continuation of rB369d5e8ad2bb7. |
Commit Details:
Full Hash: 1c44d08a69eb3e66c7f942d748f549d6b8ca138f
Parent Commit: 8d12c2a
Lines Changed: +3037, -0
10 Added Paths:
/source/blender/blenlib/BLI_hash_cxx.h (+100, -0) (View)
/source/blender/blenlib/BLI_map.h (+596, -0) (View)
/source/blender/blenlib/BLI_open_addressing.h (+302, -0) (View)
/source/blender/blenlib/BLI_set.h (+470, -0) (View)
/source/blender/blenlib/BLI_set_vector.h (+366, -0) (View)
/source/blender/blenlib/BLI_string_map.h (+410, -0) (View)
/tests/gtests/blenlib/BLI_map_test.cc (+243, -0) (View)
/tests/gtests/blenlib/BLI_set_test.cc (+189, -0) (View)
/tests/gtests/blenlib/BLI_set_vector_test.cc (+102, -0) (View)
/tests/gtests/blenlib/BLI_string_map_test.cc (+201, -0) (View)
/source/blender/blenlib/BLI_map.h (+596, -0) (View)
/source/blender/blenlib/BLI_open_addressing.h (+302, -0) (View)
/source/blender/blenlib/BLI_set.h (+470, -0) (View)
/source/blender/blenlib/BLI_set_vector.h (+366, -0) (View)
/source/blender/blenlib/BLI_string_map.h (+410, -0) (View)
/tests/gtests/blenlib/BLI_map_test.cc (+243, -0) (View)
/tests/gtests/blenlib/BLI_set_test.cc (+189, -0) (View)
/tests/gtests/blenlib/BLI_set_vector_test.cc (+102, -0) (View)
/tests/gtests/blenlib/BLI_string_map_test.cc (+201, -0) (View)
6 Modified Paths:
/.clang-format (+1, -0) (Diff)
/source/blender/blenlib/BLI_math_base.h (+2, -0) (Diff)
/source/blender/blenlib/CMakeLists.txt (+6, -0) (Diff)
/source/blender/blenlib/intern/math_base_inline.c (+15, -0) (Diff)
/tests/gtests/blenlib/BLI_math_base_test.cc (+30, -0) (Diff)
/tests/gtests/blenlib/CMakeLists.txt (+4, -0) (Diff)
/source/blender/blenlib/BLI_math_base.h (+2, -0) (Diff)
/source/blender/blenlib/CMakeLists.txt (+6, -0) (Diff)
/source/blender/blenlib/intern/math_base_inline.c (+15, -0) (Diff)
/tests/gtests/blenlib/BLI_math_base_test.cc (+30, -0) (Diff)
/tests/gtests/blenlib/CMakeLists.txt (+4, -0) (Diff)