]> Creatis software - gdcm.git/blob - src/gdcmDirList.h
* Add Command and CommandManager to have possible callback
[gdcm.git] / src / gdcmDirList.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDirList.h,v $
5   Language:  C++
6   Date:      $Date: 2005/11/28 15:20:33 $
7   Version:   $Revision: 1.28 $
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 "gdcmCommon.h"
23 #include "gdcmCommandManager.h"
24
25 #include <string>
26 #include <vector>
27 #include <iostream>
28
29 namespace gdcm 
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 (possibely recursively) a root directory. 
42  */
43 class GDCM_EXPORT DirList : public CommandManager
44 {
45 public :
46    DirList(std::string const &dirName, bool recursive=false);
47    ~DirList();
48
49    void Print(std::ostream &os = std::cout);
50
51    /// Return the name of the directory
52    std::string const &GetDirName() const { return DirName; }
53
54    /// Return the file names
55    DirListType const &GetFilenames() const { return Filenames; }
56
57    static bool IsDirectory(std::string const &dirName);
58
59 private :
60    int Explore(std::string const &dirName, bool recursive=false);
61
62    /// List of file names
63    DirListType Filenames;
64    /// name of the root directory to explore
65    std::string DirName;
66 };
67 } // end namespace gdcm
68 //-----------------------------------------------------------------------------
69 #endif