Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
fixup! code cleanup
Browse files Browse the repository at this point in the history
Fixed issues pointed out in the code review.
  • Loading branch information
bajtos committed Jun 26, 2013
1 parent 218d4c5 commit 1ebae5c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
25 changes: 13 additions & 12 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,7 @@ ssize_t DecodeWrite(char *buf,
return StringBytes::Write(buf, buflen, val, encoding, NULL);
}

void DisplayExceptionLine (Handle<Message> message) {
void DisplayExceptionLine(Handle<Message> message) {
// Prevent re-entry into this function. For example, if there is
// a throw from a program in vm.runInThisContext(code, filename, true),
// then we want to show the original failure, not the secondary one.
Expand Down Expand Up @@ -1194,11 +1194,11 @@ static void ReportException(Handle<Value> er, Handle<Message> message) {

DisplayExceptionLine(message);

Local<Value> traceValue(er->ToObject()->Get(String::New("stack")));
String::Utf8Value trace(traceValue);
Local<Value> trace_value(er->ToObject()->Get(String::New("stack")));
String::Utf8Value trace(trace_value);

// range errors have a trace member set to undefined
if (trace.length() > 0 && !traceValue->IsUndefined()) {
if (trace.length() > 0 && !trace_value->IsUndefined()) {
fprintf(stderr, "%s\n", *trace);
} else {
// this really only happens for RangeErrors, since they're the only
Expand Down Expand Up @@ -1889,15 +1889,13 @@ void FatalException(Handle<Value> error, Handle<Message> message) {

Local<Function> fatal_f = Local<Function>::Cast(fatal_v);

Handle<Value> argv[] = { error };

TryCatch fatal_try_catch;

// Do not call FatalException when _fatalException handler throws
fatal_try_catch.SetVerbose(false);

// this will return true if the JS layer handled it, false otherwise
Local<Value> caught = fatal_f->Call(process, ARRAY_SIZE(argv), argv);
Local<Value> caught = fatal_f->Call(process, 1, &error);

if (fatal_try_catch.HasCaught()) {
// the fatal exception function threw, so we must exit
Expand All @@ -1912,15 +1910,17 @@ void FatalException(Handle<Value> error, Handle<Message> message) {
}


void FatalException(TryCatch &try_catch) {
void FatalException(TryCatch& try_catch) {
HandleScope scope(node_isolate);
// TODO do not call FatalException if try_catch is verbose
// (requires V8 API to expose getter for try_catch.is_verbose_)
FatalException(try_catch.Exception(), try_catch.Message());
}


void OnMessage(Handle<Message> message, Handle<Value> error) {
// TODO - check if exception is set?
// The current version of V8 sends messages for errors only
// (thus `error` is always set).
FatalException(error, message);
}

Expand Down Expand Up @@ -2434,8 +2434,9 @@ void Load(Handle<Object> process_l) {

TryCatch try_catch;

// try_catch must be not verbose to disable FatalException() handler
// Load exceptions cannot be ignored (handled) by _fatalException
// Disable verbose mode to stop FatalException() handler from trying
// to handle the exception. Errors this early in the start-up phase
// are not safe to ignore.
try_catch.SetVerbose(false);

Local<Value> f_value = ExecuteString(MainSource(),
Expand Down Expand Up @@ -2471,7 +2472,7 @@ void Load(Handle<Object> process_l) {
// (FatalException(), break on uncaught exception in debugger)
//
// This is not strictly necessary since it's almost impossible
// to attach debugger fast enought to break on exception
// to attach the debugger fast enought to break on exception
// thrown during process startup.
try_catch.SetVerbose(true);

Expand Down
10 changes: 2 additions & 8 deletions src/node_script.cc
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,7 @@ Handle<Value> WrappedScript::EvalMachine(const Arguments& args) {
: Script::New(code, filename);
if (script.IsEmpty()) {
// FIXME UGLY HACK TO DISPLAY SYNTAX ERRORS.
if (display_error) {
HandleScope scope(node_isolate);
DisplayExceptionLine(try_catch.Message());
}
if (display_error) DisplayExceptionLine(try_catch.Message());

// Hack because I can't get a proper stacktrace on SyntaxError
return try_catch.ReThrow();
Expand Down Expand Up @@ -451,10 +448,7 @@ Handle<Value> WrappedScript::EvalMachine(const Arguments& args) {
String::New("Script execution timed out.")));
}
if (result.IsEmpty()) {
if (display_error) {
HandleScope scope(node_isolate);
DisplayExceptionLine(try_catch.Message());
}
if (display_error) DisplayExceptionLine(try_catch.Message());
return try_catch.ReThrow();
}
} else {
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/uncaught-exceptions/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ d.run(function() {
throw new Error('in domain');
});
});

0 comments on commit 1ebae5c

Please # to comment.