]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.cxx
STYLE: Remove old comments
[gdcm.git] / src / gdcmDicomDirSerie.cxx
index 22f4b4d43ef63c539432154fa012416bc8c0b279..db93cc01be4ca3e76a5d2cfc060a843c26543f6a 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/08/26 15:29:52 $
-  Version:   $Revision: 1.13 $
+  Date:      $Date: 2005/06/24 10:55:58 $
+  Version:   $Revision: 1.38 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 
 #include "gdcmDicomDirSerie.h"
 #include "gdcmDicomDirElement.h"
+#include "gdcmDicomDirImage.h"
 #include "gdcmGlobal.h"
+#include "gdcmDebug.h"
 
+namespace gdcm 
+{
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 /**
- * \brief  Constructor 
- * @param  s  SQ Item holding the elements related to this "SERIE" part
- * @param ptagHT pointer to the HTable (gdcmObject needs it 
- *               to build the gdcmDocEntries)
+ * \brief  Constructor
+ * \note End user must use : DicomDirStudy::NewSerie() 
  */
-gdcmDicomDirSerie::gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT):
-   gdcmObject(ptagHT)
+DicomDirSerie::DicomDirSerie(bool empty):
+   DicomDirObject()
 {
-   docEntries = s->GetDocEntries();
+   if ( !empty )
+   {
+      ListDicomDirSerieElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirSerieElements();   
+      FillObject(elemList);
+   }
 }
 
-/**
- * \brief  Constructor 
- * @param ptagHT pointer to the HTable (gdcmObject needs it 
- *               to build the gdcmDocEntries)
- */
-gdcmDicomDirSerie::gdcmDicomDirSerie(TagDocEntryHT *ptagHT):
-   gdcmObject(ptagHT)
-{
-}
 /**
  * \brief   Canonical destructor.
  */
-gdcmDicomDirSerie::~gdcmDicomDirSerie() 
+DicomDirSerie::~DicomDirSerie() 
 {
-   for(ListDicomDirImage::iterator cc = images.begin();
-                                   cc != images.end();
-                                   ++cc)
-   {
-      delete *cc;
-   }
+   ClearImage();
 }
 
 //-----------------------------------------------------------------------------
-// Print
+// Public
 /**
- * \brief   Prints the Object
- * @return
+ * \brief   Writes the Object
+ * @param fp ofstream to write to
+ * @param t Type of the File (explicit VR, implicitVR, ...)
  */ 
-void gdcmDicomDirSerie::Print(std::ostream &os)
+void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t)
 {
-   os << "SERIE" << std::endl;
-   gdcmObject::Print(os);
+   DicomDirObject::WriteContent(fp, t);
 
-   for(ListDicomDirImage::iterator cc = images.begin();
-                                   cc != images.end();
-                                   ++cc)
+   for(ListDicomDirImage::iterator cc = Images.begin();
+                                   cc!= Images.end();
+                                 ++cc )
    {
-      (*cc)->SetPrintLevel(PrintLevel);
-      (*cc)->Print(os);
+      (*cc)->WriteContent( fp, t );
    }
 }
 
-//-----------------------------------------------------------------------------
-// Public
-
 /**
- * \brief   Writes the Object
- * @return
- */ 
-void gdcmDicomDirSerie::Write(FILE *fp, FileType t)
+ * \brief   adds a new Image (with the basic elements) to a partially created 
+ *          DICOMDIR
+ */
+DicomDirImage *DicomDirSerie::NewImage()
 {
-   gdcmObject::Write(fp, t);
+   DicomDirImage *st = new DicomDirImage();
+   Images.push_back(st);
+   return st;   
+}
 
-   for(ListDicomDirImage::iterator cc = images.begin();cc!=images.end();++cc)
+/**
+ * \brief  Remove all images in the serie 
+ */
+void DicomDirSerie::ClearImage()
+{
+   for(ListDicomDirImage::iterator cc = Images.begin();
+                                   cc != Images.end();
+                                   ++cc)
    {
-      (*cc)->Write( fp, t );
+      delete *cc;
    }
+   Images.clear();
+}
+
+/**
+ * \brief   Get the first entry while visiting the DicomDirImage
+ * \return  The first DicomDirImage if DicomDirserie not empty, otherwhise NULL
+ */
+DicomDirImage *DicomDirSerie::GetFirstImage()
+{
+   ItImage = Images.begin();
+   if (ItImage != Images.end())
+      return *ItImage;
+   return NULL;
 }
 
 /**
- * \brief   adds a new Image (with the basic elements) to a partially created DICOMDIR
+ * \brief   Get the next entry while visiting the DicomDirImages
+ * \note : meaningfull only if GetFirstEntry already called
+ * \return  The next DicomDirImages if found, otherwhise NULL
  */
-gdcmDicomDirImage * gdcmDicomDirSerie::NewImage()
+DicomDirImage *DicomDirSerie::GetNextImage()
 {
-   std::list<gdcmElement> elemList = 
-      gdcmGlobal::GetDicomDirElements()->GetDicomDirImageElements();
+   gdcmAssertMacro (ItImage != Images.end());
 
-   gdcmDicomDirImage *st = new gdcmDicomDirImage(PtagHT);
-   FillObject(elemList);
-   images.push_front(st);
+   ++ItImage;
+   if (ItImage != Images.end())      
+      return *ItImage;
+   return NULL;
+}
 
-   return st;   
-} 
 //-----------------------------------------------------------------------------
 // Protected
 
@@ -114,3 +127,25 @@ gdcmDicomDirImage * gdcmDicomDirSerie::NewImage()
 // Private
 
 //-----------------------------------------------------------------------------
+// Print
+/**
+ * \brief   Prints the Object
+ * @param os ostream to write to
+ * @param indent Indentation string to be prepended during printing
+ */ 
+void DicomDirSerie::Print(std::ostream &os, std::string const &)
+{
+   os << "SERIE" << std::endl;
+   DicomDirObject::Print(os);
+
+   for(ListDicomDirImage::iterator cc = Images.begin();
+                                   cc != Images.end();
+                                   ++cc)
+   {
+      (*cc)->SetPrintLevel(PrintLevel);
+      (*cc)->Print(os);
+   }
+}
+
+//-----------------------------------------------------------------------------
+} // end namespace gdcm