blob: 8c397aace8c864a4ccbf095d7b772262fb84df0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <iostream>
#include "util.hh"
string thisSystem = SYSTEM;
SysError::SysError(string msg)
{
char * sysMsg = strerror(errno);
err = msg + ": " + sysMsg;
}
string absPath(string path, string dir)
{
if (path[0] != '/') {
if (dir == "") {
char buf[PATH_MAX];
if (!getcwd(buf, sizeof(buf)))
throw SysError("cannot get cwd");
dir = buf;
}
path = dir + "/" + path;
/* !!! canonicalise */
char resolved[PATH_MAX];
if (!realpath(path.c_str(), resolved))
throw SysError("cannot canonicalise path " + path);
path = resolved;
}
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);
}
string baseNameOf(string path)
{
unsigned int pos = path.rfind('/');
if (pos == string::npos) throw Error("invalid file name: " + path);
return string(path, pos + 1);
}
void debug(string s)
{
cerr << "debug: " << s << endl;
}
|