OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ | 11 #ifndef WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ |
12 #define WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ | 12 #define WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "webrtc/p2p/base/candidate.h" | 16 #include "webrtc/p2p/base/candidate.h" |
17 #include "webrtc/p2p/base/candidatepairinterface.h" | 17 #include "webrtc/p2p/base/candidatepairinterface.h" |
18 #include "webrtc/p2p/base/jseptransport.h" | 18 #include "webrtc/p2p/base/jseptransport.h" |
19 #include "webrtc/p2p/base/packettransportinterface.h" | 19 #include "webrtc/p2p/base/packettransportinterface.h" |
20 #include "webrtc/p2p/base/transportdescription.h" | 20 #include "webrtc/p2p/base/transportdescription.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 class MetricsObserverInterface; | 23 class MetricsObserverInterface; |
24 } | 24 } |
25 | 25 |
26 namespace cricket { | 26 namespace cricket { |
27 | 27 |
28 enum class TransportState { | 28 // TODO(zhihuang): replace it with PeerConnectionInterface::IceConnectionState. |
| 29 enum class IceTransportState { |
29 STATE_INIT, | 30 STATE_INIT, |
30 STATE_CONNECTING, // Will enter this state once a connection is created | 31 STATE_CONNECTING, // Will enter this state once a connection is created |
31 STATE_COMPLETED, | 32 STATE_COMPLETED, |
32 STATE_FAILEDs | 33 STATE_FAILED |
33 }; | 34 }; |
34 | 35 |
35 // TODO(zhihuang): Remove this once it's no longer used in | 36 // TODO(zhihuang): Remove this once it's no longer used in |
36 // remoting/protocol/libjingle_transport_factory.cc | 37 // remoting/protocol/libjingle_transport_factory.cc |
37 enum IceProtocolType { | 38 enum IceProtocolType { |
38 ICEPROTO_RFC5245 // Standard RFC 5245 version of ICE. | 39 ICEPROTO_RFC5245 // Standard RFC 5245 version of ICE. |
39 }; | 40 }; |
40 | 41 |
41 // IceTransportInternal is an internal abstract class that does ICE. | 42 // IceTransportInternal is an internal abstract class that does ICE. |
42 // Once the public interface is supported, | 43 // Once the public interface is supported, |
43 // (https://www.w3.org/TR/webrtc/#rtcicetransport-interface) | 44 // (https://www.w3.org/TR/webrtc/#rtcicetransport-interface) |
44 // the IceTransportInterface will be split from this class. | 45 // the IceTransportInterface will be split from this class. |
45 class IceTransportInternal : public rtc::PacketTransportInterface { | 46 class IceTransportInternal : public rtc::PacketTransportInterface { |
46 public: | 47 public: |
47 virtual ~IceTransportInternal(); | 48 virtual ~IceTransportInternal(){}; |
48 | 49 |
49 virtual TransportState GetState() const = 0; | 50 virtual IceTransportState GetState() const = 0; |
50 | 51 |
51 virtual const std::string& transport_name() const = 0; | 52 virtual const std::string& transport_name() const = 0; |
52 | 53 |
53 virtual int component() const = 0; | 54 virtual int component() const = 0; |
54 | 55 |
55 virtual IceRole GetIceRole() const = 0; | 56 virtual IceRole GetIceRole() const = 0; |
56 | 57 |
57 virtual void SetIceRole(IceRole role) = 0; | 58 virtual void SetIceRole(IceRole role) = 0; |
58 | 59 |
59 virtual void SetIceTiebreaker(uint64_t tiebreaker) = 0; | 60 virtual void SetIceTiebreaker(uint64_t tiebreaker) = 0; |
(...skipping 28 matching lines...) Expand all Loading... |
88 | 89 |
89 virtual void SetMetricsObserver( | 90 virtual void SetMetricsObserver( |
90 webrtc::MetricsObserverInterface* observer) = 0; | 91 webrtc::MetricsObserverInterface* observer) = 0; |
91 | 92 |
92 virtual void AddRemoteCandidate(const Candidate& candidate) = 0; | 93 virtual void AddRemoteCandidate(const Candidate& candidate) = 0; |
93 | 94 |
94 virtual void RemoveRemoteCandidate(const Candidate& candidate) = 0; | 95 virtual void RemoveRemoteCandidate(const Candidate& candidate) = 0; |
95 | 96 |
96 virtual IceGatheringState gathering_state() const = 0; | 97 virtual IceGatheringState gathering_state() const = 0; |
97 | 98 |
| 99 // Returns the current stats for this connection. |
| 100 virtual bool GetStats(ConnectionInfos* infos) = 0; |
| 101 |
98 sigslot::signal1<IceTransportInternal*> SignalGatheringState; | 102 sigslot::signal1<IceTransportInternal*> SignalGatheringState; |
99 | 103 |
100 // Handles sending and receiving of candidates. | 104 // Handles sending and receiving of candidates. |
101 sigslot::signal2<IceTransportInternal*, const Candidate&> | 105 sigslot::signal2<IceTransportInternal*, const Candidate&> |
102 SignalCandidateGathered; | 106 SignalCandidateGathered; |
103 | 107 |
104 sigslot::signal2<IceTransportInternal*, const Candidates&> | 108 sigslot::signal2<IceTransportInternal*, const Candidates&> |
105 SignalCandidatesRemoved; | 109 SignalCandidatesRemoved; |
106 | 110 |
107 // Deprecated by SignalSelectedCandidatePairChanged | 111 // Deprecated by SignalSelectedCandidatePairChanged |
108 // This signal occurs when there is a change in the way that packets are | 112 // This signal occurs when there is a change in the way that packets are |
109 // being routed, i.e. to a different remote location. The candidate | 113 // being routed, i.e. to a different remote location. The candidate |
110 // indicates where and how we are currently sending media. | 114 // indicates where and how we are currently sending media. |
111 sigslot::signal2<IceTransportInternal*, const Candidate&> SignalRouteChange; | 115 sigslot::signal2<IceTransportInternal*, const Candidate&> SignalRouteChange; |
112 | 116 |
113 // Signalled when the current selected candidate pair has changed. | 117 // Signalled when the current selected candidate pair has changed. |
114 // The first parameter is the transport that signals the event. | 118 // The first parameter is the transport that signals the event. |
115 // The second parameter is the new selected candidate pair. The third | 119 // The second parameter is the new selected candidate pair. The third |
116 // parameter is the last packet id sent on the previous candidate pair. | 120 // parameter is the last packet id sent on the previous candidate pair. |
117 // The fourth parameter is a boolean which is true if the Transport | 121 // The fourth parameter is a boolean which is true if the Transport |
118 // is ready to send with this candidate pair. | 122 // is ready to send with this candidate pair. |
119 sigslot::signal4<IceTransportInternal*, CandidatePairInterface*, int, bool> | 123 sigslot::signal4<IceTransportInternal*, CandidatePairInterface*, int, bool> |
120 SignalSelectedCandidatePairChanged; | 124 SignalSelectedCandidatePairChanged; |
121 | 125 |
| 126 // Invoked when there is conflict in the ICE role between local and remote |
| 127 // agents. |
| 128 sigslot::signal1<IceTransportInternal*> SignalRoleConflict; |
| 129 |
| 130 // Emitted whenever the transport state changed. |
| 131 sigslot::signal1<IceTransportInternal*> SignalStateChanged; |
| 132 |
122 // Invoked when the transport is being destroyed. | 133 // Invoked when the transport is being destroyed. |
123 sigslot::signal1<IceTransportInternal*> SignalDestroyed; | 134 sigslot::signal1<IceTransportInternal*> SignalDestroyed; |
124 | 135 |
125 // Debugging description of this transport. | 136 // Debugging description of this transport. |
126 std::string ToString() const; | 137 std::string debug_name() const override { |
| 138 return transport_name() + " " + std::to_string(component()); |
| 139 } |
127 }; | 140 }; |
128 | 141 |
129 } // namespace cricket | 142 } // namespace cricket |
130 | 143 |
131 #endif // WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ | 144 #endif // WEBRTC_P2P_BASE_ICETRANSPORTINTERNAL_H_ |
OLD | NEW |