/* * 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. */ #ifndef V8_INSPECTOR_V8_RUNTIME_AGENT_IMPL_H_ #define V8_INSPECTOR_V8_RUNTIME_AGENT_IMPL_H_ #include #include #include "include/v8-persistent-handle.h" #include "src/base/macros.h" #include "src/inspector/protocol/Forward.h" #include "src/inspector/protocol/Runtime.h" namespace v8 { class Script; } // namespace v8 namespace v8_inspector { class InjectedScript; class InspectedContext; class RemoteObjectIdBase; class V8ConsoleMessage; class V8InspectorImpl; class V8InspectorSessionImpl; using protocol::Response; using protocol::Maybe; class V8RuntimeAgentImpl : public protocol::Runtime::Backend { public: V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, protocol::DictionaryValue* state); ~V8RuntimeAgentImpl() override; V8RuntimeAgentImpl(const V8RuntimeAgentImpl&) = delete; V8RuntimeAgentImpl& operator=(const V8RuntimeAgentImpl&) = delete; void restore(); // Part of the protocol. Response enable() override; Response disable() override; void evaluate(const String16& expression, Maybe objectGroup, Maybe includeCommandLineAPI, Maybe silent, Maybe executionContextId, Maybe returnByValue, Maybe generatePreview, Maybe userGesture, Maybe awaitPromise, Maybe throwOnSideEffect, Maybe timeout, Maybe disableBreaks, Maybe replMode, Maybe allowUnsafeEvalBlockedByCSP, Maybe uniqueContextId, Maybe generateWebDriverValue, std::unique_ptr) override; void awaitPromise(const String16& promiseObjectId, Maybe returnByValue, Maybe generatePreview, std::unique_ptr) override; void callFunctionOn( const String16& expression, Maybe objectId, Maybe> optionalArguments, Maybe silent, Maybe returnByValue, Maybe generatePreview, Maybe userGesture, Maybe awaitPromise, Maybe executionContextId, Maybe objectGroup, Maybe throwOnSideEffect, Maybe generateWebDriverValue, std::unique_ptr) override; Response releaseObject(const String16& objectId) override; Response getProperties( const String16& objectId, Maybe ownProperties, Maybe accessorPropertiesOnly, Maybe generatePreview, Maybe nonIndexedPropertiesOnly, std::unique_ptr>* result, Maybe>* internalProperties, Maybe>* privateProperties, Maybe*) override; Response releaseObjectGroup(const String16& objectGroup) override; Response runIfWaitingForDebugger() override; Response setCustomObjectFormatterEnabled(bool) override; Response setMaxCallStackSizeToCapture(int) override; Response discardConsoleEntries() override; Response compileScript(const String16& expression, const String16& sourceURL, bool persistScript, Maybe executionContextId, Maybe*, Maybe*) override; void runScript(const String16&, Maybe executionContextId, Maybe objectGroup, Maybe silent, Maybe includeCommandLineAPI, Maybe returnByValue, Maybe generatePreview, Maybe awaitPromise, std::unique_ptr) override; Response queryObjects( const String16& prototypeObjectId, Maybe objectGroup, std::unique_ptr* objects) override; Response globalLexicalScopeNames( Maybe executionContextId, std::unique_ptr>* outNames) override; Response getIsolateId(String16* outIsolateId) override; Response getHeapUsage(double* out_usedSize, double* out_totalSize) override; void terminateExecution( std::unique_ptr callback) override; Response addBinding(const String16& name, Maybe executionContextId, Maybe executionContextName) override; Response removeBinding(const String16& name) override; void addBindings(InspectedContext* context); Response getExceptionDetails(const String16& errorObjectId, Maybe* out_exceptionDetails) override; void reset(); void reportExecutionContextCreated(InspectedContext*); void reportExecutionContextDestroyed(InspectedContext*); void inspect(std::unique_ptr objectToInspect, std::unique_ptr hints, int executionContextId); void messageAdded(V8ConsoleMessage*); bool enabled() const { return m_enabled; } private: bool reportMessage(V8ConsoleMessage*, bool generatePreview); static void bindingCallback(const v8::FunctionCallbackInfo& args); void bindingCalled(const String16& name, const String16& payload, int executionContextId); void addBinding(InspectedContext* context, const String16& name); V8InspectorSessionImpl* m_session; protocol::DictionaryValue* m_state; protocol::Runtime::Frontend m_frontend; V8InspectorImpl* m_inspector; bool m_enabled; std::unordered_map>> m_compiledScripts; // Binding name -> executionContextIds mapping. std::unordered_map> m_activeBindings; }; } // namespace v8_inspector #endif // V8_INSPECTOR_V8_RUNTIME_AGENT_IMPL_H_