| // Copyright 2020 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_RENDERER_AGENT_SCHEDULING_GROUP_H_ |
| #define CONTENT_RENDERER_AGENT_SCHEDULING_GROUP_H_ |
| |
| #include "base/containers/id_map.h" |
| #include "content/common/agent_scheduling_group.mojom.h" |
| #include "content/common/associated_interfaces.mojom.h" |
| #include "content/common/content_export.h" |
| #include "content/public/common/content_features.h" |
| #include "ipc/ipc.mojom.h" |
| #include "ipc/ipc_listener.h" |
| #include "mojo/public/cpp/bindings/associated_receiver.h" |
| #include "mojo/public/cpp/bindings/associated_receiver_set.h" |
| #include "mojo/public/cpp/bindings/associated_remote.h" |
| #include "mojo/public/cpp/bindings/receiver.h" |
| #include "mojo/public/cpp/bindings/remote.h" |
| #include "third_party/blink/public/common/tokens/tokens.h" |
| #include "third_party/blink/public/mojom/associated_interfaces/associated_interfaces.mojom.h" |
| #include "third_party/blink/public/mojom/browser_interface_broker.mojom.h" |
| #include "third_party/blink/public/mojom/frame/frame_replication_state.mojom-forward.h" |
| #include "third_party/blink/public/platform/scheduler/web_agent_group_scheduler.h" |
| |
| namespace IPC { |
| class Message; |
| class SyncChannel; |
| } // namespace IPC |
| |
| namespace content { |
| class RenderThread; |
| |
| // Renderer-side representation of AgentSchedulingGroup, used for communication |
| // with the (browser-side) AgentSchedulingGroupHost. AgentSchedulingGroup is |
| // Blink's unit of scheduling and performance isolation, which is the only way |
| // to obtain ordering guarantees between different Mojo (associated) interfaces |
| // and legacy IPC messages. |
| class CONTENT_EXPORT AgentSchedulingGroup |
| : public IPC::Listener, |
| public mojom::AgentSchedulingGroup, |
| public mojom::RouteProvider, |
| public blink::mojom::AssociatedInterfaceProvider { |
| public: |
| AgentSchedulingGroup( |
| RenderThread& render_thread, |
| mojo::PendingReceiver<IPC::mojom::ChannelBootstrap> bootstrap, |
| mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> broker_remote); |
| AgentSchedulingGroup( |
| RenderThread& render_thread, |
| mojo::PendingAssociatedReceiver<mojom::AgentSchedulingGroup> receiver, |
| mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> broker_remote); |
| ~AgentSchedulingGroup() override; |
| |
| AgentSchedulingGroup(const AgentSchedulingGroup&) = delete; |
| AgentSchedulingGroup& operator=(const AgentSchedulingGroup&) = delete; |
| |
| bool Send(IPC::Message* message); |
| void AddRoute(int32_t routing_id, IPC::Listener* listener); |
| void AddFrameRoute(int32_t routing_id, |
| IPC::Listener* listener, |
| scoped_refptr<base::SingleThreadTaskRunner> task_runner); |
| void RemoveRoute(int32_t routing_id); |
| void DidUnloadRenderFrame(const blink::LocalFrameToken& frame_token); |
| |
| mojom::RouteProvider* GetRemoteRouteProvider(); |
| |
| blink::scheduler::WebAgentGroupScheduler& agent_group_scheduler() { |
| return *agent_group_scheduler_; |
| } |
| |
| protected: |
| // mojom::AgentSchedulingGroup: |
| void BindAssociatedInterfaces( |
| mojo::PendingAssociatedRemote<mojom::AgentSchedulingGroupHost> |
| remote_host, |
| mojo::PendingAssociatedRemote<mojom::RouteProvider> remote_route_provider, |
| mojo::PendingAssociatedReceiver<mojom::RouteProvider> |
| route_provider_receiever) override; |
| |
| private: |
| // IPC::Listener: |
| bool OnMessageReceived(const IPC::Message& message) override; |
| void OnBadMessageReceived(const IPC::Message& message) override; |
| void OnAssociatedInterfaceRequest( |
| const std::string& interface_name, |
| mojo::ScopedInterfaceEndpointHandle handle) override; |
| |
| // mojom::AgentSchedulingGroup: |
| void CreateView(mojom::CreateViewParamsPtr params) override; |
| void DestroyView(int32_t view_id, DestroyViewCallback callback) override; |
| void CreateFrame(mojom::CreateFrameParamsPtr params) override; |
| void CreateFrameProxy( |
| const blink::RemoteFrameToken& token, |
| int32_t routing_id, |
| const absl::optional<blink::FrameToken>& opener_frame_token, |
| int32_t view_routing_id, |
| int32_t parent_routing_id, |
| blink::mojom::TreeScopeType tree_scope_type, |
| blink::mojom::FrameReplicationStatePtr replicated_state, |
| const base::UnguessableToken& devtools_frame_token, |
| mojom::RemoteMainFrameInterfacesPtr remote_main_frame_interfaces) |
| override; |
| |
| // mojom::RouteProvider |
| void GetRoute( |
| int32_t routing_id, |
| mojo::PendingAssociatedReceiver<blink::mojom::AssociatedInterfaceProvider> |
| receiver) override; |
| |
| // blink::mojom::AssociatedInterfaceProvider |
| void GetAssociatedInterface( |
| const std::string& name, |
| mojo::PendingAssociatedReceiver<blink::mojom::AssociatedInterface> |
| receiver) override; |
| |
| IPC::Listener* GetListener(int32_t routing_id); |
| |
| // This AgentSchedulingGroup's legacy IPC channel. Will only be used in |
| // `features::MBIMode::kEnabledPerRenderProcessHost` or |
| // `features::MBIMode::kEnabledPerSiteInstance` mode. |
| std::unique_ptr<IPC::SyncChannel> channel_; |
| |
| // Map of registered IPC listeners. |
| base::IDMap<IPC::Listener*> listener_map_; |
| |
| // A dedicated scheduler for this AgentSchedulingGroup. |
| std::unique_ptr<blink::scheduler::WebAgentGroupScheduler> |
| agent_group_scheduler_; |
| |
| RenderThread& render_thread_; |
| |
| // Implementation of `mojom::AgentSchedulingGroup`, used for responding to |
| // calls from the (browser-side) `AgentSchedulingGroupHost`. |
| mojo::AssociatedReceiver<mojom::AgentSchedulingGroup> receiver_; |
| |
| // Remote stub of mojom::AgentSchedulingGroupHost, used for sending calls to |
| // the (browser-side) AgentSchedulingGroupHost. |
| mojo::AssociatedRemote<mojom::AgentSchedulingGroupHost> host_remote_; |
| |
| // The |mojom::RouteProvider| mojo pair to setup |
| // |blink::AssociatedInterfaceProvider| routes between us and the browser-side |
| // |AgentSchedulingGroup|. |
| mojo::AssociatedRemote<mojom::RouteProvider> remote_route_provider_; |
| mojo::AssociatedReceiver<mojom::RouteProvider> route_provider_receiver_{this}; |
| |
| // The `blink::mojom::AssociatedInterfaceProvider` receiver set that *all* |
| // browser-side `blink::AssociatedInterfaceProvider` objects own a remote to. |
| // `AgentSchedulingGroupHost` will be responsible for routing each associated |
| // interface request to the appropriate renderer object. |
| mojo::AssociatedReceiverSet<blink::mojom::AssociatedInterfaceProvider, |
| int32_t> |
| associated_interface_provider_receivers_; |
| }; |
| |
| } // namespace content |
| |
| #endif // CONTENT_RENDERER_AGENT_SCHEDULING_GROUP_H_ |