Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "gin/try_catch.h" | 5 #include "gin/try_catch.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "gin/converter.h" | 9 #include "gin/converter.h" |
| 10 | 10 |
| 11 namespace { | |
| 12 | |
| 13 v8::Local<v8::String> GetSourceLine(v8::Local<v8::Message> message) { | |
| 14 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | |
|
jochen (gone - plz use gerrit)
2015/05/27 14:43:26
please pass in the Isolate* as parameter
bashi
2015/05/29 02:04:02
Done.
| |
| 15 auto maybe = message->GetSourceLine(isolate->GetCurrentContext()); | |
| 16 v8::Local<v8::String> source_line; | |
| 17 return maybe.ToLocal(&source_line) ? source_line : v8::String::Empty(isolate); | |
| 18 } | |
| 19 | |
| 20 } // namespace | |
| 21 | |
| 11 namespace gin { | 22 namespace gin { |
| 12 | 23 |
| 13 TryCatch::TryCatch() { | 24 TryCatch::TryCatch(v8::Isolate* isolate) : try_catch_(isolate) { |
| 14 } | 25 } |
| 15 | 26 |
| 16 TryCatch::~TryCatch() { | 27 TryCatch::~TryCatch() { |
| 17 } | 28 } |
| 18 | 29 |
| 19 bool TryCatch::HasCaught() { | 30 bool TryCatch::HasCaught() { |
| 20 return try_catch_.HasCaught(); | 31 return try_catch_.HasCaught(); |
| 21 } | 32 } |
| 22 | 33 |
| 23 std::string TryCatch::GetStackTrace() { | 34 std::string TryCatch::GetStackTrace() { |
| 24 if (!HasCaught()) { | 35 if (!HasCaught()) { |
| 25 return ""; | 36 return ""; |
| 26 } | 37 } |
| 27 | 38 |
| 28 std::stringstream ss; | 39 std::stringstream ss; |
| 29 v8::Local<v8::Message> message = try_catch_.Message(); | 40 v8::Local<v8::Message> message = try_catch_.Message(); |
| 30 ss << V8ToString(message->Get()) << std::endl | 41 ss << V8ToString(message->Get()) << std::endl |
| 31 << V8ToString(message->GetSourceLine()) << std::endl; | 42 << V8ToString(GetSourceLine(message)) << std::endl; |
| 32 | 43 |
| 33 v8::Local<v8::StackTrace> trace = message->GetStackTrace(); | 44 v8::Local<v8::StackTrace> trace = message->GetStackTrace(); |
| 34 if (trace.IsEmpty()) | 45 if (trace.IsEmpty()) |
| 35 return ss.str(); | 46 return ss.str(); |
| 36 | 47 |
| 37 int len = trace->GetFrameCount(); | 48 int len = trace->GetFrameCount(); |
| 38 for (int i = 0; i < len; ++i) { | 49 for (int i = 0; i < len; ++i) { |
| 39 v8::Local<v8::StackFrame> frame = trace->GetFrame(i); | 50 v8::Local<v8::StackFrame> frame = trace->GetFrame(i); |
| 40 ss << V8ToString(frame->GetScriptName()) << ":" | 51 ss << V8ToString(frame->GetScriptName()) << ":" |
| 41 << frame->GetLineNumber() << ":" | 52 << frame->GetLineNumber() << ":" |
| 42 << frame->GetColumn() << ": " | 53 << frame->GetColumn() << ": " |
| 43 << V8ToString(frame->GetFunctionName()) | 54 << V8ToString(frame->GetFunctionName()) |
| 44 << std::endl; | 55 << std::endl; |
| 45 } | 56 } |
| 46 return ss.str(); | 57 return ss.str(); |
| 47 } | 58 } |
| 48 | 59 |
| 49 } // namespace gin | 60 } // namespace gin |
| OLD | NEW |