]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_dir.hxx
Removal of PLIB/SG from SimGear
[simgear.git] / simgear / misc / sg_dir.hxx
1
2 // Written by James Turner, started July 2010.
3 //
4 // Copyright (C) 2010  Curtis L. Olson - http://www.flightgear.org/~curt
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Library General Public
8 // License as published by the Free Software Foundation; either
9 // version 2 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Library General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 //
20 // $Id$
21
22
23 #ifndef _SG_DIR_HXX
24 #define _SG_DIR_HXX
25
26 #include <sys/types.h>
27
28 #include <simgear/compiler.h>
29 #include <string>
30
31 #include <simgear/math/sg_types.hxx>
32 #include <simgear/misc/sg_path.hxx>
33
34 namespace simgear
35 {
36   typedef std::vector<SGPath> PathList;
37
38   class Dir
39   {
40   public:
41     Dir(const SGPath& path);
42     Dir(const Dir& rel, const SGPath& relPath);
43     
44     enum FileTypes
45     {
46       TYPE_FILE = 1,
47       TYPE_DIR = 2,
48       NO_DOT_OR_DOTDOT = 1 << 12,
49       INCLUDE_HIDDEN = 1 << 13
50     };
51     
52     PathList children(int types = 0, const std::string& nameGlob = "") const;
53     
54     SGPath file(const std::string& name) const;
55     
56     /**
57      * Check that the directory at the path exists (and is a directory!)
58      */
59     bool exists() const;
60   private:
61     mutable SGPath _path;
62   };
63 } // of namespace simgear
64
65 #endif // _SG_DIR_HXX
66
67