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-06-20 16:11:31 +02:00
|
|
|
#include <list>
|
2003-04-08 14:00:51 +02:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
#include <boost/format.hpp>
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
using namespace std;
|
2003-06-27 15:55:12 +02:00
|
|
|
using namespace boost;
|
2003-04-04 18:14:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
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-27 16:56:12 +02:00
|
|
|
Error(const format & f);
|
|
|
|
~Error() throw () { };
|
2003-04-04 18:14:56 +02:00
|
|
|
const char * what() const throw () { return err.c_str(); }
|
2003-07-07 11:25:26 +02:00
|
|
|
const string & msg() const throw () { return err; }
|
2003-04-04 18:14:56 +02:00
|
|
|
};
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
class SysError : public Error
|
|
|
|
{
|
|
|
|
public:
|
2003-06-27 16:56:12 +02:00
|
|
|
SysError(const format & f);
|
2003-06-16 15:33:38 +02:00
|
|
|
};
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
class UsageError : public Error
|
|
|
|
{
|
|
|
|
public:
|
2003-06-27 16:56:12 +02:00
|
|
|
UsageError(const format & f) : Error(f) { };
|
2003-04-04 18:14:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-20 16:11:31 +02:00
|
|
|
typedef list<string> Strings;
|
2003-04-04 18:14:56 +02:00
|
|
|
|
|
|
|
|
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
|
2003-07-07 11:25:26 +02:00
|
|
|
specified directory, or the current directory otherwise. The path
|
|
|
|
is also canonicalised. */
|
2003-06-16 15:33:38 +02:00
|
|
|
string absPath(string path, string dir = "");
|
|
|
|
|
2003-07-07 11:25:26 +02:00
|
|
|
/* Canonicalise a path (as in realpath(3)). */
|
|
|
|
string canonPath(const string & path);
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
/* 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-23 16:40:49 +02:00
|
|
|
/* Delete a path; i.e., in the case of a directory, it is deleted
|
|
|
|
recursively. Don't use this at home, kids. */
|
|
|
|
void deletePath(string path);
|
|
|
|
|
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
/* Messages. */
|
|
|
|
|
|
|
|
class Nest
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
bool nest;
|
|
|
|
public:
|
|
|
|
Nest(bool nest);
|
|
|
|
~Nest();
|
|
|
|
};
|
|
|
|
|
|
|
|
void msg(const format & f);
|
2003-06-27 15:55:12 +02:00
|
|
|
void debug(const format & f);
|
2003-05-26 00:42:19 +02:00
|
|
|
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
#endif /* !__UTIL_H */
|