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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkGraphReader.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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 "vtkGraphReader.h"
#include "vtkByteSwap.h"
#include "vtkCellArray.h"
#include "vtkFieldData.h"
#include "vtkGraph.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkStreamingDemandDrivenPipeline.h"
vtkCxxRevisionMacro(vtkGraphReader, "$Revision: 1.3 $");
vtkStandardNewMacro(vtkGraphReader);
#ifdef read
#undef read
#endif
//----------------------------------------------------------------------------
vtkGraphReader::vtkGraphReader()
{
vtkGraph *output = vtkGraph::New();
this->SetOutput(output);
// Releasing data for pipeline parallism.
// Filters will know it is empty.
output->ReleaseData();
output->Delete();
}
//----------------------------------------------------------------------------
vtkGraphReader::~vtkGraphReader()
{
}
//----------------------------------------------------------------------------
vtkGraph* vtkGraphReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkGraph* vtkGraphReader::GetOutput(int idx)
{
return vtkGraph::SafeDownCast(this->GetOutputDataObject(idx));
}
//----------------------------------------------------------------------------
void vtkGraphReader::SetOutput(vtkGraph *output)
{
this->GetExecutive()->SetOutputData(0, output);
}
//----------------------------------------------------------------------------
// I do not think this should be here, but I do not want to remove it now.
int vtkGraphReader::RequestUpdateExtent(
vtkInformation *,
vtkInformationVector **,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
int piece, numPieces;
piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER());
numPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES());
// make sure piece is valid
if (piece < 0 || piece >= numPieces)
{
return 1;
}
return 1;
}
//----------------------------------------------------------------------------
int vtkGraphReader::RequestData(
vtkInformation *,
vtkInformationVector **,
vtkInformationVector *outputVector)
{
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// Return all data in the first piece ...
if(outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()) > 0)
{
return 1;
}
vtkDebugMacro(<<"Reading vtk graph ...");
if(!this->OpenVTKFile() || !this->ReadHeader())
{
return 1;
}
// Read table-specific stuff
char line[256];
if(!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile();
return 1;
}
if(strncmp(this->LowerCase(line),"dataset", (unsigned long)7))
{
vtkErrorMacro(<< "Unrecognized keyword: " << line);
this->CloseVTKFile();
return 1;
}
if(!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile ();
return 1;
}
if(strncmp(this->LowerCase(line),"graph", 5))
{
vtkErrorMacro(<< "Cannot read dataset type: " << line);
this->CloseVTKFile();
return 1;
}
vtkGraph* const output = vtkGraph::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
if(!this->ReadString(line))
{
vtkErrorMacro(<<"Data file ends prematurely!");
this->CloseVTKFile();
return 1;
}
if(!strncmp(this->LowerCase(line),"directed", 8))
{
output->SetDirected(true);
}
else if(!strncmp(this->LowerCase(line), "undirected", 10))
{
output->SetDirected(false);
}
else
{
vtkErrorMacro(<< "Unrecognized keyword: " << line);
this->CloseVTKFile();
return 1;
}
int done = 0;
while(!done)
{
if(!this->ReadString(line))
{
break;
}
if(!strncmp(this->LowerCase(line), "field", 5))
{
vtkFieldData* const field_data = this->ReadFieldData();
output->SetFieldData(field_data);
field_data->Delete();
continue;
}
if(!strncmp(this->LowerCase(line), "points", 6))
{
int point_count = 0;
if(!this->Read(&point_count))
{
vtkErrorMacro(<<"Cannot read number of points!");
this->CloseVTKFile ();
return 1;
}
this->ReadPoints(output, point_count);
continue;
}
if(!strncmp(this->LowerCase(line), "vertices", 8))
{
int vertex_count = 0;
if(!this->Read(&vertex_count))
{
vtkErrorMacro(<<"Cannot read number of vertices!");
this->CloseVTKFile ();
return 1;
}
output->SetNumberOfVertices(vertex_count);
continue;
}
if(!strncmp(this->LowerCase(line), "edges", 5))
{
int edge_count = 0;
if(!this->Read(&edge_count))
{
vtkErrorMacro(<<"Cannot read number of edges!");
this->CloseVTKFile ();
return 1;
}
int source = 0;
int target = 0;
for(int edge = 0; edge != edge_count; ++edge)
{
if(!(this->Read(&source) && this->Read(&target)))
{
vtkErrorMacro(<<"Cannot read edge!");
this->CloseVTKFile();
return 1;
}
output->AddEdge(source, target);
}
continue;
}
if(!strncmp(this->LowerCase(line), "point_data", 10))
{
int point_count = 0;
if(!this->Read(&point_count))
{
vtkErrorMacro(<<"Cannot read number of points!");
this->CloseVTKFile ();
return 1;
}
this->ReadPointData(output, point_count);
continue;
}
if(!strncmp(this->LowerCase(line), "cell_data", 9))
{
int cell_count = 0;
if(!this->Read(&cell_count))
{
vtkErrorMacro(<<"Cannot read number of points!");
this->CloseVTKFile ();
return 1;
}
this->ReadCellData(output, cell_count);
continue;
}
vtkErrorMacro(<< "Unrecognized keyword: " << line);
}
vtkDebugMacro(<< "Read " << output->GetNumberOfVertices() <<" vertices and "
<< output->GetNumberOfEdges() <<" edges.\n");
this->CloseVTKFile ();
return 1;
}
//----------------------------------------------------------------------------
int vtkGraphReader::FillOutputPortInformation(int, vtkInformation* info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkGraph");
return 1;
}
//----------------------------------------------------------------------------
void vtkGraphReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
|