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
|
/*=========================================================================
Program: ParaView
Module: vtkSMPropertyIterator.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 "vtkSMPropertyIterator.h"
#include "vtkObjectFactory.h"
#include "vtkSMProxy.h"
#include "vtkSMProxyInternals.h"
vtkStandardNewMacro(vtkSMPropertyIterator);
struct vtkSMPropertyIteratorInternals
{
vtkSMProxyInternals::PropertyInfoMap::iterator PropertyIterator;
vtkSMProxyInternals::ExposedPropertyInfoMap::iterator
ExposedPropertyIterator;
};
//---------------------------------------------------------------------------
vtkSMPropertyIterator::vtkSMPropertyIterator()
{
this->Proxy = 0;
this->Internals = new vtkSMPropertyIteratorInternals;
this->TraverseSubProxies = 1;
}
//---------------------------------------------------------------------------
vtkSMPropertyIterator::~vtkSMPropertyIterator()
{
this->SetProxy(0);
delete this->Internals;
}
//---------------------------------------------------------------------------
void vtkSMPropertyIterator::SetProxy(vtkSMProxy* proxy)
{
if (this->Proxy != proxy)
{
if (this->Proxy != NULL) { this->Proxy->UnRegister(this); }
this->Proxy = proxy;
if (this->Proxy != NULL)
{
this->Proxy->Register(this);
this->Begin();
}
this->Modified();
}
}
//---------------------------------------------------------------------------
void vtkSMPropertyIterator::Begin()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: Begin()");
return;
}
this->Internals->PropertyIterator =
this->Proxy->Internals->Properties.begin();
this->Internals->ExposedPropertyIterator =
this->Proxy->Internals->ExposedProperties.begin();
}
//---------------------------------------------------------------------------
int vtkSMPropertyIterator::IsAtEnd()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: IsAtEnd()");
return 1;
}
if (this->TraverseSubProxies)
{
if ( this->Internals->PropertyIterator == this->Proxy->Internals->Properties.end()
&& this->Internals->ExposedPropertyIterator ==
this->Proxy->Internals->ExposedProperties.end())
{
return 1;
}
}
else
{
if ( this->Internals->PropertyIterator == this->Proxy->Internals->Properties.end() )
{
return 1;
}
}
return 0;
}
//---------------------------------------------------------------------------
void vtkSMPropertyIterator::Next()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: Next()");
return;
}
// If we are still in the root proxy, move to the next element.
if (this->Internals->PropertyIterator !=
this->Proxy->Internals->Properties.end())
{
this->Internals->PropertyIterator++;
return;
// Consider the end case when the this->Internals->PropertyIterator
// is pointing to the last element before the above iterator increment.
// Then the iterator is now pointing off the last element (after the
// this->Internals->PropertyIterator++). But that's still okay,
// since this->Internals->ExposedPropertyIterator is already
// initialized to point to the first exposed property
// and the hence the next GetKey()/GetProperty() call
// will correctly return the first exposed property.
}
if (!this->TraverseSubProxies)
{
return;
}
if (this->Internals->ExposedPropertyIterator !=
this->Proxy->Internals->ExposedProperties.end())
{
this->Internals->ExposedPropertyIterator++;
}
}
//---------------------------------------------------------------------------
const char* vtkSMPropertyIterator::GetKey()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetKey()");
return 0;
}
if (this->Internals->PropertyIterator !=
this->Proxy->Internals->Properties.end())
{
return this->Internals->PropertyIterator->first.c_str();
}
if (this->TraverseSubProxies)
{
if (this->Internals->ExposedPropertyIterator !=
this->Proxy->Internals->ExposedProperties.end())
{
// return the exposed name.
return this->Internals->ExposedPropertyIterator->first.c_str();
}
}
return 0;
}
//---------------------------------------------------------------------------
const char* vtkSMPropertyIterator::GetPropertyLabel()
{
// Self property
if (this->Internals->PropertyIterator !=
this->Proxy->Internals->Properties.end())
{
return this->GetProperty()->GetXMLLabel();
}
// Property of a sub-proxy
if (this->TraverseSubProxies)
{
return this->GetKey();
}
return 0;
}
//---------------------------------------------------------------------------
vtkSMProperty* vtkSMPropertyIterator::GetProperty()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetProperty()");
return 0;
}
if (this->Internals->PropertyIterator !=
this->Proxy->Internals->Properties.end())
{
return this->Internals->PropertyIterator->second.Property.GetPointer();
}
if (this->TraverseSubProxies)
{
if (this->Internals->ExposedPropertyIterator !=
this->Proxy->Internals->ExposedProperties.end())
{
vtkSMProxy* proxy = this->Proxy->GetSubProxy(
this->Internals->ExposedPropertyIterator->second.SubProxyName.c_str());
if (!proxy)
{
vtkErrorMacro(<< "In proxy " << this->Proxy->GetXMLName()
<< " cannot find sub proxy "
<< this->Internals->ExposedPropertyIterator->second.SubProxyName.c_str()
<< " that is supposed to contain exposed property "
<< this->Internals->ExposedPropertyIterator->first.c_str());
return 0;
}
vtkSMProperty *property = proxy->GetProperty(
this->Internals->ExposedPropertyIterator->second.PropertyName.c_str());
if (!property)
{
vtkErrorMacro(<< "In proxy " << this->Proxy->GetXMLName()
<< " cannot find exposed property "
<< this->Internals->ExposedPropertyIterator->second.PropertyName.c_str()
<< " in sub proxy "
<< this->Internals->ExposedPropertyIterator->second.SubProxyName.c_str());
}
return property;
}
}
return 0;
}
//---------------------------------------------------------------------------
void vtkSMPropertyIterator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "TraverseSubProxies: " << this->TraverseSubProxies << endl;
os << indent << "Proxy: " << this->Proxy << endl;
}
|