]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/dir.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDir implementation for Unix/POSIX systems
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "dir.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/filefn.h" // for wxMatchWild
39 #include <sys/types.h>
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 #define M_DIR ((wxDirData *)m_data)
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 // this class stores everything we need to enumerate the files
59 wxDirData(const wxString
& dirname
);
62 bool IsOk() const { return m_dir
!= NULL
; }
64 void SetFileSpec(const wxString
& filespec
) { m_filespec
= filespec
; }
65 void SetFlags(int flags
) { m_flags
= flags
; }
67 void Rewind() { rewinddir(m_dir
); }
68 bool Read(wxString
*filename
);
70 const wxString
& GetName() const { return m_dirname
; }
81 // ============================================================================
83 // ============================================================================
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
89 #if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
91 wxDirData::wxDirData(const wxString
& dirname
)
96 // throw away the trailing slashes
97 size_t n
= m_dirname
.length();
98 wxCHECK_RET( n
, _T("empty dir name in wxDir") );
100 while ( n
> 0 && m_dirname
[--n
] == '/' )
103 m_dirname
.Truncate(n
+ 1);
106 m_dir
= opendir(m_dirname
.fn_str());
109 wxDirData::~wxDirData()
113 if ( closedir(m_dir
) != 0 )
115 wxLogLastError(_T("closedir"));
120 bool wxDirData::Read(wxString
*filename
)
122 dirent
*de
= (dirent
*)NULL
; // just to silence compiler warnings
123 bool matches
= FALSE
;
125 // speed up string concatenation in the loop a bit
126 wxString path
= m_dirname
;
128 path
.reserve(path
.length() + 255);
139 de_d_name
= wxConvLibc
.cMB2WC( de
->d_name
);
141 de_d_name
= de
->d_name
;
144 // don't return "." and ".." unless asked for
145 if ( de
->d_name
[0] == '.' &&
146 ((de
->d_name
[1] == '.' && de
->d_name
[2] == '\0') ||
147 (de
->d_name
[1] == '\0')) )
149 if ( !(m_flags
& wxDIR_DOTDOT
) )
152 // we found a valid match
156 // check the type now
157 if ( !(m_flags
& wxDIR_FILES
) && !wxDir::Exists(path
+ de_d_name
) )
159 // it's a file, but we don't want them
162 else if ( !(m_flags
& wxDIR_DIRS
) && wxDir::Exists(path
+ de_d_name
) )
164 // it's a dir, and we don't want it
168 // finally, check the name
169 if ( m_filespec
.empty() )
171 matches
= m_flags
& wxDIR_HIDDEN
? TRUE
: de
->d_name
[0] != '.';
176 matches
= TRUE
; // FIXME
178 // test against the pattern
179 matches
= wxMatchWild(m_filespec
, de_d_name
,
180 !(m_flags
& wxDIR_HIDDEN
));
185 *filename
= de_d_name
;
190 #else // old VMS (TODO)
192 wxDirData::wxDirData(const wxString
& WXUNUSED(dirname
))
194 wxFAIL_MSG(_T("not implemented"));
197 wxDirData::~wxDirData()
201 bool wxDirData::Read(wxString
* WXUNUSED(filename
))
206 #endif // not or new VMS/old VMS
208 // ----------------------------------------------------------------------------
210 // ----------------------------------------------------------------------------
213 bool wxDir::Exists(const wxString
& dir
)
215 return wxPathExists(dir
);
218 // ----------------------------------------------------------------------------
219 // wxDir construction/destruction
220 // ----------------------------------------------------------------------------
222 wxDir::wxDir(const wxString
& dirname
)
229 bool wxDir::Open(const wxString
& dirname
)
232 m_data
= new wxDirData(dirname
);
234 if ( !M_DIR
->IsOk() )
236 wxLogSysError(_("Can not enumerate files in directory '%s'"),
248 bool wxDir::IsOpened() const
250 return m_data
!= NULL
;
253 wxString
wxDir::GetName() const
258 name
= M_DIR
->GetName();
259 if ( !name
.empty() && (name
.Last() == _T('/')) )
261 // chop off the last (back)slash
262 name
.Truncate(name
.length() - 1);
274 // ----------------------------------------------------------------------------
276 // ----------------------------------------------------------------------------
278 bool wxDir::GetFirst(wxString
*filename
,
279 const wxString
& filespec
,
282 wxCHECK_MSG( IsOpened(), FALSE
, _T("must wxDir::Open() first") );
286 M_DIR
->SetFileSpec(filespec
);
287 M_DIR
->SetFlags(flags
);
289 return GetNext(filename
);
292 bool wxDir::GetNext(wxString
*filename
) const
294 wxCHECK_MSG( IsOpened(), FALSE
, _T("must wxDir::Open() first") );
296 wxCHECK_MSG( filename
, FALSE
, _T("bad pointer in wxDir::GetNext()") );
298 return M_DIR
->Read(filename
);
301 bool wxDir::HasSubDirs(const wxString
& spec
)
303 wxCHECK_MSG( IsOpened(), FALSE
, _T("must wxDir::Open() first") );
307 // faster check for presence of any subdirectory: normally each subdir
308 // has a hard link to the parent directory and so, knowing that there
309 // are at least "." and "..", we have a subdirectory if and only if
310 // links number is > 2 - this is just a guess but it works fairly well
313 // note that we may guess wrongly in one direction only: i.e. we may
314 // return true when there are no subdirectories but this is ok as the
315 // caller will learn it soon enough when it calls GetFirst(wxDIR)
318 if ( wxStat(M_DIR
->GetName().c_str(), &stBuf
) == 0 )
320 switch ( stBuf
.st_nlink
)
328 // weird filesystem, don't try to guess for it, use dumb
333 // assume we have subdirs - may turn out to be wrong if we
334 // have other hard links to this directory but it's not
335 // that bad as explained above
341 // just try to find first directory
343 return GetFirst(&s
, spec
, wxDIR_DIRS
| wxDIR_HIDDEN
);