]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.cxx
* Add the Copy method in all datas
[gdcm.git] / src / gdcmDicomDirSerie.cxx
index 0abf587e748e0f0b01157f891b54d405b18f2b83..3737076e424ff7095a846e7e862ccfaca099a14f 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/20 11:09:23 $
-  Version:   $Revision: 1.31 $
+  Date:      $Date: 2005/11/29 12:48:46 $
+  Version:   $Revision: 1.40 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 
 namespace gdcm 
 {
-
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 /**
- * \brief  Constructor 
+ * \brief  Constructor
+ * \note End user must use : DicomDirStudy::NewSerie() 
  */
-DicomDirSerie::DicomDirSerie():
+DicomDirSerie::DicomDirSerie(bool empty):
    DicomDirObject()
 {
-}
-/**
- * \brief   Canonical destructor.
- */
-DicomDirSerie::~DicomDirSerie() 
-{
-   for(ListDicomDirImage::iterator cc = Images.begin();
-                                   cc != Images.end();
-                                   ++cc)
+   if ( !empty )
    {
-      delete *cc;
+      ListDicomDirSerieElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirSerieElements();   
+      FillObject(elemList);
    }
 }
 
-//-----------------------------------------------------------------------------
-// Print
 /**
- * \brief   Prints the Object
- * @param os ostream to write to
- * @param   indent indent
- */ 
-void DicomDirSerie::Print(std::ostream &os, std::string const &)
+ * \brief   Canonical destructor.
+ */
+DicomDirSerie::~DicomDirSerie() 
 {
-   os << "SERIE" << std::endl;
-   DicomDirObject::Print(os);
-
-   for(ListDicomDirImage::iterator cc = Images.begin();
-                                   cc != Images.end();
-                                   ++cc)
-   {
-      (*cc)->SetPrintLevel(PrintLevel);
-      (*cc)->Print(os);
-   }
+   ClearImage();
 }
 
 //-----------------------------------------------------------------------------
@@ -88,23 +69,33 @@ void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t)
 }
 
 /**
- * \brief   adds a new Image (with the basic elements) to a partially created DICOMDIR
+ * \brief   adds a new Image (with the basic elements) to a partially created 
+ *          DICOMDIR
  */
 DicomDirImage *DicomDirSerie::NewImage()
 {
-   ListDicomDirImageElem const &elemList = 
-      Global::GetDicomDirElements()->GetDicomDirImageElements();
-
-   DicomDirImage *st = new DicomDirImage();
-   st->FillObject(elemList);
+   DicomDirImage *dd = DicomDirImage::New();
+   Images.push_back(dd);
+   return dd;   
+}
 
-   Images.push_back(st);
-   return st;   
+/**
+ * \brief  Remove all images in the serie 
+ */
+void DicomDirSerie::ClearImage()
+{
+   for(ListDicomDirImage::iterator cc = Images.begin();
+                                   cc != Images.end();
+                                   ++cc)
+   {
+      (*cc)->Delete();
+   }
+   Images.clear();
 }
 
 /**
  * \brief   Get the first entry while visiting the DicomDirImage
- * \return  The first DicomDirImage if found, otherwhise NULL
+ * \return  The first DicomDirImage if DicomDirserie not empty, otherwhise NULL
  */
 DicomDirImage *DicomDirSerie::GetFirstImage()
 {
@@ -122,27 +113,32 @@ DicomDirImage *DicomDirSerie::GetFirstImage()
 DicomDirImage *DicomDirSerie::GetNextImage()
 {
    gdcmAssertMacro (ItImage != Images.end());
-   {
-      ++ItImage;
-      if (ItImage != Images.end())      
-         return *ItImage;
-   }
+
+   ++ItImage;
+   if (ItImage != Images.end())      
+      return *ItImage;
    return NULL;
 }
+
 /**
- * \brief   Get the first entry while visiting the DicomDirImage
- * \return  The first DicomDirImage if found, otherwhise NULL
+ * \brief Copies all the attributes from an other DocEntrySet 
+ * @param set entry to copy from
+ * @remarks The contained DocEntries a not copied, only referenced
  */
-DicomDirImage *DicomDirSerie::GetLastImage()
+void DicomDirSerie::Copy(DocEntrySet *set)
 {
-   ItImage = Images.end();
-   if (ItImage != Images.begin())
+   // Remove all previous childs
+   ClearImage();
+
+   DicomDirObject::Copy(set);
+
+   DicomDirSerie *ddEntry = dynamic_cast<DicomDirSerie *>(set);
+   if( ddEntry )
    {
-      --ItImage;
-      return *ItImage;
+      Images = ddEntry->Images;
+      for(ItImage = Images.begin();ItImage != Images.end();++ItImage)
+         (*ItImage)->Register();
    }
-   return NULL;
 }
 
 //-----------------------------------------------------------------------------
@@ -152,6 +148,25 @@ DicomDirImage *DicomDirSerie::GetLastImage()
 // Private
 
 //-----------------------------------------------------------------------------
-} // end namespace gdcm
+// 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