Program: gdcm
Module: $RCSfile: gdcmDataEntry.cxx,v $
Language: C++
- Date: $Date: 2006/07/04 09:36:18 $
- Version: $Revision: 1.40 $
+ Date: $Date: 2006/07/10 08:27:27 $
+ Version: $Revision: 1.41 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
#include <fstream>
#if defined(__BORLANDC__)
- #include <mem.h> // for memcpy
+ #include <mem.h> // for memcpy
#include <stdlib.h> // for atof
- #include <ctype.h> // for isdigit
+ #include <ctype.h> // for isdigit
#endif
namespace gdcm
State = STATE_LOADED;
Flag = FLAG_NONE;
+ StrArea = 0;
BinArea = 0;
SelfArea = true;
}
{
Flag = FLAG_NONE;
BinArea = 0;
+
SelfArea = true;
Copy(e);
DataEntry::~DataEntry ()
{
DeleteBinArea();
+
}
//-----------------------------------------------------------------------------
static std::ostringstream s;
const VRKey &vr = GetVR();
s.str("");
- StrArea="";
+
+ if (!StrArea)
+ StrArea = new std::string();
+ else
+ *StrArea="";
if( !BinArea )
- return StrArea;
+ return *StrArea;
// When short integer(s) are stored, convert the following (n * 2) characters
// as a displayable string, the values being separated by a back-slash
if( vr == "US" )
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
}
else if (vr == "SS" )
{
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
} // See above comment on multiple short integers (mutatis mutandis).
else if( vr == "UL" )
{
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
}
else if( vr == "SL" )
{
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
} else if( vr == "FL" )
{
float *data=(float *)BinArea;
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
}
else if( vr == "FD" )
{
s << '\\';
s << data[i];
}
- StrArea=s.str();
+ *StrArea=s.str();
}
else
{
- StrArea.append((const char *)BinArea,GetLength());
+ StrArea->append((const char *)BinArea,GetLength());
// to avoid gdcm to propagate oddities in lengthes
if ( GetLength()%2)
- StrArea.append(" ",1); }
- return StrArea;
+ StrArea->append(" ",1); }
+ return *StrArea;
}
/**
* \brief Copies all the attributes from an other DocEntry
* @param doc entry to copy from
- * @remarks The content BinArea is copied too
+ * @remarks The content BinArea is copied too (StrArea is not)
*/
void DataEntry::Copy(DocEntry *doc)
{
{
State = entry->State;
Flag = entry->Flag;
- CopyBinArea(entry->BinArea,entry->GetLength());
+ CopyBinArea(entry->BinArea,entry->GetLength());
}
}
//-----------------------------------------------------------------------------
// Protected
-/// \brief Creates a DataEntry owned BinArea (remove previous one if any)
+/// \brief Creates a DataEntry owned BinArea
+/// (remove previous one if any and relevant StrArea if any)
void DataEntry::NewBinArea( )
{
DeleteBinArea();
BinArea = new uint8_t[GetLength()];
SelfArea = true;
}
-/// \brief Removes the BinArea, if owned by the DataEntry
+/// \brief Removes the BinArea, if owned by the DataEntry,
+/// and the relevant StrArea if any
void DataEntry::DeleteBinArea(void)
{
if (BinArea && SelfArea)
delete[] BinArea;
BinArea = NULL;
}
+ if (StrArea)
+ {
+ delete StrArea;
+ StrArea = 0;
+ }
}
//-----------------------------------------------------------------------------
Program: gdcm
Module: $RCSfile: gdcmDataEntry.h,v $
Language: C++
- Date: $Date: 2006/04/11 16:03:26 $
- Version: $Revision: 1.14 $
+ Date: $Date: 2006/07/10 08:27:28 $
+ Version: $Revision: 1.15 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
bool SelfArea;
/// \brief std::string representable value of the Entry.
/// Parts of a multivaluated data are separated by back-slash
- mutable std::string StrArea;
+ //mutable std::string StrArea;
+ mutable std::string *StrArea; // to avoid allocating useless std::string
private:
/// \brief 0 for straight entries, FLAG_PIXELDATA for Pixel Data entries
Program: gdcm
Module: $RCSfile: gdcmVR.cxx,v $
Language: C++
- Date: $Date: 2006/07/06 16:57:06 $
- Version: $Revision: 1.50 $
+ Date: $Date: 2006/07/10 08:27:27 $
+ Version: $Revision: 1.51 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
}
from.close();
}
+ char *VRvalues = "AEASCSDADSFLFDISLOLTPNSHSLSSSTTMUIULUSUTOBOWOFATUNSQ";
}
/**
*/
bool VR::IsVROfStringRepresentable(VRKey const &tested)
{
-
return tested == "AE" ||
tested == "AS" ||
tested == "CS" ||
/// \brief checks is a supposed-to-be VR is a 'legal' one.
bool VR::IsValidVR(VRKey const &key)
{
- return vr.find(key) != vr.end();
+// return vr.find(key) != vr.end();
+
+ int nbVal=26;
+ char *pt = VRvalues;
+ for (int i=0;i<nbVal;i++)
+ {
+ if(tested[0] == *pt++)
+ if(tested[1] == *pt++)
+ return true;
+ }
+ return false;
+
}
#endif