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
|
/*=========================================================================
Program: ParaView
Module: vtkChartSelectionRepresentation.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 "vtkChartSelectionRepresentation.h"
#include "vtkChartRepresentation.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMultiProcessController.h"
#include "vtkNew.h"
#include "vtkObjectFactory.h"
#include "vtkProcessModule.h"
#include "vtkProperty.h"
#include "vtkPVContextView.h"
#include "vtkSelectionDeliveryFilter.h"
#include "vtkSelection.h"
#include "vtkSelectionSerializer.h"
#include <assert.h>
#include <sstream>
vtkStandardNewMacro(vtkChartSelectionRepresentation);
//----------------------------------------------------------------------------
vtkChartSelectionRepresentation::vtkChartSelectionRepresentation()
{
this->EnableServerSideRendering = false;
}
//----------------------------------------------------------------------------
vtkChartSelectionRepresentation::~vtkChartSelectionRepresentation()
{
}
//----------------------------------------------------------------------------
void vtkChartSelectionRepresentation::SetChartRepresentation(
vtkChartRepresentation* repr)
{
this->ChartRepresentation = repr;
}
//----------------------------------------------------------------------------
void vtkChartSelectionRepresentation::SetVisibility(bool val)
{
this->Superclass::SetVisibility(val);
}
//----------------------------------------------------------------------------
bool vtkChartSelectionRepresentation::AddToView(vtkView* view)
{
vtkPVContextView* pvview = vtkPVContextView::SafeDownCast(view);
if (pvview)
{
this->ContextView = pvview;
this->EnableServerSideRendering = pvview->InTileDisplayMode();
return this->Superclass::AddToView(view);
}
return false;
}
//----------------------------------------------------------------------------
bool vtkChartSelectionRepresentation::RemoveFromView(vtkView* view)
{
if (view == this->ContextView.GetPointer())
{
this->ContextView = NULL;
this->EnableServerSideRendering = false;
return this->Superclass::RemoveFromView(view);
}
return false;
}
//----------------------------------------------------------------------------
int vtkChartSelectionRepresentation::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkSelection");
info->Set(vtkAlgorithm::INPUT_IS_OPTIONAL(), 1);
return 1;
}
//----------------------------------------------------------------------------
int vtkChartSelectionRepresentation::RequestData(vtkInformation* request,
vtkInformationVector** inputVector, vtkInformationVector* outputVector)
{
if (vtkProcessModule::GetProcessType() == vtkProcessModule::PROCESS_RENDER_SERVER)
{
return this->Superclass::RequestData(request, inputVector, outputVector);
}
vtkSmartPointer<vtkSelection> localSelection;
if (inputVector[0]->GetNumberOfInformationObjects()==1)
{
vtkSelection* inputSelection = vtkSelection::GetData(inputVector[0], 0);
assert(inputSelection);
vtkNew<vtkSelection> clone;
clone->ShallowCopy(inputSelection);
// map data-selection to view. We do this here so that the mapping logic is
// called on the processes that have the input data (which may come in
// handy at some point).
if (this->ChartRepresentation->MapSelectionToView(clone.GetPointer()) == false)
{
clone->Initialize();
}
vtkNew<vtkSelectionDeliveryFilter> courier;
courier->SetInputDataObject(clone.GetPointer());
courier->Update();
localSelection = vtkSelection::SafeDownCast(courier->GetOutputDataObject(0));
if (this->EnableServerSideRendering)
{
// distribute the selection from the root node to all processes.
vtkProcessModule* pm = vtkProcessModule::GetProcessModule();
int myId = pm->GetPartitionId();
int numProcs = pm->GetNumberOfLocalPartitions();
if (numProcs > 1)
{
vtkMultiProcessController* controller = pm->GetGlobalController();
if (myId == 0)
{
std::ostringstream res;
vtkSelectionSerializer::PrintXML(res, vtkIndent(), 1, clone.GetPointer());
// Send the size of the string.
int size = static_cast<int>(res.str().size());
controller->Broadcast(&size, 1, 0);
// Send the XML string.
controller->Broadcast(
const_cast<char*>(res.str().c_str()), size, 0);
localSelection = clone.GetPointer();
}
else
{
int size = 0;
controller->Broadcast(&size, 1, 0);
char* xml = new char[size+1];
// Get the string itself.
controller->Broadcast(xml, size, 0);
xml[size] = 0;
// Parse the XML.
vtkNew<vtkSelection> sel;
vtkSelectionSerializer::Parse(xml, sel.GetPointer());
delete[] xml;
localSelection = sel.GetPointer();
}
}
}
}
else
{
vtkNew<vtkSelectionDeliveryFilter> courier;
courier->Update();
localSelection = vtkSelection::SafeDownCast(courier->GetOutputDataObject(0));
}
if (this->ContextView)
{
this->ContextView->SetSelection(this->ChartRepresentation, localSelection);
}
return this->Superclass::RequestData(request, inputVector, outputVector);
}
//----------------------------------------------------------------------------
void vtkChartSelectionRepresentation::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "ChartRepresentation: "
<< this->ChartRepresentation.GetPointer() << endl;
os << indent << "EnableServerSideRendering: " <<
this->EnableServerSideRendering << endl;
}
|