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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2010, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-400124
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
// ************************************************************************* //
// avtRAWFileFormat.C //
// ************************************************************************* //
#include <avtRAWFileFormat.h>
#include <string>
#include <map>
#include <vtkPolyData.h>
#include <vtkCellArray.h>
#include <vtkPoints.h>
#include <FileFunctions.h>
#include <StringHelpers.h>
#include <snprintf.h>
#include <Expression.h>
#include <DebugStream.h>
#include <TimingsManager.h>
#include <avtDatabaseMetaData.h>
#include <InvalidFilesException.h>
// ****************************************************************************
// Class: VertexManager
//
// Purpose:
// This class manages inserts into a vtkPoints object to make sure that the
// points are unique.
//
// Notes:
//
// Programmer: Brad Whitlock
// Creation: Wed Mar 7 08:58:03 PDT 2007
//
// Modifications:
//
// ****************************************************************************
class VertexManager
{
public:
VertexManager(vtkPoints *pts)
{
points = pts;
}
~VertexManager()
{
}
int GetVertexId(const double *vert)
{
char keystr[200];
SNPRINTF(keystr, 200, "%2.6f,%2.6f,%2.6f",
(float)vert[0], (float)vert[1], (float)vert[2]);
std::string key(keystr);
int ret;
std::map<std::string, int>::const_iterator pos =
vertexNamesToIndex.find(key);
if(pos != vertexNamesToIndex.end())
{
ret = pos->second;
}
else
{
int index = points->GetNumberOfPoints();
points->InsertNextPoint(vert);
vertexNamesToIndex[key] = index;
ret = index;
}
return ret;
}
private:
vtkPoints *points; // Does not own this pointer.
std::map<std::string, int> vertexNamesToIndex;
};
// ****************************************************************************
// Method: avtRAWFileFormat constructor
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
avtRAWFileFormat::avtRAWFileFormat(const char *filename)
: avtSTMDFileFormat(&filename, 1), meshes()
{
initialized = false;
}
// ****************************************************************************
// Method: avtRAWFileFormat destructor
//
// Programmer: Brad Whitlock
// Creation: Sat Sep 29 16:10:09 PST 2007
//
// Modifications:
//
// ****************************************************************************
avtRAWFileFormat::~avtRAWFileFormat()
{
FreeUpResources();
}
// ****************************************************************************
// Method: avtRAWFileFormat::FreeUpResources
//
// Purpose:
// When VisIt is done focusing on a particular timestep, it asks that
// timestep to free up any resources (memory, file descriptors) that
// it has associated with it. This method is the mechanism for doing
// that.
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
void
avtRAWFileFormat::FreeUpResources(void)
{
for(int i = 0; i < meshes.size(); ++i)
{
if(meshes[i].mesh != 0)
meshes[i].mesh->Delete();
}
meshes.clear();
initialized = false;
}
// ****************************************************************************
// Method: avtRAWFileFormat::NewPD
//
// Purpose:
// Creates a new polydata.
//
// Arguments:
// nCells : The number of cells to allocate.
//
// Returns: A new polydata.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Sat Sep 29 16:09:43 PST 2007
//
// Modifications:
//
// ****************************************************************************
vtkPolyData *
avtRAWFileFormat::NewPD(int nCells)
{
vtkPolyData *pd = vtkPolyData::New();
vtkPoints *pts = vtkPoints::New();
pts->Allocate(nCells * 3);
pd->SetPoints(pts);
pts->Delete();
pd->Allocate(nCells * 3);
return pd;
}
// ****************************************************************************
// Method: avtRAWFileFormat::ReadFile
//
// Purpose:
// Reads the file and makes a list of meshes.
//
// Arguments:
// name : The name of the file to read.
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Sat Sep 29 16:09:20 PST 2007
//
// Modifications:
// Jeremy Meredith, Thu Jan 7 12:05:31 EST 2010
// ifstream can generate errors instead of eofs. Changed the test used.
// Check the first 100 lines for non-ASCII characters.
//
// Jeremy Meredith, Fri Jan 8 16:18:13 EST 2010
// Make sure scanf succeeded in strict mode.
// Throw exception on a bad domain name in strict mode.
//
// Mark C. Miller, Thu Jan 21 17:57:43 PST 2010
// Made it handle case of file with data but no domain name by tightening
// logic on exception for empty to domain name to trigger only when
// ifile.eof() is not true.
// ****************************************************************************
void
avtRAWFileFormat::ReadFile(const char *name)
{
const char *mName = "avtRAWFileFormat::ReadFile: ";
int total = visitTimer->StartTimer();
debug4 << mName << endl;
// Open the file.
ifstream ifile(name);
if (ifile.fail())
{
EXCEPTION1(InvalidFilesException, name);
}
debug4 << "Opened the file: " << name << endl;
bool trianglesAdded = false;
#ifndef MDSERVER
// Make a guess about the number of cells and points based on
// the size of the file.
int nCells = 100;
VisItStat_t statbuf;
VisItStat(name, &statbuf);
VisItOff_t fileSize = statbuf.st_size;
nCells = fileSize / (VisItOff_t) 80;
debug4 << mName << "Guessing there are about " << nCells << " cells" << endl;
vtkPolyData *currentPD = NewPD(nCells);
VertexManager *vertexMgr = new VertexManager(currentPD->GetPoints());
#else
vtkPolyData *currentPD = 0;
#endif
int domain = 0;
char line[1024];
double pts[9] = {0.,0.,0.,0.,0.,0.,0.,0.,0.};
int nc = 0;
for(int lineIndex = 0; ifile.good(); ++lineIndex)
{
// Get the line
ifile.getline(line, 1024);
if (lineIndex<100 && !StringHelpers::IsPureASCII(line, 1024))
EXCEPTION2(InvalidFilesException, name, "Not ASCII.");
// Skip leading spaces.
char *cptr = line;
while((*cptr == ' ' || *cptr == '\t') &&
(cptr < (line + 1024)))
++cptr;
if((cptr[0] >= '0' && cptr[0] <= '9') || (cptr[0] == '-'))
{
#ifndef MDSERVER
// We found a line with points. Read the line and add a triangle cell.
int n = sscanf(cptr, "%lg %lg %lg %lg %lg %lg %lg %lg %lg",
&pts[0], &pts[1], &pts[2],
&pts[3], &pts[4], &pts[5],
&pts[6], &pts[7], &pts[8]);
if (GetStrictMode() && n != 9)
{
EXCEPTION2(InvalidFilesException, GetFilename(),
"Bad line in file; less than nine values");
}
vtkIdType ids[3];
ids[0] = vertexMgr->GetVertexId(pts);
ids[1] = vertexMgr->GetVertexId(pts + 3);
ids[2] = vertexMgr->GetVertexId(pts + 6);
currentPD->InsertNextCell(VTK_TRIANGLE, 3, ids);
#endif
trianglesAdded = true;
}
else
{
// If we're hitting a new object name and we've added some triangles
// then we need to add the currentPD to the meshes vector.
if(trianglesAdded)
{
if(meshes.size() == 0)
{
// We get here when we've created some polydata but have not
// seen an object id for it yet. In that case, we add an object
// to the list.
debug4 << mName << "Adding Object mesh" << endl;
domain_data dom;
dom.domainName = "Object";
dom.mesh = currentPD;
meshes.push_back(dom);
++domain;
}
#ifndef MDSERVER
else
{
// We get here when we've created some polydata for a tag that
// we've seen and we're encountering a new tag.
debug4 << mName << "Setting mesh for mesh["
<< (domain-1) << "]\n";
meshes[domain-1].mesh = currentPD;
}
currentPD->Squeeze();
// Reset for a new polydata.
currentPD = NewPD(nCells);
delete vertexMgr;
vertexMgr = new VertexManager(currentPD->GetPoints());
#endif
trianglesAdded = false;
}
// We have the name of a new object.
domain_data dom;
int len = strlen(cptr);
if(len > 0)
{
// If the new name is valid then add a mesh entry for it.
if(cptr[len-1] == '\n')
cptr[len-1] = '\0'; // Remove the end of line.
dom.domainName = std::string(cptr);
dom.mesh = 0;
meshes.push_back(dom);
++domain;
debug4 << mName << "Domain " << domain << " is called: " << cptr << endl;
}
else
{
debug4 << mName << "Empty domain name" << endl;
if (GetStrictMode() && !ifile.eof())
{
EXCEPTION2(InvalidFilesException, GetFilename(),
"Empty domain name.");
}
}
}
}
// Print out the meshes list
debug4 << "MESHES\n===========================\n";
for(int i = 0; i < meshes.size(); ++i)
{
debug4 << mName << "Mesh " << i << ": " << meshes[i].domainName.c_str()
<< ", ptr=" << (void*)meshes[i].mesh << endl;
}
#ifndef MDSERVER
// Delete the vertex manager if it exists.
if(vertexMgr != 0)
delete vertexMgr;
#endif
debug4 << mName << "end" << endl;
visitTimer->StopTimer(total, "Loading RAW file");
}
// ****************************************************************************
// Method: avtRAWFileFormat::ActivateTimestep
//
// Purpose:
// Called on changes of time step.
//
// Arguments:
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Sat Sep 29 16:08:52 PST 2007
//
// Modifications:
//
// ****************************************************************************
void
avtRAWFileFormat::ActivateTimestep()
{
if(!initialized)
{
ReadFile(filenames[0]);
initialized = true;
}
}
// ****************************************************************************
// Method: avtRAWFileFormat::PopulateDatabaseMetaData
//
// Purpose:
// This database meta-data object is like a table of contents for the
// file. By populating it, you are telling the rest of VisIt what
// information it can request from you.
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
void
avtRAWFileFormat::PopulateDatabaseMetaData(avtDatabaseMetaData *md)
{
avtMeshMetaData *mmd = new avtMeshMetaData;
mmd->name = "mesh";
mmd->meshType = AVT_SURFACE_MESH;
mmd->spatialDimension = 3;
mmd->topologicalDimension = 2;
mmd->numBlocks = meshes.size();
stringVector names;
for(int i = 0; i < meshes.size(); ++i)
names.push_back(meshes[i].domainName);
mmd->blockNames = names;
md->Add(mmd);
const char *expdefs[] = {"coord(mesh)[0]","coord(mesh)[1]","coord(mesh)[2]"};
const char *expnames[] = {"x", "y", "z"};
for(int i = 0; i < 3; ++i)
{
Expression expr;
expr.SetName(expnames[i]);
expr.SetDefinition(expdefs[i]);
expr.SetType(Expression::ScalarMeshVar);
md->AddExpression(&expr);
}
}
// ****************************************************************************
// Method: avtRAWFileFormat::GetMesh
//
// Purpose:
// Gets the mesh associated with this file. The mesh is returned as a
// derived type of vtkDataSet (ie vtkRectilinearGrid, vtkStructuredGrid,
// vtkUnstructuredGrid, etc).
//
// Arguments:
// domain The index of the domain. If there are NDomains, this
// value is guaranteed to be between 0 and NDomains-1,
// regardless of block origin.
// meshname The name of the mesh of interest. This can be ignored if
// there is only one mesh.
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
vtkDataSet *
avtRAWFileFormat::GetMesh(int domain, const char *meshname)
{
meshes[domain].mesh->Register(NULL);
return meshes[domain].mesh;
}
// ****************************************************************************
// Method: avtRAWFileFormat::GetVar
//
// Purpose:
// Gets a scalar variable associated with this file. Although VTK has
// support for many different types, the best bet is vtkFloatArray, since
// that is supported everywhere through VisIt.
//
// Arguments:
// domain The index of the domain. If there are NDomains, this
// value is guaranteed to be between 0 and NDomains-1,
// regardless of block origin.
// varname The name of the variable requested.
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
vtkDataArray *
avtRAWFileFormat::GetVar(int domain, const char *varname)
{
return 0;
}
// ****************************************************************************
// Method: avtRAWFileFormat::GetVectorVar
//
// Purpose:
// Gets a vector variable associated with this file. Although VTK has
// support for many different types, the best bet is vtkFloatArray, since
// that is supported everywhere through VisIt.
//
// Arguments:
// domain The index of the domain. If there are NDomains, this
// value is guaranteed to be between 0 and NDomains-1,
// regardless of block origin.
// varname The name of the variable requested.
//
// Programmer: Brad Whitlock
// Creation: Fri Sep 28 13:43:19 PST 2007
//
// ****************************************************************************
vtkDataArray *
avtRAWFileFormat::GetVectorVar(int domain, const char *varname)
{
return 0;
}
|