2003-07-04 15:42:03 +00:00
|
|
|
#ifndef __SHARED_H
|
|
|
|
#define __SHARED_H
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "types.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* These are not implemented here, but must be implemented by a
|
|
|
|
program linking against libmain. */
|
|
|
|
|
|
|
|
/* Main program. Called by main() after the ATerm library has been
|
|
|
|
initialised and some default arguments have been processed (and
|
|
|
|
removed from `args'). main() will catch all exceptions. */
|
2006-09-04 21:06:23 +00:00
|
|
|
void run(nix::Strings args);
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* Should print a help message to stdout and return. */
|
|
|
|
void printHelp();
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
extern std::string programId;
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2009-11-24 12:26:25 +00:00
|
|
|
MakeError(UsageError, nix::Error);
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
/* Ugh. No better place to put this. */
|
|
|
|
Path makeRootName(const Path & gcRoot, int & counter);
|
|
|
|
void printGCWarning();
|
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
void printMissing(const PathSet & paths);
|
|
|
|
|
2009-11-24 12:26:25 +00:00
|
|
|
template<class N> N getIntArg(const string & opt,
|
|
|
|
Strings::iterator & i, const Strings::iterator & end)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == end) throw UsageError(format("`%1%' requires an argument") % opt);
|
|
|
|
N n;
|
|
|
|
if (!string2Int(*i, n))
|
|
|
|
throw UsageError(format("`%1%' requires an integer argument") % opt);
|
|
|
|
return n;
|
|
|
|
}
|
2008-06-18 14:20:16 +00:00
|
|
|
|
2006-12-03 15:32:38 +00:00
|
|
|
/* Whether we're running setuid. */
|
2006-12-03 20:41:22 +00:00
|
|
|
extern bool setuidMode;
|
2006-12-03 15:32:38 +00:00
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
extern volatile ::sig_atomic_t blockInt;
|
|
|
|
|
2008-06-14 16:03:02 +00:00
|
|
|
struct RemoveTempRoots
|
|
|
|
{
|
|
|
|
~RemoveTempRoots();
|
|
|
|
};
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|
2003-07-04 15:42:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__SHARED_H */
|