Avi Drissman | ea1be23 | 2022-09-14 23:29:06 | [diff] [blame] | 1 | // Copyright 2012 The Chromium Authors |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 5 | #ifndef IPC_MESSAGE_ROUTER_H_ |
| 6 | #define IPC_MESSAGE_ROUTER_H_ |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 7 | |
avi | a9aa7a8 | 2015-12-25 03:06:31 | [diff] [blame] | 8 | #include <stdint.h> |
| 9 | |
Ken Rockot | 3044d21 | 2018-01-23 02:44:39 | [diff] [blame] | 10 | #include "base/component_export.h" |
Brett Wilson | f976d3f | 2017-08-18 17:23:39 | [diff] [blame] | 11 | #include "base/containers/id_map.h" |
[email protected] | d84effeb | 2012-06-25 17:03:10 | [diff] [blame] | 12 | #include "ipc/ipc_listener.h" |
| 13 | #include "ipc/ipc_sender.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 14 | |
| 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] | d84effeb | 2012-06-25 17:03:10 | [diff] [blame] | 26 | // 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.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 29 | // |
| 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 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 33 | namespace IPC { |
[email protected] | 13075767 | 2012-10-24 00:26:19 | [diff] [blame] | 34 | |
Ken Rockot | 3044d21 | 2018-01-23 02:44:39 | [diff] [blame] | 35 | class COMPONENT_EXPORT(IPC) MessageRouter : public Listener, public Sender { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 36 | public: |
[email protected] | d4799a3 | 2010-09-28 22:54:58 | [diff] [blame] | 37 | MessageRouter(); |
Peter Boström | c68c5aa | 2021-09-28 00:28:00 | [diff] [blame] | 38 | |
| 39 | MessageRouter(const MessageRouter&) = delete; |
| 40 | MessageRouter& operator=(const MessageRouter&) = delete; |
| 41 | |
dcheng | e933b3e | 2014-10-21 11:44:09 | [diff] [blame] | 42 | ~MessageRouter() override; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 43 | |
| 44 | // Implemented by subclasses to handle control messages |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 45 | virtual bool OnControlMessageReceived(const Message& msg); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 46 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 47 | // Listener implementation: |
| 48 | bool OnMessageReceived(const Message& msg) override; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 49 | |
| 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. |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 53 | virtual bool RouteMessage(const Message& msg); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 54 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 55 | // Sender implementation: |
| 56 | bool Send(Message* msg) override; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 57 | |
[email protected] | 0d78ec0e | 2014-04-08 23:35:23 | [diff] [blame] | 58 | // Called to add a listener for a particular message routing ID. |
| 59 | // Returns true if succeeded. |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 60 | bool AddRoute(int32_t routing_id, Listener* listener); |
[email protected] | 0d78ec0e | 2014-04-08 23:35:23 | [diff] [blame] | 61 | |
| 62 | // Called to remove a listener for a particular message routing ID. |
avi | a9aa7a8 | 2015-12-25 03:06:31 | [diff] [blame] | 63 | void RemoveRoute(int32_t routing_id); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 64 | |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 65 | // Returns the Listener associated with |routing_id|. |
| 66 | Listener* GetRoute(int32_t routing_id); |
| 67 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 68 | private: |
| 69 | // A list of all listeners with assigned routing IDs. |
Brett Wilson | f976d3f | 2017-08-18 17:23:39 | [diff] [blame] | 70 | base::IDMap<Listener*> routes_; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 71 | }; |
| 72 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 73 | } // namespace IPC |
[email protected] | 13075767 | 2012-10-24 00:26:19 | [diff] [blame] | 74 | |
markdittmer | 638a149 | 2016-02-19 01:11:50 | [diff] [blame] | 75 | #endif // IPC_MESSAGE_ROUTER_H_ |