lix/src/util.cc

56 lines
1.1 KiB
C++
Raw Normal View History

#include <iostream>
2003-05-26 13:45:00 +00:00
#include "util.hh"
string thisSystem = SYSTEM;
SysError::SysError(string msg)
{
char * sysMsg = strerror(errno);
err = msg + ": " + sysMsg;
}
2003-05-26 13:45:00 +00:00
string absPath(string path, string dir)
2003-05-26 13:45:00 +00:00
{
if (path[0] != '/') {
2003-05-26 13:45:00 +00:00
if (dir == "") {
char buf[PATH_MAX];
if (!getcwd(buf, sizeof(buf)))
throw SysError("cannot get cwd");
2003-05-26 13:45:00 +00:00
dir = buf;
}
path = dir + "/" + path;
2003-05-26 13:45:00 +00:00
/* !!! canonicalise */
char resolved[PATH_MAX];
if (!realpath(path.c_str(), resolved))
throw SysError("cannot canonicalise path " + path);
path = resolved;
2003-05-26 13:45:00 +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
}
string baseNameOf(string path)
2003-05-26 13:45:00 +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
}
void debug(string s)
2003-05-26 13:45:00 +00:00
{
cerr << "debug: " << s << endl;
2003-05-26 13:45:00 +00:00
}