2003-04-04 18:14:56 +02:00
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
2003-04-08 14:00:51 +02:00
|
|
|
#include <string>
|
2003-04-04 18:14:56 +02:00
|
|
|
#include <vector>
|
2003-04-08 14:00:51 +02:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
class Error : public exception
|
|
|
|
{
|
2003-06-16 15:33:38 +02:00
|
|
|
protected:
|
2003-04-04 18:14:56 +02:00
|
|
|
string err;
|
|
|
|
public:
|
2003-06-16 15:33:38 +02:00
|
|
|
Error() { }
|
2003-04-04 18:14:56 +02:00
|
|
|
Error(string _err) { err = _err; }
|
2003-06-16 15:33:38 +02:00
|
|
|
~Error() throw () { }
|
2003-04-04 18:14:56 +02:00
|
|
|
const char * what() const throw () { return err.c_str(); }
|
|
|
|
};
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
class SysError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SysError(string msg);
|
|
|
|
};
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
class UsageError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UsageError(string _err) : Error(_err) { };
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef vector<string> Strings;
|
|
|
|
|
|
|
|
|
2003-04-08 14:00:51 +02:00
|
|
|
/* The canonical system name, as returned by config.guess. */
|
2003-05-26 15:45:00 +02:00
|
|
|
extern string thisSystem;
|
2003-04-08 14:00:51 +02:00
|
|
|
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
/* Return an absolutized path, resolving paths relative to the
|
|
|
|
specified directory, or the current directory otherwise. */
|
|
|
|
string absPath(string path, string dir = "");
|
|
|
|
|
|
|
|
/* Return the directory part of the given path, i.e., everything
|
|
|
|
before the final `/'. */
|
|
|
|
string dirOf(string path);
|
|
|
|
|
|
|
|
/* Return the base name of the given path, i.e., everything following
|
|
|
|
the final `/'. */
|
|
|
|
string baseNameOf(string path);
|
2003-04-08 14:00:51 +02:00
|
|
|
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
void debug(string s);
|
2003-05-26 00:42:19 +02:00
|
|
|
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
#endif /* !__UTIL_H */
|