aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-03-27 10:55:09 -0600
committerBen Burdette <bburdette@gmail.com>2020-03-27 10:55:09 -0600
commit759f39800bb80eaa297ea2532b1640959487ed9c (patch)
tree40843336cd4ca3cc39f05dfb6c0ef750fac6e930
parent00eb3fcb7a19a38d5ca94f4dcbda149f16e73a6e (diff)
remove util.hh from deps
-rw-r--r--src/libutil/ansicolor.hh13
-rw-r--r--src/libutil/error.cc2
-rw-r--r--src/libutil/error.hh25
-rw-r--r--src/libutil/util.hh10
4 files changed, 31 insertions, 19 deletions
diff --git a/src/libutil/ansicolor.hh b/src/libutil/ansicolor.hh
new file mode 100644
index 000000000..390bd4d17
--- /dev/null
+++ b/src/libutil/ansicolor.hh
@@ -0,0 +1,13 @@
+#pragma once
+
+namespace nix
+{
+ /* Some ANSI escape sequences. */
+ #define ANSI_NORMAL "\e[0m"
+ #define ANSI_BOLD "\e[1m"
+ #define ANSI_FAINT "\e[2m"
+ #define ANSI_RED "\e[31;1m"
+ #define ANSI_GREEN "\e[32;1m"
+ #define ANSI_YELLOW "\e[33;1m"
+ #define ANSI_BLUE "\e[34;1m"
+}
diff --git a/src/libutil/error.cc b/src/libutil/error.cc
index 9194539a5..c986affcc 100644
--- a/src/libutil/error.cc
+++ b/src/libutil/error.cc
@@ -104,7 +104,7 @@ void printErrorInfo(ErrorInfo &einfo)
}
default:
{
- levelString = format("invalid error level: %1%") % einfo.level;
+ levelString = (format("invalid error level: %1%") % einfo.level).str();
break;
}
}
diff --git a/src/libutil/error.hh b/src/libutil/error.hh
index f02d7288a..88980afb7 100644
--- a/src/libutil/error.hh
+++ b/src/libutil/error.hh
@@ -1,11 +1,13 @@
#pragma once
-#include "util.hh"
+#include "ansicolor.hh"
#include <string>
#include <optional>
#include <iostream>
#include <iomanip>
+#include <boost/format.hpp>
+
using std::string;
using std::optional;
using boost::format;
@@ -251,8 +253,14 @@ class AddHint : private T
// --------------------------------------------------------
// error types
-typedef AddName<AddDescription<AddHint<EIError>>> StandardError;
-typedef AddName<AddDescription<AddHint<EIWarning>>> StandardWarning;
+typedef AddName<
+ AddDescription<
+ AddHint<
+ EIError>>> StandardError;
+typedef AddName<
+ AddDescription<
+ AddHint<
+ EIWarning>>> StandardWarning;
typedef AddName<
AddDescription<
@@ -260,13 +268,16 @@ typedef AddName<
AddLineNumber<
AddColumnRange<
AddLOC<
- AddHint<EIError>>>>>>> MkNixError;
+ AddHint<
+ EIError>>>>>>> MkNixError;
typedef AddName<
AddDescription<
AddNixFile<
AddLineNumber<
AddColumnRange<
- AddLOC<EIWarning>>>>>> MkNixWarning;
+ AddLOC<
+ AddHint<
+ EIWarning>>>>>>> MkNixWarning;
// --------------------------------------------------------
@@ -274,9 +285,5 @@ typedef AddName<
void printErrorInfo(ErrorInfo &einfo);
-string showErrLine(ErrLine &errLine);
-
-void printCodeLines(string &prefix, NixCode &nixCode);
-
}
diff --git a/src/libutil/util.hh b/src/libutil/util.hh
index 3bfebcd15..d69e29158 100644
--- a/src/libutil/util.hh
+++ b/src/libutil/util.hh
@@ -2,6 +2,7 @@
#include "types.hh"
#include "logging.hh"
+#include "ansicolor.hh"
#include <sys/types.h>
#include <sys/stat.h>
@@ -423,15 +424,6 @@ std::string shellEscape(const std::string & s);
void ignoreException();
-/* Some ANSI escape sequences. */
-#define ANSI_NORMAL "\e[0m"
-#define ANSI_BOLD "\e[1m"
-#define ANSI_FAINT "\e[2m"
-#define ANSI_RED "\e[31;1m"
-#define ANSI_GREEN "\e[32;1m"
-#define ANSI_YELLOW "\e[33;1m"
-#define ANSI_BLUE "\e[34;1m"
-
/* Truncate a string to 'width' printable characters. If 'filterAll'
is true, all ANSI escape sequences are filtered out. Otherwise,