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
|
/*
//
// Copyright 1997-2009 Torsten Rohlfing
//
// Copyright 2004-2013 SRI International
//
// This file is part of the Computational Morphometry Toolkit.
//
// http://www.nitrc.org/projects/cmtk/
//
// The Computational Morphometry Toolkit is free software: you can
// redistribute it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// The Computational Morphometry Toolkit is distributed in the hope that it
// will be useful, but WITHOUT ANY WARRANTY; without even the implied
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with the Computational Morphometry Toolkit. If not, see
// <http://www.gnu.org/licenses/>.
//
// $Revision: 5436 $
//
// $LastChangedDate: 2018-12-10 19:01:20 -0800 (Mon, 10 Dec 2018) $
//
// $LastChangedBy: torstenrohlfing $
//
*/
#include "cmtkFileFormat.h"
#include <Base/cmtkTypes.h>
#include <System/cmtkCompressedStream.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include <stdio.h>
#include <string.h>
#include <limits.h>
namespace
cmtk
{
/** \addtogroup IO */
//@{
/// Structure that holds information on magic file number.
typedef
struct
{
/// Offset of the magic number within the file.
unsigned short offset;
/// Magic number as string of characters.
const char *magicString;
/// Length of magic number string (necessary due to Null characters).
const size_t magicStringLength;
} FileFormatMagic;
/// Magic number records for known file types.
const FileFormatMagic FileFormatMagicNumbers[] = {
{ 0, NULL, 0 }, // NEXIST
{ 0, NULL, 0 }, // ARCHIVE
{ 0, NULL, 0 }, // STUDY
{ 0, NULL, 0 }, // STUDYLIST
{ 0, "! TYPEDSTREAM", 13 }, // TypedStream archive
{ 0, "P5", 2 }, // PGM
{ 128, "DICM", 4 }, // DICOM
{ 0, "Modality :=", 11 }, // VANDERBILT
{ 0, "# AmiraMesh 3D", 14 },
{ 0, NULL, 0 }, // RAW
{ 0, NULL, 0 }, // RAW3D
{ 54, "\x39\x30", 2 }, // BIORAD
{ 344, "ni1\x00", 4 }, // Nifti, detached header
{ 344, "n+1\x00", 4 }, // Nifti, single file
{ 0, "AVW_ImageFile", 13 }, // Analyze AVW file.
{ 0, NULL, 0 }, // MetaImage
{ 0, "NRRD", 4 }, //NRRD
{ 0, "\x5C\x01\x00\x00", 4 }, // Analyze little endian
{ 0, "\x00\x00\x01\x5C", 4 }, // Analyze big endian
{ 0, "#Insight Transform File V1.0", 28 }, // ITK transformation file
{ 0, NULL, 0 } // Unknown.
};
const char* FileFormatName[] =
{
/// File of this name does not exist.
"",
/// File is a compressed archive.
"COMPRESSED-ARCHIVE",
/// Path is a typedstream study directory.
"STUDY",
/// Path is a typedstream studylist directory.
"STUDYLIST",
/// Path is a typedstream archive.
"TYPEDSTREAM",
/// Path is a PGM image.
"PGM",
/// Path is a DICOM image.
"DICOM",
/// Path is a Vanderbilt image description file.
"VANDERBILT",
/// Path is a Amira image file.
"AMIRA",
/// Path is some raw binary file (2-D).
"RAW-DATA",
/// Path is some raw binary file (3-D).
"RAW3D",
/// Path is a BioRad .PIC file.
"BIORAD",
/// Nifti, detached header
"NIFTI-DETACHED-HEADER",
/// Nifti, single file
"NIFTI-SINGLE-FILE",
/// Path is an Analyze AVW file.
"ANALYZE-AVW",
/// MetaImage
"METAIMAGE",
/// NRRD
"NRRD",
/// Path is an Analyze 7.5 file in little endian.
"ANALYZE-HDR-LITTLEENDIAN",
/// Path is an Analyze 7.5 file in big endian.
"ANALYZE-HDR-BIGENDIAN",
/** File type cannot be determined.
* This ID always has to be the last one!
*/
NULL
};
FileFormatID
FileFormat::Identify( const std::string& path, const bool decompress )
{
CompressedStream::StatType buf;
if ( CompressedStream::Stat( path, &buf ) < 0 )
return FILEFORMAT_NEXIST;
if ( buf.st_mode & S_IFDIR )
return FileFormat::IdentifyDirectory( path );
else if ( buf.st_mode & S_IFREG )
return FileFormat::IdentifyFile( path, decompress );
return FILEFORMAT_NEXIST;
}
std::string
FileFormat::Describe( const FileFormatID id )
{
switch ( id )
{
case FILEFORMAT_NEXIST:
return "File or directory does not exist.";
case FILEFORMAT_STUDY:
return "Typedstream study archive [Directory].";
case FILEFORMAT_STUDYLIST:
return "Typedstream studylist archive [Directory].";
case FILEFORMAT_PGM:
return "PGM image file [File].";
case FILEFORMAT_DICOM:
return "DICOM image file [File].";
case FILEFORMAT_VANDERBILT:
return "Vanderbilt header/image file combination [File].";
case FILEFORMAT_AMIRA:
return "AmiraMesh image file [File].";
case FILEFORMAT_BIORAD:
return "BioRad image file [File].";
case FILEFORMAT_NIFTI_DETACHED:
return "NIFTI detached header+image [File]";
case FILEFORMAT_NIFTI_SINGLEFILE:
return "NIFTI single file [File]";
case FILEFORMAT_ANALYZE_HDR:
return "Analyze 7.5 file [Header+Binary File/Little Endian].";
case FILEFORMAT_ANALYZE_HDR_BIGENDIAN:
return "Analyze 7.5 file [Header+Binary File/Big Endian].";
case FILEFORMAT_ANALYZE_AVW:
return "Analyze AVW file [File].";
case FILEFORMAT_RAW:
return "RAW image file [File].";
case FILEFORMAT_NRRD:
return "Nrrd image file [File].";
case FILEFORMAT_UNKNOWN:
default:
break;
}
return "ILLEGAL ID tag in FileFormat::Describe().";
}
FileFormatID
FileFormat::IdentifyDirectory( const std::string& path )
{
char filename[PATH_MAX];
struct stat buf;
snprintf( filename, sizeof( filename ), "%s%cimages", path.c_str(), (int)CMTK_PATH_SEPARATOR );
if ( (!stat( filename, &buf )) && ( buf.st_mode & S_IFREG ) )
return FILEFORMAT_STUDY;
snprintf( filename, sizeof( filename ), "%s%cimages.gz", path.c_str(), (int)CMTK_PATH_SEPARATOR );
if ( (!stat( filename, &buf )) && ( buf.st_mode & S_IFREG ) )
return FILEFORMAT_STUDY;
snprintf( filename, sizeof( filename ), "%s%cstudylist", path.c_str(), (int)CMTK_PATH_SEPARATOR );
if ( (!stat( filename, &buf )) && ( buf.st_mode & S_IFREG ) )
return FILEFORMAT_STUDYLIST;
snprintf( filename, sizeof( filename ), "%s%cstudylist.gz", path.c_str(), (int)CMTK_PATH_SEPARATOR );
if ( (!stat( filename, &buf )) && ( buf.st_mode & S_IFREG ) )
return FILEFORMAT_STUDYLIST;
return FILEFORMAT_UNKNOWN;
}
FileFormatID
FileFormat::IdentifyFile( const std::string& path, const bool decompress )
{
CompressedStream stream( path );
if ( ! stream.IsValid() )
return FILEFORMAT_NEXIST;
if ( stream.IsCompressed() && !decompress )
return FILEFORMAT_COMPRESSED_ARCHIVE;
char buffer[348];
memset( buffer, 0, sizeof( buffer ) );
stream.Read( buffer, 1, 348 );
FileFormatID id = FILEFORMAT_NEXIST;
while ( id != FILEFORMAT_UNKNOWN )
{
if ( FileFormatMagicNumbers[id].magicString )
{
if ( !memcmp( buffer+FileFormatMagicNumbers[id].offset, FileFormatMagicNumbers[id].magicString, FileFormatMagicNumbers[id].magicStringLength ) )
return id;
}
char cid = static_cast<char>( id );
id = static_cast<FileFormatID>( ++cid );
}
return FILEFORMAT_UNKNOWN;
}
bool
FileFormat::IsImage( const FileFormatID& id )
{
switch ( id )
{
case FILEFORMAT_STUDY:
case FILEFORMAT_PGM:
case FILEFORMAT_DICOM:
case FILEFORMAT_VANDERBILT:
case FILEFORMAT_AMIRA:
case FILEFORMAT_BIORAD:
case FILEFORMAT_NIFTI_DETACHED:
case FILEFORMAT_NIFTI_SINGLEFILE:
case FILEFORMAT_ANALYZE_AVW:
case FILEFORMAT_METAIMAGE:
case FILEFORMAT_NRRD:
case FILEFORMAT_ANALYZE_HDR:
case FILEFORMAT_ANALYZE_HDR_BIGENDIAN:
return true;
default:
break;
}
return false;
}
bool
FileFormat::IsXform( const FileFormatID& id )
{
switch ( id )
{
case FILEFORMAT_STUDYLIST:
case FILEFORMAT_TYPEDSTREAM:
return true;
default:
break;
}
return false;
}
} // namespace cmtk
|