2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2011-02-05 16:29:10 +00:00
|
|
|
#include "util.hh"
|
2016-02-09 20:07:48 +00:00
|
|
|
#include "args.hh"
|
2017-10-24 10:45:11 +00:00
|
|
|
#include "common-args.hh"
|
2019-12-05 18:11:09 +00:00
|
|
|
#include "path.hh"
|
2021-04-05 14:33:28 +00:00
|
|
|
#include "derived-path.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
2014-02-17 13:48:50 +00:00
|
|
|
#include <locale>
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
namespace nix {
|
2003-12-01 15:55:05 +00:00
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
class Exit : public std::exception
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int status;
|
|
|
|
Exit() : status(0) { }
|
|
|
|
Exit(int status) : status(status) { }
|
2017-11-07 20:42:34 +00:00
|
|
|
virtual ~Exit();
|
2014-08-13 01:50:44 +00:00
|
|
|
};
|
2003-12-01 15:55:05 +00:00
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
int handleExceptions(const std::string & programName, std::function<void()> fun);
|
2006-09-04 21:06:23 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Don't forget to call initPlugins() after settings are initialized!
|
|
|
|
*/
|
2014-08-13 01:50:44 +00:00
|
|
|
void initNix();
|
2006-09-04 21:06:23 +00:00
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
void parseCmdLine(int argc, char * * argv,
|
|
|
|
std::function<bool(Strings::iterator & arg, const Strings::iterator & end)> parseArg);
|
2009-11-24 12:26:25 +00:00
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
void parseCmdLine(const std::string & programName, const Strings & args,
|
2017-07-25 13:09:06 +00:00
|
|
|
std::function<bool(Strings::iterator & arg, const Strings::iterator & end)> parseArg);
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
void printVersion(const std::string & programName);
|
2011-08-31 21:11:50 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Ugh. No better place to put this.
|
|
|
|
*/
|
2005-02-01 12:36:25 +00:00
|
|
|
void printGCWarning();
|
|
|
|
|
2016-02-04 13:48:42 +00:00
|
|
|
class Store;
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void printMissing(
|
|
|
|
ref<Store> store,
|
2021-04-05 13:48:18 +00:00
|
|
|
const std::vector<DerivedPath> & paths,
|
2019-12-05 18:11:09 +00:00
|
|
|
Verbosity lvl = lvlInfo);
|
2008-08-04 13:44:46 +00:00
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
void printMissing(ref<Store> store, const StorePathSet & willBuild,
|
|
|
|
const StorePathSet & willSubstitute, const StorePathSet & unknown,
|
2020-07-30 11:10:49 +00:00
|
|
|
uint64_t downloadSize, uint64_t narSize, Verbosity lvl = lvlInfo);
|
2012-11-19 23:27:25 +00:00
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
std::string getArg(const std::string & opt,
|
2014-08-13 01:50:44 +00:00
|
|
|
Strings::iterator & i, const Strings::iterator & end);
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
template<class N> N getIntArg(const std::string & opt,
|
2014-02-17 13:48:50 +00:00
|
|
|
Strings::iterator & i, const Strings::iterator & end, bool allowUnit)
|
2009-11-24 12:26:25 +00:00
|
|
|
{
|
|
|
|
++i;
|
2020-04-21 23:07:07 +00:00
|
|
|
if (i == end) throw UsageError("'%1%' requires an argument", opt);
|
2021-01-08 11:51:19 +00:00
|
|
|
return string2IntWithUnitPrefix<N>(*i);
|
2009-11-24 12:26:25 +00:00
|
|
|
}
|
2008-06-18 14:20:16 +00:00
|
|
|
|
2016-01-04 23:40:40 +00:00
|
|
|
|
2017-10-24 10:45:11 +00:00
|
|
|
struct LegacyArgs : public MixCommonArgs
|
|
|
|
{
|
|
|
|
std::function<bool(Strings::iterator & arg, const Strings::iterator & end)> parseArg;
|
|
|
|
|
|
|
|
LegacyArgs(const std::string & programName,
|
|
|
|
std::function<bool(Strings::iterator & arg, const Strings::iterator & end)> parseArg);
|
|
|
|
|
|
|
|
bool processFlag(Strings::iterator & pos, Strings::iterator end) override;
|
|
|
|
|
|
|
|
bool processArgs(const Strings & args, bool finish) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Show the manual page for the specified program.
|
|
|
|
*/
|
2022-02-25 15:00:00 +00:00
|
|
|
void showManPage(const std::string & name);
|
2012-10-03 20:37:06 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* The constructor of this class starts a pager if stdout is a
|
|
|
|
* terminal and $PAGER is set. Stdout is redirected to the pager.
|
|
|
|
*/
|
2014-08-20 13:12:58 +00:00
|
|
|
class RunPager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RunPager();
|
|
|
|
~RunPager();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Pid pid;
|
2021-11-26 14:38:46 +00:00
|
|
|
int stdout;
|
2014-08-20 13:12:58 +00:00
|
|
|
};
|
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
extern volatile ::sig_atomic_t blockInt;
|
|
|
|
|
2015-05-21 13:21:38 +00:00
|
|
|
|
|
|
|
/* GC helpers. */
|
|
|
|
|
2022-02-25 15:00:00 +00:00
|
|
|
std::string showBytes(uint64_t bytes);
|
2015-05-21 13:21:38 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
struct GCResults;
|
2015-05-21 13:21:38 +00:00
|
|
|
|
|
|
|
struct PrintFreed
|
|
|
|
{
|
|
|
|
bool show;
|
|
|
|
const GCResults & results;
|
|
|
|
PrintFreed(bool show, const GCResults & results)
|
|
|
|
: show(show), results(results) { }
|
|
|
|
~PrintFreed();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Install a SIGSEGV handler to detect stack overflows.
|
|
|
|
*/
|
2016-02-22 13:49:15 +00:00
|
|
|
void detectStackOverflow();
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Pluggable behavior to run in case of a stack overflow.
|
|
|
|
*
|
|
|
|
* Default value: defaultStackOverflowHandler.
|
|
|
|
*
|
|
|
|
* This is called by the handler installed by detectStackOverflow().
|
|
|
|
*
|
|
|
|
* This gives Nix library consumers a limit opportunity to report the error
|
|
|
|
* condition. The handler should exit the process.
|
|
|
|
* See defaultStackOverflowHandler() for a reference implementation.
|
|
|
|
*
|
|
|
|
* NOTE: Use with diligence, because this runs in the signal handler, with very
|
|
|
|
* limited stack space and a potentially a corrupted heap, all while the failed
|
|
|
|
* thread is blocked indefinitely. All functions called must be reentrant.
|
|
|
|
*/
|
2022-10-14 10:25:41 +00:00
|
|
|
extern std::function<void(siginfo_t * info, void * ctx)> stackOverflowHandler;
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* The default, robust implementation of stackOverflowHandler.
|
|
|
|
*
|
|
|
|
* Prints an error message directly to stderr using a syscall instead of the
|
|
|
|
* logger. Exits the process immediately after.
|
|
|
|
*/
|
2022-10-14 10:25:41 +00:00
|
|
|
void defaultStackOverflowHandler(siginfo_t * info, void * ctx);
|
2016-02-22 13:49:15 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|