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
|
/*=========================================================================
Program: ParaView
Module: vtkSMNamedPropertyIterator.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 "vtkSMNamedPropertyIterator.h"
#include "vtkObjectFactory.h"
#include "vtkSMProxy.h"
#include "vtkSMProxyInternals.h"
#include "vtkStringList.h"
vtkStandardNewMacro(vtkSMNamedPropertyIterator);
typedef vtkSMProxyInternals::PropertyInfoMap::iterator PropertyIterator;
typedef vtkSMProxyInternals::ExposedPropertyInfoMap::iterator ExposedPropertyIterator;
//---------------------------------------------------------------------------
vtkSMNamedPropertyIterator::vtkSMNamedPropertyIterator()
:
PropertyNames(0),
PropertyNameIndex(0)
{}
//---------------------------------------------------------------------------
vtkSMNamedPropertyIterator::~vtkSMNamedPropertyIterator()
{
this->SetPropertyNames(0);
}
//---------------------------------------------------------------------------
vtkCxxSetObjectMacro(vtkSMNamedPropertyIterator,PropertyNames,vtkStringList);
//---------------------------------------------------------------------------
void vtkSMNamedPropertyIterator::Begin()
{
this->PropertyNameIndex=0;
}
//---------------------------------------------------------------------------
int vtkSMNamedPropertyIterator::IsAtEnd()
{
if (!this->PropertyNames)
{
vtkErrorMacro("PropertyNames is not set. Can not perform operation: IsAtEnd()");
return 0;
}
return this->PropertyNameIndex>=this->PropertyNames->GetNumberOfStrings();
}
//---------------------------------------------------------------------------
void vtkSMNamedPropertyIterator::Next()
{
++this->PropertyNameIndex;
}
//---------------------------------------------------------------------------
const char* vtkSMNamedPropertyIterator::GetKey()
{
if (!this->PropertyNames)
{
vtkErrorMacro("PropertyNames is not set. Can not perform operation: GetKey()");
return 0;
}
return this->PropertyNames->GetString(this->PropertyNameIndex);
}
//---------------------------------------------------------------------------
const char* vtkSMNamedPropertyIterator::GetPropertyLabel()
{
return this->GetProperty()->GetXMLLabel();
}
//---------------------------------------------------------------------------
vtkSMProperty* vtkSMNamedPropertyIterator::GetProperty()
{
if (!this->PropertyNames)
{
vtkErrorMacro("PropertyNames is not set. Can not perform operation: GetProperty()");
return 0;
}
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetProperty()");
return 0;
}
// get the requested prooperty's name, it's the key into
// the map.
vtkStdString name=this->PropertyNames->GetString(this->PropertyNameIndex);
// Is the requested property in this proxy?
PropertyIterator propEnd=this->Proxy->Internals->Properties.end();
PropertyIterator propIt=this->Proxy->Internals->Properties.find(name);
// Yes, we have it.
if (propIt!=propEnd)
{
return propIt->second.Property.GetPointer();
}
// No, but it may be in the exposed properties.
if (this->TraverseSubProxies)
{
ExposedPropertyIterator expPropEnd=this->Proxy->Internals->ExposedProperties.end();
ExposedPropertyIterator expPropIt=this->Proxy->Internals->ExposedProperties.find(name);
// Yes, we have it.
if (expPropIt!=expPropEnd)
{
const char *subProxyName=expPropIt->second.SubProxyName.c_str();
vtkSMProxy* subProxy=this->Proxy->GetSubProxy(subProxyName);
// The sub proxy should always be present.
if (!subProxy)
{
vtkErrorMacro(
<< "In proxy " << this->Proxy->GetXMLName()
<< " cannot find sub proxy " << subProxyName << ".");
return 0;
}
const char *expPropName=expPropIt->second.PropertyName.c_str();
vtkSMProperty *expProp=subProxy->GetProperty(expPropName);
// the property should always be present.
if (!expProp)
{
vtkErrorMacro(
<< "In proxy " << this->Proxy->GetXMLName()
<< " cannot find exposed property " << name.c_str() << "."
<< " Which is expected to be " << expPropName << " of "
<< subProxyName << ".");
}
return expProp;
}
}
// Exhausted all the possibilities, we do not have the requested
// property.
vtkErrorMacro(
<< "In proxy " << this->Proxy->GetXMLName()
<< " no property named " << name.c_str() << " was found.");
return 0;
}
//---------------------------------------------------------------------------
void vtkSMNamedPropertyIterator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "PropertyNames: " << this->PropertyNames << endl;
os << indent << "PropertyNameIndex: " << this->PropertyNameIndex << endl;
}
|