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
|
/*=========================================================================
Program: DICOMParser
Module: DICOMFile.cxx
Language: C++
Date: $Date$
Version: $Revision$
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 "DICOMConfig.h"
#include "DICOMFile.h"
#include <stdio.h>
#include <string.h>
#include <string>
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 = static_cast<long>(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(static_cast<char*>(ptr), nbytes);
// dicom_stream::cout << (char*) ptr << dicom_stream::endl;
}
doublebyte DICOMFile::ReadDoubleByte()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read(reinterpret_cast<char*>(&sh),sz);
if (PlatformIsBigEndian)
{
sh = swap2(sh);
}
return(sh);
}
doublebyte DICOMFile::ReadDoubleByteAsLittleEndian()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read(reinterpret_cast<char*>(&sh),sz);
if (PlatformIsBigEndian)
{
sh = swap2(sh);
}
return(sh);
}
quadbyte DICOMFile::ReadQuadByte()
{
quadbyte sh;
int sz = sizeof(quadbyte);
this->Read(reinterpret_cast<char*>(&sh),sz);
if (PlatformIsBigEndian)
{
sh = static_cast<quadbyte>(swap4(static_cast<uint>(sh)));
}
return(sh);
}
quadbyte DICOMFile::ReadNBytes(int len)
{
quadbyte ret = -1;
switch (len)
{
case 1:
char ch;
this->Read(&ch,1); //from Image
ret =static_cast<quadbyte>(ch);
break;
case 2:
ret =static_cast<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
|