2016-04-25 16:26:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
lvlError = 0,
|
|
|
|
lvlInfo,
|
|
|
|
lvlTalkative,
|
|
|
|
lvlChatty,
|
|
|
|
lvlDebug,
|
|
|
|
lvlVomit
|
|
|
|
} Verbosity;
|
|
|
|
|
2017-05-16 17:09:57 +03:00
|
|
|
class Activity
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef uint64_t t;
|
|
|
|
const t id;
|
|
|
|
Activity();
|
|
|
|
Activity(const Activity & act) : id(act.id) { };
|
|
|
|
Activity(uint64_t id) : id(id) { };
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
evBuildCreated = 0,
|
|
|
|
evBuildStarted = 1,
|
|
|
|
evBuildOutput = 2,
|
|
|
|
evBuildFinished = 3,
|
|
|
|
evDownloadCreated = 4,
|
|
|
|
evDownloadDestroyed = 5,
|
|
|
|
evDownloadProgress = 6,
|
|
|
|
evDownloadSucceeded = 7,
|
|
|
|
evSubstitutionCreated = 8,
|
|
|
|
evSubstitutionStarted = 9,
|
|
|
|
evSubstitutionFinished = 10,
|
|
|
|
} EventType;
|
|
|
|
|
|
|
|
struct Event
|
|
|
|
{
|
|
|
|
struct Field
|
|
|
|
{
|
|
|
|
// FIXME: use std::variant.
|
|
|
|
enum { tInt, tString } type;
|
|
|
|
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) { }
|
|
|
|
Field(const Activity & act) : type(tInt), i(act.id) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Field> Fields;
|
|
|
|
|
|
|
|
EventType type;
|
|
|
|
Fields fields;
|
|
|
|
|
|
|
|
std::string getS(size_t n) const
|
|
|
|
{
|
|
|
|
assert(n < fields.size());
|
|
|
|
assert(fields[n].type == Field::tString);
|
|
|
|
return fields[n].s;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t getI(size_t n) const
|
|
|
|
{
|
|
|
|
assert(n < fields.size());
|
|
|
|
assert(fields[n].type == Field::tInt);
|
|
|
|
return fields[n].i;
|
|
|
|
}
|
|
|
|
};
|
2016-04-25 16:26:07 +03:00
|
|
|
|
|
|
|
class Logger
|
|
|
|
{
|
|
|
|
friend class Activity;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual ~Logger() { }
|
|
|
|
|
|
|
|
virtual void log(Verbosity lvl, const FormatOrString & fs) = 0;
|
|
|
|
|
|
|
|
void log(const FormatOrString & fs)
|
|
|
|
{
|
|
|
|
log(lvlInfo, fs);
|
|
|
|
}
|
|
|
|
|
2017-04-12 15:53:10 +03:00
|
|
|
virtual void warn(const std::string & msg);
|
|
|
|
|
2017-05-16 17:09:57 +03:00
|
|
|
template<typename... Args>
|
|
|
|
void event(EventType type, const Args & ... args)
|
2016-04-25 16:26:07 +03:00
|
|
|
{
|
2017-05-16 17:09:57 +03:00
|
|
|
Event ev;
|
|
|
|
ev.type = type;
|
|
|
|
nop{(ev.fields.emplace_back(Event::Field(args)), 1)...};
|
|
|
|
event(ev);
|
2016-04-25 16:26:07 +03:00
|
|
|
}
|
|
|
|
|
2017-05-16 17:09:57 +03:00
|
|
|
virtual void event(const Event & ev) = 0;
|
2016-04-25 16:26:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Logger * logger;
|
|
|
|
|
|
|
|
Logger * makeDefaultLogger();
|
|
|
|
|
|
|
|
extern Verbosity verbosity; /* suppress msgs > this */
|
|
|
|
|
2016-09-21 17:00:03 +03:00
|
|
|
/* Print a 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. */
|
|
|
|
#define printMsg(level, args...) \
|
2016-04-25 16:26:07 +03:00
|
|
|
do { \
|
|
|
|
if (level <= nix::verbosity) { \
|
2016-09-21 17:00:03 +03:00
|
|
|
logger->log(level, fmt(args)); \
|
2016-04-25 16:26:07 +03:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2016-09-21 17:00:03 +03:00
|
|
|
#define printError(args...) printMsg(lvlError, args)
|
|
|
|
#define printInfo(args...) printMsg(lvlInfo, args)
|
2017-02-14 15:20:00 +02:00
|
|
|
#define printTalkative(args...) printMsg(lvlTalkative, args)
|
2016-09-21 17:00:03 +03:00
|
|
|
#define debug(args...) printMsg(lvlDebug, args)
|
2016-12-06 22:58:04 +02:00
|
|
|
#define vomit(args...) printMsg(lvlVomit, args)
|
2016-04-25 16:26:07 +03:00
|
|
|
|
2017-04-12 15:53:10 +03:00
|
|
|
template<typename... Args>
|
|
|
|
inline void warn(const std::string & fs, Args... args)
|
|
|
|
{
|
|
|
|
boost::format f(fs);
|
2017-05-11 18:06:07 +03:00
|
|
|
nop{boost::io::detail::feed(f, args)...};
|
2017-04-12 15:53:10 +03:00
|
|
|
logger->warn(f.str());
|
|
|
|
}
|
|
|
|
|
2016-04-25 16:26:07 +03:00
|
|
|
void warnOnce(bool & haveWarned, const FormatOrString & fs);
|
|
|
|
|
|
|
|
void writeToStderr(const string & s);
|
|
|
|
|
|
|
|
}
|