]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_dir.cxx
Removal of PLIB/SG from SimGear
[simgear.git] / simgear / misc / sg_dir.cxx
1 // Written by James Turner, started July 2010.
2 //
3 // Copyright (C) 2010  Curtis L. Olson - http://www.flightgear.org/~curt
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19 // $Id$
20
21
22 #include <simgear/misc/sg_dir.hxx>
23
24 #ifdef _WIN32
25 #  define WIN32_LEAN_AND_MEAN
26 #  include <windows.h>
27 #else
28 #  include <sys/types.h>
29 #  include <dirent.h>
30 #endif
31
32 #include <sys/stat.h>
33
34 #include <simgear/debug/logstream.hxx>
35
36 #include <cstring>
37 #include <iostream>
38
39 namespace simgear
40 {
41
42 Dir::Dir(const SGPath& path) :
43   _path(path)
44 {
45 }
46
47 Dir::Dir(const Dir& rel, const SGPath& relPath) :
48   _path(rel.file(relPath.str()))
49 {
50 }
51
52 PathList Dir::children(int types, const std::string& nameFilter) const
53 {
54   PathList result;
55   if (types == 0) {
56     types = TYPE_FILE | TYPE_DIR | NO_DOT_OR_DOTDOT;
57   }
58   
59 #ifdef _WIN32
60   std::string search(_path.str());
61   if (nameFilter.empty()) {
62     search += "\\*"; // everything
63   } else {
64     search += "\\*" + nameFilter;
65   }
66   
67   WIN32_FIND_DATA fData;
68   HANDLE find = FindFirstFile(search.c_str(), &fData);
69   if (find == INVALID_HANDLE_VALUE) {
70     SG_LOG(SG_GENERAL, SG_WARN, "Dir::children: FindFirstFile failed:" << _path.str());
71     return result;
72   }
73   
74   bool done = false;
75   for (bool done = false; !done; done = (FindNextFile(find, &fData) == 0)) {
76     if (fData.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) {
77       if (!(types & INCLUDE_HIDDEN)) {
78         continue;
79       }
80     }
81     
82     if (fData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
83           if (types & NO_DOT_OR_DOTDOT) {
84                 if (!strcmp(fData.cFileName,".") || !strcmp(fData.cFileName,"..")) {
85                   continue;
86                 }
87           }
88
89       if (!(types & TYPE_DIR)) {
90         continue;
91       }
92         } else if ((fData.dwFileAttributes & FILE_ATTRIBUTE_DEVICE) ||
93                                 (fData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT))
94         {
95                 continue; // always ignore device files
96     } else if (!(types & TYPE_FILE)) {
97        continue;
98     }
99
100     result.push_back(file(fData.cFileName));
101   }
102
103   FindClose(find);
104 #else
105   DIR* dp = opendir(_path.c_str());
106   if (!dp) {
107     SG_LOG(SG_GENERAL, SG_WARN, "Dir::children: opendir failed:" << _path.str());
108     return result;
109   }
110   
111   while (true) {
112     struct dirent* entry = readdir(dp);
113     if (!entry) {
114       break; // done iteration
115     }
116     
117     // skip hidden files (names beginning with '.') unless requested
118     if (!(types & INCLUDE_HIDDEN) && (entry->d_name[0] == '.')) {
119       continue;
120     }
121     
122     struct stat s;
123     if (stat(file(entry->d_name).c_str(), &s)) {
124       continue; // stat() failed
125     }
126     
127     if (S_ISDIR(s.st_mode)) {
128       // directory handling
129       if (!(types & TYPE_DIR)) {
130         continue;
131       }
132       
133       if (types & NO_DOT_OR_DOTDOT) {
134         if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..")) {
135           continue;
136         }
137       }
138     } else if (S_ISREG(s.st_mode)) {
139       // regular file handling
140       if (!(types & TYPE_FILE)) {
141         continue;
142       }
143     } else {
144       // block device /fifo/char file, ignore
145       continue;
146     }
147
148     if (!nameFilter.empty()) {
149       if (strstr(entry->d_name, nameFilter.c_str()) == NULL) {
150         continue;
151       }
152     }
153     
154   // passed all criteria, add to our result vector
155     result.push_back(file(entry->d_name));
156   }
157   
158   closedir(dp);
159 #endif
160   return result;
161 }
162
163 bool Dir::exists() const
164 {
165 #ifdef _WIN32
166   struct _stat buf ;
167
168   if (_stat (_path.c_str(), &buf ) < 0) {
169     return false;
170   }
171   
172   return ((S_IFDIR & buf.st_mode ) !=0);
173 #else
174   struct stat buf ;
175
176   if (stat(_path.c_str(), &buf ) < 0) {
177     return false ;
178   }
179   
180   return ((S_ISDIR(buf.st_mode )) != 0);
181 #endif
182 }
183
184 SGPath Dir::file(const std::string& name) const
185 {
186   SGPath childPath = _path;
187   childPath.append(name);
188   return childPath;  
189 }
190
191 } // of namespace simgear