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 {
|
|
|
|
|
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-06-18 15:20:33 +00:00
|
|
|
unsigned long long getIntArg(const string & opt,
|
2008-06-18 14:20:16 +00:00
|
|
|
Strings::iterator & i, const Strings::iterator & end);
|
|
|
|
|
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;
|
|
|
|
|
2007-01-14 12:32:44 +00:00
|
|
|
MakeError(UsageError, nix::Error);
|
2006-12-04 17:17:13 +00:00
|
|
|
|
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 */
|