1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libutil/error.hh

213 lines
4.8 KiB
C++
Raw Normal View History

2020-04-26 16:47:41 -04:00
#pragma once
#include "ref.hh"
2020-05-11 17:52:15 -04:00
#include "types.hh"
2020-07-07 08:37:47 -04:00
#include "fmt.hh"
2020-04-26 16:47:41 -04:00
2020-06-15 19:35:07 -04:00
#include <cstring>
2020-04-26 16:47:41 -04:00
#include <list>
#include <memory>
#include <map>
#include <optional>
2020-07-07 08:37:47 -04:00
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
2020-04-26 16:47:41 -04:00
/* Before 4.7, gcc's std::exception uses empty throw() specifiers for
* its (virtual) destructor and what() in c++11 mode, in violation of spec
*/
#ifdef __GNUC__
#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7)
#define EXCEPTION_NEEDS_THROW_SPEC
#endif
#endif
namespace nix {
/*
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
This file defines two main structs/classes used in nix error handling.
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
ErrorInfo provides a standard payload of error information, with conversion to string
happening in the logger rather than at the call site.
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
BaseError is the ancestor of nix specific exceptions (and Interrupted), and contains
an ErrorInfo.
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
ErrorInfo structs are sent to the logger as part of an exception, or directly with the
logError or logWarning macros.
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
See the error-demo.cc program for usage examples.
2020-06-04 13:53:19 -04:00
2020-06-18 17:25:26 -04:00
*/
2020-06-04 13:53:19 -04:00
2020-04-28 23:06:08 -04:00
typedef enum {
2020-04-26 16:47:41 -04:00
lvlError = 0,
lvlWarn,
lvlInfo,
lvlTalkative,
lvlChatty,
lvlDebug,
lvlVomit
} Verbosity;
2020-06-18 17:25:26 -04:00
typedef enum {
2020-05-21 00:18:26 -04:00
foFile,
foStdin,
foString
} FileOrigin;
2020-06-24 10:33:53 -04:00
// the lines of code surrounding an error.
struct LinesOfCode {
std::optional<string> prevLineOfCode;
std::optional<string> errLineOfCode;
std::optional<string> nextLineOfCode;
};
2020-06-04 13:53:19 -04:00
// ErrPos indicates the location of an error in a nix file.
2020-04-28 23:06:08 -04:00
struct ErrPos {
int line = 0;
int column = 0;
2020-04-26 16:47:41 -04:00
string file;
2020-05-21 00:18:26 -04:00
FileOrigin origin;
2020-04-26 16:47:41 -04:00
operator bool() const
{
return line != 0;
}
2020-06-04 13:53:19 -04:00
// convert from the Pos struct, found in libexpr.
2020-04-26 16:47:41 -04:00
template <class P>
ErrPos& operator=(const P &pos)
{
2020-05-21 00:18:26 -04:00
origin = pos.origin;
2020-04-26 16:47:41 -04:00
line = pos.line;
column = pos.column;
2020-06-30 13:00:51 -04:00
// is file symbol null?
if (pos.file.set())
file = pos.file;
else
file = "";
2020-04-26 16:47:41 -04:00
return *this;
}
template <class P>
ErrPos(const P &p)
{
2020-04-27 17:15:08 -04:00
*this = p;
2020-04-26 16:47:41 -04:00
}
};
2020-06-18 17:25:26 -04:00
struct Trace {
2020-06-19 15:44:08 -04:00
std::optional<ErrPos> pos;
2020-06-18 17:25:26 -04:00
hintformat hint;
};
2020-04-28 23:06:08 -04:00
struct ErrorInfo {
2020-04-26 16:47:41 -04:00
Verbosity level;
string name;
string description;
std::optional<hintformat> hint;
std::optional<ErrPos> errPos;
2020-06-18 17:25:26 -04:00
std::list<Trace> traces;
2020-04-26 16:47:41 -04:00
static std::optional<string> programName;
};
2020-06-27 14:19:31 -04:00
std::ostream& showErrorInfo(std::ostream &out, const ErrorInfo &einfo, bool showTrace);
2020-04-26 16:47:41 -04:00
/* BaseError should generally not be caught, as it has Interrupted as
a subclass. Catch Error instead. */
class BaseError : public std::exception
{
protected:
2020-05-07 18:43:36 -04:00
mutable ErrorInfo err;
2020-04-29 20:57:05 -04:00
2020-05-07 18:43:36 -04:00
mutable std::optional<string> what_;
2020-05-14 14:28:18 -04:00
const string& calcWhat() const;
2020-04-26 16:47:41 -04:00
public:
unsigned int status = 1; // exit status
template<typename... Args>
BaseError(unsigned int status, const Args & ... args)
2020-06-18 17:25:26 -04:00
: err {.level = lvlError,
.hint = hintfmt(args...)
}
2020-04-26 16:47:41 -04:00
, status(status)
2020-04-29 20:57:05 -04:00
{ }
2020-04-26 16:47:41 -04:00
template<typename... Args>
BaseError(const std::string & fs, const Args & ... args)
2020-06-18 17:25:26 -04:00
: err {.level = lvlError,
.hint = hintfmt(fs, args...)
}
2020-04-29 20:57:05 -04:00
{ }
2020-04-26 16:47:41 -04:00
BaseError(hintformat hint)
2020-06-18 17:25:26 -04:00
: err {.level = lvlError,
.hint = hint
}
{ }
BaseError(ErrorInfo && e)
: err(std::move(e))
{ }
BaseError(const ErrorInfo & e)
2020-04-26 16:47:41 -04:00
: err(e)
2020-04-29 20:57:05 -04:00
{ }
2020-04-28 23:06:08 -04:00
virtual const char* sname() const { return "BaseError"; }
2020-04-26 16:47:41 -04:00
#ifdef EXCEPTION_NEEDS_THROW_SPEC
~BaseError() throw () { };
2020-05-07 18:43:36 -04:00
const char * what() const throw () { return calcWhat().c_str(); }
2020-04-26 16:47:41 -04:00
#else
2020-05-07 18:43:36 -04:00
const char * what() const noexcept override { return calcWhat().c_str(); }
2020-04-26 16:47:41 -04:00
#endif
2020-05-07 18:43:36 -04:00
const string & msg() const { return calcWhat(); }
2020-04-28 23:06:08 -04:00
const ErrorInfo & info() { calcWhat(); return err; }
2020-06-24 15:10:41 -04:00
2020-06-24 15:46:25 -04:00
template<typename... Args>
BaseError & addTrace(std::optional<ErrPos> e, const string &fs, const Args & ... args)
{
return addTrace(e, hintfmt(fs, args...));
}
2020-06-24 15:10:41 -04:00
BaseError & addTrace(std::optional<ErrPos> e, hintformat hint);
bool hasTrace() const { return !err.traces.empty(); }
2020-04-26 16:47:41 -04:00
};
#define MakeError(newClass, superClass) \
class newClass : public superClass \
{ \
public: \
using superClass::superClass; \
2020-04-28 23:06:08 -04:00
virtual const char* sname() const override { return #newClass; } \
2020-04-26 16:47:41 -04:00
}
MakeError(Error, BaseError);
class SysError : public Error
{
public:
int errNo;
template<typename... Args>
SysError(const Args & ... args)
2020-06-18 17:25:26 -04:00
: Error("")
2020-05-06 16:07:20 -04:00
{
errNo = errno;
auto hf = hintfmt(args...);
2020-06-02 10:45:37 -04:00
err.hint = hintfmt("%1%: %2%", normaltxt(hf.str()), strerror(errNo));
2020-05-06 16:07:20 -04:00
}
2020-04-26 16:47:41 -04:00
2020-05-06 16:07:20 -04:00
virtual const char* sname() const override { return "SysError"; }
2020-04-26 16:47:41 -04:00
};
}