2003-06-16 15:33:38 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
2003-06-23 16:40:49 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2003-05-26 15:45:00 +02:00
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
string thisSystem = SYSTEM;
|
|
|
|
|
|
|
|
|
2003-06-27 16:56:12 +02:00
|
|
|
Error::Error(const format & f)
|
|
|
|
{
|
|
|
|
err = f.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SysError::SysError(const format & f)
|
|
|
|
: Error(format("%1%: %2%") % f.str() % strerror(errno))
|
2003-06-16 15:33:38 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-05-26 15:45:00 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
string absPath(string path, string dir)
|
2003-05-26 15:45:00 +02:00
|
|
|
{
|
2003-06-16 15:33:38 +02:00
|
|
|
if (path[0] != '/') {
|
2003-05-26 15:45:00 +02:00
|
|
|
if (dir == "") {
|
|
|
|
char buf[PATH_MAX];
|
|
|
|
if (!getcwd(buf, sizeof(buf)))
|
2003-06-16 15:33:38 +02:00
|
|
|
throw SysError("cannot get cwd");
|
2003-05-26 15:45:00 +02:00
|
|
|
dir = buf;
|
|
|
|
}
|
2003-06-16 15:33:38 +02:00
|
|
|
path = dir + "/" + path;
|
2003-05-26 15:45:00 +02:00
|
|
|
/* !!! canonicalise */
|
|
|
|
char resolved[PATH_MAX];
|
2003-06-16 15:33:38 +02:00
|
|
|
if (!realpath(path.c_str(), resolved))
|
2003-07-04 14:18:06 +02:00
|
|
|
throw SysError(format("cannot canonicalise path %1%") % path);
|
2003-06-16 15:33:38 +02:00
|
|
|
path = resolved;
|
2003-05-26 15:45:00 +02:00
|
|
|
}
|
2003-06-16 15:33:38 +02:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string dirOf(string path)
|
|
|
|
{
|
|
|
|
unsigned int pos = path.rfind('/');
|
2003-07-04 14:18:06 +02:00
|
|
|
if (pos == string::npos)
|
|
|
|
throw Error(format("invalid file name: %1%") % path);
|
2003-06-16 15:33:38 +02:00
|
|
|
return string(path, 0, pos);
|
2003-05-26 15:45:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
string baseNameOf(string path)
|
2003-05-26 15:45:00 +02:00
|
|
|
{
|
2003-06-16 15:33:38 +02:00
|
|
|
unsigned int pos = path.rfind('/');
|
2003-07-04 14:18:06 +02:00
|
|
|
if (pos == string::npos)
|
|
|
|
throw Error(format("invalid file name %1% ") % path);
|
2003-06-16 15:33:38 +02:00
|
|
|
return string(path, pos + 1);
|
2003-05-26 15:45:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-23 16:40:49 +02:00
|
|
|
void deletePath(string path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
if (lstat(path.c_str(), &st))
|
2003-07-04 14:18:06 +02:00
|
|
|
throw SysError(format("getting attributes of path %1%") % path);
|
2003-06-23 16:40:49 +02:00
|
|
|
|
|
|
|
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)
|
2003-07-04 14:18:06 +02:00
|
|
|
throw SysError(format("cannot unlink %1%") % path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nestingLevel = 0;
|
|
|
|
|
|
|
|
|
|
|
|
Nest::Nest(bool nest)
|
|
|
|
{
|
|
|
|
this->nest = nest;
|
|
|
|
if (nest) nestingLevel++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Nest::~Nest()
|
|
|
|
{
|
|
|
|
if (nest) nestingLevel--;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void msg(const format & f)
|
|
|
|
{
|
|
|
|
string spaces;
|
|
|
|
for (int i = 0; i < nestingLevel; i++)
|
|
|
|
spaces += " ";
|
|
|
|
cerr << format("%1%%2%\n") % spaces % f.str();
|
2003-06-23 16:40:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
void debug(const format & f)
|
2003-05-26 15:45:00 +02:00
|
|
|
{
|
2003-07-04 14:18:06 +02:00
|
|
|
msg(format("debug: %1%") % f.str());
|
2003-05-26 15:45:00 +02:00
|
|
|
}
|