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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkObjectFactory.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.
=========================================================================*/
#include "vtkObjectFactory.h"
#include "vtkDebugLeaks.h"
#include "vtkDynamicLoader.h"
#include "vtkObjectFactoryCollection.h"
#include "vtkOverrideInformation.h"
#include "vtkOverrideInformationCollection.h"
#include "vtkVersion.h"
#include "vtksys/Directory.hxx"
#include <cctype>
vtkObjectFactoryCollection* vtkObjectFactory::RegisteredFactories = 0;
static unsigned int vtkObjectFactoryRegistryCleanupCounter = 0;
vtkObjectFactoryRegistryCleanup::vtkObjectFactoryRegistryCleanup()
{
++vtkObjectFactoryRegistryCleanupCounter;
}
vtkObjectFactoryRegistryCleanup::~vtkObjectFactoryRegistryCleanup()
{
if (--vtkObjectFactoryRegistryCleanupCounter == 0)
{
vtkObjectFactory::UnRegisterAllFactories();
}
}
// Create an instance of a named vtk object using the loaded
// factories
vtkObject* vtkObjectFactory::CreateInstance(const char* vtkclassname,
bool)
{
if(!vtkObjectFactory::RegisteredFactories)
{
vtkObjectFactory::Init();
}
vtkObjectFactory* factory;
vtkCollectionSimpleIterator osit;
for(vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
(factory = vtkObjectFactory::RegisteredFactories->
GetNextObjectFactory(osit));)
{
vtkObject* newobject = factory->CreateObject(vtkclassname);
if(newobject)
{
return newobject;
}
}
return 0;
}
#ifndef VTK_LEGACY_REMOVE
void vtkObjectFactory::ConstructInstance(const char *vtkclassname)
{
// no-op. Call vtkObjectBase::InitializeObjectBase() from the New()
// implementation instead. That way we ensure that the
// registration/deregistration strings match.
VTK_LEGACY_REPLACED_BODY(vtkObjectFactory::ConstructInstance, "VTK 7.1",
vtkObjectBase::InitializeObjectBase);
#ifdef VTK_DEBUG_LEAKS
vtkDebugLeaks::ConstructClass(vtkclassname);
#endif // VTK_DEBUG_LEAKS
}
#endif // not VTK_LEGACY_REMOVE
// A one time initialization method.
void vtkObjectFactory::Init()
{
// Don't do anything if we are already initialized
if(vtkObjectFactory::RegisteredFactories)
{
return;
}
vtkObjectFactory::RegisteredFactories = vtkObjectFactoryCollection::New();
vtkObjectFactory::RegisterDefaults();
vtkObjectFactory::LoadDynamicFactories();
}
// Register any factories that are always present in VTK like
// the OpenGL factory, currently this is not done.
void vtkObjectFactory::RegisterDefaults()
{
}
// Load all libraries in VTK_AUTOLOAD_PATH
void vtkObjectFactory::LoadDynamicFactories()
{
// follow PATH convensions
#ifdef _WIN32
char PathSeparator = ';';
#else
char PathSeparator = ':';
#endif
char* LoadPath = 0;
#ifndef _WIN32_WCE
LoadPath = getenv("VTK_AUTOLOAD_PATH");
#endif
if(LoadPath == 0 || strlen(LoadPath) == 0)
{
return;
}
char* CurrentPath = new char[strlen(LoadPath)+1];
char* SeparatorPosition = LoadPath; // initialize to env variable
while(SeparatorPosition)
{
size_t PathLength =0;
// find PathSeparator in LoadPath
SeparatorPosition = strchr(LoadPath, PathSeparator);
// if not found then use the whole string
if(SeparatorPosition == 0)
{
PathLength = strlen(LoadPath);
}
else
{
PathLength = static_cast<size_t>(SeparatorPosition - LoadPath);
}
// copy the path out of LoadPath into CurrentPath
strncpy(CurrentPath, LoadPath, PathLength);
// add a null terminator
CurrentPath[PathLength] = 0;
// Get ready for the next path
LoadPath = SeparatorPosition+1;
// Load the libraries in the current path
vtkObjectFactory::LoadLibrariesInPath(CurrentPath);
}
// clean up memory
delete [] CurrentPath;
}
// A file scope helper function to concat path and file into
// a full path
static char* CreateFullPath(const char* path, const char* file)
{
size_t lenpath = strlen(path);
char* ret = new char[lenpath + strlen(file)+2];
#ifdef _WIN32
const char sep = '\\';
#else
const char sep = '/';
#endif
// make sure the end of path is a separator
strcpy(ret, path);
if(ret[lenpath-1] != sep)
{
ret[lenpath] = sep;
ret[lenpath+1] = 0;
}
strcat(ret, file);
return ret;
}
// A file scope typedef to make the cast code to the load
// function cleaner to read.
typedef vtkObjectFactory* (* VTK_LOAD_FUNCTION)();
typedef const char* (* VTK_VERSION_FUNCTION)();
typedef const char* (* VTK_COMPILER_FUNCTION)();
// A file scoped function to determine if a file has
// the shared library extension in its name, this converts name to lower
// case before the compare, vtkDynamicLoader always uses
// lower case for LibExtension values.
inline int vtkNameIsSharedLibrary(const char* name)
{
int len = static_cast<int>(strlen(name));
char* copy = new char[len+1];
for(int i = 0; i < len; i++)
{
copy[i] = static_cast<char>(tolower(name[i]));
}
copy[len] = 0;
char* ret = strstr(copy, vtkDynamicLoader::LibExtension());
delete [] copy;
return (ret != NULL);
}
void vtkObjectFactory::LoadLibrariesInPath(const char* path)
{
vtksys::Directory dir;
if(!dir.Load(path))
{
return;
}
// Attempt to load each file in the directory as a shared library
for(unsigned long i = 0; i < dir.GetNumberOfFiles(); i++)
{
const char* file = dir.GetFile(i);
// try to make sure the file has at least the extension
// for a shared library in it.
if(vtkNameIsSharedLibrary(file))
{
char* fullpath = CreateFullPath(path, file);
vtkLibHandle lib = vtkDynamicLoader::OpenLibrary(fullpath);
if(lib)
{
// Look for the symbol vtkLoad, vtkGetFactoryCompilerUsed,
// and vtkGetFactoryVersion in the library
VTK_LOAD_FUNCTION loadfunction
= (VTK_LOAD_FUNCTION)(
vtkDynamicLoader::GetSymbolAddress(lib,
"vtkLoad"));
VTK_COMPILER_FUNCTION compilerFunction
= (VTK_COMPILER_FUNCTION)(
vtkDynamicLoader::GetSymbolAddress(lib,
"vtkGetFactoryCompilerUsed"));
VTK_VERSION_FUNCTION versionFunction
= (VTK_VERSION_FUNCTION)(
vtkDynamicLoader::GetSymbolAddress(lib,
"vtkGetFactoryVersion"));
// if the symbol is found call it to create the factory
// from the library
if(loadfunction && compilerFunction && versionFunction)
{
const char* compiler = (*compilerFunction)();
const char* version = (*versionFunction)();
if(strcmp(compiler, VTK_CXX_COMPILER) ||
strcmp(version, vtkVersion::GetVTKSourceVersion()))
{
vtkGenericWarningMacro(
<< "Incompatible factory rejected:"
<< "\nRunning VTK compiled with: " << VTK_CXX_COMPILER
<< "\nFactory compiled with: " << compiler
<< "\nRunning VTK version: " << vtkVersion::GetVTKSourceVersion()
<< "\nFactory version: " << version
<< "\nPath to rejected factory: " << fullpath << "\n");
}
else
{
vtkObjectFactory* newfactory = (*loadfunction)();
newfactory->LibraryVTKVersion =
strcpy(new char[strlen(version)+1], version);
newfactory->LibraryCompilerUsed =
strcpy(new char[strlen(compiler)+1], compiler);
// initialize class members if load worked
newfactory->LibraryHandle = static_cast<void*>(lib);
newfactory->LibraryPath =
strcpy(new char[strlen(fullpath)+1], fullpath);
vtkObjectFactory::RegisterFactory(newfactory);
newfactory->Delete();
}
}
// if only the loadfunction is found, then warn
else if (loadfunction)
{
vtkGenericWarningMacro("Old Style Factory not loaded. Shared object has vtkLoad, but is missing vtkGetFactoryCompilerUsed and vtkGetFactoryVersion. Recompile factory: " << fullpath << ", and use VTK_FACTORY_INTERFACE_IMPLEMENT macro.");
}
}
delete [] fullpath;
}
}
}
// Recheck the VTK_AUTOLOAD_PATH for new libraries
void vtkObjectFactory::ReHash()
{
vtkObjectFactory::UnRegisterAllFactories();
vtkObjectFactory::Init();
}
// initialize class members
vtkObjectFactory::vtkObjectFactory()
{
this->LibraryHandle = 0;
this->LibraryPath = 0;
this->OverrideArray = 0;
this->OverrideClassNames = 0;
this->SizeOverrideArray = 0;
this->OverrideArrayLength = 0;
this->LibraryVTKVersion = 0;
this->LibraryCompilerUsed = 0;
}
// Unload the library and free the path string
vtkObjectFactory::~vtkObjectFactory()
{
delete [] this->LibraryVTKVersion;
delete [] this->LibraryCompilerUsed;
delete [] this->LibraryPath;
this->LibraryPath = 0;
for(int i =0; i < this->OverrideArrayLength; i++)
{
delete [] this->OverrideClassNames[i];
delete [] this->OverrideArray[i].Description;
delete [] this->OverrideArray[i].OverrideWithName;
}
delete [] this->OverrideArray;
delete [] this->OverrideClassNames;
this->OverrideArray = NULL;
this->OverrideClassNames = NULL;
}
// Add a factory to the registered list
void vtkObjectFactory::RegisterFactory(vtkObjectFactory* factory)
{
if(factory->LibraryHandle == 0)
{
const char* nonDynamicName = "Non-Dynamicly loaded factory";
factory->LibraryPath = strcpy(new char[strlen(nonDynamicName)+1],
nonDynamicName);
factory->LibraryCompilerUsed =
strcpy(new char[strlen(VTK_CXX_COMPILER)+1], VTK_CXX_COMPILER);
factory->LibraryVTKVersion =
strcpy(new char[strlen(vtkVersion::GetVTKSourceVersion())+1],
vtkVersion::GetVTKSourceVersion());
}
else
{
if(strcmp(factory->LibraryCompilerUsed,
VTK_CXX_COMPILER) != 0)
{
vtkGenericWarningMacro(<< "Possible incompatible factory load:"
<< "\nRunning vtk compiled with :\n" << VTK_CXX_COMPILER
<< "\nLoaded Factory compiled with:\n" << factory->LibraryCompilerUsed
<< "\nRejecting factory:\n" << factory->LibraryPath << "\n");
return;
}
if(strcmp(factory->LibraryVTKVersion,
vtkVersion::GetVTKSourceVersion()) != 0)
{
vtkGenericWarningMacro(<< "Possible incompatible factory load:"
<< "\nRunning vtk version :\n" << vtkVersion::GetVTKSourceVersion()
<< "\nLoaded Factory version:\n" << factory->LibraryVTKVersion
<< "\nRejecting factory:\n" << factory->LibraryPath << "\n");
return;
}
if(strcmp(factory->GetVTKSourceVersion(),
vtkVersion::GetVTKSourceVersion()) != 0)
{
vtkGenericWarningMacro(<< "Possible incompatible factory load:"
<< "\nRunning vtk version :\n" << vtkVersion::GetVTKSourceVersion()
<< "\nLoaded Factory version:\n" << factory->GetVTKSourceVersion()
<< "\nRejecting factory:\n" << factory->LibraryPath << "\n");
return;
}
}
vtkObjectFactory::Init();
vtkObjectFactory::RegisteredFactories->AddItem(factory);
}
// print ivars to stream
void vtkObjectFactory::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if (this->LibraryPath)
{
os << indent
<< "Factory DLL path: " << this->LibraryPath << "\n";
}
if (this->LibraryVTKVersion)
{
os << indent << "Library version: " << this->LibraryVTKVersion << "\n";
}
if (this->LibraryCompilerUsed)
{
os << indent << "Compiler used: " << this->LibraryCompilerUsed << "\n";
}
os << indent << "Factory description: " << this->GetDescription() << endl;
int num = this->GetNumberOfOverrides();
os << indent << "Factory overides " << num << " classes:" << endl;
indent = indent.GetNextIndent();
for(int i =0; i < num; i++)
{
os << indent << "Class : " << this->GetClassOverrideName(i) << endl;
os << indent << "Overriden with: " << this->GetClassOverrideWithName(i)
<< endl;
os << indent << "Enable flag: " << this->GetEnableFlag(i) << endl;
os << endl;
}
}
// Remove a factory from the list of registered factories.
void vtkObjectFactory::UnRegisterFactory(vtkObjectFactory* factory)
{
void* lib = factory->LibraryHandle;
vtkObjectFactory::RegisteredFactories->RemoveItem(factory);
if(lib)
{
vtkDynamicLoader::CloseLibrary(static_cast<vtkLibHandle>(lib));
}
}
// unregister all factories and delete the RegisteredFactories list
void vtkObjectFactory::UnRegisterAllFactories()
{
// do not do anything if this is null
if( ! vtkObjectFactory::RegisteredFactories )
{
return;
}
int num = vtkObjectFactory::RegisteredFactories->GetNumberOfItems();
// collect up all the library handles so they can be closed
// AFTER the factory has been deleted.
void** libs = new void*[num+1];
vtkObjectFactory* factory;
vtkCollectionSimpleIterator osit;
vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
int index = 0;
while((factory =
vtkObjectFactory::RegisteredFactories->GetNextObjectFactory(osit)))
{
libs[index++] = factory->LibraryHandle;
}
// delete the factory list and its factories
vtkObjectFactory::RegisteredFactories->Delete();
vtkObjectFactory::RegisteredFactories = 0;
// now close the libraries
for(int i = 0; i < num; i++)
{
void* lib = libs[i];
if(lib)
{
vtkDynamicLoader::CloseLibrary(reinterpret_cast<vtkLibHandle>(lib));
}
}
delete [] libs;
}
// Register an override function with a factory.
void vtkObjectFactory::RegisterOverride(const char* classOverride,
const char* subclass,
const char* description,
int enableFlag,
CreateFunction createFunction)
{
this->GrowOverrideArray();
int nextIndex = this->OverrideArrayLength;
this->OverrideArrayLength++;
char* className = strcpy(new char[strlen(classOverride)+1], classOverride);
char* desc = strcpy(new char[strlen(description)+1], description);
char* ocn = strcpy(new char[strlen(subclass)+1],
subclass);
this->OverrideClassNames[nextIndex] = className;
this->OverrideArray[nextIndex].Description = desc;
this->OverrideArray[nextIndex].OverrideWithName = ocn;
this->OverrideArray[nextIndex].EnabledFlag = enableFlag;
this->OverrideArray[nextIndex].CreateCallback = createFunction;
}
// Create an instance of an object
vtkObject* vtkObjectFactory::CreateObject(const char* vtkclassname)
{
for(int i=0; i < this->OverrideArrayLength; i++)
{
if(this->OverrideArray[i].EnabledFlag &&
strcmp(this->OverrideClassNames[i], vtkclassname) == 0)
{
return (*this->OverrideArray[i].CreateCallback)();
}
}
return 0;
}
// grow the array if the length is greater than the size.
void vtkObjectFactory::GrowOverrideArray()
{
if(this->OverrideArrayLength+1 > this->SizeOverrideArray)
{
int newLength = this->OverrideArrayLength + 50;
OverrideInformation* newArray = new OverrideInformation[newLength];
char** newNameArray = new char*[newLength];
for(int i =0; i < this->OverrideArrayLength; i++)
{
newNameArray[i] = this->OverrideClassNames[i];
newArray[i] = this->OverrideArray[i];
}
delete [] this->OverrideClassNames;
this->OverrideClassNames = newNameArray;
delete [] this->OverrideArray;
this->OverrideArray = newArray;
}
}
int vtkObjectFactory::GetNumberOfOverrides()
{
return this->OverrideArrayLength;
}
const char* vtkObjectFactory::GetClassOverrideName(int index)
{
return this->OverrideClassNames[index];
}
const char* vtkObjectFactory::GetClassOverrideWithName(int index)
{
return this->OverrideArray[index].OverrideWithName;
}
vtkTypeBool vtkObjectFactory::GetEnableFlag(int index)
{
return this->OverrideArray[index].EnabledFlag;
}
const char* vtkObjectFactory::GetOverrideDescription(int index)
{
return this->OverrideArray[index].Description;
}
// Set the enable flag for a class / subclassName pair
void vtkObjectFactory::SetEnableFlag(vtkTypeBool flag,
const char* className,
const char* subclassName)
{
for(int i =0; i < this->OverrideArrayLength; i++)
{
if(strcmp(this->OverrideClassNames[i], className) == 0)
{
// if subclassName is null, then set on className match
if(!subclassName)
{
this->OverrideArray[i].EnabledFlag = flag;
}
else
{
if(strcmp(this->OverrideArray[i].OverrideWithName, subclassName) == 0)
{
this->OverrideArray[i].EnabledFlag = flag;
}
}
}
}
}
// Get the enable flag for a className/subclassName pair
vtkTypeBool vtkObjectFactory::GetEnableFlag(const char* className,
const char* subclassName)
{
for(int i =0; i < this->OverrideArrayLength; i++)
{
if(strcmp(this->OverrideClassNames[i], className) == 0)
{
if(strcmp(this->OverrideArray[i].OverrideWithName, subclassName) == 0)
{
return this->OverrideArray[i].EnabledFlag;
}
}
}
return 0;
}
// Set the EnabledFlag to 0 for a given classname
void vtkObjectFactory::Disable(const char* className)
{
for(int i =0; i < this->OverrideArrayLength; i++)
{
if(strcmp(this->OverrideClassNames[i], className) == 0)
{
this->OverrideArray[i].EnabledFlag = 0;
}
}
}
// 1,0 is the class overriden by className
int vtkObjectFactory::HasOverride(const char* className)
{
for(int i =0; i < this->OverrideArrayLength; i++)
{
if(strcmp(this->OverrideClassNames[i], className) == 0)
{
return 1;
}
}
return 0;
}
// 1,0 is the class overriden by className/subclassName pair
int vtkObjectFactory::HasOverride(const char* className,
const char* subclassName)
{
for(int i =0; i < this->OverrideArrayLength; i++)
{
if(strcmp(this->OverrideClassNames[i], className) == 0)
{
if(strcmp(this->OverrideArray[i].OverrideWithName, subclassName) == 0)
{
return 1;
}
}
}
return 0;
}
vtkObjectFactoryCollection* vtkObjectFactory::GetRegisteredFactories()
{
if(!vtkObjectFactory::RegisteredFactories)
{
vtkObjectFactory::Init();
}
return vtkObjectFactory::RegisteredFactories;
}
// 1,0 is the className overriden by any registered factories
int vtkObjectFactory::HasOverrideAny(const char* className)
{
vtkObjectFactory* factory;
vtkCollectionSimpleIterator osit;
for(vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
(factory =
vtkObjectFactory::RegisteredFactories->GetNextObjectFactory(osit));)
{
if(factory->HasOverride(className))
{
return 1;
}
}
return 0;
}
// collect up information about current registered factories
void vtkObjectFactory::GetOverrideInformation(const char* name,
vtkOverrideInformationCollection*
ret)
{
// create the collection to return
vtkOverrideInformation* overInfo; // info object pointer
vtkObjectFactory* factory; // factory pointer for traversal
vtkCollectionSimpleIterator osit;
vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
for(;(factory =
vtkObjectFactory::RegisteredFactories->GetNextObjectFactory(osit));)
{
for(int i =0; i < factory->OverrideArrayLength; i++)
{
if( strcmp(name, factory->OverrideClassNames[i]) == 0)
{
// Create a new override info class
overInfo = vtkOverrideInformation::New();
// Set the class name
overInfo->SetClassOverrideName(factory->OverrideClassNames[i]);
// Set the override class name
overInfo->SetClassOverrideWithName(
factory->OverrideArray[i].OverrideWithName);
// Set the Description for the override
overInfo->SetDescription(factory->OverrideArray[i].Description);
// Set the factory for the override
overInfo->SetObjectFactory(factory);
// add the item to the collection
ret->AddItem(overInfo);
overInfo->Delete();
}
}
}
}
// set enable flag for all registered factories for the given className
void vtkObjectFactory::SetAllEnableFlags(vtkTypeBool flag,
const char* className)
{
vtkObjectFactory* factory;
vtkCollectionSimpleIterator osit;
for(vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
(factory =
vtkObjectFactory::RegisteredFactories->GetNextObjectFactory(osit));)
{
factory->SetEnableFlag(flag, className, 0);
}
}
// set enable flag for the first factory that that
// has an override for className/subclassName pair
void vtkObjectFactory::SetAllEnableFlags(vtkTypeBool flag,
const char* className,
const char* subclassName)
{
vtkObjectFactory* factory;
vtkCollectionSimpleIterator osit;
for(vtkObjectFactory::RegisteredFactories->InitTraversal(osit);
(factory =
vtkObjectFactory::RegisteredFactories->GetNextObjectFactory(osit));)
{
factory->SetEnableFlag(flag, className, subclassName);
}
}
void vtkObjectFactory::CreateAllInstance(const char* vtkclassname,
vtkCollection* retList)
{
vtkObjectFactory* f;
vtkObjectFactoryCollection* collection
= vtkObjectFactory::GetRegisteredFactories();
vtkCollectionSimpleIterator osit;
for(collection->InitTraversal(osit);
(f = collection->GetNextObjectFactory(osit)); )
{
vtkObject* o = f->CreateObject(vtkclassname);
if(o)
{
retList->AddItem(o);
o->Delete();
}
}
}
|