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
|
/*=========================================================================
Program: ParaView
Module: vtkSIArraySelectionProperty.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 "vtkSIArraySelectionProperty.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(vtkSIArraySelectionProperty);
//----------------------------------------------------------------------------
vtkSIArraySelectionProperty::vtkSIArraySelectionProperty()
{
}
//----------------------------------------------------------------------------
vtkSIArraySelectionProperty::~vtkSIArraySelectionProperty()
{
}
//----------------------------------------------------------------------------
void vtkSIArraySelectionProperty::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
bool vtkSIArraySelectionProperty::Pull(vtkSMMessage* msgToFill)
{
if (!this->InformationOnly)
{
return false;
}
if (!this->GetCommand()) // Hold the arraName
{
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 << "Arrays" << 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 arrays from reader.");
}
// For each array, get its name and status.
for(int i=0; i < numArrays; ++i)
{
std::ostringstream naname;
naname << "Get" << this->Command << "ArrayName" << 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 array 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 saname;
saname << "Get" << this->Command << "ArrayStatus" << 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 status = 0;
if(!this->GetLastResult().GetArgument(0, 0, &status))
{
vtkErrorMacro("Error getting array status from reader.");
break;
}
// Store the name/status pair in the result message.
result->add_txt(name.c_str());
result->add_txt( (status == 0) ? "0" : "1" );
}
}
else
{
vtkErrorMacro("GetArraySettings called on NULL vtkObject");
}
return true;
}
|