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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkPNMReader.h"
#include "vtkImageData.h"
#include "vtkObjectFactory.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include <vtksys/SystemTools.hxx>
VTK_ABI_NAMESPACE_BEGIN
vtkStandardNewMacro(vtkPNMReader);
static char vtkPNMReaderGetChar(FILE* fp)
{
char c;
int result;
if ((result = getc(fp)) == EOF)
{
return '\0';
}
c = (char)result;
if (c == '#')
{
do
{
if ((result = getc(fp)) == EOF)
{
return '\0';
}
c = (char)result;
} while (c != '\n');
}
return c;
}
static int vtkPNMReaderGetInt(FILE* fp)
{
char c;
int result = 0;
do
{
c = vtkPNMReaderGetChar(fp);
} while ((c < '1') || (c > '9'));
do
{
result = result * 10 + (c - '0');
c = vtkPNMReaderGetChar(fp);
} while ((c >= '0') && (c <= '9'));
// put the CR/LF or whitespace back.....
ungetc(c, fp);
return result;
}
void vtkPNMReader::ExecuteInformation()
{
int xsize, ysize, comp;
char magic[80];
char c;
FILE* fp;
// if the user has not set the extent, but has set the VOI
// set the zaxis extent to the VOI z axis
if (this->DataExtent[4] == 0 && this->DataExtent[5] == 0 &&
(this->DataVOI[4] || this->DataVOI[5]))
{
this->DataExtent[4] = this->DataVOI[4];
this->DataExtent[5] = this->DataVOI[5];
}
if (!this->FileName && !this->FilePattern)
{
vtkErrorMacro(<< "Either a FileName or FilePattern must be specified.");
return;
}
// Allocate the space for the filename
this->ComputeInternalFileName(this->DataExtent[4]);
// get the magic number by reading in a file
fp = vtksys::SystemTools::Fopen(this->InternalFileName, "rb");
if (!fp)
{
vtkErrorMacro("Unable to open file " << this->InternalFileName);
return;
}
do
{
c = vtkPNMReaderGetChar(fp);
if (c == '\0')
{ // Bad file.
int invalidExtent[6] = { 0, -1, 0, -1, 0, -1 };
vtkStreamingDemandDrivenPipeline::SetWholeExtent(
this->GetOutputInformation(0), invalidExtent);
fclose(fp);
return;
}
} while (c != 'P');
magic[0] = c;
magic[1] = vtkPNMReaderGetChar(fp);
magic[2] = '\0';
// now get the dimensions
xsize = vtkPNMReaderGetInt(fp);
ysize = vtkPNMReaderGetInt(fp);
// read max pixel value into comp for now
vtkPNMReaderGetInt(fp);
// if file is ascii, any amount of whitespace may follow.
// if file is binary, a single whitespace character will follow.
// We only support binary ppm and pgm files right now. So the next
// character IS always ignored.
c = getc(fp);
// if this file was "written" on the PC, then a CR will have been
// written as a CR/LF combination. So, if this single whitespace
// character is a CR and it is followed by a LF, then swallow the
// linefeed character as well. (Not part of the PPM standard, but a
// a hard fact of life.
if (c == 0x0d)
{
c = getc(fp);
if (c != 0x0a)
{
ungetc(c, fp);
}
}
// Set the header size now that we have parsed it
this->SetHeaderSize(ftell(fp));
fclose(fp);
// compare magic number to determine file type
if (!strcmp(magic, "P5"))
{
comp = 1;
}
else if (!strcmp(magic, "P6"))
{
comp = 3;
}
else
{
vtkErrorMacro(<< "Unknown file type! " << this->InternalFileName
<< " is not a binary PGM or PPM!");
return;
}
// if the user has set the VOI, just make sure its valid
if (this->DataVOI[0] || this->DataVOI[1] || this->DataVOI[2] || this->DataVOI[3] ||
this->DataVOI[4] || this->DataVOI[5])
{
if ((this->DataVOI[0] < 0) || (this->DataVOI[1] >= xsize) || (this->DataVOI[2] < 0) ||
(this->DataVOI[3] >= ysize))
{
vtkWarningMacro(
"The requested VOI is larger than the file's (" << this->InternalFileName << ") extent ");
this->DataVOI[0] = 0;
this->DataVOI[1] = xsize - 1;
this->DataVOI[2] = 0;
this->DataVOI[3] = ysize - 1;
}
}
this->DataExtent[0] = 0;
this->DataExtent[1] = xsize - 1;
this->DataExtent[2] = 0;
this->DataExtent[3] = ysize - 1;
this->SetDataScalarTypeToUnsignedChar();
this->SetNumberOfScalarComponents(comp);
this->vtkImageReader::ExecuteInformation();
}
inline int iseol(int c)
{
return c == 10 || c == 13;
}
int vtkPNMReader::CanReadFile(const char* fname)
{
FILE* fp = vtksys::SystemTools::Fopen(fname, "rb");
if (!fp)
{
return 0;
}
unsigned char magic[3];
if (fread(magic, 1, 3, fp) != 3)
{
fclose(fp);
return 0;
}
int ok = ((magic[0] == 'P') && iseol(magic[2]) && (magic[1] >= '1' && magic[1] <= '6'));
fclose(fp);
if (ok)
{
return 3;
}
return 0;
}
//------------------------------------------------------------------------------
void vtkPNMReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
VTK_ABI_NAMESPACE_END
|