Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #ifndef P2P_BASE_ICE_CONTROLLER_INTERFACE_H_ |
| 12 | #define P2P_BASE_ICE_CONTROLLER_INTERFACE_H_ |
| 13 | |
| 14 | #include <string> |
| 15 | #include <utility> |
| 16 | #include <vector> |
| 17 | |
Sameer Vijaykar | 3382c1c | 2022-06-02 09:29:09 | [diff] [blame] | 18 | #include "absl/types/optional.h" |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 19 | #include "p2p/base/connection.h" |
Sameer Vijaykar | 3382c1c | 2022-06-02 09:29:09 | [diff] [blame] | 20 | #include "p2p/base/ice_switch_reason.h" |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 21 | #include "p2p/base/ice_transport_internal.h" |
Sameer Vijaykar | a2653bc | 2023-01-26 15:34:09 | [diff] [blame] | 22 | #include "rtc_base/system/rtc_export.h" |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 23 | |
| 24 | namespace cricket { |
| 25 | |
| 26 | struct IceFieldTrials; // Forward declaration to avoid circular dependency. |
| 27 | |
Sameer Vijaykar | a2653bc | 2023-01-26 15:34:09 | [diff] [blame] | 28 | struct RTC_EXPORT IceRecheckEvent { |
Sameer Vijaykar | 2a1accd | 2022-06-03 09:39:39 | [diff] [blame] | 29 | IceRecheckEvent(IceSwitchReason _reason, int _recheck_delay_ms) |
Sameer Vijaykar | 9a91286 | 2022-06-03 12:03:18 | [diff] [blame] | 30 | : reason(_reason), recheck_delay_ms(_recheck_delay_ms) {} |
Sameer Vijaykar | 3382c1c | 2022-06-02 09:29:09 | [diff] [blame] | 31 | |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 32 | std::string ToString() const; |
| 33 | |
Sameer Vijaykar | 3382c1c | 2022-06-02 09:29:09 | [diff] [blame] | 34 | IceSwitchReason reason; |
Sameer Vijaykar | 9a91286 | 2022-06-03 12:03:18 | [diff] [blame] | 35 | int recheck_delay_ms; |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | // Defines the interface for a module that control |
| 39 | // - which connection to ping |
| 40 | // - which connection to use |
| 41 | // - which connection to prune |
Jonas Oreland | 49864b7 | 2020-06-05 12:55:35 | [diff] [blame] | 42 | // - which connection to forget learned state on |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 43 | // |
Jonas Oreland | 49864b7 | 2020-06-05 12:55:35 | [diff] [blame] | 44 | // The P2PTransportChannel owns (creates and destroys) Connections, |
| 45 | // but P2PTransportChannel gives const pointers to the the IceController using |
Artem Titov | 2dbb4c9 | 2021-07-26 13:12:41 | [diff] [blame] | 46 | // `AddConnection`, i.e the IceController should not call any non-const methods |
Jonas Oreland | 49864b7 | 2020-06-05 12:55:35 | [diff] [blame] | 47 | // on a Connection but signal back in the interface if any mutable function |
| 48 | // shall be called. |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 49 | // |
Jonas Oreland | 49864b7 | 2020-06-05 12:55:35 | [diff] [blame] | 50 | // Current these are limited to: |
| 51 | // Connection::Ping - returned in PingResult |
| 52 | // Connection::Prune - retuned in PruneConnections |
| 53 | // Connection::ForgetLearnedState - return in SwitchResult |
| 54 | // |
| 55 | // The IceController shall keep track of all connections added |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 56 | // (and not destroyed) and give them back using the connections()-function- |
| 57 | // |
| 58 | // When a Connection gets destroyed |
| 59 | // - signals on Connection::SignalDestroyed |
| 60 | // - P2PTransportChannel calls IceController::OnConnectionDestroyed |
| 61 | class IceControllerInterface { |
| 62 | public: |
| 63 | // This represents the result of a switch call. |
| 64 | struct SwitchResult { |
| 65 | // Connection that we should (optionally) switch to. |
| 66 | absl::optional<const Connection*> connection; |
| 67 | |
Jonas Oreland | b5aa0a8 | 2019-12-03 08:59:11 | [diff] [blame] | 68 | // An optional recheck event for when a Switch() should be attempted again. |
Sameer Vijaykar | 2a1accd | 2022-06-03 09:39:39 | [diff] [blame] | 69 | absl::optional<IceRecheckEvent> recheck_event; |
Jonas Oreland | 49864b7 | 2020-06-05 12:55:35 | [diff] [blame] | 70 | |
| 71 | // A vector with connection to run ForgetLearnedState on. |
| 72 | std::vector<const Connection*> connections_to_forget_state_on; |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 73 | }; |
| 74 | |
Jonas Oreland | 4333600 | 2020-03-26 19:59:03 | [diff] [blame] | 75 | // This represents the result of a call to SelectConnectionToPing. |
| 76 | struct PingResult { |
| 77 | PingResult(const Connection* conn, int _recheck_delay_ms) |
Tim Na | 203b549 | 2021-02-05 18:23:53 | [diff] [blame] | 78 | : connection(conn ? absl::optional<const Connection*>(conn) |
| 79 | : absl::nullopt), |
| 80 | recheck_delay_ms(_recheck_delay_ms) {} |
Jonas Oreland | 4333600 | 2020-03-26 19:59:03 | [diff] [blame] | 81 | |
Jonas Oreland | 4333600 | 2020-03-26 19:59:03 | [diff] [blame] | 82 | // Connection that we should (optionally) ping. |
| 83 | const absl::optional<const Connection*> connection; |
| 84 | |
Jonas Oreland | fa097a2 | 2020-03-27 14:12:52 | [diff] [blame] | 85 | // The delay before P2PTransportChannel shall call SelectConnectionToPing() |
| 86 | // again. |
| 87 | // |
| 88 | // Since the IceController determines which connection to ping and |
| 89 | // only returns one connection at a time, the recheck_delay_ms does not have |
| 90 | // any obvious implication on bitrate for pings. E.g the recheck_delay_ms |
| 91 | // will be shorter if there are more connections available. |
Jonas Oreland | 4333600 | 2020-03-26 19:59:03 | [diff] [blame] | 92 | const int recheck_delay_ms = 0; |
| 93 | }; |
Jonas Oreland | 2f3c019 | 2020-03-26 11:59:44 | [diff] [blame] | 94 | |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 95 | virtual ~IceControllerInterface() = default; |
| 96 | |
| 97 | // These setters are called when the state of P2PTransportChannel is mutated. |
| 98 | virtual void SetIceConfig(const IceConfig& config) = 0; |
| 99 | virtual void SetSelectedConnection(const Connection* selected_connection) = 0; |
| 100 | virtual void AddConnection(const Connection* connection) = 0; |
| 101 | virtual void OnConnectionDestroyed(const Connection* connection) = 0; |
| 102 | |
| 103 | // These are all connections that has been added and not destroyed. |
| 104 | virtual rtc::ArrayView<const Connection*> connections() const = 0; |
| 105 | |
| 106 | // Is there a pingable connection ? |
| 107 | // This function is used to boot-strap pinging, after this returns true |
| 108 | // SelectConnectionToPing() will be called periodically. |
| 109 | virtual bool HasPingableConnection() const = 0; |
| 110 | |
| 111 | // Select a connection to Ping, or nullptr if none. |
Jonas Oreland | 2f3c019 | 2020-03-26 11:59:44 | [diff] [blame] | 112 | virtual PingResult SelectConnectionToPing(int64_t last_ping_sent_ms) = 0; |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 113 | |
Artem Titov | 2dbb4c9 | 2021-07-26 13:12:41 | [diff] [blame] | 114 | // Compute the "STUN_ATTR_USE_CANDIDATE" for `conn`. |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 115 | virtual bool GetUseCandidateAttr(const Connection* conn, |
| 116 | NominationMode mode, |
| 117 | IceMode remote_ice_mode) const = 0; |
| 118 | |
| 119 | // These methods is only added to not have to change all unit tests |
| 120 | // that simulate pinging by marking a connection pinged. |
| 121 | virtual const Connection* FindNextPingableConnection() = 0; |
| 122 | virtual void MarkConnectionPinged(const Connection* con) = 0; |
| 123 | |
Artem Titov | 2dbb4c9 | 2021-07-26 13:12:41 | [diff] [blame] | 124 | // Check if we should switch to `connection`. |
Sameer Vijaykar | 3382c1c | 2022-06-02 09:29:09 | [diff] [blame] | 125 | // This method is called for IceSwitchReasons that can switch directly |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 126 | // i.e without resorting. |
Sameer Vijaykar | 781c12e | 2022-06-02 14:01:12 | [diff] [blame] | 127 | virtual SwitchResult ShouldSwitchConnection(IceSwitchReason reason, |
| 128 | const Connection* connection) = 0; |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 129 | |
| 130 | // Sort connections and check if we should switch. |
Sameer Vijaykar | 781c12e | 2022-06-02 14:01:12 | [diff] [blame] | 131 | virtual SwitchResult SortAndSwitchConnection(IceSwitchReason reason) = 0; |
Jonas Oreland | 09c452e | 2019-11-20 08:01:02 | [diff] [blame] | 132 | |
| 133 | // Prune connections. |
| 134 | virtual std::vector<const Connection*> PruneConnections() = 0; |
| 135 | }; |
| 136 | |
| 137 | } // namespace cricket |
| 138 | |
| 139 | #endif // P2P_BASE_ICE_CONTROLLER_INTERFACE_H_ |