2003-06-16 13:33:38 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-06-23 14:40:49 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2003-05-26 13:45:00 +00:00
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
string thisSystem = SYSTEM;
|
|
|
|
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
SysError::SysError(string msg)
|
|
|
|
{
|
|
|
|
char * sysMsg = strerror(errno);
|
|
|
|
err = msg + ": " + sysMsg;
|
|
|
|
}
|
|
|
|
|
2003-05-26 13:45:00 +00:00
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
string absPath(string path, string dir)
|
2003-05-26 13:45:00 +00:00
|
|
|
{
|
2003-06-16 13:33:38 +00:00
|
|
|
if (path[0] != '/') {
|
2003-05-26 13:45:00 +00:00
|
|
|
if (dir == "") {
|
|
|
|
char buf[PATH_MAX];
|
|
|
|
if (!getcwd(buf, sizeof(buf)))
|
2003-06-16 13:33:38 +00:00
|
|
|
throw SysError("cannot get cwd");
|
2003-05-26 13:45:00 +00:00
|
|
|
dir = buf;
|
|
|
|
}
|
2003-06-16 13:33:38 +00:00
|
|
|
path = dir + "/" + path;
|
2003-05-26 13:45:00 +00:00
|
|
|
/* !!! canonicalise */
|
|
|
|
char resolved[PATH_MAX];
|
2003-06-16 13:33:38 +00:00
|
|
|
if (!realpath(path.c_str(), resolved))
|
|
|
|
throw SysError("cannot canonicalise path " + path);
|
|
|
|
path = resolved;
|
2003-05-26 13:45:00 +00:00
|
|
|
}
|
2003-06-16 13:33:38 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string dirOf(string path)
|
|
|
|
{
|
|
|
|
unsigned int pos = path.rfind('/');
|
|
|
|
if (pos == string::npos) throw Error("invalid file name: " + path);
|
|
|
|
return string(path, 0, pos);
|
2003-05-26 13:45:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
string baseNameOf(string path)
|
2003-05-26 13:45:00 +00:00
|
|
|
{
|
2003-06-16 13:33:38 +00:00
|
|
|
unsigned int pos = path.rfind('/');
|
|
|
|
if (pos == string::npos) throw Error("invalid file name: " + path);
|
|
|
|
return string(path, pos + 1);
|
2003-05-26 13:45:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-23 14:40:49 +00:00
|
|
|
void deletePath(string path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
if (lstat(path.c_str(), &st))
|
|
|
|
throw SysError("getting attributes of path " + path);
|
|
|
|
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
|
|
|
DIR * dir = opendir(path.c_str());
|
|
|
|
|
|
|
|
struct dirent * dirent;
|
|
|
|
while (errno = 0, dirent = readdir(dir)) {
|
|
|
|
string name = dirent->d_name;
|
|
|
|
if (name == "." || name == "..") continue;
|
|
|
|
deletePath(path + "/" + name);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir); /* !!! close on exception */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remove(path.c_str()) == -1)
|
|
|
|
throw SysError("cannot unlink " + path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
void debug(const format & f)
|
2003-05-26 13:45:00 +00:00
|
|
|
{
|
2003-06-27 13:55:12 +00:00
|
|
|
cerr << format("debug: %1%\n") % f.str();
|
2003-05-26 13:45:00 +00:00
|
|
|
}
|