]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_dir.hxx
string list joining, and a test case for that and splitting.
[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 #ifdef _MSC_VER
35   typedef int mode_t;
36 #endif
37
38 namespace simgear
39 {
40   typedef std::vector<SGPath> PathList;
41
42   class Dir
43   {
44   public:
45     Dir();
46       
47     static Dir current();
48     
49     /**
50      * create a temporary directory, using the supplied name
51      */
52     static Dir tempDir(const std::string& templ);
53       
54     Dir(const SGPath& path);
55     Dir(const Dir& rel, const SGPath& relPath);
56     
57     enum FileTypes
58     {
59       TYPE_FILE = 1,
60       TYPE_DIR = 2,
61       NO_DOT_OR_DOTDOT = 1 << 12,
62       INCLUDE_HIDDEN = 1 << 13
63     };
64     
65     PathList children(int types = 0, const std::string& nameGlob = "") const;
66     
67     SGPath file(const std::string& name) const;
68     
69     SGPath path() const
70         { return _path; }
71     
72     /**
73      * create the directory (and any parents as required) with the
74      * request mode, or return failure
75      */
76     bool create(mode_t mode);
77     
78     /**
79      * remove the directory. 
80      * If recursive is true, contained files and directories are
81      * recursively removed
82      */
83     bool remove(bool recursive = false);
84     
85     /**
86      * Check that the directory at the path exists (and is a directory!)
87      */
88     bool exists() const;
89     
90     /**
91      * parent directory, if one exists
92      */
93     Dir parent() const;
94   private:
95     mutable SGPath _path;
96   };
97 } // of namespace simgear
98
99 #endif // _SG_DIR_HXX
100
101