00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkGDCMSeriesFileNames.h,v $ 00005 Language: C++ 00006 Date: $Date: 2010-02-25 00:55:49 $ 00007 Version: $Revision: 1.19 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __itkGDCMSeriesFileNames_h 00018 #define __itkGDCMSeriesFileNames_h 00019 00020 #include "itkObject.h" 00021 #include "itkObjectFactory.h" 00022 #include "itkExceptionObject.h" 00023 #include <vector> 00024 #include "gdcmSerieHelper.h" 00025 00026 namespace itk 00027 { 00028 00050 typedef std::vector<std::string> FilenamesContainer; 00051 typedef std::vector<std::string> SerieUIDContainer; 00052 class ITK_EXPORT GDCMSeriesFileNames : public Object 00053 { 00054 public: 00056 typedef GDCMSeriesFileNames Self; 00057 typedef Object Superclass; 00058 typedef SmartPointer<Self> Pointer; 00059 00061 itkNewMacro(Self); 00062 00064 itkTypeMacro(GDCMSeriesFileNames, Object); 00065 00066 /* -------- Define the API for GDCMSeriesFileNames ----------- */ 00067 00069 void SetInputDirectory (const char * name); 00070 00072 void SetInputDirectory (std::string const &name); 00073 00075 void SetDirectory (std::string const &name) 00076 { 00077 SetInputDirectory(name); 00078 } 00079 00083 const FilenamesContainer &GetInputFileNames (); 00084 00086 void SetOutputDirectory (std::string const &name) 00087 { 00088 m_OutputDirectory = name; 00089 this->Modified(); 00090 } 00092 00098 const FilenamesContainer &GetOutputFileNames (); 00099 00106 const FilenamesContainer &GetFileNames(const std::string serie); 00107 00113 const SerieUIDContainer &GetSeriesUIDs(); 00114 00116 itkSetMacro(Recursive, bool); 00117 itkGetConstMacro(Recursive, bool); 00118 itkBooleanMacro(Recursive); 00120 00125 void SetUseSeriesDetails( bool useSeriesDetails); 00126 00131 bool GetUseSeriesDetails( void ) 00132 { 00133 return m_UseSeriesDetails; 00134 } 00135 00142 gdcm::SerieHelper * GetSeriesHelper( void ) 00143 { 00144 return m_SerieHelper; 00145 } 00146 00153 void AddSeriesRestriction(const std::string & tag) 00154 { 00155 m_SerieHelper->AddRestriction( tag ); 00156 } 00157 00158 00163 itkSetMacro(LoadSequences, bool); 00164 itkGetConstMacro(LoadSequences, bool); 00165 itkBooleanMacro(LoadSequences); 00167 00172 itkSetMacro(LoadPrivateTags, bool); 00173 itkGetConstMacro(LoadPrivateTags, bool); 00174 itkBooleanMacro(LoadPrivateTags); 00176 00177 protected: 00178 GDCMSeriesFileNames(); 00179 ~GDCMSeriesFileNames(); 00180 void PrintSelf(std::ostream& os, Indent indent) const; 00181 00182 private: 00183 GDCMSeriesFileNames(const Self&); //purposely not implemented 00184 void operator=(const Self&); //purposely not implemented 00185 00187 std::string m_InputDirectory; 00188 00190 std::string m_OutputDirectory; 00191 00193 FilenamesContainer m_InputFileNames; 00194 FilenamesContainer m_OutputFileNames; 00195 00197 gdcm::SerieHelper *m_SerieHelper; 00198 00200 SerieUIDContainer m_SeriesUIDs; 00201 00202 bool m_UseSeriesDetails; 00203 bool m_Recursive; 00204 bool m_LoadSequences; 00205 bool m_LoadPrivateTags; 00206 00207 }; 00208 00209 } //namespace ITK 00210 00211 #endif // __itkGDCMSeriesFileNames_h 00212