Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

285 lines
5.4 KiB

/*=========================================================================
Program: DICOMParser
Module: $RCSfile: DICOMFile.cxx,v $
Language: C++
Date: $Date: 2005/07/26 20:02:22 $
Version: $Revision: 1.11 $
Copyright (c) 2003 Matt Turek
All rights reserved.
See Copyright.txt 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.
=========================================================================*/
#ifdef _MSC_VER
#pragma warning ( disable : 4514 )
#pragma warning ( disable : 4710 )
#pragma warning ( push, 3 )
#endif
#include <stdio.h>
#include <string.h>
#include "DICOMConfig.h"
#include "DICOMFile.h"
DICOMFile::DICOMFile() : InputStream()
{
/* Are we little or big endian? From Harbison&Steele. */
union
{
long l;
char c[sizeof (long)];
} u;
u.l = 1;
PlatformIsBigEndian = (u.c[sizeof (long) - 1] == 1);
if (PlatformIsBigEndian)
{
PlatformEndian = "BigEndian";
}
else
{
PlatformEndian = "LittleEndian";
}
}
DICOMFile::~DICOMFile()
{
this->Close();
}
DICOMFile::DICOMFile(const DICOMFile& in)
{
if (strcmp(in.PlatformEndian, "LittleEndian") == 0)
{
PlatformEndian = "LittleEndian";
}
else
{
PlatformEndian = "BigEndian";
}
//
// Some compilers can't handle. Comment out for now.
//
// InputStream = in.InputStream;
}
void DICOMFile::operator=(const DICOMFile& in)
{
if (strcmp(in.PlatformEndian, "LittleEndian") == 0)
{
PlatformEndian = "LittleEndian";
}
else
{
PlatformEndian = "BigEndian";
}
//
// Some compilers can't handle. Comment out for now.
//
// InputStream = in.InputStream;
}
bool DICOMFile::Open(const dicom_stl::string& filename)
{
#ifdef _WIN32
InputStream.open(filename.c_str(), dicom_stream::ios::binary | dicom_stream::ios::in);
#else
InputStream.open(filename.c_str(), dicom_stream::ios::in);
#endif
//if (InputStream.is_open())
if (InputStream.rdbuf()->is_open())
{
return true;
}
else
{
return false;
}
}
void DICOMFile::Close()
{
InputStream.close();
}
long DICOMFile::Tell()
{
long loc = InputStream.tellg();
// dicom_stream::cout << "Tell: " << loc << dicom_stream::endl;
return loc;
}
void DICOMFile::SkipToPos(long increment)
{
InputStream.seekg(increment, dicom_stream::ios::beg);
}
long DICOMFile::GetSize()
{
long curpos = this->Tell();
InputStream.seekg(0,dicom_stream::ios::end);
long size = this->Tell();
// dicom_stream::cout << "Tell says size is: " << size << dicom_stream::endl;
this->SkipToPos(curpos);
return size;
}
void DICOMFile::Skip(long increment)
{
InputStream.seekg(increment, dicom_stream::ios::cur);
}
void DICOMFile::SkipToStart()
{
InputStream.seekg(0, dicom_stream::ios::beg);
}
void DICOMFile::Read(void* ptr, long nbytes)
{
InputStream.read((char*)ptr, nbytes);
// dicom_stream::cout << (char*) ptr << dicom_stream::endl;
}
doublebyte DICOMFile::ReadDoubleByte()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swap2(sh);
}
return(sh);
}
doublebyte DICOMFile::ReadDoubleByteAsLittleEndian()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swap2(sh);
}
return(sh);
}
quadbyte DICOMFile::ReadQuadByte()
{
quadbyte sh;
int sz = sizeof(quadbyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swap4(sh);
}
return(sh);
}
quadbyte DICOMFile::ReadNBytes(int len)
{
quadbyte ret = -1;
switch (len)
{
case 1:
char ch;
this->Read(&ch,1); //from Image
ret =(quadbyte) ch;
break;
case 2:
ret =(quadbyte) ReadDoubleByte();
break;
case 4:
ret = ReadQuadByte();
break;
default:
dicom_stream::cerr << "Unable to read " << len << " bytes" << dicom_stream::endl;
break;
}
return (ret);
}
float DICOMFile::ReadAsciiFloat(int len)
{
float ret=0.0;
char* val = new char[len+1];
this->Read(val,len);
val[len] = '\0';
#if 0
//
// istrstream destroys the data during formatted input.
//
int len2 = static_cast<int> (strlen((char*) val));
char* val2 = new char[len2];
strncpy(val2, (char*) val, len2);
dicom_stream::istrstream data(val2);
data >> ret;
delete [] val2;
#else
sscanf(val,"%e",&ret);
#endif
dicom_stream::cout << "Read ASCII float: " << ret << dicom_stream::endl;
delete [] val;
return (ret);
}
int DICOMFile::ReadAsciiInt(int len)
{
int ret=0;
char* val = new char[len+1];
this->Read(val,len);
val[len] = '\0';
#if 0
//
// istrstream destroys the data during formatted input.
//
int len2 = static_cast<int> (strlen((char*) val));
char* val2 = new char[len2];
strncpy(val2, (char*) val, len2);
dicom_stream::istrstream data(val2);
data >> ret;
delete [] val2;
#else
sscanf(val,"%d",&ret);
#endif
dicom_stream::cout << "Read ASCII int: " << ret << dicom_stream::endl;
delete [] val;
return (ret);
}
char* DICOMFile::ReadAsciiCharArray(int len)
{
if (len <= 0)
{
return NULL;
}
char* val = new char[len + 1];
this->Read(val, len);
val[len] = 0; // NULL terminate.
return val;
}
#ifdef _MSC_VER
#pragma warning ( pop )
#endif