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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkImageWriter.h"
#include "vtkAssume.h"
#include "vtkCommand.h"
#include "vtkErrorCode.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkInformationExecutivePortKey.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include <vtksys/FStream.hxx>
#include <vtksys/SystemTools.hxx>
VTK_ABI_NAMESPACE_BEGIN
vtkStandardNewMacro(vtkImageWriter);
//------------------------------------------------------------------------------
vtkImageWriter::vtkImageWriter()
{
this->FilePrefix = nullptr;
this->FilePattern = nullptr;
this->FileName = nullptr;
this->InternalFileName = nullptr;
this->InternalFileNameSize = 0;
this->FileNumber = 0;
this->FileDimensionality = 2;
this->FilePattern = new char[strlen("%s.%d") + 1];
strcpy(this->FilePattern, "%s.%d");
this->FileLowerLeft = 0;
this->WriteToMemory = 0;
this->MinimumFileNumber = this->MaximumFileNumber = 0;
this->FilesDeleted = 0;
this->SetNumberOfOutputPorts(0);
}
//------------------------------------------------------------------------------
vtkImageWriter::~vtkImageWriter()
{
// get rid of memory allocated for file names
delete[] this->FilePrefix;
this->FilePrefix = nullptr;
delete[] this->FilePattern;
this->FilePattern = nullptr;
delete[] this->FileName;
this->FileName = nullptr;
}
//------------------------------------------------------------------------------
void vtkImageWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "FileName: " << (this->FileName ? this->FileName : "(none)") << "\n";
os << indent << "FilePrefix: " << (this->FilePrefix ? this->FilePrefix : "(none)") << "\n";
os << indent << "FilePattern: " << (this->FilePattern ? this->FilePattern : "(none)") << "\n";
os << indent << "FileDimensionality: " << this->FileDimensionality << "\n";
os << indent << "WriteToMemory: " << this->WriteToMemory << "\n";
}
//------------------------------------------------------------------------------
vtkImageData* vtkImageWriter::GetInput()
{
if (this->GetNumberOfInputConnections(0) < 1)
{
return nullptr;
}
return vtkImageData::SafeDownCast(this->GetExecutive()->GetInputData(0, 0));
}
//------------------------------------------------------------------------------
int vtkImageWriter::RequestData(vtkInformation* vtkNotUsed(request),
vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector))
{
this->SetErrorCode(vtkErrorCode::NoError);
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkImageData* input = vtkImageData::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT()));
// Error checking
if (input == nullptr)
{
vtkErrorMacro(<< "Write:Please specify an input!");
return 0;
}
if (!this->WriteToMemory && !this->FileName && !this->FilePattern)
{
vtkErrorMacro(<< "Write:Please specify either a FileName or a file prefix and pattern");
this->SetErrorCode(vtkErrorCode::NoFileNameError);
return 0;
}
// Make sure the file name is allocated
this->InternalFileNameSize = (this->FileName ? strlen(this->FileName) : 1) +
(this->FilePrefix ? strlen(this->FilePrefix) : 1) +
(this->FilePattern ? strlen(this->FilePattern) : 1) + 10;
this->InternalFileName = new char[this->InternalFileNameSize];
// Fill in image information.
int* wExt = inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
this->FileNumber = wExt[4];
this->MinimumFileNumber = this->MaximumFileNumber = this->FileNumber;
this->FilesDeleted = 0;
// Write
this->InvokeEvent(vtkCommand::StartEvent);
this->UpdateProgress(0.0);
if (this->WriteToMemory)
{
this->MemoryWrite(2, input, wExt, inInfo);
}
else
{
this->RecursiveWrite(2, input, inInfo, nullptr);
}
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
this->DeleteFiles();
}
this->UpdateProgress(1.0);
this->InvokeEvent(vtkCommand::EndEvent);
delete[] this->InternalFileName;
this->InternalFileName = nullptr;
this->InternalFileNameSize = 0;
return 1;
}
//------------------------------------------------------------------------------
// Writes all the data from the input.
void vtkImageWriter::Write()
{
// we always write, even if nothing has changed, so send a modified
this->Modified();
this->UpdateWholeExtent();
}
//------------------------------------------------------------------------------
// Breaks region into pieces with correct dimensionality.
void vtkImageWriter::RecursiveWrite(
int axis, vtkImageData* cache, vtkInformation* inInfo, ostream* file)
{
vtkImageData* data;
int fileOpenedHere = 0;
// if we need to open another slice, do it
if (!file && (axis + 1) == this->FileDimensionality)
{
// determine the name
if (this->FileName)
{
snprintf(this->InternalFileName, this->InternalFileNameSize, "%s", this->FileName);
}
else
{
if (this->FilePrefix)
{
snprintf(this->InternalFileName, this->InternalFileNameSize, this->FilePattern,
this->FilePrefix, this->FileNumber);
}
else
{
snprintf(
this->InternalFileName, this->InternalFileNameSize, this->FilePattern, this->FileNumber);
}
if (this->FileNumber < this->MinimumFileNumber)
{
this->MinimumFileNumber = this->FileNumber;
}
else if (this->FileNumber > this->MaximumFileNumber)
{
this->MaximumFileNumber = this->FileNumber;
}
}
std::ios_base::openmode mode = ios::out;
#ifdef _WIN32
mode |= ios::binary;
#endif
file = new vtksys::ofstream(this->InternalFileName, mode);
fileOpenedHere = 1;
if (file->fail())
{
vtkErrorMacro("RecursiveWrite: Could not open file " << this->InternalFileName);
this->SetErrorCode(vtkErrorCode::CannotOpenFileError);
delete file;
return;
}
// Subclasses can write a header with this method call.
int* wExt = vtkStreamingDemandDrivenPipeline::GetWholeExtent(inInfo);
this->WriteFileHeader(file, cache, wExt);
file->flush();
if (file->fail())
{
delete file;
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
return;
}
++this->FileNumber;
}
// Propagate the update extent so we can determine pipeline size
vtkStreamingDemandDrivenPipeline* inputExec =
vtkStreamingDemandDrivenPipeline::SafeDownCast(vtkExecutive::PRODUCER()->GetExecutive(inInfo));
int inputOutputPort = vtkExecutive::PRODUCER()->GetPort(inInfo);
inputExec->PropagateUpdateExtent(inputOutputPort);
// just get the data and write it out
#ifndef NDEBUG
int* ext = inInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT());
#endif
vtkDebugMacro("Getting input extent: " << ext[0] << ", " << ext[1] << ", " << ext[2] << ", "
<< ext[3] << ", " << ext[4] << ", " << ext[5] << endl);
inputExec->Update(inputOutputPort);
data = cache;
this->RecursiveWrite(axis, cache, data, inInfo, file);
if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError)
{
this->DeleteFiles();
return;
}
if (file && fileOpenedHere)
{
this->WriteFileTrailer(file, cache);
file->flush();
if (file->fail())
{
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
}
delete file;
}
}
//------------------------------------------------------------------------------
// same idea as the previous method, but it knows that the data is ready
void vtkImageWriter::RecursiveWrite(
int axis, vtkImageData* cache, vtkImageData* data, vtkInformation* inInfo, ostream* file)
{
int idx, min, max;
int* wExt = vtkStreamingDemandDrivenPipeline::GetWholeExtent(inInfo);
// if the file is already open then just write to it
if (file)
{
this->WriteFile(
file, data, inInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT()), wExt);
file->flush();
if (file->fail())
{
delete file;
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
}
return;
}
// if we need to open another slice, do it
if (!file && (axis + 1) == this->FileDimensionality)
{
// determine the name
if (this->FileName)
{
snprintf(this->InternalFileName, this->InternalFileNameSize, "%s", this->FileName);
}
else
{
if (this->FilePrefix)
{
snprintf(this->InternalFileName, this->InternalFileNameSize, this->FilePattern,
this->FilePrefix, this->FileNumber);
}
else
{
snprintf(
this->InternalFileName, this->InternalFileNameSize, this->FilePattern, this->FileNumber);
}
if (this->FileNumber < this->MinimumFileNumber)
{
this->MinimumFileNumber = this->FileNumber;
}
else if (this->FileNumber > this->MaximumFileNumber)
{
this->MaximumFileNumber = this->FileNumber;
}
}
std::ios_base::openmode mode = ios::out;
#ifdef _WIN32
mode |= ios::binary;
#endif
file = new vtksys::ofstream(this->InternalFileName, mode);
if (file->fail())
{
vtkErrorMacro("RecursiveWrite: Could not open file " << this->InternalFileName);
this->SetErrorCode(vtkErrorCode::CannotOpenFileError);
delete file;
return;
}
// Subclasses can write a header with this method call.
this->WriteFileHeader(file, cache, wExt);
file->flush();
if (file->fail())
{
delete file;
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
return;
}
this->WriteFile(
file, data, inInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT()), wExt);
file->flush();
if (file->fail())
{
delete file;
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
return;
}
++this->FileNumber;
this->WriteFileTrailer(file, cache);
file->flush();
if (file->fail())
{
this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError);
}
delete file;
return;
}
// if the current region is too high a dimension forthe file
// the we will split the current axis
int* updateExtent = inInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT());
cache->GetAxisUpdateExtent(axis, min, max, updateExtent);
int axisUpdateExtent[6];
// if it is the y axis then flip by default
if (axis == 1 && !this->FileLowerLeft)
{
for (idx = max; idx >= min; idx--)
{
cache->SetAxisUpdateExtent(axis, idx, idx, updateExtent, axisUpdateExtent);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), axisUpdateExtent, 6);
if (this->ErrorCode != vtkErrorCode::OutOfDiskSpaceError)
{
this->RecursiveWrite(axis - 1, cache, data, inInfo, file);
}
else
{
this->DeleteFiles();
}
}
}
else
{
for (idx = min; idx <= max; idx++)
{
cache->SetAxisUpdateExtent(axis, idx, idx, updateExtent, axisUpdateExtent);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), axisUpdateExtent, 6);
if (this->ErrorCode != vtkErrorCode::OutOfDiskSpaceError)
{
this->RecursiveWrite(axis - 1, cache, data, inInfo, file);
}
else
{
this->DeleteFiles();
}
}
}
// restore original extent
cache->SetAxisUpdateExtent(axis, min, max, updateExtent, axisUpdateExtent);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), axisUpdateExtent, 6);
}
//------------------------------------------------------------------------------
template <class T>
unsigned long vtkImageWriterGetSize(T*)
{
return sizeof(T);
}
//------------------------------------------------------------------------------
// Writes a region in a file. Subclasses can override this method
// to produce a header. This method only handles 3d data (plus components).
void vtkImageWriter::WriteFile(ostream* file, vtkImageData* data, int extent[6], int wExtent[6])
{
int idxY, idxZ;
int rowLength; // in bytes
void* ptr;
unsigned long count = 0;
unsigned long target;
float progress = this->Progress;
float area;
// Make sure we actually have data.
if (!data->GetPointData()->GetScalars())
{
vtkErrorMacro(<< "Could not get data from input.");
return;
}
// take into consideration the scalar type
switch (data->GetScalarType())
{
vtkTemplateMacro(rowLength = vtkImageWriterGetSize(static_cast<VTK_TT*>(nullptr)));
default:
vtkErrorMacro(<< "Execute: Unknown output ScalarType");
return;
}
rowLength *= data->GetNumberOfScalarComponents();
rowLength *= (extent[1] - extent[0] + 1);
area = (float)((extent[5] - extent[4] + 1) * (extent[3] - extent[2] + 1) *
(extent[1] - extent[0] + 1)) /
(float)((wExtent[5] - wExtent[4] + 1) * (wExtent[3] - wExtent[2] + 1) *
(wExtent[1] - wExtent[0] + 1));
target =
(unsigned long)((extent[5] - extent[4] + 1) * (extent[3] - extent[2] + 1) / (50.0 * area));
target++;
int ystart = extent[3];
int yend = extent[2] - 1;
int yinc = -1;
if (this->FileLowerLeft)
{
ystart = extent[2];
yend = extent[3] + 1;
yinc = 1;
}
for (idxZ = extent[4]; idxZ <= extent[5]; ++idxZ)
{
for (idxY = ystart; idxY != yend; idxY = idxY + yinc)
{
if (!(count % target))
{
this->UpdateProgress(progress + count / (50.0 * target));
}
count++;
ptr = data->GetScalarPointer(extent[0], idxY, idxZ);
if (!file->write((char*)ptr, rowLength))
{
return;
}
}
}
}
void vtkImageWriter::DeleteFiles()
{
if (this->FilesDeleted)
{
return;
}
vtkErrorMacro("Ran out of disk space; deleting file(s) already written");
if (this->FileName)
{
vtksys::SystemTools::RemoveFile(this->FileName);
}
else
{
if (this->FilePrefix)
{
size_t fileNameLength = strlen(this->FilePrefix) + strlen(this->FilePattern) + 10;
std::vector<char> fileName(fileNameLength);
for (int i = this->MinimumFileNumber; i <= this->MaximumFileNumber; i++)
{
VTK_ASSUME(fileName.data() != nullptr); // silence warning.
snprintf(fileName.data(), fileNameLength, this->FilePattern, this->FilePrefix, i);
vtksys::SystemTools::RemoveFile(fileName.data());
}
}
else
{
size_t fileNameLength = strlen(this->FilePattern) + 10;
std::vector<char> fileName(fileNameLength);
for (int i = this->MinimumFileNumber; i <= this->MaximumFileNumber; i++)
{
snprintf(fileName.data(), fileNameLength, this->FilePattern, i);
vtksys::SystemTools::RemoveFile(fileName.data());
}
}
}
this->FilesDeleted = 1;
}
VTK_ABI_NAMESPACE_END
|