]> Creatis software - gdcm.git/blob - src/gdcmDirList.h
Add new method :
[gdcm.git] / src / gdcmDirList.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDirList.h,v $
5   Language:  C++
6   Date:      $Date: 2007/06/08 12:49:37 $
7   Version:   $Revision: 1.34 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMDIRLIST_H
20 #define GDCMDIRLIST_H
21
22 #include "gdcmBase.h"
23 #include "gdcmDicomDirSerie.h"
24
25 #include <string>
26 #include <vector>
27 #include <iostream>
28
29 namespace GDCM_NAME_SPACE
30 {
31
32 typedef std::vector<std::string> DirListType;
33
34 //-----------------------------------------------------------------------------
35
36 // NOTE: Due to a M$VC6 'feature' we cannot export a std::list in a dll, 
37 // so GDCM_EXPORT keyword was removed for this class only
38
39 /**
40  * \brief   List containing the file headers of all the 'gdcm readable' files
41  *          found by exploring (possibly recursively) a root directory. 
42  */
43 class GDCM_EXPORT DirList : public Base
44 {
45 public :
46    DirList(std::string const &dirName, bool recursive);
47    DirList(DicomDirSerie *s);   
48    ~DirList();
49
50    void Print(std::ostream &os = std::cout, std::string const &indent = "" );
51
52    /// Return the name of the directory
53    std::string const &GetDirName() const { return DirName; }
54
55    /// Return the file names
56    DirListType const &GetFilenames() const { return Filenames; }
57    
58     /// Return the number of Files
59    int GetSize() const { return Filenames.size(); }  
60
61    static bool IsDirectory(std::string const &dirName);
62    
63    std::string GetFirst();
64    std::string GetNext();
65    
66 private :
67    int Explore(std::string const &dirName, bool recursive=false);
68    int Explore(DicomDirSerie *s);
69    
70    /// List of file names
71    DirListType Filenames;
72    /// name of the root directory to explore
73    std::string DirName;
74    
75    /// iterator on the SQItems of the current SeqEntry
76    DirListType::iterator ItDirList;  
77    
78 };
79 } // end namespace gdcm
80 //-----------------------------------------------------------------------------
81 #endif