Microsoft's stdlib does not have opendir and friends.
-#include <dirent.h>
#include <msp/core/application.h>
#include <msp/core/environ.h>
-#include <msp/core/systemerror.h>
-#include <msp/strings/regex.h>
#include <msp/strings/utils.h>
#include "dir.h"
#include "path.h"
return list_filtered(path, string());
}
-vector<string> list_filtered(const Path &path, const string &filter)
-{
- Regex r_filter(filter);
-
- vector<string> result;
- DIR *dir = opendir(path.str().c_str());
- if(!dir)
- throw system_error("opendir");
-
- while(dirent *de = readdir(dir))
- {
- const char *fn = de->d_name;
- if(fn[0]=='.' && (fn[1]==0 || (fn[1]=='.' && fn[2]==0)))
- continue;
- if(r_filter.match(fn))
- result.push_back(fn);
- }
- closedir(dir);
-
- return result;
-}
-
Path get_sys_conf_dir()
{
const char *argv0 = Application::get_argv0();
#include <unistd.h>
+#include <dirent.h>
#include <sys/stat.h>
#include <msp/core/systemerror.h>
+#include <msp/strings/regex.h>
#include "dir.h"
using namespace std;
throw system_error("rmdir");
}
+vector<string> list_filtered(const Path &path, const string &filter)
+{
+ Regex r_filter(filter);
+
+ vector<string> result;
+ DIR *dir = opendir(path.str().c_str());
+ if(!dir)
+ throw system_error("opendir");
+
+ while(dirent *de = readdir(dir))
+ {
+ const char *fn = de->d_name;
+ if(fn[0]=='.' && (fn[1]==0 || (fn[1]=='.' && fn[2]==0)))
+ continue;
+ if(r_filter.match(fn))
+ result.push_back(fn);
+ }
+ closedir(dir);
+
+ return result;
+}
+
Path getcwd()
{
char buf[1024];
#include <windows.h>
#include <msp/core/mutex.h>
#include <msp/core/systemerror.h>
+#include <msp/strings/regex.h>
#include "dir.h"
using namespace std;
throw system_error("RemoveDirectory");
}
+vector<string> list_filtered(const Path &path, const string &filter)
+{
+ Regex r_filter(filter);
+
+ vector<string> result;
+ WIN32_FIND_DATA entry;
+ string pattern = path.str()+"\\*";
+ HANDLE search_handle = FindFirstFileEx(pattern.c_str(), FindExInfoBasic, &entry, FindExSearchNameMatch, 0, 0);
+ if(search_handle==INVALID_HANDLE_VALUE)
+ {
+ DWORD err = GetLastError();
+ if(err==ERROR_FILE_NOT_FOUND)
+ return result;
+ throw system_error("FindFirstFileEx");
+ }
+
+ bool more = true;
+ for(; more; more=FindNextFile(search_handle, &entry))
+ {
+ const char *fn = entry.cFileName;
+ if(fn[0]=='.' && (fn[1]==0 || (fn[1]=='.' && fn[2]==0)))
+ continue;
+ if(r_filter.match(fn))
+ result.push_back(fn);
+ }
+
+ DWORD err = GetLastError();
+ FindClose(search_handle);
+ if(err!=ERROR_NO_MORE_FILES)
+ throw system_error("FindNextFile");
+
+ return result;
+}
+
/* Windows documentation says Get/SetCurrentDirectory use a global buffer and
are not thread safe. */
static Mutex &cwd_mutex()