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
|
/*=========================================================================
Program: DICOMParser
Module: DICOMSource.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 <iostream>
#include <fstream>
#include <iomanip>
#include <stdio.h>
#include <string.h>
#include "DICOMConfig.h"
#include "DICOMSource.h"
namespace DICOMPARSER_NAMESPACE
{
DICOMSource::DICOMSource()
{
/* 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";
}
}
DICOMSource::~DICOMSource()
{
}
DICOMSource::DICOMSource(const DICOMSource& in)
{
if (strcmp(in.PlatformEndian, "LittleEndian") == 0)
{
PlatformEndian = "LittleEndian";
}
else
{
PlatformEndian = "BigEndian";
}
}
void DICOMSource::operator=(const DICOMSource& in)
{
if (strcmp(in.PlatformEndian, "LittleEndian") == 0)
{
PlatformEndian = "LittleEndian";
}
else
{
PlatformEndian = "BigEndian";
}
}
doublebyte DICOMSource::ReadDoubleByte()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swapShort(sh);
}
return(sh);
}
doublebyte DICOMSource::ReadDoubleByteAsLittleEndian()
{
doublebyte sh = 0;
int sz = sizeof(doublebyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swapShort(sh);
}
return(sh);
}
quadbyte DICOMSource::ReadQuadByte()
{
quadbyte sh;
int sz = sizeof(quadbyte);
this->Read((char*)&(sh),sz);
if (PlatformIsBigEndian)
{
sh = swapLong(sh);
}
return(sh);
}
quadbyte DICOMSource::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 DICOMSource::ReadAsciiFloat(int len)
{
float ret=0.0f;
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 DICOMSource::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* DICOMSource::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
|