blob: b35320f7546e3084fecd9f48e3e1a642c9a916bb [file] [log] [blame]
// Copyright 2016 The Chromium 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 CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_SESSION_H_
#define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_SESSION_H_
#include <map>
#include "base/containers/flat_map.h"
#include "base/memory/weak_ptr.h"
#include "base/values.h"
#include "content/browser/devtools/devtools_agent_host_impl.h"
#include "content/browser/devtools/protocol/devtools_domain_handler.h"
#include "content/browser/devtools/protocol/protocol.h"
namespace content {
class DevToolsAgentHostClient;
class RenderFrameHostImpl;
class DevToolsSession : public protocol::FrontendChannel {
public:
DevToolsSession(DevToolsAgentHostImpl* agent_host,
DevToolsAgentHostClient* client,
int session_id);
~DevToolsSession() override;
int session_id() const { return session_id_; }
void AddHandler(std::unique_ptr<protocol::DevToolsDomainHandler> handler);
void SetRenderFrameHost(RenderFrameHostImpl* host);
void SetFallThroughForNotFound(bool value);
struct Message {
std::string method;
std::string message;
};
using MessageByCallId = std::map<int, Message>;
MessageByCallId& waiting_messages() { return waiting_for_response_messages_; }
const std::string& state_cookie() { return chunk_processor_.state_cookie(); }
protocol::Response::Status Dispatch(
const std::string& message,
int* call_id,
std::string* method);
bool ReceiveMessageChunk(const DevToolsMessageChunk& chunk);
void SendMessageToClient(const std::string& message);
template <typename Handler>
static std::vector<Handler*> HandlersForAgentHost(
DevToolsAgentHostImpl* agent_host,
const std::string& name) {
std::vector<Handler*> result;
if (agent_host->sessions().empty())
return result;
for (DevToolsSession* session : agent_host->sessions()) {
auto it = session->handlers_.find(name);
if (it != session->handlers_.end())
result.push_back(static_cast<Handler*>(it->second.get()));
}
return result;
}
private:
void SendMessageFromProcessor(int session_id, const std::string& message);
void SendResponse(std::unique_ptr<base::DictionaryValue> response);
// protocol::FrontendChannel implementation.
void sendProtocolResponse(
int call_id,
std::unique_ptr<protocol::Serializable> message) override;
void sendProtocolNotification(
std::unique_ptr<protocol::Serializable> message) override;
void flushProtocolNotifications() override;
DevToolsAgentHostImpl* agent_host_;
DevToolsAgentHostClient* client_;
int session_id_;
base::flat_map<std::string, std::unique_ptr<protocol::DevToolsDomainHandler>>
handlers_;
RenderFrameHostImpl* host_;
std::unique_ptr<protocol::UberDispatcher> dispatcher_;
// Chunk processor's state cookie always corresponds to a state before
// any of the waiting for response messages have been handled.
DevToolsMessageChunkProcessor chunk_processor_;
MessageByCallId waiting_for_response_messages_;
base::WeakPtrFactory<DevToolsSession> weak_factory_;
};
} // namespace content
#endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_SESSION_H_