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
|
/*
*
* Copyright (C) 1997-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmdata
*
* Author: Andrew Hewett
*
* Purpose: Hash table interface for DICOM data dictionary
*
* Last Update: $Author: uli $
* Update Date: $Date: 2010-11-10 12:02:01 $
* CVS/RCS Revision: $Revision: 1.26 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmdata/dchashdi.h"
#include "dcmtk/dcmdata/dcdicent.h"
#define INCLUDE_CSTDIO
#define INCLUDE_CASSERT
#include "dcmtk/ofstd/ofstdinc.h"
/*
** DcmDictEntryList
*/
DcmDictEntryList::~DcmDictEntryList()
{
clear();
}
void
DcmDictEntryList::clear()
{
while (!empty()) {
delete front();
pop_front();
}
}
DcmDictEntry*
DcmDictEntryList::insertAndReplace(DcmDictEntry* e)
{
if (empty()) {
push_front(e);
} else {
DcmDictEntryListIterator iter(begin());
DcmDictEntryListIterator last(end());
Uint32 eHash = e->hash();
Uint32 iterHash = 0;
// insert smallest first
for (iter = begin(); iter != last; ++iter) {
iterHash = (*iter)->hash();
if (eHash == iterHash)
{
if (e->privateCreatorMatch(**iter))
{
// entry is already there so replace it
DcmDictEntry* oldEntry = *iter;
*iter = e;
return oldEntry;
}
else
{
// insert before listEntry
insert(iter, e);
return NULL;
}
}
else if (eHash < iterHash)
{
// insert before listEntry
insert(iter, e);
return NULL;
}
}
// add to end
push_back(e);
}
return NULL;
}
DcmDictEntry *DcmDictEntryList::find(const DcmTagKey& k, const char *privCreator)
{
if (!empty()) {
DcmDictEntryListIterator iter;
DcmDictEntryListIterator last = end();
Uint32 kHash = k.hash();
Uint32 iterHash = 0;
for (iter = begin(); iter != last; ++iter) {
iterHash = (*iter)->hash();
if ((iterHash == kHash) && (*iter)->privateCreatorMatch(privCreator))
{
return *iter;
} else if (iterHash > kHash) {
return NULL; // not there
}
}
}
return NULL;
}
/*
** DcmHashDictIterator
*/
void
DcmHashDictIterator::init(const DcmHashDict* d, OFBool atEnd)
{
dict = d;
hindex = 0;
iterating = OFFalse;
if (dict != NULL) {
if (atEnd) {
hindex = dict->highestBucket;
if (dict->size() > 0) {
iter = dict->hashTab[hindex]->end();
iterating = OFTrue;
}
} else {
hindex = dict->lowestBucket;
if (dict->size() > 0) {
iter = dict->hashTab[hindex]->begin();
iterating = OFTrue;
}
}
}
}
void
DcmHashDictIterator::stepUp()
{
assert(dict != NULL);
while (hindex <= dict->highestBucket) {
DcmDictEntryList* bucket = dict->hashTab[hindex];
if (bucket == NULL) {
if (hindex == dict->highestBucket)
return; /* We reached the end of the dictionary */
hindex++; // move on to next bucket
iterating = OFFalse;
} else {
if (!iterating) {
iter = bucket->begin();
iterating = OFTrue;
if (iter != bucket->end()) {
return; /* we have found the next one */
}
}
if (iter == bucket->end()) {
if (hindex == dict->highestBucket)
return; /* We reached the end of the dictionary */
iterating = OFFalse;
hindex++;
} else {
++iter;
if (iter != bucket->end()) {
return; /* we have found the next one */
}
}
}
}
}
/*
** DcmHashDict
*/
void
DcmHashDict::_init(int hashTabLen)
{
hashTab = new DcmDictEntryList*[hashTabLen];
assert(hashTab != NULL);
hashTabLength = hashTabLen;
for (int i=0; i<hashTabLength; i++) {
hashTab[i] = NULL;
}
lowestBucket = hashTabLength-1;
highestBucket = 0;
entryCount = 0;
}
DcmHashDict::~DcmHashDict()
{
clear();
delete[] hashTab;
}
void
DcmHashDict::clear()
{
for (int i=0; i<hashTabLength; i++) {
delete hashTab[i];
hashTab[i] = NULL;
}
lowestBucket = hashTabLength-1;
highestBucket = 0;
entryCount = 0;
}
int
DcmHashDict::hash(const DcmTagKey* k) const
{
/*
** Use a hash function based upon the relative number of
** data dictionary entries in each group by splitting
** the hash table into proportional sections .
*/
int h = 0;
int lower = 0; /* default */
int upper = hashTabLength-1; /* default */
switch (k->getGroup()) {
/* the code in this switch statement was generated automatically */
case 0x0: /* %usage: 3.47 */
lower = int(0 * hashTabLength);
upper = int(0.0346608 * hashTabLength);
break;
case 0x2: /* %usage: 0.74 */
lower = int(0.0346608 * hashTabLength);
upper = int(0.0420354 * hashTabLength);
break;
case 0x4: /* %usage: 1.40 */
lower = int(0.0420354 * hashTabLength);
upper = int(0.0560472 * hashTabLength);
break;
case 0x8: /* %usage: 7.30 */
lower = int(0.0560472 * hashTabLength);
upper = int(0.129056 * hashTabLength);
break;
case 0x10: /* %usage: 2.43 */
lower = int(0.129056 * hashTabLength);
upper = int(0.153392 * hashTabLength);
break;
case 0x18: /* %usage: 18.36 */
lower = int(0.153392 * hashTabLength);
upper = int(0.337021 * hashTabLength);
break;
case 0x20: /* %usage: 3.98 */
lower = int(0.337021 * hashTabLength);
upper = int(0.376844 * hashTabLength);
break;
case 0x28: /* %usage: 8.63 */
lower = int(0.376844 * hashTabLength);
upper = int(0.463127 * hashTabLength);
break;
case 0x32: /* %usage: 1.92 */
lower = int(0.463127 * hashTabLength);
upper = int(0.482301 * hashTabLength);
break;
case 0x38: /* %usage: 1.62 */
lower = int(0.482301 * hashTabLength);
upper = int(0.498525 * hashTabLength);
break;
case 0x40: /* %usage: 6.93 */
lower = int(0.498525 * hashTabLength);
upper = int(0.567847 * hashTabLength);
break;
case 0x41: /* %usage: 2.29 */
lower = int(0.567847 * hashTabLength);
upper = int(0.590708 * hashTabLength);
break;
case 0x50: /* %usage: 0.59 */
lower = int(0.590708 * hashTabLength);
upper = int(0.596608 * hashTabLength);
break;
case 0x54: /* %usage: 5.75 */
lower = int(0.596608 * hashTabLength);
upper = int(0.65413 * hashTabLength);
break;
case 0x88: /* %usage: 0.59 */
lower = int(0.65413 * hashTabLength);
upper = int(0.660029 * hashTabLength);
break;
case 0x1000: /* %usage: 0.52 */
lower = int(0.660029 * hashTabLength);
upper = int(0.665192 * hashTabLength);
break;
case 0x1010: /* %usage: 0.15 */
lower = int(0.665192 * hashTabLength);
upper = int(0.666667 * hashTabLength);
break;
case 0x2000: /* %usage: 0.59 */
lower = int(0.666667 * hashTabLength);
upper = int(0.672566 * hashTabLength);
break;
case 0x2010: /* %usage: 1.18 */
lower = int(0.672566 * hashTabLength);
upper = int(0.684366 * hashTabLength);
break;
case 0x2020: /* %usage: 0.59 */
lower = int(0.684366 * hashTabLength);
upper = int(0.690265 * hashTabLength);
break;
case 0x2030: /* %usage: 0.22 */
lower = int(0.690265 * hashTabLength);
upper = int(0.692478 * hashTabLength);
break;
case 0x2040: /* %usage: 0.66 */
lower = int(0.692478 * hashTabLength);
upper = int(0.699115 * hashTabLength);
break;
case 0x2050: /* %usage: 0.22 */
lower = int(0.699115 * hashTabLength);
upper = int(0.701327 * hashTabLength);
break;
case 0x2100: /* %usage: 0.81 */
lower = int(0.701327 * hashTabLength);
upper = int(0.70944 * hashTabLength);
break;
case 0x2110: /* %usage: 0.37 */
lower = int(0.70944 * hashTabLength);
upper = int(0.713127 * hashTabLength);
break;
case 0x2120: /* %usage: 0.29 */
lower = int(0.713127 * hashTabLength);
upper = int(0.716077 * hashTabLength);
break;
case 0x2130: /* %usage: 0.66 */
lower = int(0.716077 * hashTabLength);
upper = int(0.722714 * hashTabLength);
break;
case 0x3002: /* %usage: 1.25 */
lower = int(0.722714 * hashTabLength);
upper = int(0.735251 * hashTabLength);
break;
case 0x3004: /* %usage: 1.62 */
lower = int(0.735251 * hashTabLength);
upper = int(0.751475 * hashTabLength);
break;
case 0x3006: /* %usage: 3.24 */
lower = int(0.751475 * hashTabLength);
upper = int(0.783923 * hashTabLength);
break;
case 0x300a: /* %usage: 16.52 */
lower = int(0.783923 * hashTabLength);
upper = int(0.949115 * hashTabLength);
break;
case 0x300c: /* %usage: 1.84 */
lower = int(0.949115 * hashTabLength);
upper = int(0.967552 * hashTabLength);
break;
case 0x300e: /* %usage: 0.29 */
lower = int(0.967552 * hashTabLength);
upper = int(0.970501 * hashTabLength);
break;
case 0x4000: /* %usage: 0.22 */
lower = int(0.970501 * hashTabLength);
upper = int(0.972714 * hashTabLength);
break;
case 0x4008: /* %usage: 2.06 */
lower = int(0.972714 * hashTabLength);
upper = int(0.993363 * hashTabLength);
break;
case 0x7fe0: /* %usage: 0.37 */
lower = int(0.993363 * hashTabLength);
upper = int(0.99705 * hashTabLength);
break;
case 0xfffc: /* %usage: 0.07 */
lower = int(0.99705 * hashTabLength);
upper = int(0.997788 * hashTabLength);
break;
case 0xfffe: /* %usage: 0.22 */
lower = int(0.997788 * hashTabLength);
upper = int(1 * hashTabLength);
break;
default:
lower = 0; /* default */
upper = hashTabLength-1; /* default */
break;
}
int span = upper - lower;
int offset = 0;
if (span > 0) {
offset = OFstatic_cast(int, (k->hash() & 0x7FFFFFFF) % span);
}
h = lower + offset;
assert((h >= 0) && (h < hashTabLength));
return h;
}
DcmDictEntry*
DcmHashDict::insertInList(DcmDictEntryList& l, DcmDictEntry* e)
{
return l.insertAndReplace(e);
}
void
DcmHashDict::put(DcmDictEntry* e)
{
int idx = hash(e);
DcmDictEntryList* bucket = hashTab[idx];
// if there is no bucket then create one
if (bucket == NULL) {
bucket = new DcmDictEntryList;
assert(bucket != NULL);
hashTab[idx] = bucket;
}
DcmDictEntry* old = insertInList(*bucket, e);
if (old != NULL) {
/* an old entry has been replaced */
#ifdef PRINT_REPLACED_DICTIONARY_ENTRIES
DCMDATA_WARN("replacing " << *old);
#endif
delete old;
} else {
entryCount++;
}
lowestBucket = (lowestBucket<idx)?(lowestBucket):(idx);
highestBucket = (highestBucket>idx)?(highestBucket):(idx);
}
DcmDictEntry *DcmHashDict::findInList(DcmDictEntryList& l, const DcmTagKey& k, const char *privCreator) const
{
return l.find(k, privCreator);
}
const DcmDictEntry*
DcmHashDict::get(const DcmTagKey& k, const char *privCreator) const
{
const DcmDictEntry* entry = NULL;
// first we look for an entry that exactly matches the given tag key
Uint32 idx = hash(&k);
DcmDictEntryList* bucket = hashTab[idx];
if (bucket) entry = findInList(*bucket, k, privCreator);
if ((entry == NULL) && privCreator)
{
// As a second guess, we look for a private tag with flexible element number.
DcmTagKey tk(k.getGroup(), OFstatic_cast(unsigned short, k.getElement() & 0xff));
idx = hash(&tk);
bucket = hashTab[idx];
if (bucket) entry = findInList(*bucket, tk, privCreator);
}
return entry;
}
DcmDictEntry*
DcmHashDict::removeInList(DcmDictEntryList& l, const DcmTagKey& k, const char *privCreator)
{
DcmDictEntry* entry = findInList(l, k, privCreator);
l.remove(entry); // does not delete entry
return entry;
}
void
DcmHashDict::del(const DcmTagKey& k, const char *privCreator)
{
Uint32 idx = hash(&k);
DcmDictEntryList* bucket = hashTab[idx];
if (bucket != NULL) {
DcmDictEntry* entry = removeInList(*bucket, k, privCreator);
delete entry;
}
}
STD_NAMESPACE ostream&
DcmHashDict::loadSummary(STD_NAMESPACE ostream& out)
{
out << "DcmHashDict: size=" << hashTabLength <<
", total entries=" << size() << OFendl;
DcmDictEntryList* bucket = NULL;
int largestBucket = 0;
for (int i=0; i<hashTabLength; i++) {
bucket = hashTab[i];
if (bucket != NULL) {
if (int(bucket->size()) > largestBucket) {
largestBucket = bucket->size();
}
}
}
for (int j=0; j<hashTabLength; j++) {
out << " hashTab[" << j << "]: ";
bucket = hashTab[j];
if (bucket == NULL) {
out << "0 entries" << OFendl;
} else {
out << bucket->size() << " entries" << OFendl;
}
}
out << "Bucket Sizes" << OFendl;
int n, x, k, l_size;
for (x=0; x<=largestBucket; x++) {
n = 0;
for (k=0; k<hashTabLength; k++) {
bucket = hashTab[k];
l_size = 0;
if (bucket != NULL) {
l_size = bucket->size();
}
if (l_size == x) {
n++;
}
}
out << " entries{" << x << "}: " << n << " buckets" << OFendl;
}
return out;
}
/*
** CVS/RCS Log:
** $Log: dchashdi.cc,v $
** Revision 1.26 2010-11-10 12:02:01 uli
** Made DcmHashDictIterator::stepUp correctly stop at the end of the dict.
**
** Revision 1.25 2010-10-14 13:14:08 joergr
** Updated copyright header. Added reference to COPYRIGHT file.
**
** Revision 1.24 2010-02-22 11:39:54 uli
** Remove some unneeded includes.
**
** Revision 1.23 2009-11-10 12:38:29 uli
** Fix compilation on windows.
**
** Revision 1.22 2009-11-04 09:58:09 uli
** Switched to logging mechanism provided by the "new" oflog module
**
** Revision 1.21 2006-08-15 15:49:54 meichel
** Updated all code in module dcmdata to correctly compile when
** all standard C++ classes remain in namespace std.
**
** Revision 1.20 2005/12/08 15:41:11 meichel
** Changed include path schema for all DCMTK header files
**
** Revision 1.19 2004/02/04 16:33:02 joergr
** Adapted type casts to new-style typecast operators defined in ofcast.h.
**
** Revision 1.18 2003/06/02 16:58:01 meichel
** Renamed local variables to avoid name clashes with STL
**
** Revision 1.17 2003/03/21 13:08:04 meichel
** Minor code purifications for warnings reported by MSVC in Level 4
**
** Revision 1.16 2002/11/27 12:06:47 meichel
** Adapted module dcmdata to use of new header file ofstdinc.h
**
** Revision 1.15 2002/07/23 14:21:33 meichel
** Added support for private tag data dictionaries to dcmdata
**
** Revision 1.14 2001/06/01 15:49:04 meichel
** Updated copyright header
**
** Revision 1.13 2000/10/12 10:26:52 meichel
** Updated data dictionary for 2000 edition of the DICOM standard
**
** Revision 1.12 2000/05/03 14:19:09 meichel
** Added new class GlobalDcmDataDictionary which implements read/write lock
** semantics for safe access to the DICOM dictionary from multiple threads
** in parallel. The global dcmDataDict now uses this class.
**
** Revision 1.11 2000/04/14 16:16:22 meichel
** Dcmdata library code now consistently uses ofConsole for error output.
**
** Revision 1.10 2000/03/08 16:26:36 meichel
** Updated copyright header.
**
** Revision 1.9 2000/03/03 14:05:33 meichel
** Implemented library support for redirecting error messages into memory
** instead of printing them to stdout/stderr for GUI applications.
**
** Revision 1.8 2000/02/02 14:32:51 joergr
** Replaced 'delete' statements by 'delete[]' for objects created with 'new[]'.
**
** Revision 1.7 1999/03/31 09:25:29 meichel
** Updated copyright header in module dcmdata
**
** Revision 1.6 1999/03/22 09:58:32 meichel
** Fixed bug in data dictionary causing a segmentation fault
** if dictionary was cleared and a smaller version reloaded.
**
** Revision 1.5 1998/07/28 15:52:37 meichel
** Introduced new compilation flag PRINT_REPLACED_DICTIONARY_ENTRIES
** which causes the dictionary to display all duplicate entries.
**
** Revision 1.4 1998/07/15 15:51:57 joergr
** Removed several compiler warnings reported by gcc 2.8.1 with
** additional options, e.g. missing copy constructors and assignment
** operators, initialization of member variables in the body of a
** constructor instead of the member initialization list, hiding of
** methods by use of identical names, uninitialized member variables,
** missing const declaration of char pointers. Replaced tabs by spaces.
**
** Revision 1.3 1998/06/29 12:17:57 meichel
** Removed some name clashes (e.g. local variable with same
** name as class member) to improve maintainability.
** Applied some code purifications proposed by the gcc 2.8.1 -Weffc++ option.
**
** Revision 1.2 1997/09/18 08:10:54 meichel
** Many minor type conflicts (e.g. long passed as int) solved.
**
** Revision 1.1 1997/08/26 13:35:02 hewett
** Initial Version - Implementation of hash table for data dictionary.
**
*/
|