]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.cxx
Some normalizations :
[gdcm.git] / src / gdcmDicomDirPatient.cxx
index e3235ec8e4aa45933c421e3af20c68d8b61c2cb2..ceeea5b4fe4179e6a699b5712105b98d5c8c3f73 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/17 10:59:52 $
-  Version:   $Revision: 1.25 $
+  Date:      $Date: 2005/01/23 10:12:33 $
+  Version:   $Revision: 1.31 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -21,6 +21,7 @@
 #include "gdcmGlobal.h"
 #include "gdcmDicomDirStudy.h"
 #include "gdcmSQItem.h"
+#include "gdcmDebug.h"
 
 namespace gdcm 
 {
@@ -30,10 +31,17 @@ namespace gdcm
 /**
  * \brief   Constructor
  */
-DicomDirPatient::DicomDirPatient():
+DicomDirPatient::DicomDirPatient(bool empty):
    DicomDirObject()
 {
+   if( !empty )
+   {
+      ListDicomDirStudyElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirPatientElements();
+      FillObject(elemList);
+   }
 }
+
 /**
  * \brief   Canonical destructor.
  */
@@ -52,6 +60,7 @@ DicomDirPatient::~DicomDirPatient()
 /**
  * \brief   Prints the Object
  * @param os ostream to write to 
+ * @param indent Indentation string to be prepended during printing
  */ 
 void DicomDirPatient::Print(std::ostream &os, std::string const & )
 {
@@ -67,6 +76,8 @@ void DicomDirPatient::Print(std::ostream &os, std::string const & )
    }
 }
 
+//-----------------------------------------------------------------------------
+// Public
 /**
  * \brief   Writes the Object
  * @param fp ofstream to write to
@@ -83,8 +94,6 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t)
       (*cc)->WriteContent( fp, t );
    }
 }
-//-----------------------------------------------------------------------------
-// Public
 
 /**
  * \brief   adds a new Patient at the begining of the PatientList
@@ -92,41 +101,54 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t)
  */
 DicomDirStudy* DicomDirPatient::NewStudy()
 {
-   ListDicomDirStudyElem const &elemList = 
-      Global::GetDicomDirElements()->GetDicomDirStudyElements();
-      
    DicomDirStudy *st = new DicomDirStudy();
-   st->FillObject(elemList);
-
-   Studies.push_front(st);
+   Studies.push_back(st);
    return st; 
 }   
 
 /**
- * \brief   Initialise the visit of the DicomDirPatients
- */
-void DicomDirPatient::InitTraversal()
+ * \brief   Get the first entry while visiting the DicomDirStudy
+ * \return  The first DicomDirStudy if found, otherwhise NULL
+ */ 
+DicomDirStudy *DicomDirPatient::GetFirstStudy()
 {
-   ItDicomDirStudy = Studies.begin();
+   ItStudy = Studies.begin();
+   if (ItStudy != Studies.end())
+      return *ItStudy;
+   return NULL;
 }
 
 /**
  * \brief   Get the next entry while visiting the DicomDirStudies
+ * \note : meaningfull only if GetFirstEntry already called
  * \return  The next DicomDirStudies if found, otherwhise NULL
  */
-DicomDirStudy *DicomDirPatient::GetNextEntry()
+DicomDirStudy *DicomDirPatient::GetNextStudy()
 {
-   if (ItDicomDirStudy != Studies.end())
+   gdcmAssertMacro (ItStudy != Studies.end())
    {
-      DicomDirStudy *tmp = *ItDicomDirStudy;
-      ++ItDicomDirStudy;
-      return tmp;
+      ++ItStudy;
+      if (ItStudy != Studies.end())
+         return *ItStudy;
    }
-   else
+   return NULL;
+}
+
+/**
+ * \brief   Get the first entry while visiting the DicomDirStudy
+ * \return  The first DicomDirStudy if found, otherwhise NULL
+ */ 
+DicomDirStudy *DicomDirPatient::GetLastStudy()
+{
+   ItStudy = Studies.end();
+   if (ItStudy != Studies.begin())
    {
-      return NULL;
+      --ItStudy;
+      return *ItStudy;
    }
+   return NULL;
 }
+
 //-----------------------------------------------------------------------------
 // Protected
 
@@ -134,5 +156,4 @@ DicomDirStudy *DicomDirPatient::GetNextEntry()
 // Private
 
 //-----------------------------------------------------------------------------
-
 } // end namespace gdcm