blob: 7cb1d20227f0be14dd5b60f4d323116eb7c1803c [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001
2// Copyright 2006-2008 the V8 project authors. All rights reserved.
3// Redistribution and use in source and binary forms, with or without
4// modification, are permitted provided that the following conditions are
5// met:
6//
7// * Redistributions of source code must retain the above copyright
8// notice, this list of conditions and the following disclaimer.
9// * Redistributions in binary form must reproduce the above
10// copyright notice, this list of conditions and the following
11// disclaimer in the documentation and/or other materials provided
12// with the distribution.
13// * Neither the name of Google Inc. nor the names of its
14// contributors may be used to endorse or promote products derived
15// from this software without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29#include "v8.h"
30
31#include "api.h"
32#include "execution.h"
Steve Block6ded16b2010-05-10 14:33:55 +010033#include "messages.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000034#include "spaces-inl.h"
35#include "top.h"
36
37namespace v8 {
38namespace internal {
39
40
41// If no message listeners have been registered this one is called
42// by default.
43void MessageHandler::DefaultMessageReport(const MessageLocation* loc,
44 Handle<Object> message_obj) {
45 SmartPointer<char> str = GetLocalizedMessage(message_obj);
46 if (loc == NULL) {
47 PrintF("%s\n", *str);
48 } else {
49 HandleScope scope;
50 Handle<Object> data(loc->script()->name());
51 SmartPointer<char> data_str;
52 if (data->IsString())
53 data_str = Handle<String>::cast(data)->ToCString(DISALLOW_NULLS);
54 PrintF("%s:%i: %s\n", *data_str ? *data_str : "<unknown>",
55 loc->start_pos(), *str);
56 }
57}
58
59
60void MessageHandler::ReportMessage(const char* msg) {
61 PrintF("%s\n", msg);
62}
63
64
65Handle<Object> MessageHandler::MakeMessageObject(
66 const char* type,
67 MessageLocation* loc,
68 Vector< Handle<Object> > args,
69 Handle<String> stack_trace) {
70 // Build error message object
71 v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
72 Handle<Object> type_str = Factory::LookupAsciiSymbol(type);
73 Handle<Object> array = Factory::NewJSArray(args.length());
74 for (int i = 0; i < args.length(); i++)
75 SetElement(Handle<JSArray>::cast(array), i, args[i]);
76
77 Handle<JSFunction> fun(Top::global_context()->make_message_fun());
78 int start, end;
79 Handle<Object> script;
80 if (loc) {
81 start = loc->start_pos();
82 end = loc->end_pos();
83 script = GetScriptWrapper(loc->script());
84 } else {
85 start = end = 0;
86 script = Factory::undefined_value();
87 }
88 Handle<Object> start_handle(Smi::FromInt(start));
89 Handle<Object> end_handle(Smi::FromInt(end));
90 Handle<Object> stack_trace_val = stack_trace.is_null()
91 ? Factory::undefined_value()
92 : Handle<Object>::cast(stack_trace);
93 const int argc = 6;
94 Object** argv[argc] = { type_str.location(),
95 array.location(),
96 start_handle.location(),
97 end_handle.location(),
98 script.location(),
99 stack_trace_val.location() };
100
101 // Setup a catch handler to catch exceptions in creating the message. This
102 // handler is non-verbose to avoid calling MakeMessage recursively in case of
103 // an exception.
104 v8::TryCatch catcher;
105 catcher.SetVerbose(false);
106 catcher.SetCaptureMessage(false);
107
108 // Format the message.
109 bool caught_exception = false;
110 Handle<Object> message =
111 Execution::Call(fun, Factory::undefined_value(), argc, argv,
112 &caught_exception);
113
114 // If creating the message (in JS code) resulted in an exception, we
115 // skip doing the callback. This usually only happens in case of
116 // stack overflow exceptions being thrown by the parser when the
117 // stack is almost full.
118 if (caught_exception) return Handle<Object>();
119
120 return message.EscapeFrom(&scope);
121}
122
123
124void MessageHandler::ReportMessage(MessageLocation* loc,
125 Handle<Object> message) {
126 v8::Local<v8::Message> api_message_obj = v8::Utils::MessageToLocal(message);
127
128 v8::NeanderArray global_listeners(Factory::message_listeners());
129 int global_length = global_listeners.length();
130 if (global_length == 0) {
131 DefaultMessageReport(loc, message);
132 } else {
133 for (int i = 0; i < global_length; i++) {
134 HandleScope scope;
135 if (global_listeners.get(i)->IsUndefined()) continue;
136 v8::NeanderObject listener(JSObject::cast(global_listeners.get(i)));
137 Handle<Proxy> callback_obj(Proxy::cast(listener.get(0)));
138 v8::MessageCallback callback =
139 FUNCTION_CAST<v8::MessageCallback>(callback_obj->proxy());
140 Handle<Object> callback_data(listener.get(1));
141 callback(api_message_obj, v8::Utils::ToLocal(callback_data));
142 }
143 }
144}
145
146
147Handle<String> MessageHandler::GetMessage(Handle<Object> data) {
148 Handle<String> fmt_str = Factory::LookupAsciiSymbol("FormatMessage");
149 Handle<JSFunction> fun =
150 Handle<JSFunction>(
151 JSFunction::cast(Top::builtins()->GetProperty(*fmt_str)));
152 Object** argv[1] = { data.location() };
153
154 bool caught_exception;
155 Handle<Object> result =
156 Execution::TryCall(fun, Top::builtins(), 1, argv, &caught_exception);
157
158 if (caught_exception || !result->IsString()) {
159 return Factory::LookupAsciiSymbol("<error>");
160 }
161 Handle<String> result_string = Handle<String>::cast(result);
162 // A string that has been obtained from JS code in this way is
163 // likely to be a complicated ConsString of some sort. We flatten it
164 // here to improve the efficiency of converting it to a C string and
165 // other operations that are likely to take place (see GetLocalizedMessage
166 // for example).
167 FlattenString(result_string);
168 return result_string;
169}
170
171
172SmartPointer<char> MessageHandler::GetLocalizedMessage(Handle<Object> data) {
173 HandleScope scope;
174 return GetMessage(data)->ToCString(DISALLOW_NULLS);
175}
176
177
178} } // namespace v8::internal