2003-04-04 16:14:56 +00:00
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
2003-04-08 12:00:51 +00:00
|
|
|
#include <string>
|
2003-06-20 14:11:31 +00:00
|
|
|
#include <list>
|
2003-04-08 12:00:51 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-06-27 13:55:12 +00:00
|
|
|
#include <boost/format.hpp>
|
|
|
|
|
2003-04-04 16:14:56 +00:00
|
|
|
using namespace std;
|
2003-06-27 13:55:12 +00:00
|
|
|
using namespace boost;
|
2003-04-04 16:14:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Error : public exception
|
|
|
|
{
|
2003-06-16 13:33:38 +00:00
|
|
|
protected:
|
2003-04-04 16:14:56 +00:00
|
|
|
string err;
|
|
|
|
public:
|
2003-06-27 14:56:12 +00:00
|
|
|
Error(const format & f);
|
|
|
|
~Error() throw () { };
|
2003-04-04 16:14:56 +00:00
|
|
|
const char * what() const throw () { return err.c_str(); }
|
|
|
|
};
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
class SysError : public Error
|
|
|
|
{
|
|
|
|
public:
|
2003-06-27 14:56:12 +00:00
|
|
|
SysError(const format & f);
|
2003-06-16 13:33:38 +00:00
|
|
|
};
|
|
|
|
|
2003-04-04 16:14:56 +00:00
|
|
|
class UsageError : public Error
|
|
|
|
{
|
|
|
|
public:
|
2003-06-27 14:56:12 +00:00
|
|
|
UsageError(const format & f) : Error(f) { };
|
2003-04-04 16:14:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-20 14:11:31 +00:00
|
|
|
typedef list<string> Strings;
|
2003-04-04 16:14:56 +00:00
|
|
|
|
|
|
|
|
2003-04-08 12:00:51 +00:00
|
|
|
/* The canonical system name, as returned by config.guess. */
|
2003-05-26 13:45:00 +00:00
|
|
|
extern string thisSystem;
|
2003-04-08 12:00:51 +00:00
|
|
|
|
|
|
|
|
2003-06-16 13:33:38 +00: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 12:00:51 +00:00
|
|
|
|
|
|
|
|
2003-06-23 14:40:49 +00: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-06-27 13:55:12 +00:00
|
|
|
void debug(const format & f);
|
2003-05-25 22:42:19 +00:00
|
|
|
|
|
|
|
|
2003-04-04 16:14:56 +00:00
|
|
|
#endif /* !__UTIL_H */
|