mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Merge remote-tracking branch 'origin/topic/jazoff/datastructures-defer-init'
* origin/topic/jazoff/datastructures-defer-init: Defer initialization of lists and dicts until an item is added.
This commit is contained in:
commit
389fe2bc2a
6 changed files with 59 additions and 44 deletions
42
src/Dict.cc
42
src/Dict.cc
|
@ -17,6 +17,10 @@
|
|||
// is prime.
|
||||
#define PRIME_THRESH 1000
|
||||
|
||||
// Default number of hash buckets in dictionary. The dictionary will
|
||||
// increase the size of the hash table as needed.
|
||||
#define DEFAULT_DICT_SIZE 16
|
||||
|
||||
class DictEntry {
|
||||
public:
|
||||
DictEntry(void* k, int l, hash_t h, void* val)
|
||||
|
@ -53,7 +57,7 @@ public:
|
|||
|
||||
Dictionary::Dictionary(dict_order ordering, int initial_size)
|
||||
{
|
||||
Init(initial_size);
|
||||
tbl = 0;
|
||||
tbl2 = 0;
|
||||
|
||||
if ( ordering == ORDERED )
|
||||
|
@ -61,14 +65,17 @@ Dictionary::Dictionary(dict_order ordering, int initial_size)
|
|||
else
|
||||
order = 0;
|
||||
|
||||
SetDensityThresh(DEFAULT_DENSITY_THRESH);
|
||||
|
||||
delete_func = 0;
|
||||
tbl_next_ind = 0;
|
||||
|
||||
cumulative_entries = 0;
|
||||
num_buckets = num_entries = max_num_entries = thresh_entries = 0;
|
||||
den_thresh = 0;
|
||||
num_buckets2 = num_entries2 = max_num_entries2 = thresh_entries2 = 0;
|
||||
den_thresh2 = 0;
|
||||
|
||||
if ( initial_size > 0 )
|
||||
Init(initial_size);
|
||||
}
|
||||
|
||||
Dictionary::~Dictionary()
|
||||
|
@ -80,12 +87,15 @@ Dictionary::~Dictionary()
|
|||
void Dictionary::Clear()
|
||||
{
|
||||
DeInit();
|
||||
Init(2);
|
||||
tbl = 0;
|
||||
tbl2 = 0;
|
||||
}
|
||||
|
||||
void Dictionary::DeInit()
|
||||
{
|
||||
if ( ! tbl )
|
||||
return;
|
||||
|
||||
for ( int i = 0; i < num_buckets; ++i )
|
||||
if ( tbl[i] )
|
||||
{
|
||||
|
@ -127,6 +137,9 @@ void Dictionary::DeInit()
|
|||
|
||||
void* Dictionary::Lookup(const void* key, int key_size, hash_t hash) const
|
||||
{
|
||||
if ( ! tbl && ! tbl2 )
|
||||
return 0;
|
||||
|
||||
hash_t h;
|
||||
PList(DictEntry)* chain;
|
||||
|
||||
|
@ -155,6 +168,9 @@ void* Dictionary::Lookup(const void* key, int key_size, hash_t hash) const
|
|||
void* Dictionary::Insert(void* key, int key_size, hash_t hash, void* val,
|
||||
int copy_key)
|
||||
{
|
||||
if ( ! tbl )
|
||||
Init(DEFAULT_DICT_SIZE);
|
||||
|
||||
DictEntry* new_entry = new DictEntry(key, key_size, hash, val);
|
||||
void* old_val = Insert(new_entry, copy_key);
|
||||
|
||||
|
@ -179,6 +195,9 @@ void* Dictionary::Insert(void* key, int key_size, hash_t hash, void* val,
|
|||
void* Dictionary::Remove(const void* key, int key_size, hash_t hash,
|
||||
bool dont_delete)
|
||||
{
|
||||
if ( ! tbl && ! tbl2 )
|
||||
return 0;
|
||||
|
||||
hash_t h;
|
||||
PList(DictEntry)* chain;
|
||||
int* num_entries_ptr;
|
||||
|
@ -280,6 +299,14 @@ void Dictionary::StopIteration(IterCookie* cookie) const
|
|||
|
||||
void* Dictionary::NextEntry(HashKey*& h, IterCookie*& cookie, int return_hash) const
|
||||
{
|
||||
if ( ! tbl && ! tbl2 )
|
||||
{
|
||||
const_cast<PList(IterCookie)*>(&cookies)->remove(cookie);
|
||||
delete cookie;
|
||||
cookie = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// If there are any inserted entries, return them first.
|
||||
// That keeps the list small and helps avoiding searching
|
||||
// a large list when deleting an entry.
|
||||
|
@ -366,6 +393,7 @@ void Dictionary::Init(int size)
|
|||
tbl[i] = 0;
|
||||
|
||||
max_num_entries = num_entries = 0;
|
||||
SetDensityThresh(DEFAULT_DENSITY_THRESH);
|
||||
}
|
||||
|
||||
void Dictionary::Init2(int size)
|
||||
|
@ -382,6 +410,9 @@ void Dictionary::Init2(int size)
|
|||
// private
|
||||
void* Dictionary::Insert(DictEntry* new_entry, int copy_key)
|
||||
{
|
||||
if ( ! tbl )
|
||||
Init(DEFAULT_DICT_SIZE);
|
||||
|
||||
PList(DictEntry)** ttbl;
|
||||
int* num_entries_ptr;
|
||||
int* max_num_entries_ptr;
|
||||
|
@ -568,6 +599,9 @@ unsigned int Dictionary::MemoryAllocation() const
|
|||
{
|
||||
int size = padded_sizeof(*this);
|
||||
|
||||
if ( ! tbl )
|
||||
return size;
|
||||
|
||||
for ( int i = 0; i < num_buckets; ++i )
|
||||
if ( tbl[i] )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue