]> Creatis software - gdcm.git/commitdiff
COMP: Fix compilation on MINGW32
authormalaterre <malaterre>
Thu, 26 May 2005 18:49:46 +0000 (18:49 +0000)
committermalaterre <malaterre>
Thu, 26 May 2005 18:49:46 +0000 (18:49 +0000)
src/gdcmCommon.h
src/gdcmSerieHelper.cxx
src/gdcmSerieHelper.h

index 26ded6d39b3c440f619d9c68ca50a5cd4748bcf2..0e1c24c56426fa2fc10b34db44a375e49678465e 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmCommon.h,v $
   Language:  C++
-  Date:      $Date: 2005/04/05 10:56:25 $
-  Version:   $Revision: 1.63 $
+  Date:      $Date: 2005/05/26 18:49:46 $
+  Version:   $Revision: 1.64 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -57,7 +57,7 @@
 #endif
 
 // Broken plateform do not respect C99 and do not provide those typedef
-#if defined(_MSC_VER) || defined(__BORLANDC__)
+#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
 typedef  signed char         int8_t;
 typedef  signed short        int16_t;
 typedef  signed int          int32_t;
@@ -151,7 +151,7 @@ enum DicomDirType {
 /**
  * \brief structure, for internal use only
  */  
-GDCM_EXPORT typedef struct
+GDCM_EXPORT struct Element
 {
    /// DicomGroup number
    unsigned short int Group;
@@ -159,7 +159,7 @@ GDCM_EXPORT typedef struct
    unsigned short int Elem;
    /// value (coded as a std::string) of the Element
    std::string Value;
-} Element;
+};
 
 } //namespace gdcm
 //-----------------------------------------------------------------------------
index 4c62a8f074ec948580d204acd53d9888d55e036a..32389631c0f909288eb548e54af200d2eec937ac 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmSerieHelper.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/11 17:15:18 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2005/05/26 18:49:46 $
+  Version:   $Revision: 1.7 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -36,13 +36,13 @@ namespace gdcm
 SerieHelper::SerieHelper()
 {
    // For all the File lists of the gdcm::Serie
-   GdcmFileList *l = GetFirstCoherentFileList();
+   FileList *l = GetFirstCoherentFileList();
    while (l)
    { 
       // For all the files of a File list
-      for (GdcmFileList::iterator it  = l->begin();
-                                  it != l->end(); 
-                                ++it)
+      for (FileList::iterator it  = l->begin();
+                              it != l->end(); 
+                            ++it)
       {
          delete *it;
       }
@@ -58,13 +58,13 @@ SerieHelper::SerieHelper()
 SerieHelper::~SerieHelper()
 {
    // For all the Coherent File lists of the gdcm::Serie
-   GdcmFileList *l = GetFirstCoherentFileList();
+   FileList *l = GetFirstCoherentFileList();
    while (l)
    { 
       // For all the files of a Coherent File list
-      for (GdcmFileList::iterator it  = l->begin();
-                                  it != l->end(); 
-                                ++it)
+      for (FileList::iterator it  = l->begin();
+                              it != l->end(); 
+                            ++it)
       {
          delete *it;
       }
@@ -94,14 +94,14 @@ void SerieHelper::AddFileName(std::string const &filename)
       // if uid == GDCM_UNFOUND then consistently we should find GDCM_UNFOUND
       // no need here to do anything special
 
-      if ( CoherentGdcmFileListHT.count(uid) == 0 )
+      if ( CoherentFileListHT.count(uid) == 0 )
       {
          gdcmWarningMacro(" New Serie UID :[" << uid << "]");
          // create a std::list in 'uid' position
-         CoherentGdcmFileListHT[uid] = new GdcmFileList;
+         CoherentFileListHT[uid] = new FileList;
       }
       // Current Serie UID and DICOM header seems to match add the file:
-      CoherentGdcmFileListHT[uid]->push_back( header );
+      CoherentFileListHT[uid]->push_back( header );
    }
    else
    {
@@ -133,30 +133,30 @@ void SerieHelper::SetDirectory(std::string const &dir, bool recursive)
  *          But as I don't know how to do it, I leave it this way
  *          BTW, this is also a Strategy, I don't know this is the best approach :)
  */
-void SerieHelper::OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList)
+void SerieHelper::OrderFileList(FileList *CoherentFileList)
 {
-   if( ImagePositionPatientOrdering( CoherentGdcmFileList ) )
+   if( ImagePositionPatientOrdering( CoherentFileList ) )
    {
       return ;
    }
-   else if( ImageNumberOrdering(CoherentGdcmFileList ) )
+   else if( ImageNumberOrdering(CoherentFileList ) )
    {
       return ;
    }
    else  
    {
-      FileNameOrdering(CoherentGdcmFileList );
+      FileNameOrdering(CoherentFileList );
    }
 }
 
 /**
  * \brief   Get the first List while visiting the CoherentFileListHT
- * @return  The first GdcmFileList if found, otherwhise NULL
+ * @return  The first FileList if found, otherwhise NULL
  */
-GdcmFileList *SerieHelper::GetFirstCoherentFileList()
+FileList *SerieHelper::GetFirstCoherentFileList()
 {
-   ItListHt = CoherentGdcmFileListHT.begin();
-   if( ItListHt != CoherentGdcmFileListHT.end() )
+   ItListHt = CoherentFileListHT.begin();
+   if( ItListHt != CoherentFileListHT.end() )
       return ItListHt->second;
    return NULL;
 }
@@ -164,14 +164,14 @@ GdcmFileList *SerieHelper::GetFirstCoherentFileList()
 /**
  * \brief   Get the next List while visiting the CoherentFileListHT
  * \note : meaningfull only if GetFirstCoherentFileList already called
- * @return  The next GdcmFileList if found, otherwhise NULL
+ * @return  The next FileList if found, otherwhise NULL
  */
-GdcmFileList *SerieHelper::GetNextCoherentFileList()
+FileList *SerieHelper::GetNextCoherentFileList()
 {
-   gdcmAssertMacro (ItListHt != CoherentGdcmFileListHT.end());
+   gdcmAssertMacro (ItListHt != CoherentFileListHT.end());
   
    ++ItListHt;
-   if ( ItListHt != CoherentGdcmFileListHT.end() )
+   if ( ItListHt != CoherentFileListHT.end() )
       return ItListHt->second;
    return NULL;
 }
@@ -181,11 +181,11 @@ GdcmFileList *SerieHelper::GetNextCoherentFileList()
  * @param SerieUID SerieUID
  * \return  pointer to the Coherent Filseslist if found, otherwhise NULL
  */
-GdcmFileList *SerieHelper::GetCoherentFileList(std::string SerieUID)
+FileList *SerieHelper::GetCoherentFileList(std::string SerieUID)
 {
-   if ( CoherentGdcmFileListHT.count(SerieUID) == 0 )
+   if ( CoherentFileListHT.count(SerieUID) == 0 )
       return 0;     
-   return CoherentGdcmFileListHT[SerieUID];
+   return CoherentFileListHT[SerieUID];
 }
 
 //-----------------------------------------------------------------------------
@@ -202,7 +202,7 @@ GdcmFileList *SerieHelper::GetCoherentFileList(std::string SerieUID)
  * @param fileList Coherent File list (same Serie UID) to sort
  * @return false only if the header is bugged !
  */
-bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
+bool SerieHelper::ImagePositionPatientOrdering( FileList *fileList )
 //based on Jolinda's algorithm
 {
    //iop is calculated based on the file file
@@ -216,7 +216,7 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
    std::vector<float> distlist;
 
    //!\todo rewrite this for loop.
-   for ( GdcmFileList::const_iterator 
+   for ( FileList::const_iterator 
          it = fileList->begin();
          it != fileList->end(); ++it )
    {
@@ -270,10 +270,10 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
    // Then I order the slices according to the value "dist". Finally, once
    // I've read in all the slices, I calculate the z-spacing as the difference
    // between the "dist" values for the first two slices.
-   GdcmFileVector CoherentGdcmFileVector(n);
-   // CoherentGdcmFileVector.reserve( n );
-   CoherentGdcmFileVector.resize( n );
-   // gdcmAssertMacro( CoherentGdcmFileVector.capacity() >= n );
+   FileVector CoherentFileVector(n);
+   // CoherentFileVector.reserve( n );
+   CoherentFileVector.resize( n );
+   // gdcmAssertMacro( CoherentFileVector.capacity() >= n );
 
    // Find out if min/max are coherent
    if( min == max )
@@ -287,7 +287,7 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
    n = 0;
     
    //VC++ don't understand what scope is !! it -> it2
-   for (GdcmFileList::const_iterator it2  = fileList->begin();
+   for (FileList::const_iterator it2  = fileList->begin();
         it2 != fileList->end(); ++it2, ++n)
    {
       //2*n sort algo !!
@@ -298,8 +298,8 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
       // and images may have differents directions
       // -> More than one may have the same 'pos'
       // Sorting has then NO meaning !
-      if (CoherentGdcmFileVector[pos]==NULL)
-         CoherentGdcmFileVector[pos] = *it2;
+      if (CoherentFileVector[pos]==NULL)
+         CoherentFileVector[pos] = *it2;
       else
       {
          gdcmWarningMacro( "2 files same position");
@@ -310,14 +310,14 @@ bool SerieHelper::ImagePositionPatientOrdering( GdcmFileList *fileList )
    fileList->clear();  // doesn't delete list elements, only node
   
    //VC++ don't understand what scope is !! it -> it3
-   for (GdcmFileVector::const_iterator it3  = CoherentGdcmFileVector.begin();
-        it3 != CoherentGdcmFileVector.end(); ++it3)
+   for (FileVector::const_iterator it3  = CoherentFileVector.begin();
+        it3 != CoherentFileVector.end(); ++it3)
    {
       fileList->push_back( *it3 );
    }
 
    distlist.clear();
-   CoherentGdcmFileVector.clear();
+   CoherentFileVector.clear();
 
    return true;
 }
@@ -335,12 +335,12 @@ bool SerieHelper::ImageNumberLessThan(File *file1, File *file2)
  * @param fileList Coherent File list (same Serie UID) to sort 
  * @return false if non nona fide stuff encountered
  */
-bool SerieHelper::ImageNumberOrdering(GdcmFileList *fileList) 
+bool SerieHelper::ImageNumberOrdering(FileList *fileList) 
 {
    int min, max, pos;
    int n = fileList->size();
 
-   GdcmFileList::const_iterator it = fileList->begin();
+   FileList::const_iterator it = fileList->begin();
    min = max = (*it)->GetImageNumber();
 
    for (; it != fileList->end(); ++it, ++n)
@@ -369,7 +369,7 @@ bool SerieHelper::FileNameLessThan(File *file1, File *file2)
  * @param fileList Coherent File list (same Serie UID) to sort
  * @return false only if the header is bugged !
  */
-bool SerieHelper::FileNameOrdering(GdcmFileList *fileList)
+bool SerieHelper::FileNameOrdering(FileList *fileList)
 {
    std::sort(fileList->begin(), fileList->end(), SerieHelper::FileNameLessThan);
    return true;
@@ -383,18 +383,18 @@ bool SerieHelper::FileNameOrdering(GdcmFileList *fileList)
 void SerieHelper::Print(std::ostream &os, std::string const & indent)
 {
    // For all the Coherent File lists of the gdcm::Serie
-   CoherentFileListmap::iterator itl = CoherentGdcmFileListHT.begin();
-   if ( itl == CoherentGdcmFileListHT.end() )
+   CoherentFileListmap::iterator itl = CoherentFileListHT.begin();
+   if ( itl == CoherentFileListHT.end() )
    {
       gdcmWarningMacro( "No Coherent File list found" );
       return;
    }
-   while (itl != CoherentGdcmFileListHT.end())
+   while (itl != CoherentFileListHT.end())
    { 
       os << "Serie UID :[" << itl->first << "]" << std::endl;
 
       // For all the files of a Coherent File list
-      for (GdcmFileList::iterator it =  (itl->second)->begin();
+      for (FileList::iterator it =  (itl->second)->begin();
                                   it != (itl->second)->end(); 
                                 ++it)
       {
index 6edc0effb6a28ccf5f6700bef50a8313f03537ab..cea132ebde5d9ab3134117a83e0a96869e6ccd47 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmSerieHelper.h,v $
   Language:  C++
-  Date:      $Date: 2005/02/11 17:01:46 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2005/05/26 18:49:46 $
+  Version:   $Revision: 1.8 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -28,7 +28,7 @@
 namespace gdcm 
 {
 class File;
-typedef std::vector<File* > GdcmFileList;
+typedef std::vector<File* > FileList;
 
 //-----------------------------------------------------------------------------
 /**
@@ -41,8 +41,8 @@ typedef std::vector<File* > GdcmFileList;
 class GDCM_EXPORT SerieHelper 
 {
 public:
-   typedef std::map<std::string, GdcmFileList *> CoherentFileListmap;
-   typedef std::vector<File* > GdcmFileVector;
+   typedef std::map<std::string, FileList *> CoherentFileListmap;
+   typedef std::vector<File* > FileVector;
 
    SerieHelper();
    ~SerieHelper();
@@ -51,27 +51,26 @@ public:
    /// \todo should return bool or throw error ?
    void AddFileName(std::string const &filename);
    void SetDirectory(std::string const &dir, bool recursive=false);
-   void OrderGdcmFileList(GdcmFileList *coherentGdcmFileList);
+   void OrderFileList(FileList *coherentFileList);
    
    /// \brief Gets the FIRST *coherent* File List.
    ///        Deprecated; kept not to break the API
-   /// \note Caller must call OrderGdcmFileList first
+   /// \note Caller must call OrderFileList first
    /// @return the (first) *coherent* File List
-   const GdcmFileList &GetGdcmFileList() { return
-                       *CoherentGdcmFileListHT.begin()->second; }
+   const FileList &GetFileList() { return *CoherentFileListHT.begin()->second; }
   
-   GdcmFileList *GetFirstCoherentFileList();
-   GdcmFileList *GetNextCoherentFileList();
-   GdcmFileList *GetCoherentFileList(std::string serieUID);
+   FileList *GetFirstCoherentFileList();
+   FileList *GetNextCoherentFileList();
+   FileList *GetCoherentFileList(std::string serieUID);
 
 private:
-   bool ImagePositionPatientOrdering(GdcmFileList *coherentGdcmFileList);
-   bool ImageNumberOrdering(GdcmFileList *coherentGdcmFileList);
-   bool FileNameOrdering(GdcmFileList *coherentGdcmFileList);
+   bool ImagePositionPatientOrdering(FileList *coherentFileList);
+   bool ImageNumberOrdering(FileList *coherentFileList);
+   bool FileNameOrdering(FileList *coherentFileList);
    
    static bool ImageNumberLessThan(File *file1, File *file2);
    static bool FileNameLessThan(File *file1, File *file2);
-   CoherentFileListmap CoherentGdcmFileListHT;
+   CoherentFileListmap CoherentFileListHT;
    CoherentFileListmap::iterator ItListHt;
 };