]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_dir.cxx
On Unix, check for symlinks from readdir(), and look through them (using stat())...
[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 & TYPE_DIR)) {
84         continue;
85       }
86         } else if ((fData.dwFileAttributes & FILE_ATTRIBUTE_DEVICE) ||
87                                 (fData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT))
88         {
89                 continue; // always ignore device files
90     } else if (!(types & TYPE_FILE)) {
91        continue;
92     }
93
94     result.push_back(file(fData.cFileName));
95   }
96
97   FindClose(find);
98 #else
99   DIR* dp = opendir(_path.c_str());
100   if (!dp) {
101     SG_LOG(SG_GENERAL, SG_WARN, "Dir::children: opendir failed:" << _path.str());
102     return result;
103   }
104   
105   while (true) {
106     struct dirent* entry = readdir(dp);
107     if (!entry) {
108       break; // done iteration
109     }
110     
111     // skip hidden files (names beginning with '.') unless requested
112     if (!(types & INCLUDE_HIDDEN) && (entry->d_name[0] == '.')) {
113       continue;
114     }
115     
116     int type = entry->d_type;
117     if (type == DT_LNK) {
118       // find symlink target type using stat()
119       struct stat s;
120       if (stat(file(entry->d_name).c_str(), &s)) {
121         continue; // stat() failed
122       }
123       
124       if (S_ISDIR(s.st_mode)) {
125         type = DT_DIR;
126       } else if (S_ISREG(s.st_mode)) {
127         type = DT_REG;
128       } else {
129         // symlink to block/fifo/char file, ignore
130         continue;
131       }
132     } // of symlink look-through
133     
134     if (type == DT_DIR) {
135       if (!(types & TYPE_DIR)) {
136         continue;
137       }
138       
139       if (types & NO_DOT_OR_DOTDOT) {
140         if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, "..")) {
141           continue;
142         }
143       }
144     } else if (type == DT_REG) {
145       if (!(types & TYPE_FILE)) {
146         continue;
147       }
148     } else {
149       continue; // ignore char/block devices, fifos, etc
150     }
151     
152     if (!nameFilter.empty()) {
153       if (strstr(entry->d_name, nameFilter.c_str()) == NULL) {
154         continue;
155       }
156     }
157     
158   // passed all criteria, add to our result vector
159     result.push_back(file(entry->d_name));
160   }
161   
162   closedir(dp);
163 #endif
164   return result;
165 }
166
167 SGPath Dir::file(const std::string& name) const
168 {
169   SGPath childPath = _path;
170   childPath.append(name);
171   return childPath;  
172 }
173
174 } // of namespace simgear