nix-super/src/error-demo/error-demo.cc

88 lines
3.1 KiB
C++
Raw Normal View History

2020-04-03 23:55:26 +03:00
#include "error.hh"
#include "nixexpr.hh"
2020-03-23 23:29:49 +02:00
#include <iostream>
2020-04-03 01:02:40 +03:00
#include <optional>
2020-03-23 23:29:49 +02:00
2020-04-03 01:02:40 +03:00
int main()
2020-03-27 18:03:02 +02:00
{
2020-04-03 01:02:40 +03:00
using namespace nix;
2020-03-23 23:29:49 +02:00
// In each program where errors occur, this has to be set.
2020-04-03 23:55:26 +03:00
ErrorInfo::programName = std::optional("error-demo");
2020-03-25 18:52:03 +02:00
// There are currently four error types:
2020-04-03 01:02:40 +03:00
//
// ProgramError, ProgramWarning, NixLangError, NixLangWarning.
2020-04-03 01:02:40 +03:00
//
// Each error type is created with a specific sequence of builder functions.
// Unlike with a constructor, each parameter is clearly named.
2020-04-03 01:02:40 +03:00
// If the sequence of function calls isn't followed, then there's a type
// error. This should make for a consistent look in the code when errors are
// created.
2020-03-31 21:42:41 +03:00
// ProgramError takes name, description, and an optional hint.
2020-04-03 01:02:40 +03:00
printErrorInfo( ProgramError()
.name("name")
.description("error description")
.nohint()
);
2020-03-31 21:42:41 +03:00
// ProgramWarning takes name, description, and an optional hint.
2020-04-03 01:02:40 +03:00
// The hint is in the form of a hintfmt class, which wraps boost::format(),
// and makes all the substituted text yellow.
printErrorInfo( ProgramWarning()
.name("warning name")
.description("warning description")
2020-04-03 17:48:20 +03:00
// the templated value, 'warning', is automatically colored yellow.
.hint(hintfmt("there was a %1%", "warning"))
2020-04-03 01:02:40 +03:00
);
2020-03-31 21:42:41 +03:00
/*
// some invalid errors:
2020-04-03 01:02:40 +03:00
// type error: no hint function.
ProgramError()
.name("name")
.description("error description");
2020-04-01 03:29:41 +03:00
// type error: description before name.
ProgramError()
.description("error description")
.name("name")
.nohint();
2020-04-01 03:29:41 +03:00
2020-04-03 01:02:40 +03:00
// type error: hint function with regular boost format, not special
hintfmt. ProgramError() .description("error description") .name("name")
.hint(format("there was a %1%") % "warning");
*/
2020-04-01 03:29:41 +03:00
2020-04-03 01:02:40 +03:00
// NixLangWarning adds nix file, line number, column range, and the lines of
// code where a warning occurred.
SymbolTable testTable;
auto problem_symbol = testTable.create("problem");
2020-04-03 01:02:40 +03:00
printErrorInfo(NixLangWarning()
.name("warning name")
.description("warning description")
.pos(Pos(problem_symbol, 40, 13))
2020-04-03 01:02:40 +03:00
.linesOfCode(std::nullopt,
"this is the problem line of code",
std::nullopt)
2020-04-03 17:48:20 +03:00
.hint(hintfmt("this hint has %1% templated %2%!!", "yellow" , "values")));
2020-03-31 21:42:41 +03:00
2020-04-03 01:02:40 +03:00
// NixLangError is just the same as NixLangWarning, except for the Error
// flag.
printErrorInfo(NixLangError()
.name("error name")
.description("error description")
.pos(Pos(problem_symbol, 40, 13))
2020-04-03 01:02:40 +03:00
.linesOfCode(std::optional("previous line of code"),
"this is the problem line of code",
std::optional("next line of code"))
2020-04-03 17:48:20 +03:00
.hint(hintfmt("this hint has %1% templated %2%!!", "yellow", "values")));
2020-03-24 17:18:23 +02:00
return 0;
2020-03-23 23:29:49 +02:00
}