// 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 COMPONENTS_UI_DEVTOOLS_DEVTOOLS_SERVER_H_ #define COMPONENTS_UI_DEVTOOLS_DEVTOOLS_SERVER_H_ #include #include "base/compiler_specific.h" #include "base/memory/weak_ptr.h" #include "base/single_thread_task_runner.h" #include "base/strings/string_piece_forward.h" #include "base/threading/thread.h" #include "components/ui_devtools/DOM.h" #include "components/ui_devtools/Forward.h" #include "components/ui_devtools/Protocol.h" #include "components/ui_devtools/devtools_client.h" #include "components/ui_devtools/devtools_export.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/bindings/pending_remote.h" #include "services/network/public/cpp/server/http_server.h" namespace ui_devtools { class TracingAgent; class UI_DEVTOOLS_EXPORT UiDevToolsServer : public network::server::HttpServer::Delegate { public: // Network tags to be used for the UI and the Viz devtools servers. static const net::NetworkTrafficAnnotationTag kUIDevtoolsServerTag; static const net::NetworkTrafficAnnotationTag kVizDevtoolsServerTag; ~UiDevToolsServer() override; // Returns an empty unique_ptr if ui devtools flag isn't enabled or if a // server instance has already been created. static std::unique_ptr CreateForViews( network::mojom::NetworkContext* network_context, int port); // Assumes that the devtools flag is enabled, and was checked when the socket // was created. static std::unique_ptr CreateForViz( mojo::PendingRemote server_socket, int port); // Creates a TCPServerSocket to be used by a UiDevToolsServer. static void CreateTCPServerSocket( mojo::PendingReceiver server_socket_receiver, network::mojom::NetworkContext* network_context, int port, net::NetworkTrafficAnnotationTag tag, network::mojom::NetworkContext::CreateTCPServerSocketCallback callback); // Returns a list of attached UiDevToolsClient name + URL using NameUrlPair = std::pair; static std::vector GetClientNamesAndUrls(); // Returns true if UI Devtools is enabled by the given commandline switch. static bool IsUiDevToolsEnabled(const char* enable_devtools_flag); // Returns the port number specified by a command line flag. If a number is // not specified as a command line argument, returns the |default_port|. static int GetUiDevToolsPort(const char* enable_devtools_flag, int default_port); void AttachClient(std::unique_ptr client); void SendOverWebSocket(int connection_id, base::StringPiece message); int port() const { return port_; } TracingAgent* tracing_agent() { return tracing_agent_; } void set_tracing_agent(TracingAgent* agent) { tracing_agent_ = agent; } private: UiDevToolsServer(int port, const net::NetworkTrafficAnnotationTag tag); void MakeServer( mojo::PendingRemote server_socket, int result, const base::Optional& local_addr); // HttpServer::Delegate void OnConnect(int connection_id) override; void OnHttpRequest( int connection_id, const network::server::HttpServerRequestInfo& info) override; void OnWebSocketRequest( int connection_id, const network::server::HttpServerRequestInfo& info) override; void OnWebSocketMessage(int connection_id, std::string data) override; void OnClose(int connection_id) override; using ClientsList = std::vector>; using ConnectionsMap = std::map; ClientsList clients_; ConnectionsMap connections_; std::unique_ptr server_; // The port the devtools server listens on const int port_; const net::NetworkTrafficAnnotationTag tag_; TracingAgent* tracing_agent_ = nullptr; // The server (owned by Chrome for now) static UiDevToolsServer* devtools_server_; SEQUENCE_CHECKER(devtools_server_sequence_); base::WeakPtrFactory weak_ptr_factory_{this}; DISALLOW_COPY_AND_ASSIGN(UiDevToolsServer); }; } // namespace ui_devtools #endif // COMPONENTS_UI_DEVTOOLS_DEVTOOLS_SERVER_H_