// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_INSPECTOR_V8_INSPECTOR_SESSION_IMPL_H_ #define V8_INSPECTOR_V8_INSPECTOR_SESSION_IMPL_H_ #include #include #include "src/base/macros.h" #include "src/inspector/protocol/Forward.h" #include "src/inspector/protocol/Runtime.h" #include "src/inspector/protocol/Schema.h" #include "include/v8-inspector.h" namespace v8_inspector { class InjectedScript; class RemoteObjectIdBase; class V8ConsoleAgentImpl; class V8DebuggerAgentImpl; class V8InspectorImpl; class V8HeapProfilerAgentImpl; class V8ProfilerAgentImpl; class V8RuntimeAgentImpl; class V8SchemaAgentImpl; using protocol::Response; class V8InspectorSessionImpl : public V8InspectorSession, public protocol::FrontendChannel { public: static std::unique_ptr create( V8InspectorImpl*, int contextGroupId, int sessionId, V8Inspector::Channel*, const StringView& state); ~V8InspectorSessionImpl() override; V8InspectorImpl* inspector() const { return m_inspector; } V8ConsoleAgentImpl* consoleAgent() { return m_consoleAgent.get(); } V8DebuggerAgentImpl* debuggerAgent() { return m_debuggerAgent.get(); } V8SchemaAgentImpl* schemaAgent() { return m_schemaAgent.get(); } V8ProfilerAgentImpl* profilerAgent() { return m_profilerAgent.get(); } V8RuntimeAgentImpl* runtimeAgent() { return m_runtimeAgent.get(); } int contextGroupId() const { return m_contextGroupId; } int sessionId() const { return m_sessionId; } Response findInjectedScript(int contextId, InjectedScript*&); Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&); void reset(); void discardInjectedScripts(); void reportAllContexts(V8RuntimeAgentImpl*); void setCustomObjectFormatterEnabled(bool); std::unique_ptr wrapObject( v8::Local, v8::Local, const String16& groupName, bool generatePreview); std::unique_ptr wrapTable( v8::Local, v8::Local table, v8::MaybeLocal columns); std::vector> supportedDomainsImpl(); Response unwrapObject(const String16& objectId, v8::Local*, v8::Local*, String16* objectGroup); void releaseObjectGroup(const String16& objectGroup); // V8InspectorSession implementation. void dispatchProtocolMessage(const StringView& message) override; std::vector state() override; std::vector> supportedDomains() override; void addInspectedObject( std::unique_ptr) override; void schedulePauseOnNextStatement(const StringView& breakReason, const StringView& breakDetails) override; void cancelPauseOnNextStatement() override; void breakProgram(const StringView& breakReason, const StringView& breakDetails) override; void setSkipAllPauses(bool) override; void resume() override; void stepOver() override; std::vector> searchInTextByLines(const StringView& text, const StringView& query, bool caseSensitive, bool isRegex) override; void releaseObjectGroup(const StringView& objectGroup) override; bool unwrapObject(std::unique_ptr*, const StringView& objectId, v8::Local*, v8::Local*, std::unique_ptr* objectGroup) override; std::unique_ptr wrapObject( v8::Local, v8::Local, const StringView& groupName, bool generatePreview) override; V8InspectorSession::Inspectable* inspectedObject(unsigned num); static const unsigned kInspectedObjectBufferSize = 5; private: V8InspectorSessionImpl(V8InspectorImpl*, int contextGroupId, int sessionId, V8Inspector::Channel*, const StringView& state); protocol::DictionaryValue* agentState(const String16& name); // protocol::FrontendChannel implementation. void sendProtocolResponse( int callId, std::unique_ptr message) override; void sendProtocolNotification( std::unique_ptr message) override; void fallThrough(int callId, const String16& method, const protocol::ProtocolMessage& message) override; void flushProtocolNotifications() override; std::unique_ptr serializeForFrontend( std::unique_ptr message); int m_contextGroupId; int m_sessionId; V8InspectorImpl* m_inspector; V8Inspector::Channel* m_channel; bool m_customObjectFormatterEnabled; protocol::UberDispatcher m_dispatcher; std::unique_ptr m_state; std::unique_ptr m_runtimeAgent; std::unique_ptr m_debuggerAgent; std::unique_ptr m_heapProfilerAgent; std::unique_ptr m_profilerAgent; std::unique_ptr m_consoleAgent; std::unique_ptr m_schemaAgent; std::vector> m_inspectedObjects; bool use_binary_protocol_ = false; DISALLOW_COPY_AND_ASSIGN(V8InspectorSessionImpl); }; } // namespace v8_inspector #endif // V8_INSPECTOR_V8_INSPECTOR_SESSION_IMPL_H_