2016-04-25 13:26:07 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2016-04-25 13:26:07 +00:00
|
|
|
|
|
|
|
#include "types.hh"
|
2020-05-11 21:52:15 +00:00
|
|
|
#include "error.hh"
|
2020-07-02 15:04:31 +00:00
|
|
|
#include "config.hh"
|
2016-04-25 13:26:07 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2017-08-14 13:28:16 +00:00
|
|
|
typedef enum {
|
2017-08-14 17:00:03 +00:00
|
|
|
actUnknown = 0,
|
2017-08-14 13:28:16 +00:00
|
|
|
actCopyPath = 100,
|
2020-04-06 21:43:43 +00:00
|
|
|
actFileTransfer = 101,
|
2017-08-14 18:14:55 +00:00
|
|
|
actRealise = 102,
|
2017-08-14 20:12:36 +00:00
|
|
|
actCopyPaths = 103,
|
2017-08-15 13:31:59 +00:00
|
|
|
actBuilds = 104,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: path to store derivation being built.
|
|
|
|
* 1: string: representing the machine this is being built on. Empty string if local machine.
|
|
|
|
* 2: int: curRound, not used anymore, always 1?
|
|
|
|
* 3: int: nrRounds, not used anymore always 1?
|
|
|
|
*/
|
2017-08-15 13:31:59 +00:00
|
|
|
actBuild = 105,
|
2017-08-16 15:00:24 +00:00
|
|
|
actOptimiseStore = 106,
|
2017-08-16 17:23:46 +00:00
|
|
|
actVerifyPaths = 107,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: store path
|
|
|
|
* 1: string: substituter
|
|
|
|
*/
|
2017-08-25 15:49:40 +00:00
|
|
|
actSubstitute = 108,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: store path
|
|
|
|
* 1: string: substituter
|
|
|
|
*/
|
2017-08-31 13:25:58 +00:00
|
|
|
actQueryPathInfo = 109,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: store path
|
|
|
|
*/
|
2019-07-11 18:23:03 +00:00
|
|
|
actPostBuildHook = 110,
|
2020-06-15 14:03:29 +00:00
|
|
|
actBuildWaiting = 111,
|
2017-08-14 13:28:16 +00:00
|
|
|
} ActivityType;
|
|
|
|
|
2017-08-16 15:32:18 +00:00
|
|
|
typedef enum {
|
2024-06-21 00:00:25 +00:00
|
|
|
/** Fields:
|
|
|
|
* 0: int: bytes linked
|
|
|
|
*/
|
2017-08-16 15:32:18 +00:00
|
|
|
resFileLinked = 100,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: last line
|
|
|
|
*/
|
2017-08-16 15:32:18 +00:00
|
|
|
resBuildLogLine = 101,
|
2017-08-16 17:23:46 +00:00
|
|
|
resUntrustedPath = 102,
|
|
|
|
resCorruptedPath = 103,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: phase name
|
|
|
|
*/
|
2017-08-25 16:04:05 +00:00
|
|
|
resSetPhase = 104,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: int: done
|
|
|
|
* 1: int: expected
|
|
|
|
* 2: int: running
|
|
|
|
* 3: int: failed
|
|
|
|
*/
|
2017-08-25 19:26:37 +00:00
|
|
|
resProgress = 105,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: int: ActivityType
|
|
|
|
* 1: int: expected
|
|
|
|
*/
|
2017-08-28 12:30:35 +00:00
|
|
|
resSetExpected = 106,
|
2024-06-21 00:00:25 +00:00
|
|
|
|
|
|
|
/** Fields:
|
|
|
|
* 0: string: last line
|
|
|
|
*/
|
2019-07-11 18:23:03 +00:00
|
|
|
resPostBuildLogLine = 107,
|
2017-08-16 15:32:18 +00:00
|
|
|
} ResultType;
|
|
|
|
|
2017-08-16 14:38:23 +00:00
|
|
|
typedef uint64_t ActivityId;
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2020-07-02 15:04:31 +00:00
|
|
|
struct LoggerSettings : Config
|
|
|
|
{
|
2020-08-19 16:28:04 +00:00
|
|
|
Setting<bool> showTrace{
|
|
|
|
this, false, "show-trace",
|
|
|
|
R"(
|
2024-05-14 00:05:08 +00:00
|
|
|
Whether Lix should print out a stack trace in case of Nix
|
2020-08-19 16:28:04 +00:00
|
|
|
expression evaluation errors.
|
|
|
|
)"};
|
2020-07-02 15:04:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern LoggerSettings loggerSettings;
|
|
|
|
|
2016-04-25 13:26:07 +00:00
|
|
|
class Logger
|
|
|
|
{
|
2017-08-31 09:04:52 +00:00
|
|
|
friend struct Activity;
|
2016-04-25 13:26:07 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2017-08-25 12:53:50 +00:00
|
|
|
struct Field
|
|
|
|
{
|
|
|
|
// FIXME: use std::variant.
|
2017-08-28 16:49:42 +00:00
|
|
|
enum { tInt = 0, tString = 1 } type;
|
2017-08-25 12:53:50 +00:00
|
|
|
uint64_t i = 0;
|
|
|
|
std::string s;
|
|
|
|
Field(const std::string & s) : type(tString), s(s) { }
|
|
|
|
Field(const char * s) : type(tString), s(s) { }
|
|
|
|
Field(const uint64_t & i) : type(tInt), i(i) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Field> Fields;
|
|
|
|
|
2016-04-25 13:26:07 +00:00
|
|
|
virtual ~Logger() { }
|
|
|
|
|
2023-03-09 14:11:01 +00:00
|
|
|
virtual void pause() { };
|
tree-wide: unify progress bar inactive and paused states
Previously, the progress bar had two subtly different states in which the bar
would not actually render, both with their own shortcomings: inactive (which
was irreversible) and paused (reversible, but swallowing logs). Furthermore,
there was no way of resetting the statistics, so a very bad solution was
implemented (243c0f18dae2a08ea0e46f7ff33277c63f7506d7) that would create a new
logger for each line of the repl, leaking the previous one and discarding the
value of printBuildLogs. Finally, if stderr was not attached to a TTY, the
update thread was started even though the logger was not active, violating the
invariant required by the destructor (which is not observed because the logger
is leaked).
In this commit, the two aforementioned states are unified into a single one,
which can be exited again, correctly upholds the invariant that the update
thread is only running while the progress bar is active, and does not swallow
logs. The latter change in behavior is not expected to be a problems in the
rare cases where the paused state was used before, since other loggers (like
the simple one) don't exhibit it anyway. The startProgressBar/stopProgressBar
API is removed due to being a footgun, and a new method for properly resetting
the progress is added.
Co-Authored-By: Qyriad <qyriad@qyriad.me>
Change-Id: I2b7c3eb17d439cd0c16f7b896cfb61239ac7ff3a
2024-06-29 13:03:44 +00:00
|
|
|
virtual void resetProgress() { };
|
2023-03-09 14:11:01 +00:00
|
|
|
virtual void resume() { };
|
|
|
|
|
2020-06-05 16:20:11 +00:00
|
|
|
// Whether the logger prints the whole build log
|
|
|
|
virtual bool isVerbose() { return false; }
|
|
|
|
|
2023-03-02 14:44:19 +00:00
|
|
|
virtual void log(Verbosity lvl, std::string_view s) = 0;
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2023-03-02 14:44:19 +00:00
|
|
|
void log(std::string_view s)
|
2016-04-25 13:26:07 +00:00
|
|
|
{
|
2023-03-02 14:44:19 +00:00
|
|
|
log(lvlInfo, s);
|
2016-04-25 13:26:07 +00:00
|
|
|
}
|
|
|
|
|
2022-12-07 11:58:58 +00:00
|
|
|
virtual void logEI(const ErrorInfo & ei) = 0;
|
2020-04-17 21:07:44 +00:00
|
|
|
|
2020-04-29 16:14:32 +00:00
|
|
|
void logEI(Verbosity lvl, ErrorInfo ei)
|
2020-04-24 18:44:23 +00:00
|
|
|
{
|
|
|
|
ei.level = lvl;
|
|
|
|
logEI(ei);
|
2020-04-17 21:07:44 +00:00
|
|
|
}
|
2020-04-29 16:14:32 +00:00
|
|
|
|
2017-04-12 12:53:10 +00:00
|
|
|
virtual void warn(const std::string & msg);
|
|
|
|
|
2017-08-28 17:13:24 +00:00
|
|
|
virtual void startActivity(ActivityId act, Verbosity lvl, ActivityType type,
|
2017-08-25 15:49:40 +00:00
|
|
|
const std::string & s, const Fields & fields, ActivityId parent) { };
|
2017-08-16 14:38:23 +00:00
|
|
|
|
|
|
|
virtual void stopActivity(ActivityId act) { };
|
|
|
|
|
2017-08-25 12:53:50 +00:00
|
|
|
virtual void result(ActivityId act, ResultType type, const Fields & fields) { };
|
2020-04-16 11:12:58 +00:00
|
|
|
|
|
|
|
virtual void writeToStdout(std::string_view s);
|
|
|
|
|
|
|
|
template<typename... Args>
|
2023-03-02 13:52:37 +00:00
|
|
|
inline void cout(const Args & ... args)
|
2020-04-16 11:12:58 +00:00
|
|
|
{
|
2023-03-02 13:52:37 +00:00
|
|
|
writeToStdout(fmt(args...));
|
2020-04-16 11:12:58 +00:00
|
|
|
}
|
2020-11-26 11:34:43 +00:00
|
|
|
|
|
|
|
virtual std::optional<char> ask(std::string_view s)
|
|
|
|
{ return {}; }
|
2022-08-24 20:36:40 +00:00
|
|
|
|
|
|
|
virtual void setPrintBuildLogs(bool printBuildLogs)
|
|
|
|
{ }
|
2024-06-01 14:06:26 +00:00
|
|
|
|
|
|
|
virtual void setPrintMultiline(bool printMultiline)
|
|
|
|
{ }
|
2017-08-16 14:38:23 +00:00
|
|
|
};
|
|
|
|
|
2024-03-08 07:10:05 +00:00
|
|
|
/**
|
|
|
|
* A variadic template that does nothing.
|
|
|
|
*
|
|
|
|
* Useful to call a function with each argument in a parameter pack.
|
|
|
|
*/
|
|
|
|
struct nop
|
|
|
|
{
|
|
|
|
template<typename... T> nop(T...)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2018-03-12 04:56:41 +00:00
|
|
|
ActivityId getCurActivity();
|
|
|
|
void setCurActivity(const ActivityId activityId);
|
2017-08-25 15:49:40 +00:00
|
|
|
|
2017-08-16 14:38:23 +00:00
|
|
|
struct Activity
|
|
|
|
{
|
|
|
|
Logger & logger;
|
|
|
|
|
|
|
|
const ActivityId id;
|
|
|
|
|
2017-08-28 17:13:24 +00:00
|
|
|
Activity(Logger & logger, Verbosity lvl, ActivityType type, const std::string & s = "",
|
2018-03-12 04:56:41 +00:00
|
|
|
const Logger::Fields & fields = {}, ActivityId parent = getCurActivity());
|
2017-08-16 14:38:23 +00:00
|
|
|
|
2017-08-28 17:13:24 +00:00
|
|
|
Activity(Logger & logger, ActivityType type,
|
2018-03-12 04:56:41 +00:00
|
|
|
const Logger::Fields & fields = {}, ActivityId parent = getCurActivity())
|
2017-08-28 17:13:24 +00:00
|
|
|
: Activity(logger, lvlError, type, "", fields, parent) { };
|
|
|
|
|
2017-08-21 10:00:41 +00:00
|
|
|
Activity(const Activity & act) = delete;
|
|
|
|
|
2018-03-03 20:39:04 +00:00
|
|
|
~Activity();
|
2017-08-16 14:38:23 +00:00
|
|
|
|
|
|
|
void progress(uint64_t done = 0, uint64_t expected = 0, uint64_t running = 0, uint64_t failed = 0) const
|
2017-08-25 19:26:37 +00:00
|
|
|
{ result(resProgress, done, expected, running, failed); }
|
2017-08-16 14:38:23 +00:00
|
|
|
|
|
|
|
void setExpected(ActivityType type2, uint64_t expected) const
|
2017-08-28 12:30:35 +00:00
|
|
|
{ result(resSetExpected, type2, expected); }
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2017-08-16 15:32:18 +00:00
|
|
|
template<typename... Args>
|
2017-08-25 19:26:37 +00:00
|
|
|
void result(ResultType type, const Args & ... args) const
|
2017-08-16 15:32:18 +00:00
|
|
|
{
|
2017-08-25 12:53:50 +00:00
|
|
|
Logger::Fields fields;
|
2017-08-16 15:32:18 +00:00
|
|
|
nop{(fields.emplace_back(Logger::Field(args)), 1)...};
|
2017-08-25 19:26:37 +00:00
|
|
|
result(type, fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
void result(ResultType type, const Logger::Fields & fields) const
|
|
|
|
{
|
2017-08-16 15:32:18 +00:00
|
|
|
logger.result(id, type, fields);
|
|
|
|
}
|
|
|
|
|
2017-08-16 14:38:23 +00:00
|
|
|
friend class Logger;
|
2016-04-25 13:26:07 +00:00
|
|
|
};
|
|
|
|
|
2017-08-25 15:49:40 +00:00
|
|
|
struct PushActivity
|
|
|
|
{
|
|
|
|
const ActivityId prevAct;
|
2018-03-12 04:56:41 +00:00
|
|
|
PushActivity(ActivityId act) : prevAct(getCurActivity()) { setCurActivity(act); }
|
|
|
|
~PushActivity() { setCurActivity(prevAct); }
|
2017-08-25 15:49:40 +00:00
|
|
|
};
|
|
|
|
|
2016-04-25 13:26:07 +00:00
|
|
|
extern Logger * logger;
|
|
|
|
|
2020-06-05 16:20:11 +00:00
|
|
|
Logger * makeSimpleLogger(bool printBuildLogs = true);
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2017-10-24 11:41:52 +00:00
|
|
|
Logger * makeJSONLogger(Logger & prevLogger);
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* suppress msgs > this
|
|
|
|
*/
|
|
|
|
extern Verbosity verbosity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print a message with the standard ErrorInfo format.
|
|
|
|
* In general, use these 'log' macros for reporting problems that may require user
|
|
|
|
* intervention or that need more explanation. Use the 'print' macros for more
|
|
|
|
* lightweight status messages.
|
|
|
|
*/
|
2020-06-04 17:53:19 +00:00
|
|
|
#define logErrorInfo(level, errorInfo...) \
|
|
|
|
do { \
|
2020-11-09 13:14:11 +00:00
|
|
|
if ((level) <= nix::verbosity) { \
|
|
|
|
logger->logEI((level), errorInfo); \
|
2020-06-04 17:53:19 +00:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define logError(errorInfo...) logErrorInfo(lvlError, errorInfo)
|
|
|
|
#define logWarning(errorInfo...) logErrorInfo(lvlWarn, errorInfo)
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Print a string message if the current log level is at least the specified
|
|
|
|
* level. Note that this has to be implemented as a macro to ensure that the
|
|
|
|
* arguments are evaluated lazily.
|
|
|
|
*/
|
2021-11-30 20:23:13 +00:00
|
|
|
#define printMsgUsing(loggerParam, level, args...) \
|
2016-04-25 13:26:07 +00:00
|
|
|
do { \
|
2020-11-27 11:17:07 +00:00
|
|
|
auto __lvl = level; \
|
|
|
|
if (__lvl <= nix::verbosity) { \
|
2021-11-30 20:23:13 +00:00
|
|
|
loggerParam->log(__lvl, fmt(args)); \
|
2016-04-25 13:26:07 +00:00
|
|
|
} \
|
|
|
|
} while (0)
|
2021-11-30 20:23:13 +00:00
|
|
|
#define printMsg(level, args...) printMsgUsing(logger, level, args)
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2016-09-21 14:00:03 +00:00
|
|
|
#define printError(args...) printMsg(lvlError, args)
|
2020-11-27 10:19:36 +00:00
|
|
|
#define notice(args...) printMsg(lvlNotice, args)
|
2016-09-21 14:00:03 +00:00
|
|
|
#define printInfo(args...) printMsg(lvlInfo, args)
|
2017-02-14 13:20:00 +00:00
|
|
|
#define printTalkative(args...) printMsg(lvlTalkative, args)
|
2016-09-21 14:00:03 +00:00
|
|
|
#define debug(args...) printMsg(lvlDebug, args)
|
2016-12-06 20:58:04 +00:00
|
|
|
#define vomit(args...) printMsg(lvlVomit, args)
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2023-03-27 01:12:25 +00:00
|
|
|
/**
|
|
|
|
* if verbosity >= lvlWarn, print a message with a yellow 'warning:' prefix.
|
|
|
|
*/
|
2017-04-12 12:53:10 +00:00
|
|
|
template<typename... Args>
|
2019-12-05 16:39:11 +00:00
|
|
|
inline void warn(const std::string & fs, const Args & ... args)
|
2017-04-12 12:53:10 +00:00
|
|
|
{
|
2024-03-26 22:39:54 +00:00
|
|
|
logger->warn(HintFmt(fs, args...).str());
|
2017-04-12 12:53:10 +00:00
|
|
|
}
|
|
|
|
|
2024-07-14 21:50:16 +00:00
|
|
|
void writeLogsToStderr(std::string_view s);
|
2016-04-25 13:26:07 +00:00
|
|
|
|
|
|
|
}
|