blob: 8b63ed3fc38d93d33e6540ec744884f53dc94fe1 [file] [log] [blame]
Jonas Oreland09c452e2019-11-20 08:01:021/*
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 Vijaykar3382c1c2022-06-02 09:29:0918#include "absl/types/optional.h"
Jonas Oreland09c452e2019-11-20 08:01:0219#include "p2p/base/connection.h"
Sameer Vijaykar3382c1c2022-06-02 09:29:0920#include "p2p/base/ice_switch_reason.h"
Jonas Oreland09c452e2019-11-20 08:01:0221#include "p2p/base/ice_transport_internal.h"
Sameer Vijaykara2653bc2023-01-26 15:34:0922#include "rtc_base/system/rtc_export.h"
Jonas Oreland09c452e2019-11-20 08:01:0223
24namespace cricket {
25
26struct IceFieldTrials; // Forward declaration to avoid circular dependency.
27
Sameer Vijaykara2653bc2023-01-26 15:34:0928struct RTC_EXPORT IceRecheckEvent {
Sameer Vijaykar2a1accd2022-06-03 09:39:3929 IceRecheckEvent(IceSwitchReason _reason, int _recheck_delay_ms)
Sameer Vijaykar9a912862022-06-03 12:03:1830 : reason(_reason), recheck_delay_ms(_recheck_delay_ms) {}
Sameer Vijaykar3382c1c2022-06-02 09:29:0931
Jonas Oreland09c452e2019-11-20 08:01:0232 std::string ToString() const;
33
Sameer Vijaykar3382c1c2022-06-02 09:29:0934 IceSwitchReason reason;
Sameer Vijaykar9a912862022-06-03 12:03:1835 int recheck_delay_ms;
Jonas Oreland09c452e2019-11-20 08:01:0236};
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 Oreland49864b72020-06-05 12:55:3542// - which connection to forget learned state on
Jonas Oreland09c452e2019-11-20 08:01:0243//
Jonas Oreland49864b72020-06-05 12:55:3544// The P2PTransportChannel owns (creates and destroys) Connections,
45// but P2PTransportChannel gives const pointers to the the IceController using
Artem Titov2dbb4c92021-07-26 13:12:4146// `AddConnection`, i.e the IceController should not call any non-const methods
Jonas Oreland49864b72020-06-05 12:55:3547// on a Connection but signal back in the interface if any mutable function
48// shall be called.
Jonas Oreland09c452e2019-11-20 08:01:0249//
Jonas Oreland49864b72020-06-05 12:55:3550// 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 Oreland09c452e2019-11-20 08:01:0256// (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
61class 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 Orelandb5aa0a82019-12-03 08:59:1168 // An optional recheck event for when a Switch() should be attempted again.
Sameer Vijaykar2a1accd2022-06-03 09:39:3969 absl::optional<IceRecheckEvent> recheck_event;
Jonas Oreland49864b72020-06-05 12:55:3570
71 // A vector with connection to run ForgetLearnedState on.
72 std::vector<const Connection*> connections_to_forget_state_on;
Jonas Oreland09c452e2019-11-20 08:01:0273 };
74
Jonas Oreland43336002020-03-26 19:59:0375 // This represents the result of a call to SelectConnectionToPing.
76 struct PingResult {
77 PingResult(const Connection* conn, int _recheck_delay_ms)
Tim Na203b5492021-02-05 18:23:5378 : connection(conn ? absl::optional<const Connection*>(conn)
79 : absl::nullopt),
80 recheck_delay_ms(_recheck_delay_ms) {}
Jonas Oreland43336002020-03-26 19:59:0381
Jonas Oreland43336002020-03-26 19:59:0382 // Connection that we should (optionally) ping.
83 const absl::optional<const Connection*> connection;
84
Jonas Orelandfa097a22020-03-27 14:12:5285 // 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 Oreland43336002020-03-26 19:59:0392 const int recheck_delay_ms = 0;
93 };
Jonas Oreland2f3c0192020-03-26 11:59:4494
Jonas Oreland09c452e2019-11-20 08:01:0295 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 Oreland2f3c0192020-03-26 11:59:44112 virtual PingResult SelectConnectionToPing(int64_t last_ping_sent_ms) = 0;
Jonas Oreland09c452e2019-11-20 08:01:02113
Artem Titov2dbb4c92021-07-26 13:12:41114 // Compute the "STUN_ATTR_USE_CANDIDATE" for `conn`.
Jonas Oreland09c452e2019-11-20 08:01:02115 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 Titov2dbb4c92021-07-26 13:12:41124 // Check if we should switch to `connection`.
Sameer Vijaykar3382c1c2022-06-02 09:29:09125 // This method is called for IceSwitchReasons that can switch directly
Jonas Oreland09c452e2019-11-20 08:01:02126 // i.e without resorting.
Sameer Vijaykar781c12e2022-06-02 14:01:12127 virtual SwitchResult ShouldSwitchConnection(IceSwitchReason reason,
128 const Connection* connection) = 0;
Jonas Oreland09c452e2019-11-20 08:01:02129
130 // Sort connections and check if we should switch.
Sameer Vijaykar781c12e2022-06-02 14:01:12131 virtual SwitchResult SortAndSwitchConnection(IceSwitchReason reason) = 0;
Jonas Oreland09c452e2019-11-20 08:01:02132
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_