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
|
/*=========================================================================
Program: ParaView
Module: vtkSIIndexSelectionProperty.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 "vtkSIIndexSelectionProperty.h"
#include "vtkArrayIterator.h"
#include "vtkDataArray.h"
#include "vtkDoubleArray.h"
#include "vtkFloatArray.h"
#include "vtkIdTypeArray.h"
#include "vtkIntArray.h"
#include "vtkObjectFactory.h"
#include "vtkSIProperty.h"
#include "vtkSMMessage.h"
#include "vtkStringArray.h"
#include <string>
#include <sstream>
vtkStandardNewMacro(vtkSIIndexSelectionProperty)
//----------------------------------------------------------------------------
vtkSIIndexSelectionProperty::vtkSIIndexSelectionProperty()
{
}
//----------------------------------------------------------------------------
vtkSIIndexSelectionProperty::~vtkSIIndexSelectionProperty()
{
}
//----------------------------------------------------------------------------
void vtkSIIndexSelectionProperty::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
bool vtkSIIndexSelectionProperty::Pull(vtkSMMessage* msgToFill)
{
if (!this->InformationOnly)
{
return false;
}
if (!this->GetCommand())
{
return false;
}
// Create property and add it to the message
ProxyState_Property *prop = msgToFill->AddExtension(ProxyState::property);
prop->set_name(this->GetXMLName());
Variant *result = prop->mutable_value();
result->set_type(Variant::STRING);
// Get the ID for the reader.
vtkObjectBase *reader = this->GetVTKObject();
if (reader != NULL)
{
std::ostringstream aname;
aname << "GetNumberOf" << this->Command << "s" << ends;
// Get the number of arrays.
vtkClientServerStream stream;
stream << vtkClientServerStream::Invoke
<< reader
<< aname.str().c_str()
<< vtkClientServerStream::End;
this->ProcessMessage(stream);
stream.Reset();
int numArrays = 0;
if(!this->GetLastResult().GetArgument(0, 0, &numArrays))
{
vtkErrorMacro("Error getting number of " << this->Command
<< "s from reader.");
}
// For each array, get its name and status.
for (int i = 0; i < numArrays; ++i)
{
std::ostringstream naname;
naname << "Get" << this->Command << "Name" << ends;
// Get the array name.
stream << vtkClientServerStream::Invoke
<< reader
<< naname.str().c_str()
<< i
<< vtkClientServerStream::End;
if(!this->ProcessMessage(stream))
{
break;
}
stream.Reset();
const char* pname;
if(!this->GetLastResult().GetArgument(0, 0, &pname))
{
vtkErrorMacro("Error getting " << this->Command << " name from reader.");
break;
}
if (!pname)
{
// Initializing a std::string to NULL does not have a defined
// behavior.
break;
}
std::string name = pname;
std::ostringstream caname;
caname << "Get" << this->Command << "CurrentIndex" << ends;
// Get the array status.
stream << vtkClientServerStream::Invoke
<< reader
<< caname.str().c_str()
<< name.c_str()
<< vtkClientServerStream::End;
if(!this->ProcessMessage(stream))
{
break;
}
stream.Reset();
int currIdx = 0;
if(!this->GetLastResult().GetArgument(0, 0, &currIdx))
{
vtkErrorMacro("Error getting index from reader.");
break;
}
std::ostringstream saname;
saname << "Get" << this->Command << "Size" << ends;
// Get the array status.
stream << vtkClientServerStream::Invoke
<< reader
<< saname.str().c_str()
<< name.c_str()
<< vtkClientServerStream::End;
if(!this->ProcessMessage(stream))
{
break;
}
stream.Reset();
int dimSize = 0;
if(!this->GetLastResult().GetArgument(0, 0, &dimSize))
{
vtkErrorMacro("Error getting size from reader.");
break;
}
// Store the name/status pair in the result message.
result->add_txt(name.c_str());
std::ostringstream str;
str << currIdx;
result->add_txt(str.str());
str.str("");
str << dimSize;
result->add_txt(str.str());
}
}
else
{
vtkErrorMacro("Called on NULL vtkObject");
}
return true;
}
|