[gjs: 7/16] console: Refactor AutoReportException for non-object exceptions
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs: 7/16] console: Refactor AutoReportException for non-object exceptions
- Date: Sat, 13 Oct 2018 21:27:35 +0000 (UTC)
commit ef596cc5c68bd3cf1e0e532e57daaab48eaa5ff1
Author: Philip Chimento <philip chimento gmail com>
Date: Thu Oct 4 09:04:00 2018 -0700
console: Refactor AutoReportException for non-object exceptions
Previously, in the interactive interpreter, throwing a non-object
exception (for example, `throw 'foo';`) would crash when trying to print
the exception value in the console.
This changes AutoReportException so that exceptions are handled better
when they are not objects.
modules/console.cpp | 31 +++++++++++++++++++++----------
1 file changed, 21 insertions(+), 10 deletions(-)
---
diff --git a/modules/console.cpp b/modules/console.cpp
index fe7c5888..162292b3 100644
--- a/modules/console.cpp
+++ b/modules/console.cpp
@@ -53,6 +53,8 @@
#include <glib.h>
#include <glib/gprintf.h>
+#include <string>
+
#include "console.h"
#include "gjs/context.h"
#include "gjs/context-private.h"
@@ -187,6 +189,20 @@ gjs_console_warning_reporter(JSContext *cx, JSErrorReport *report)
class AutoReportException {
JSContext *m_cx;
+ JSErrorReport* error_from_exception_value(JS::HandleValue v_exn) const {
+ if (!v_exn.isObject())
+ return nullptr;
+ JS::RootedObject exn(m_cx, &v_exn.toObject());
+ return JS_ErrorFromException(m_cx, exn);
+ }
+
+ JSObject* stack_from_exception_value(JS::HandleValue v_exn) const {
+ if (!v_exn.isObject())
+ return nullptr;
+ JS::RootedObject exn(m_cx, &v_exn.toObject());
+ return ExceptionStackOrNull(exn);
+ }
+
public:
explicit AutoReportException(JSContext *cx) : m_cx(cx) {}
@@ -198,22 +214,17 @@ public:
JS::RootedValue v_exn(m_cx);
(void) JS_GetPendingException(m_cx, &v_exn);
- JS::RootedObject exn(m_cx, &v_exn.toObject());
- JSErrorReport *report = JS_ErrorFromException(m_cx, exn);
+ JSErrorReport* report = error_from_exception_value(v_exn);
if (report) {
g_assert(!JSREPORT_IS_WARNING(report->flags));
gjs_console_print_error(report);
} else {
- JS::RootedString message(m_cx, JS::ToString(m_cx, v_exn));
- if (!message) {
- g_printerr("(could not convert thrown exception to string)\n");
- } else {
- GjsAutoJSChar message_utf8 = JS_EncodeStringToUTF8(m_cx, message);
- g_printerr("%s\n", message_utf8.get());
- }
+ GjsAutoChar string = gjs_value_debug_string(m_cx, v_exn);
+ g_printerr("error: %s\n", string.get());
+ return;
}
- JS::RootedObject stack(m_cx, ExceptionStackOrNull(exn));
+ JS::RootedObject stack(m_cx, stack_from_exception_value(v_exn));
if (stack) {
GjsAutoChar stack_str = gjs_format_stack_trace(m_cx, stack);
if (!stack_str)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]