blob: e12d62b2873f400917963e8a6b4dcb0c5d027173 [file] [log] [blame]
Avi Drissmanea1be232022-09-14 23:29:061// Copyright 2012 The Chromium Authors
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
markdittmer638a1492016-02-19 01:11:505#ifndef IPC_MESSAGE_ROUTER_H_
6#define IPC_MESSAGE_ROUTER_H_
initial.commit09911bf2008-07-26 23:55:297
avia9aa7a82015-12-25 03:06:318#include <stdint.h>
9
Ken Rockot3044d212018-01-23 02:44:3910#include "base/component_export.h"
Brett Wilsonf976d3f2017-08-18 17:23:3911#include "base/containers/id_map.h"
[email protected]d84effeb2012-06-25 17:03:1012#include "ipc/ipc_listener.h"
13#include "ipc/ipc_sender.h"
initial.commit09911bf2008-07-26 23:55:2914
15// The MessageRouter handles all incoming messages sent to it by routing them
16// to the correct listener. Routing is based on the Message's routing ID.
17// Since routing IDs are typically assigned asynchronously by the browser
18// process, the MessageRouter has the notion of pending IDs for listeners that
19// have not yet been assigned a routing ID.
20//
21// When a message arrives, the routing ID is used to index the set of routes to
22// find a listener. If a listener is found, then the message is passed to it.
23// Otherwise, the message is ignored if its routing ID is not equal to
24// MSG_ROUTING_CONTROL.
25//
[email protected]d84effeb2012-06-25 17:03:1026// The MessageRouter supports the IPC::Sender interface for outgoing messages,
27// but does not define a meaningful implementation of it. The subclass of
28// MessageRouter is intended to provide that if appropriate.
initial.commit09911bf2008-07-26 23:55:2929//
30// The MessageRouter can be used as a concrete class provided its Send method
31// is not called and it does not receive any control messages.
32
markdittmer638a1492016-02-19 01:11:5033namespace IPC {
[email protected]130757672012-10-24 00:26:1934
Ken Rockot3044d212018-01-23 02:44:3935class COMPONENT_EXPORT(IPC) MessageRouter : public Listener, public Sender {
initial.commit09911bf2008-07-26 23:55:2936 public:
[email protected]d4799a32010-09-28 22:54:5837 MessageRouter();
Peter Boströmc68c5aa2021-09-28 00:28:0038
39 MessageRouter(const MessageRouter&) = delete;
40 MessageRouter& operator=(const MessageRouter&) = delete;
41
dchenge933b3e2014-10-21 11:44:0942 ~MessageRouter() override;
initial.commit09911bf2008-07-26 23:55:2943
44 // Implemented by subclasses to handle control messages
markdittmer638a1492016-02-19 01:11:5045 virtual bool OnControlMessageReceived(const Message& msg);
initial.commit09911bf2008-07-26 23:55:2946
markdittmer638a1492016-02-19 01:11:5047 // Listener implementation:
48 bool OnMessageReceived(const Message& msg) override;
initial.commit09911bf2008-07-26 23:55:2949
50 // Like OnMessageReceived, except it only handles routed messages. Returns
51 // true if the message was dispatched, or false if there was no listener for
52 // that route id.
markdittmer638a1492016-02-19 01:11:5053 virtual bool RouteMessage(const Message& msg);
initial.commit09911bf2008-07-26 23:55:2954
markdittmer638a1492016-02-19 01:11:5055 // Sender implementation:
56 bool Send(Message* msg) override;
initial.commit09911bf2008-07-26 23:55:2957
[email protected]0d78ec0e2014-04-08 23:35:2358 // Called to add a listener for a particular message routing ID.
59 // Returns true if succeeded.
markdittmer638a1492016-02-19 01:11:5060 bool AddRoute(int32_t routing_id, Listener* listener);
[email protected]0d78ec0e2014-04-08 23:35:2361
62 // Called to remove a listener for a particular message routing ID.
avia9aa7a82015-12-25 03:06:3163 void RemoveRoute(int32_t routing_id);
initial.commit09911bf2008-07-26 23:55:2964
rockotf62002a2016-09-15 00:08:5965 // Returns the Listener associated with |routing_id|.
66 Listener* GetRoute(int32_t routing_id);
67
initial.commit09911bf2008-07-26 23:55:2968 private:
69 // A list of all listeners with assigned routing IDs.
Brett Wilsonf976d3f2017-08-18 17:23:3970 base::IDMap<Listener*> routes_;
initial.commit09911bf2008-07-26 23:55:2971};
72
markdittmer638a1492016-02-19 01:11:5073} // namespace IPC
[email protected]130757672012-10-24 00:26:1974
markdittmer638a1492016-02-19 01:11:5075#endif // IPC_MESSAGE_ROUTER_H_