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-07-17 14:27:55 +02:00
|
|
|
#include <set>
|
2003-04-08 14:00:51 +02:00
|
|
|
#include <sstream>
|
|
|
|
|
2003-10-22 12:48:22 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
2003-04-08 14:00:51 +02:00
|
|
|
#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-07-17 14:27:55 +02:00
|
|
|
typedef set<string> StringSet;
|
2003-04-04 18:14:56 +02:00
|
|
|
|
|
|
|
|
2003-10-07 16:37:41 +02:00
|
|
|
/* Paths are just strings. */
|
|
|
|
typedef string Path;
|
|
|
|
typedef list<Path> Paths;
|
|
|
|
typedef set<Path> PathSet;
|
|
|
|
|
|
|
|
|
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-10-07 16:37:41 +02:00
|
|
|
Path absPath(Path path, Path dir = "");
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-07-07 11:25:26 +02:00
|
|
|
/* Canonicalise a path (as in realpath(3)). */
|
2003-10-07 16:37:41 +02:00
|
|
|
Path canonPath(const Path & path);
|
2003-07-07 11:25:26 +02:00
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
/* Return the directory part of the given path, i.e., everything
|
|
|
|
before the final `/'. */
|
2003-10-07 16:37:41 +02:00
|
|
|
Path dirOf(const Path & path);
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
/* Return the base name of the given path, i.e., everything following
|
|
|
|
the final `/'. */
|
2003-10-07 16:37:41 +02:00
|
|
|
string baseNameOf(const Path & path);
|
2003-04-08 14:00:51 +02:00
|
|
|
|
2003-07-08 15:22:08 +02:00
|
|
|
/* Return true iff the given path exists. */
|
2003-10-07 16:37:41 +02:00
|
|
|
bool pathExists(const Path & path);
|
2003-04-08 14:00:51 +02:00
|
|
|
|
2003-11-19 18:27:16 +01:00
|
|
|
/* Read the contents of a directory. The entries `.' and `..' are
|
|
|
|
removed. */
|
|
|
|
Strings readDirectory(const Path & path);
|
|
|
|
|
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. */
|
2003-10-07 16:37:41 +02:00
|
|
|
void deletePath(const Path & path);
|
2003-08-22 22:12:44 +02:00
|
|
|
|
|
|
|
/* Make a path read-only recursively. */
|
2003-10-07 16:37:41 +02:00
|
|
|
void makePathReadOnly(const Path & path);
|
2003-06-23 16:40:49 +02:00
|
|
|
|
2003-10-02 13:55:38 +02:00
|
|
|
/* Create a temporary directory. */
|
2003-10-07 16:37:41 +02:00
|
|
|
Path createTempDir();
|
2003-10-02 13:55:38 +02:00
|
|
|
|
2003-06-23 16:40:49 +02:00
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
/* Messages. */
|
|
|
|
|
2003-07-24 10:53:43 +02:00
|
|
|
typedef enum {
|
2003-07-24 15:43:16 +02:00
|
|
|
lvlError,
|
|
|
|
lvlTalkative,
|
|
|
|
lvlChatty,
|
|
|
|
lvlDebug,
|
|
|
|
lvlVomit
|
2003-07-24 10:53:43 +02:00
|
|
|
} Verbosity;
|
|
|
|
|
|
|
|
extern Verbosity verbosity; /* supress msgs > this */
|
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
class Nest
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
bool nest;
|
|
|
|
public:
|
2003-11-09 11:35:45 +01:00
|
|
|
Nest();
|
2003-07-04 14:18:06 +02:00
|
|
|
~Nest();
|
2003-11-09 11:35:45 +01:00
|
|
|
void open(Verbosity level, const format & f);
|
2003-07-04 14:18:06 +02:00
|
|
|
};
|
|
|
|
|
2003-11-09 11:35:45 +01:00
|
|
|
void printMsg_(Verbosity level, const format & f);
|
|
|
|
|
|
|
|
#define startNest(varName, level, f) \
|
|
|
|
Nest varName; \
|
|
|
|
if (level <= verbosity) { \
|
|
|
|
varName.open(level, (f)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define printMsg(level, f) \
|
|
|
|
do { \
|
|
|
|
if (level <= verbosity) { \
|
|
|
|
printMsg_(level, (f)); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define debug(f) printMsg(lvlDebug, f)
|
2003-05-26 00:42:19 +02:00
|
|
|
|
|
|
|
|
2003-07-20 23:11:43 +02:00
|
|
|
/* Wrappers arount read()/write() that read/write exactly the
|
|
|
|
requested number of bytes. */
|
|
|
|
void readFull(int fd, unsigned char * buf, size_t count);
|
|
|
|
void writeFull(int fd, const unsigned char * buf, size_t count);
|
|
|
|
|
|
|
|
|
2003-10-22 12:48:22 +02:00
|
|
|
/* Automatic cleanup of resources. */
|
|
|
|
|
|
|
|
class AutoDelete
|
|
|
|
{
|
|
|
|
string path;
|
|
|
|
bool del;
|
|
|
|
public:
|
|
|
|
AutoDelete(const string & p);
|
|
|
|
~AutoDelete();
|
|
|
|
void cancel();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AutoCloseFD
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
public:
|
|
|
|
AutoCloseFD();
|
|
|
|
AutoCloseFD(int fd);
|
|
|
|
~AutoCloseFD();
|
|
|
|
void operator =(int fd);
|
|
|
|
operator int();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AutoCloseDir
|
|
|
|
{
|
|
|
|
DIR * dir;
|
|
|
|
public:
|
|
|
|
AutoCloseDir();
|
|
|
|
AutoCloseDir(DIR * dir);
|
|
|
|
~AutoCloseDir();
|
|
|
|
void operator =(DIR * dir);
|
|
|
|
operator DIR *();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-04-04 18:14:56 +02:00
|
|
|
#endif /* !__UTIL_H */
|