aboutsummaryrefslogtreecommitdiffstats
path: root/eval_error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 08:39:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 08:39:03 +0000
commitdaad618740a3ce9e266086cf7dfa7adcfb239a20 (patch)
treebb42a78b3bb679b411ff2a951cac81adba488e3f /eval_error.c
parent28278b836beae2370f6c596713061a1fd4e104e7 (diff)
downloadruby-daad618740a3ce9e266086cf7dfa7adcfb239a20.tar.gz
eval_error.c: rb_error_write flags
* eval_error.c (rb_error_write): add highlight and reverse mode flags. defaulted to rb_stderr_tty_p() if Qnil. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62548 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_error.c')
-rw-r--r--eval_error.c42
1 files changed, 33 insertions, 9 deletions
diff --git a/eval_error.c b/eval_error.c
index 26e2efd15e..346b76ed5f 100644
--- a/eval_error.c
+++ b/eval_error.c
@@ -79,12 +79,16 @@ error_print(rb_execution_context_t *ec)
rb_ec_error_print(ec, ec->errinfo);
}
+#define CSI_BEGIN "\033["
+#define CSI_SGR "m"
+
+static const char underline[] = CSI_BEGIN"1;4"CSI_SGR;
+static const char bold[] = CSI_BEGIN"1"CSI_SGR;
+static const char reset[] = CSI_BEGIN""CSI_SGR;
+
static void
print_errinfo(const VALUE eclass, const VALUE errat, const VALUE emesg, const VALUE str, int highlight)
{
- static const char underline[] = "\033[4;1m";
- static const char bold[] = "\033[1m";
- static const char reset[] = "\033[m";
const char *einfo = "";
long elen = 0;
VALUE mesg;
@@ -199,7 +203,7 @@ print_backtrace(const VALUE eclass, const VALUE errat, const VALUE str, int reve
}
void
-rb_error_write(VALUE errinfo, VALUE errat, VALUE str)
+rb_error_write(VALUE errinfo, VALUE errat, VALUE str, VALUE highlight, VALUE reverse)
{
volatile VALUE eclass = Qundef, emesg = Qundef;
@@ -216,13 +220,33 @@ rb_error_write(VALUE errinfo, VALUE errat, VALUE str)
emesg = e;
}
}
- if (rb_stderr_tty_p()) {
- write_warn(str, "\033[1mTraceback \033[m(most recent call last):\n");
+ if (NIL_P(reverse) || NIL_P(highlight)) {
+ VALUE tty = (VALUE)rb_stderr_tty_p();
+ if (NIL_P(reverse)) reverse = tty;
+ if (NIL_P(highlight)) highlight = tty;
+ }
+ if (reverse) {
+ static const char traceback[] = "Traceback "
+ "(most recent call last):\n";
+ const int bold_part = rb_strlen_lit("Traceback");
+ char buff[sizeof(traceback)+sizeof(bold)+sizeof(reset)-2], *p = buff;
+ const char *msg = traceback;
+ long len = sizeof(traceback) - 1;
+ if (highlight) {
+#define APPEND(s, l) (memcpy(p, s, l), p += (l))
+ APPEND(bold, sizeof(bold)-1);
+ APPEND(traceback, bold_part);
+ APPEND(reset, sizeof(reset)-1);
+ APPEND(traceback + bold_part, sizeof(traceback)-bold_part-1);
+#undef APPEND
+ len = p - (msg = buff);
+ }
+ write_warn2(str, msg, len);
print_backtrace(eclass, errat, str, TRUE);
- print_errinfo(eclass, errat, emesg, str, TRUE);
+ print_errinfo(eclass, errat, emesg, str, highlight!=0);
}
else {
- print_errinfo(eclass, errat, emesg, str, FALSE);
+ print_errinfo(eclass, errat, emesg, str, highlight!=0);
print_backtrace(eclass, errat, str, FALSE);
}
}
@@ -242,7 +266,7 @@ rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo)
errat = rb_get_backtrace(errinfo);
}
- rb_error_write(errinfo, errat, Qnil);
+ rb_error_write(errinfo, errat, Qnil, Qnil, Qnil);
EC_POP_TAG();
ec->errinfo = errinfo;