about summary refs log tree commit diff
path: root/src/libmain/shared.hh
blob: 95d80bacdae181dda8b1149b07b4397da357c8cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef __SHARED_H
#define __SHARED_H

#include "types.hh"

#include <signal.h>


/* 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. */
void run(nix::Strings args);

/* Should print a help message to stdout and return. */
void printHelp();

extern std::string programId;


namespace nix {

/* Ugh.  No better place to put this. */
Path makeRootName(const Path & gcRoot, int & counter);
void printGCWarning();

unsigned long long getIntArg(const string & opt,
    Strings::iterator & i, const Strings::iterator & end);

/* Whether we're running setuid. */
extern bool setuidMode;

extern volatile ::sig_atomic_t blockInt;

MakeError(UsageError, nix::Error);

struct RemoveTempRoots 
{
    ~RemoveTempRoots();    
};

}


#endif /* !__SHARED_H */