/* * Copyright (c) 2011 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #include "bindings/v8/PageScriptDebugServer.h" #include "V8Window.h" #include "bindings/v8/ScriptController.h" #include "bindings/v8/ScriptSourceCode.h" #include "bindings/v8/V8Binding.h" #include "bindings/v8/V8ScriptRunner.h" #include "bindings/v8/V8WindowShell.h" #include "core/inspector/InspectorInstrumentation.h" #include "core/inspector/ScriptDebugListener.h" #include "core/frame/Frame.h" #include "core/page/Page.h" #include "wtf/OwnPtr.h" #include "wtf/PassOwnPtr.h" #include "wtf/StdLibExtras.h" #include "wtf/TemporaryChange.h" #include "wtf/text/StringBuilder.h" namespace WebCore { static Frame* retrieveFrameWithGlobalObjectCheck(v8::Handle context) { if (context.IsEmpty()) return 0; // Test that context has associated global dom window object. v8::Handle global = context->Global(); if (global.IsEmpty()) return 0; global = global->FindInstanceInPrototypeChain(V8Window::domTemplate(context->GetIsolate(), worldTypeInMainThread(context->GetIsolate()))); if (global.IsEmpty()) return 0; return toFrameIfNotDetached(context); } void PageScriptDebugServer::setPreprocessorSource(const String& preprocessorSource) { if (preprocessorSource.isEmpty()) m_preprocessorSourceCode.clear(); else m_preprocessorSourceCode = adoptPtr(new ScriptSourceCode(preprocessorSource)); m_scriptPreprocessor.clear(); } PageScriptDebugServer& PageScriptDebugServer::shared() { DEFINE_STATIC_LOCAL(PageScriptDebugServer, server, ()); return server; } PageScriptDebugServer::PageScriptDebugServer() : ScriptDebugServer(v8::Isolate::GetCurrent()) , m_pausedPage(0) { } void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page) { ScriptController& scriptController = page->mainFrame()->script(); if (!scriptController.canExecuteScripts(NotAboutToExecuteScript)) return; v8::HandleScope scope(m_isolate); v8::Local debuggerContext = v8::Debug::GetDebugContext(); v8::Context::Scope contextScope(debuggerContext); v8::Local debuggerScript = m_debuggerScript.newLocal(m_isolate); if (!m_listenersMap.size()) { ensureDebuggerScriptCompiled(); ASSERT(!debuggerScript->IsUndefined()); v8::Debug::SetDebugEventListener2(&PageScriptDebugServer::v8DebugEventCallback, v8::External::New(m_isolate, this)); } m_listenersMap.set(page, listener); V8WindowShell* shell = scriptController.existingWindowShell(mainThreadNormalWorld()); if (!shell || !shell->isContextInitialized()) return; v8::Local context = shell->context(); v8::Handle getScriptsFunction = v8::Local::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getScripts"))); v8::Handle argv[] = { context->GetEmbedderData(0) }; v8::Handle value = V8ScriptRunner::callInternalFunction(getScriptsFunction, debuggerScript, WTF_ARRAY_LENGTH(argv), argv, m_isolate); if (value.IsEmpty()) return; ASSERT(!value->IsUndefined() && value->IsArray()); v8::Handle scriptsArray = v8::Handle::Cast(value); for (unsigned i = 0; i < scriptsArray->Length(); ++i) dispatchDidParseSource(listener, v8::Handle::Cast(scriptsArray->Get(v8::Integer::New(i, m_isolate)))); } void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page) { if (!m_listenersMap.contains(page)) return; if (m_pausedPage == page) continueProgram(); m_listenersMap.remove(page); if (m_listenersMap.isEmpty()) v8::Debug::SetDebugEventListener2(0); // FIXME: Remove all breakpoints set by the agent. } void PageScriptDebugServer::setClientMessageLoop(PassOwnPtr clientMessageLoop) { m_clientMessageLoop = clientMessageLoop; } void PageScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage) { ExecutionContext* executionContext = state->executionContext(); RefPtr protect = toDocument(executionContext)->frame(); ScriptDebugServer::compileScript(state, expression, sourceURL, scriptId, exceptionMessage); if (!scriptId->isNull()) m_compiledScriptURLs.set(*scriptId, sourceURL); } void PageScriptDebugServer::clearCompiledScripts() { ScriptDebugServer::clearCompiledScripts(); m_compiledScriptURLs.clear(); } void PageScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage) { String sourceURL = m_compiledScriptURLs.take(scriptId); ExecutionContext* executionContext = state->executionContext(); Frame* frame = toDocument(executionContext)->frame(); InspectorInstrumentationCookie cookie; if (frame) cookie = InspectorInstrumentation::willEvaluateScript(frame, sourceURL, TextPosition::minimumPosition().m_line.oneBasedInt()); RefPtr protect = frame; ScriptDebugServer::runScript(state, scriptId, result, wasThrown, exceptionMessage); if (frame) InspectorInstrumentation::didEvaluateScript(cookie); } ScriptDebugListener* PageScriptDebugServer::getDebugListenerForContext(v8::Handle context) { v8::HandleScope scope(m_isolate); Frame* frame = retrieveFrameWithGlobalObjectCheck(context); if (!frame) return 0; return m_listenersMap.get(frame->page()); } void PageScriptDebugServer::runMessageLoopOnPause(v8::Handle context) { v8::HandleScope scope(m_isolate); Frame* frame = retrieveFrameWithGlobalObjectCheck(context); m_pausedPage = frame->page(); // Wait for continue or step command. m_clientMessageLoop->run(m_pausedPage); // The listener may have been removed in the nested loop. if (ScriptDebugListener* listener = m_listenersMap.get(m_pausedPage)) listener->didContinue(); m_pausedPage = 0; } void PageScriptDebugServer::quitMessageLoopOnPause() { m_clientMessageLoop->quitNow(); } void PageScriptDebugServer::preprocessBeforeCompile(const v8::Debug::EventDetails& eventDetails) { v8::Handle eventContext = eventDetails.GetEventContext(); Frame* frame = retrieveFrameWithGlobalObjectCheck(eventContext); if (!frame) return; if (!canPreprocess(frame)) return; v8::Handle eventData = eventDetails.GetEventData(); v8::Local debugContext = v8::Debug::GetDebugContext(); v8::Context::Scope contextScope(debugContext); v8::TryCatch tryCatch; //