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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkVariantArray.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
// We do not provide a definition for the copy constructor or
// operator=. Block the warning.
#ifdef _MSC_VER
# pragma warning (disable: 4661)
#endif
#include "vtkVariantArray.h"
#include "vtkArrayIteratorTemplate.h"
#include "vtkDataArray.h"
#include "vtkIdList.h"
#include "vtkObjectFactory.h"
#include "vtkSortDataArray.h"
#include "vtkStringArray.h"
#include "vtkVariant.h"
#include <utility>
#include <algorithm>
#include <map>
// Map containing updates to a vtkVariantArray that have occurred
// since we last build the vtkVariantArrayLookup.
typedef std::multimap<vtkVariant, vtkIdType, vtkVariantLessThan>
vtkVariantCachedUpdates;
//----------------------------------------------------------------------------
class vtkVariantArrayLookup
{
public:
vtkVariantArrayLookup() : Rebuild(true)
{
this->SortedArray = NULL;
this->IndexArray = NULL;
}
~vtkVariantArrayLookup()
{
if (this->SortedArray)
{
this->SortedArray->Delete();
this->SortedArray = NULL;
}
if (this->IndexArray)
{
this->IndexArray->Delete();
this->IndexArray = NULL;
}
}
vtkVariantArray* SortedArray;
vtkIdList* IndexArray;
vtkVariantCachedUpdates CachedUpdates;
bool Rebuild;
};
//
// Standard functions
//
vtkStandardNewMacro(vtkVariantArray);
//----------------------------------------------------------------------------
void vtkVariantArray::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if(this->Array)
{
os << indent << "Array: " << this->Array << "\n";
}
else
{
os << indent << "Array: (null)\n";
}
}
//----------------------------------------------------------------------------
vtkVariantArray::vtkVariantArray()
{
this->Array = NULL;
this->SaveUserArray = 0;
this->Lookup = NULL;
}
//----------------------------------------------------------------------------
vtkVariantArray::~vtkVariantArray()
{
if (!this->SaveUserArray)
{
delete [] this->Array;
}
delete this->Lookup;
}
//
//
// Functions required by vtkAbstractArray
//
//
//----------------------------------------------------------------------------
int vtkVariantArray::Allocate(vtkIdType sz, vtkIdType)
{
if(sz > this->Size)
{
if(!this->SaveUserArray)
{
delete [] this->Array;
}
this->Size = (sz > 0 ? sz : 1);
this->Array = new vtkVariant[this->Size];
if(!this->Array)
{
return 0;
}
this->SaveUserArray = 0;
}
this->MaxId = -1;
this->DataChanged();
return 1;
}
//----------------------------------------------------------------------------
void vtkVariantArray::Initialize()
{
if(!this->SaveUserArray)
{
delete [] this->Array;
}
this->Array = 0;
this->Size = 0;
this->MaxId = -1;
this->SaveUserArray = 0;
this->DataChanged();
}
//----------------------------------------------------------------------------
int vtkVariantArray::GetDataType()
{
return VTK_VARIANT;
}
//----------------------------------------------------------------------------
int vtkVariantArray::GetDataTypeSize()
{
return static_cast<int>(sizeof(vtkVariant));
}
//----------------------------------------------------------------------------
int vtkVariantArray::GetElementComponentSize()
{
return this->GetDataTypeSize();
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetNumberOfTuples(vtkIdType number)
{
this->SetNumberOfValues(this->NumberOfComponents * number);
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source)
{
if (source->IsA("vtkVariantArray"))
{
vtkVariantArray* a = vtkArrayDownCast<vtkVariantArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->SetValue(loci + cur, a->GetValue(locj + cur));
}
}
else if (source->IsA("vtkDataArray"))
{
vtkDataArray* a = vtkArrayDownCast<vtkDataArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
// TODO : This just makes a double variant by default.
// We really should make the appropriate type of variant
// based on the subclass of vtkDataArray.
vtkIdType tuple = (locj + cur) / a->GetNumberOfComponents();
int component = static_cast<int>((locj + cur) % a->GetNumberOfComponents());
this->SetValue(loci + cur, vtkVariant(a->GetComponent(tuple, component)));
}
}
else if (source->IsA("vtkStringArray"))
{
vtkStringArray* a = vtkArrayDownCast<vtkStringArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->SetValue(loci + cur, vtkVariant(a->GetValue(locj + cur)));
}
}
else
{
vtkWarningMacro("Unrecognized type is incompatible with vtkVariantArray.");
}
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source)
{
if (source->IsA("vtkVariantArray"))
{
vtkVariantArray* a = vtkArrayDownCast<vtkVariantArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->InsertValue(loci + cur, a->GetValue(locj + cur));
}
}
else if (source->IsA("vtkDataArray"))
{
vtkDataArray* a = vtkArrayDownCast<vtkDataArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
vtkIdType tuple = (locj + cur) / a->GetNumberOfComponents();
int component = static_cast<int>((locj + cur) % a->GetNumberOfComponents());
this->InsertValue(loci + cur, vtkVariant(a->GetComponent(tuple, component)));
}
}
else if (source->IsA("vtkStringArray"))
{
vtkStringArray* a = vtkArrayDownCast<vtkStringArray>(source);
vtkIdType loci = i * this->NumberOfComponents;
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->InsertValue(loci + cur, vtkVariant(a->GetValue(locj + cur)));
}
}
else
{
vtkWarningMacro("Unrecognized type is incompatible with vtkVariantArray.");
}
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds,
vtkAbstractArray *source)
{
if (this->NumberOfComponents != source->GetNumberOfComponents())
{
vtkWarningMacro("Input and output component sizes do not match.");
return;
}
vtkIdType numIds = dstIds->GetNumberOfIds();
if (srcIds->GetNumberOfIds() != numIds)
{
vtkWarningMacro("Input and output id array sizes do not match.");
return;
}
if (vtkVariantArray* va = vtkArrayDownCast<vtkVariantArray>(source))
{
for (vtkIdType idIndex = 0; idIndex < numIds; ++idIndex)
{
vtkIdType numComp = this->NumberOfComponents;
vtkIdType srcLoc = srcIds->GetId(idIndex) * this->NumberOfComponents;
vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents;
while (numComp-- > 0)
{
this->InsertValue(dstLoc++, va->GetValue(srcLoc++));
}
}
}
else if (vtkDataArray *da = vtkDataArray::FastDownCast(source))
{
for (vtkIdType idIndex = 0; idIndex < numIds; ++idIndex)
{
vtkIdType numComp = this->NumberOfComponents;
vtkIdType srcLoc = srcIds->GetId(idIndex) * this->NumberOfComponents;
vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents;
while (numComp-- > 0)
{
this->InsertValue(dstLoc++, da->GetVariantValue(srcLoc++));
}
}
}
else if (vtkStringArray* sa = vtkArrayDownCast<vtkStringArray>(source))
{
for (vtkIdType idIndex = 0; idIndex < numIds; ++idIndex)
{
vtkIdType numComp = this->NumberOfComponents;
vtkIdType srcLoc = srcIds->GetId(idIndex) * this->NumberOfComponents;
vtkIdType dstLoc = dstIds->GetId(idIndex) * this->NumberOfComponents;
while (numComp-- > 0)
{
this->InsertValue(dstLoc++, sa->GetVariantValue(srcLoc++));
}
}
}
else
{
vtkWarningMacro("Unrecognized type is incompatible with vtkVariantArray.");
}
this->DataChanged();
}
//------------------------------------------------------------------------------
void vtkVariantArray::InsertTuples(vtkIdType dstStart, vtkIdType n,
vtkIdType srcStart, vtkAbstractArray *source)
{
if (this->NumberOfComponents != source->GetNumberOfComponents())
{
vtkWarningMacro("Input and output component sizes do not match.");
return;
}
vtkIdType srcEnd = srcStart + n;
if (srcEnd > source->GetNumberOfTuples())
{
vtkWarningMacro("Source range exceeds array size (srcStart=" << srcStart
<< ", n=" << n << ", numTuples="
<< source->GetNumberOfTuples() << ").");
return;
}
for (vtkIdType i = 0; i < n; ++i)
{
vtkIdType numComp = this->NumberOfComponents;
vtkIdType srcLoc = (srcStart + i) * this->NumberOfComponents;
vtkIdType dstLoc = (dstStart + i) * this->NumberOfComponents;
while (numComp-- > 0)
{
this->InsertValue(dstLoc++, source->GetVariantValue(srcLoc++));
}
}
this->DataChanged();
}
//----------------------------------------------------------------------------
vtkIdType vtkVariantArray::InsertNextTuple(vtkIdType j, vtkAbstractArray* source)
{
if (source->IsA("vtkVariantArray"))
{
vtkVariantArray* a = vtkArrayDownCast<vtkVariantArray>(source);
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->InsertNextValue(a->GetValue(locj + cur));
}
}
else if (source->IsA("vtkDataArray"))
{
vtkDataArray* a = vtkArrayDownCast<vtkDataArray>(source);
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
vtkIdType tuple = (locj + cur) / a->GetNumberOfComponents();
int component = static_cast<int>((locj + cur) % a->GetNumberOfComponents());
this->InsertNextValue(vtkVariant(a->GetComponent(tuple, component)));
}
}
else if (source->IsA("vtkStringArray"))
{
vtkStringArray* a = vtkArrayDownCast<vtkStringArray>(source);
vtkIdType locj = j * a->GetNumberOfComponents();
for (vtkIdType cur = 0; cur < this->NumberOfComponents; cur++)
{
this->InsertNextValue(vtkVariant(a->GetValue(locj + cur)));
}
}
else
{
vtkWarningMacro("Unrecognized type is incompatible with vtkVariantArray.");
return -1;
}
this->DataChanged();
return (this->GetNumberOfTuples()-1);
}
//----------------------------------------------------------------------------
void* vtkVariantArray::GetVoidPointer(vtkIdType id)
{
return this->GetPointer(id);
}
//----------------------------------------------------------------------------
void vtkVariantArray::DeepCopy(vtkAbstractArray *aa)
{
// Do nothing on a NULL input.
if(!aa)
{
return;
}
// Avoid self-copy.
if(this == aa)
{
return;
}
// If data type does not match, we can't copy.
if(aa->GetDataType() != this->GetDataType())
{
vtkErrorMacro(<< "Incompatible types: tried to copy an array of type "
<< aa->GetDataTypeAsString()
<< " into a variant array ");
return;
}
vtkVariantArray *va = vtkArrayDownCast<vtkVariantArray>( aa );
if ( va == NULL )
{
vtkErrorMacro(<< "Shouldn't Happen: Couldn't downcast array into a vtkVariantArray." );
return;
}
// Free our previous memory.
if(!this->SaveUserArray)
{
delete [] this->Array;
}
// Copy the given array into new memory.
this->MaxId = va->GetMaxId();
this->Size = va->GetSize();
this->SaveUserArray = 0;
this->Array = new vtkVariant[this->Size];
for (int i = 0; i < (this->MaxId+1); ++i)
{
this->Array[i] = va->Array[i];
}
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::InterpolateTuple(vtkIdType i, vtkIdList *ptIndices,
vtkAbstractArray* source, double* weights)
{
// Note: Something much more fancy could be done here, allowing
// the source array be any data type.
if (this->GetDataType() != source->GetDataType())
{
vtkErrorMacro("Cannot CopyValue from array of type "
<< source->GetDataTypeAsString());
return;
}
if (ptIndices->GetNumberOfIds() == 0)
{
// nothing to do.
return;
}
// We use nearest neighbour for interpolating variants.
// First determine which is the nearest neighbour using the weights-
// it's the index with maximum weight.
vtkIdType nearest = ptIndices->GetId(0);
double max_weight = weights[0];
for (int k=1; k < ptIndices->GetNumberOfIds(); k++)
{
if (weights[k] > max_weight)
{
nearest = k;
}
}
this->InsertTuple(i, nearest, source);
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::InterpolateTuple(vtkIdType i,
vtkIdType id1, vtkAbstractArray* source1,
vtkIdType id2, vtkAbstractArray* source2, double t)
{
// Note: Something much more fancy could be done here, allowing
// the source array to be any data type.
if (source1->GetDataType() != VTK_VARIANT ||
source2->GetDataType() != VTK_VARIANT)
{
vtkErrorMacro("All arrays to InterpolateValue() must be of same type.");
return;
}
if (t >= 0.5)
{
// Use p2
this->InsertTuple(i, id2, source2);
}
else
{
// Use p1.
this->InsertTuple(i, id1, source1);
}
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::Squeeze()
{
this->ResizeAndExtend(this->MaxId + 1);
}
//----------------------------------------------------------------------------
int vtkVariantArray::Resize(vtkIdType sz)
{
vtkVariant* newArray;
vtkIdType newSize = sz * this->GetNumberOfComponents();
if(newSize == this->Size)
{
return 1;
}
if(newSize <= 0)
{
this->Initialize();
return 1;
}
newArray = new vtkVariant[newSize];
if(!newArray)
{
vtkErrorMacro(<< "Cannot allocate memory\n");
return 0;
}
if(this->Array)
{
vtkIdType numCopy = (newSize < this->Size ? newSize : this->Size);
for (vtkIdType i = 0; i < numCopy; ++i)
{
newArray[i] = this->Array[i];
}
if(!this->SaveUserArray)
{
delete[] this->Array;
}
}
if(newSize < this->Size)
{
this->MaxId = newSize-1;
}
this->Size = newSize;
this->Array = newArray;
this->SaveUserArray = 0;
this->DataChanged();
return 1;
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetVoidArray(void *arr, vtkIdType size, int save)
{
this->SetArray(static_cast<vtkVariant*>(arr), size, save);
this->DataChanged();
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetVoidArray(void *arr, vtkIdType size, int save,
int vtkNotUsed(deleteM))
{
this->SetArray(static_cast<vtkVariant*>(arr), size, save);
this->DataChanged();
}
//----------------------------------------------------------------------------
unsigned long vtkVariantArray::GetActualMemorySize()
{
// NOTE: Currently does not take into account the "pointed to" data.
size_t totalSize = 0;
size_t numPrims = static_cast<size_t>(this->GetSize());
totalSize = numPrims*sizeof(vtkVariant);
return static_cast<unsigned long>(
ceil(static_cast<double>(totalSize) / 1024.0)); // kibibytes
}
//----------------------------------------------------------------------------
int vtkVariantArray::IsNumeric()
{
return 0;
}
//----------------------------------------------------------------------------
vtkArrayIterator* vtkVariantArray::NewIterator()
{
vtkArrayIteratorTemplate<vtkVariant>* iter =
vtkArrayIteratorTemplate<vtkVariant>::New();
iter->Initialize(this);
return iter;
}
//
//
// Additional functions
//
//
//----------------------------------------------------------------------------
vtkVariant& vtkVariantArray::GetValue(vtkIdType id) const
{
return this->Array[id];
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetValue(vtkIdType id, vtkVariant value)
{
this->Array[id] = value;
this->DataElementChanged(id);
}
//----------------------------------------------------------------------------
void vtkVariantArray::InsertValue(vtkIdType id, vtkVariant value)
{
if ( id >= this->Size )
{
if (!this->ResizeAndExtend(id+1))
{
return;
}
}
this->Array[id] = value;
if ( id > this->MaxId )
{
this->MaxId = id;
}
this->DataElementChanged(id);
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetVariantValue(vtkIdType id, vtkVariant value)
{
this->SetValue(id, value);
}
//----------------------------------------------------------------------------
void vtkVariantArray::InsertVariantValue(vtkIdType id, vtkVariant value)
{
this->InsertValue(id, value);
}
//----------------------------------------------------------------------------
vtkIdType vtkVariantArray::InsertNextValue(vtkVariant value)
{
this->InsertValue(++this->MaxId, value);
this->DataElementChanged(this->MaxId);
return this->MaxId;
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetNumberOfValues(vtkIdType number)
{
this->Allocate(number);
this->MaxId = number - 1;
this->DataChanged();
}
//----------------------------------------------------------------------------
vtkVariant* vtkVariantArray::GetPointer(vtkIdType id)
{
return this->Array + id;
}
//----------------------------------------------------------------------------
void vtkVariantArray::SetArray(vtkVariant* arr, vtkIdType size, int save)
{
if ((this->Array) && (!this->SaveUserArray))
{
vtkDebugMacro (<< "Deleting the array...");
delete [] this->Array;
}
else
{
vtkDebugMacro (<<"Warning, array not deleted, but will point to new array.");
}
vtkDebugMacro(<<"Setting array to: " << arr);
this->Array = arr;
this->Size = size;
this->MaxId = size-1;
this->SaveUserArray = save;
this->DataChanged();
}
//----------------------------------------------------------------------------
vtkVariant* vtkVariantArray::ResizeAndExtend(vtkIdType sz)
{
vtkVariant* newArray;
vtkIdType newSize;
if(sz > this->Size)
{
// Requested size is bigger than current size. Allocate enough
// memory to fit the requested size and be more than double the
// currently allocated memory.
newSize = this->Size + sz;
}
else if (sz == this->Size)
{
// Requested size is equal to current size. Do nothing.
return this->Array;
}
else
{
// Requested size is smaller than current size. Squeeze the
// memory.
newSize = sz;
}
if(newSize <= 0)
{
this->Initialize();
return 0;
}
newArray = new vtkVariant[newSize];
if(!newArray)
{
vtkErrorMacro("Cannot allocate memory\n");
return 0;
}
if(this->Array)
{
// can't use memcpy here
vtkIdType numCopy = (newSize < this->Size ? newSize : this->Size);
for (vtkIdType i = 0; i < numCopy; ++i)
{
newArray[i] = this->Array[i];
}
if(!this->SaveUserArray)
{
delete [] this->Array;
}
}
if(newSize < this->Size)
{
this->MaxId = newSize-1;
}
this->Size = newSize;
this->Array = newArray;
this->SaveUserArray = 0;
this->DataChanged();
return this->Array;
}
//----------------------------------------------------------------------------
void vtkVariantArray::UpdateLookup()
{
if (!this->Lookup)
{
this->Lookup = new vtkVariantArrayLookup();
this->Lookup->SortedArray = vtkVariantArray::New();
this->Lookup->IndexArray = vtkIdList::New();
}
if (this->Lookup->Rebuild)
{
int numComps = this->GetNumberOfComponents();
vtkIdType numTuples = this->GetNumberOfTuples();
this->Lookup->SortedArray->DeepCopy(this);
this->Lookup->IndexArray->SetNumberOfIds(numComps*numTuples);
for (vtkIdType i = 0; i < numComps*numTuples; i++)
{
this->Lookup->IndexArray->SetId(i, i);
}
vtkSortDataArray::Sort(this->Lookup->SortedArray, this->Lookup->IndexArray);
this->Lookup->Rebuild = false;
this->Lookup->CachedUpdates.clear();
}
}
//----------------------------------------------------------------------------
vtkIdType vtkVariantArray::LookupValue(vtkVariant value)
{
this->UpdateLookup();
// First look into the cached updates, to see if there were any
// cached changes. Find an equivalent element in the set of cached
// indices for this value. Some of the indices may have changed
// values since the cache was built, so we need to do this equality
// check.
typedef vtkVariantCachedUpdates::iterator CacheIterator;
CacheIterator cached = this->Lookup->CachedUpdates.lower_bound(value),
cachedEnd = this->Lookup->CachedUpdates.end();
while (cached != cachedEnd)
{
// Check that we are still in the same equivalence class as the
// value.
if (value == (*cached).first)
{
// Check that the value in the original array hasn't changed.
vtkVariant currentValue = this->GetValue(cached->second);
if (value == currentValue)
{
return (*cached).second;
}
}
else
{
break;
}
++cached;
}
// Perform a binary search of the sorted array using STL equal_range.
int numComps = this->Lookup->SortedArray->GetNumberOfComponents();
vtkIdType numTuples = this->Lookup->SortedArray->GetNumberOfTuples();
vtkVariant* ptr = this->Lookup->SortedArray->GetPointer(0);
vtkVariant* ptrEnd = ptr + numComps*numTuples;
vtkVariant* found = std::lower_bound(
ptr, ptrEnd, value, vtkVariantLessThan());
// Find an index with a matching value. Non-matching values might
// show up here when the underlying value at that index has been
// changed (so the sorted array is out-of-date).
vtkIdType offset = static_cast<vtkIdType>(found - ptr);
while (found != ptrEnd)
{
// Check whether we still have a value equivalent to what we're
// looking for.
if (value == *found)
{
// Check that the value in the original array hasn't changed.
vtkIdType index = this->Lookup->IndexArray->GetId(offset);
vtkVariant currentValue = this->GetValue(index);
if (value == currentValue)
{
return index;
}
}
else
{
break;
}
++found;
++offset;
}
return -1;
}
//----------------------------------------------------------------------------
void vtkVariantArray::LookupValue(vtkVariant value, vtkIdList* ids)
{
this->UpdateLookup();
ids->Reset();
// First look into the cached updates, to see if there were any
// cached changes. Find an equivalent element in the set of cached
// indices for this value. Some of the indices may have changed
// values since the cache was built, so we need to do this equality
// check.
typedef vtkVariantCachedUpdates::iterator CacheIterator;
std::pair<CacheIterator, CacheIterator> cached
= this->Lookup->CachedUpdates.equal_range(value);
while (cached.first != cached.second)
{
// Check that the value in the original array hasn't changed.
vtkVariant currentValue = this->GetValue(cached.first->second);
if (cached.first->first == currentValue)
{
ids->InsertNextId(cached.first->second);
}
++cached.first;
}
// Perform a binary search of the sorted array using STL equal_range.
int numComps = this->GetNumberOfComponents();
vtkIdType numTuples = this->GetNumberOfTuples();
vtkVariant* ptr = this->Lookup->SortedArray->GetPointer(0);
vtkVariant* ptrEnd = ptr + numComps*numTuples;
std::pair<vtkVariant*, vtkVariant*> found =
std::equal_range(ptr, ptrEnd, value, vtkVariantLessThan());
// Add the indices of the found items to the ID list.
vtkIdType offset = static_cast<vtkIdType>(found.first - ptr);
while (found.first != found.second)
{
// Check that the value in the original array hasn't changed.
vtkIdType index = this->Lookup->IndexArray->GetId(offset);
vtkVariant currentValue = this->GetValue(index);
if (*(found.first) == currentValue)
{
ids->InsertNextId(index);
}
++found.first;
++offset;
}
}
//----------------------------------------------------------------------------
void vtkVariantArray::DataChanged()
{
if (this->Lookup)
{
this->Lookup->Rebuild = true;
}
}
//----------------------------------------------------------------------------
void vtkVariantArray::DataElementChanged(vtkIdType id)
{
if (this->Lookup)
{
if (this->Lookup->Rebuild)
{
// We're already going to rebuild the lookup table. Do nothing.
return;
}
if (this->Lookup->CachedUpdates.size() >
static_cast<size_t>(this->GetNumberOfTuples()/10))
{
// At this point, just rebuild the full table.
this->Lookup->Rebuild = true;
}
else
{
// Insert this change into the set of cached updates
std::pair<const vtkVariant, vtkIdType>
value(this->GetValue(id), id);
this->Lookup->CachedUpdates.insert(value);
}
}
}
//----------------------------------------------------------------------------
void vtkVariantArray::ClearLookup()
{
delete this->Lookup;
this->Lookup = NULL;
}
|