123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- #include "ua_namespace.h"
- #include <string.h>
- #include <stdio.h>
- static hash_t hash_string(const UA_Byte * data, UA_Int32 len);
- static hash_t hash(const UA_NodeId * n);
- static unsigned int higher_prime_index(unsigned long n);
- static inline hash_t mod_1(hash_t x, hash_t y, hash_t inv, int shift);
- static inline hash_t mod(hash_t hash, const namespace * ns);
- static inline hash_t htab_mod_m2(hash_t hash, const namespace * ns);
- static inline void clear_slot(namespace * ns, ns_entry * slot);
- static void clear_ns(namespace * ns);
- static UA_Int32 find_slot(const namespace * ns, ns_entry ** slot, const UA_NodeId * nodeid);
- static ns_entry *find_empty_slot(const namespace * ns, hash_t hash);
- static UA_Int32 expand(namespace * ns);
- /* /\* We store UA_MethodNode_Callback instead of UA_MethodNode in the namespace. Pointer casting to */
- /* UA_MethodNode is possible since pointers point to the first element anyway. *\/ */
- /* typedef struct UA_MethodNode_Callback_T { */
- /* UA_MethodNode *method_node; */
- /* UA_Int32(*method_callback) (UA_list_List * input_args, UA_list_List * output_args); */
- /* } UA_MethodNode_Callback; */
- UA_Int32 init_tc(transaction_context * tc) {
- return UA_list_init((UA_list_List *) tc);
- }
- /* The central data structure is a hash-map of UA_Node objects. Entry lookup via Algorithm D from
- Knuth's TAOCP (no linked lists here). Table of primes and mod-functions are from libiberty
- (licensed under LGPL) */
- struct prime_ent {
- hash_t prime;
- hash_t inv;
- hash_t inv_m2; /* inverse of prime-2 */
- hash_t shift;
- };
- static struct prime_ent const prime_tab[] = {
- {7, 0x24924925, 0x9999999b, 2},
- {13, 0x3b13b13c, 0x745d1747, 3},
- {31, 0x08421085, 0x1a7b9612, 4},
- {61, 0x0c9714fc, 0x15b1e5f8, 5},
- {127, 0x02040811, 0x0624dd30, 6},
- {251, 0x05197f7e, 0x073260a5, 7},
- {509, 0x01824366, 0x02864fc8, 8},
- {1021, 0x00c0906d, 0x014191f7, 9},
- {2039, 0x0121456f, 0x0161e69e, 10},
- {4093, 0x00300902, 0x00501908, 11},
- {8191, 0x00080041, 0x00180241, 12},
- {16381, 0x000c0091, 0x00140191, 13},
- {32749, 0x002605a5, 0x002a06e6, 14},
- {65521, 0x000f00e2, 0x00110122, 15},
- {131071, 0x00008001, 0x00018003, 16},
- {262139, 0x00014002, 0x0001c004, 17},
- {524287, 0x00002001, 0x00006001, 18},
- {1048573, 0x00003001, 0x00005001, 19},
- {2097143, 0x00004801, 0x00005801, 20},
- {4194301, 0x00000c01, 0x00001401, 21},
- {8388593, 0x00001e01, 0x00002201, 22},
- {16777213, 0x00000301, 0x00000501, 23},
- {33554393, 0x00001381, 0x00001481, 24},
- {67108859, 0x00000141, 0x000001c1, 25},
- {134217689, 0x000004e1, 0x00000521, 26},
- {268435399, 0x00000391, 0x000003b1, 27},
- {536870909, 0x00000019, 0x00000029, 28},
- {1073741789, 0x0000008d, 0x00000095, 29},
- {2147483647, 0x00000003, 0x00000007, 30},
- /* Avoid "decimal constant so large it is unsigned" for 4294967291. */
- {0xfffffffb, 0x00000006, 0x00000008, 31}
- };
- UA_Int32 create_ns(namespace ** result, uint32_t size) {
- namespace *ns = UA_NULL;
- uint32_t sizePrimeIndex = higher_prime_index(size);
- size = prime_tab[sizePrimeIndex].prime;
- if(UA_alloc((void **)&ns, sizeof(namespace)) != UA_SUCCESS)
- return UA_ERR_NO_MEMORY;
- if(UA_alloc((void **)&ns->entries, sizeof(ns_entry) * size) != UA_SUCCESS) {
- UA_free(ns);
- return UA_ERR_NO_MEMORY;
- }
- /**
- set entries to zero:
- ns->entries[i].lock = UA_NUll;
- ns->entries[i].node = UA_NULL;
- */
- memset(ns->entries, 0, size * sizeof(ns_entry));
- ns->size = size;
- ns->count = 0;
- ns->sizePrimeIndex = sizePrimeIndex;
- *result = ns;
- return UA_SUCCESS;
- }
- void empty_ns(namespace * ns) {
- clear_ns(ns);
- /* Downsize the table. */
- if(ns->size > 1024 * 1024 / sizeof(ns_entry)) {
- int nindex = higher_prime_index(1024 / sizeof(ns_entry));
- int nsize = prime_tab[nindex].prime;
- UA_free(ns->entries);
- UA_alloc((void **)&ns->entries, sizeof(ns_entry) * nsize); // FIXME: Check return value
- ns->size = nsize;
- ns->sizePrimeIndex = nindex;
- }
- }
- /* This function frees all memory allocated for a namespace */
- void delete_ns(namespace * ns) {
- clear_ns(ns);
- UA_free(ns->entries);
- UA_free(ns);
- }
- UA_Int32 insert_node(namespace * ns, UA_Node * node) {
- if(ns->size * 3 <= ns->count * 4) {
- if(expand(ns) != UA_SUCCESS)
- return UA_ERROR;
- }
- hash_t h = hash(&node->nodeId);
- ns_entry *slot = find_empty_slot(ns, h);
- #ifdef MULTITHREADING
- if(UA_alloc((void **)&slot->lock, sizeof(pthread_rwlock_t)) != UA_SUCCESS)
- return UA_ERR_NO_MEMORY;
- pthread_rwlock_init((pthread_rwlock_t *) slot->lock, NULL);
- #endif
- slot->node = node;
- ns->count++;
- return UA_SUCCESS;
- }
- UA_Int32 get_node(namespace const *ns, const UA_NodeId * nodeid, UA_Node const **result,
- ns_lock ** lock) {
- ns_entry *slot;
- if(find_slot(ns, &slot, nodeid) != UA_SUCCESS)
- return UA_ERROR;
- #ifdef MULTITHREADING
- if(pthread_rwlock_rdlock((pthread_rwlock_t *) slot->lock) != 0)
- return UA_ERROR;
- *lock = slot->lock;
- #endif
- *result = slot->node;
- return UA_SUCCESS;
- }
- UA_Int32 get_writable_node(const namespace * ns, const UA_NodeId * nodeid, UA_Node ** result,
- ns_lock ** lock) {
- ns_entry *slot;
- if(find_slot(ns, &slot, nodeid) != UA_SUCCESS)
- return UA_ERROR;
- #ifdef MULTITHREADING
- if(pthread_rwlock_wrlock((pthread_rwlock_t *) slot->lock) != 0)
- return UA_ERROR;
- *lock = slot->lock;
- #endif
- *result = slot->node;
- return UA_SUCCESS;
- }
- #ifdef MULTITHREADING
- static inline void release_context_walker(void *lock) {
- pthread_rwlock_unlock(lock);
- }
- #endif
- UA_Int32 get_tc_node(namespace * ns, transaction_context * tc, const UA_NodeId * nodeid,
- UA_Node ** const result, ns_lock ** lock) {
- ns_entry *slot;
- if(find_slot(ns, &slot, nodeid) != UA_SUCCESS)
- return UA_ERROR;
- #ifdef MULTITHREADING
- if(pthread_rwlock_tryrdlock((pthread_rwlock_t *) slot->lock) != 0) {
- /* Transaction failed. Release all acquired locks and bail out. */
- UA_list_destroy((UA_list_List *) tc, release_context_walker);
- return UA_ERROR;
- }
- UA_list_addPayloadToBack((UA_list_List *) tc, slot->lock);
- *lock = slot->lock;
- #endif
- *result = slot->node;
- return UA_SUCCESS;
- }
- UA_Int32 get_tc_writable_node(namespace * ns, transaction_context * tc, const UA_NodeId * nodeid,
- UA_Node ** result, ns_lock ** lock) {
- ns_entry *slot;
- if(find_slot(ns, &slot, nodeid) != UA_SUCCESS)
- return UA_ERROR;
- #ifdef MULTITHREADING
- if(pthread_rwlock_trywrlock((pthread_rwlock_t *) slot->lock) != 0) {
- /* Transaction failed. Release all acquired locks and bail out. */
- UA_list_destroy((UA_list_List *) tc, release_context_walker);
- return UA_ERROR;
- }
- UA_list_addPayloadToBack((UA_list_List *) tc, slot->lock);
- *lock = slot->lock;
- #endif
- *result = slot->node;
- return UA_SUCCESS;
- }
- void delete_node(namespace * ns, UA_NodeId * nodeid) {
- ns_entry *slot;
- if(find_slot(ns, &slot, nodeid) != UA_SUCCESS)
- return;
- // TODO: Check if deleting the node makes the namespace inconsistent.
- clear_slot(ns, slot);
- /* Downsize the hashmap if it is very empty */
- if(ns->count * 8 < ns->size && ns->size > 32)
- expand(ns);
- }
- /* Hashing inspired by code from from http://www.azillionmonkeys.com/qed/hash.html, licensed under
- the LGPL 2.1 */
- #undef get16bits
- #if (defined(__GNUC__) && defined(__i386__)) || defined(__WATCOMC__) || \
- defined(_MSC_VER) || defined (__BORLANDC__) || defined (__TURBOC__)
- #define get16bits(d) (*((const uint16_t *) (d)))
- #endif
- #if !defined (get16bits)
- #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8) + \
- (uint32_t)(((const uint8_t *)(d))[0]) )
- #endif
- static hash_t hash_string(const UA_Byte * data, UA_Int32 len) {
- hash_t hash = len;
- hash_t tmp;
- int rem;
- if(len <= 0 || data == UA_NULL)
- return 0;
- rem = len & 3;
- len >>= 2;
- /* Main loop */
- for(; len > 0; len--) {
- hash += get16bits(data);
- tmp = (get16bits(data + 2) << 11) ^ hash;
- hash = (hash << 16) ^ tmp;
- data += 2 * sizeof(uint16_t);
- hash += hash >> 11;
- }
- /* Handle end cases */
- switch (rem) {
- case 3:
- hash += get16bits(data);
- hash ^= hash << 16;
- hash ^= ((signed char)data[sizeof(uint16_t)]) << 18;
- hash += hash >> 11;
- break;
- case 2:
- hash += get16bits(data);
- hash ^= hash << 11;
- hash += hash >> 17;
- break;
- case 1:
- hash += (signed char)*data;
- hash ^= hash << 10;
- hash += hash >> 1;
- break;
- }
- /* Force "avalanching" of final 127 bits */
- hash ^= hash << 3;
- hash += hash >> 5;
- hash ^= hash << 4;
- hash += hash >> 17;
- hash ^= hash << 25;
- hash += hash >> 6;
- return hash;
- }
- static hash_t hash(const UA_NodeId * n) {
- switch (n->encodingByte) {
- case UA_NODEIDTYPE_TWOBYTE:
- case UA_NODEIDTYPE_FOURBYTE:
- case UA_NODEIDTYPE_NUMERIC:
- return (n->identifier.numeric * 2654435761) % 2 ^ 32; // Knuth's multiplicative hashing
- case UA_NODEIDTYPE_STRING:
- return hash_string(n->identifier.string.data, n->identifier.string.length);
- case UA_NODEIDTYPE_GUID:
- return hash_string((UA_Byte *) & (n->identifier.guid), sizeof(UA_Guid));
- case UA_NODEIDTYPE_BYTESTRING:
- return hash_string((UA_Byte *) n->identifier.byteString.data,
- n->identifier.byteString.length);
- default:
- return 0;
- }
- }
- /* The following function returns an index into the above table of the nearest prime number which
- is greater than N, and near a power of two. */
- static unsigned int higher_prime_index(unsigned long n) {
- unsigned int low = 0;
- unsigned int high = sizeof(prime_tab) / sizeof(prime_tab[0]);
- while(low != high) {
- unsigned int mid = low + (high - low) / 2;
- if(n > prime_tab[mid].prime)
- low = mid + 1;
- else
- high = mid;
- }
- /* if (n > prime_tab[low].prime) */
- /* abort (); */
- return low;
- }
- /* Return X % Y. */
- static inline hash_t mod_1(hash_t x, hash_t y, hash_t inv, int shift) {
- /* The multiplicative inverses computed above are for 32-bit types, and requires that we are
- able to compute a highpart multiply. */
- #ifdef UNSIGNED_64BIT_TYPE
- __extension__ typedef UNSIGNED_64BIT_TYPE ull;
- if(sizeof(hash_t) * CHAR_BIT <= 32) {
- hash_t t1, t2, t3, t4, q, r;
- t1 = ((ull) x * inv) >> 32;
- t2 = x - t1;
- t3 = t2 >> 1;
- t4 = t1 + t3;
- q = t4 >> shift;
- r = x - (q * y);
- return r;
- }
- #endif
- return x % y; /* Otherwise just use the native division routines. */
- }
- static inline hash_t mod(hash_t h, const namespace * ns) {
- const struct prime_ent *p = &prime_tab[ns->sizePrimeIndex];
- return mod_1(h, p->prime, p->inv, p->shift);
- }
- static inline hash_t mod_m2(hash_t h, const namespace * ns) {
- const struct prime_ent *p = &prime_tab[ns->sizePrimeIndex];
- return 1 + mod_1(h, p->prime - 2, p->inv_m2, p->shift);
- }
- static inline void clear_slot(namespace * ns, ns_entry * slot) {
- if(slot->node == UA_NULL)
- return;
- #ifdef MULTITHREADING
- pthread_rwlock_wrlock((pthread_rwlock_t *) slot->lock); /* Get write lock. */
- #endif
- switch (slot->node->nodeClass) {
- case UA_NODECLASS_OBJECT:
- UA_ObjectNode_delete((UA_ObjectNode *) slot->node);
- break;
- case UA_NODECLASS_VARIABLE:
- UA_VariableNode_delete((UA_VariableNode *) slot->node);
- break;
- case UA_NODECLASS_METHOD:
- UA_MethodNode_delete((UA_MethodNode *) slot->node);
- break;
- case UA_NODECLASS_OBJECTTYPE:
- UA_ObjectTypeNode_delete((UA_ObjectTypeNode *) slot->node);
- break;
- case UA_NODECLASS_VARIABLETYPE:
- UA_VariableTypeNode_delete((UA_VariableTypeNode *) slot->node);
- break;
- case UA_NODECLASS_REFERENCETYPE:
- UA_ReferenceTypeNode_delete((UA_ReferenceTypeNode *) slot->node);
- break;
- case UA_NODECLASS_DATATYPE:
- UA_DataTypeNode_delete((UA_DataTypeNode *) slot->node);
- break;
- case UA_NODECLASS_VIEW:
- UA_ViewNode_delete((UA_ViewNode *) slot->node);
- break;
- default:
- break;
- }
- slot->node = UA_NULL;
- #ifdef MULTITHREADING
- pthread_rwlock_destroy((pthread_rwlock_t *) slot->lock);
- UA_free(slot->lock);
- #endif
- }
- /* Delete all entries */
- static void clear_ns(namespace * ns) {
- uint32_t size = ns->size;
- ns_entry *entries = ns->entries;
- for(uint32_t i = 0; i < size; i++)
- clear_slot(ns, &entries[i]);
- ns->count = 0;
- }
- static UA_Int32 find_slot(const namespace * ns, ns_entry ** slot, const UA_NodeId * nodeid) {
- hash_t h = hash(nodeid);
- hash_t index, hash2;
- uint32_t size;
- ns_entry *entry;
- size = ns->size;
- index = mod(h, ns);
- entry = &ns->entries[index];
- if(entry == UA_NULL)
- return UA_ERROR;
- if(UA_NodeId_compare(&entry->node->nodeId, nodeid) == UA_EQUAL) {
- *slot = entry;
- return UA_SUCCESS;
- }
- hash2 = mod_m2(h, ns);
- for(;;) {
- index += hash2;
- if(index >= size)
- index -= size;
- entry = &ns->entries[index];
- if(entry == UA_NULL)
- return UA_ERROR;
- if(UA_NodeId_compare(&entry->node->nodeId, nodeid) == UA_EQUAL) {
- *slot = entry;
- return UA_SUCCESS;
- }
- }
- return UA_SUCCESS;
- }
- UA_Int32 iterate_ns(const namespace * ns, node_visitor visitor) {
- uint32_t i;
- for(i = 0; i < ns->size; i++) {
- ns_entry *entry = &ns->entries[i];
- if(entry != UA_NULL && visitor != UA_NULL)
- visitor(entry->node);
- }
- return UA_SUCCESS;
- }
- /* Always returns an empty slot. This is inevitable if the entries are not completely full. */
- static ns_entry *find_empty_slot(const namespace * ns, hash_t h) {
- hash_t index = mod(h, ns);
- uint32_t size = ns->size;
- ns_entry *slot = &ns->entries[index];
- if(slot->node == UA_NULL)
- return slot;
- hash_t hash2 = mod_m2(h, ns);
- for(;;) {
- index += hash2;
- if(index >= size)
- index -= size;
- slot = &ns->entries[index];
- if(slot->node == UA_NULL)
- return slot;
- }
- return UA_NULL;
- }
- /* The following function changes size of memory allocated for the entries and repeatedly inserts
- the table elements. The occupancy of the table after the call will be about 50%. Naturally the
- hash table must already exist. Remember also that the place of the table entries is changed. If
- memory allocation failures are allowed, this function will return zero, indicating that the
- table could not be expanded. If all goes well, it will return a non-zero value. */
- static UA_Int32 expand(namespace * ns) {
- ns_entry *nentries;
- int32_t nsize;
- uint32_t nindex;
- ns_entry *oentries = ns->entries;
- int32_t osize = ns->size;
- ns_entry *olimit = &oentries[osize];
- int32_t count = ns->count;
- /* Resize only when table after removal of unused elements is either too full or too empty. */
- if(count * 2 < osize && (count * 8 > osize || osize <= 32)) {
- return UA_SUCCESS;
- }
- nindex = higher_prime_index(count * 2);
- nsize = prime_tab[nindex].prime;
- if(UA_alloc((void **)&nentries, sizeof(ns_entry) * nsize) != UA_SUCCESS)
- return UA_ERR_NO_MEMORY;
- ns->entries = nentries;
- ns->size = nsize;
- ns->sizePrimeIndex = nindex;
- ns_entry *p = oentries;
- do {
- if(p->node != UA_NULL) {
- ns_entry *q = find_empty_slot(ns, hash(&p->node->nodeId));
- *q = *p;
- }
- p++;
- } while(p < olimit);
- UA_free(oentries);
- return UA_SUCCESS;
- }
|