Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: webrtc/p2p/base/faketransportcontroller.h

Issue 2590063002: Make P2PTransportChannel inherit from IceTransportInternal. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2009 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2009 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_FAKETRANSPORTCONTROLLER_H_ 11 #ifndef WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_
12 #define WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ 12 #define WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_
13 13
14 #include <map> 14 #include <map>
15 #include <memory> 15 #include <memory>
16 #include <string> 16 #include <string>
17 #include <vector> 17 #include <vector>
18 18
19 #include "webrtc/p2p/base/candidatepairinterface.h"
20 #include "webrtc/p2p/base/transportchannel.h"
21 #include "webrtc/p2p/base/transportcontroller.h"
22 #include "webrtc/p2p/base/transportchannelimpl.h"
23 #include "webrtc/base/bind.h" 19 #include "webrtc/base/bind.h"
24 #include "webrtc/base/buffer.h" 20 #include "webrtc/base/buffer.h"
25 #include "webrtc/base/fakesslidentity.h" 21 #include "webrtc/base/fakesslidentity.h"
26 #include "webrtc/base/messagequeue.h" 22 #include "webrtc/base/messagequeue.h"
27 #include "webrtc/base/sigslot.h" 23 #include "webrtc/base/sigslot.h"
28 #include "webrtc/base/sslfingerprint.h" 24 #include "webrtc/base/sslfingerprint.h"
29 #include "webrtc/base/thread.h" 25 #include "webrtc/base/thread.h"
26 #include "webrtc/p2p/base/candidatepairinterface.h"
27 #include "webrtc/p2p/base/icetransportinternal.h"
28 #include "webrtc/p2p/base/transportchannel.h"
29 #include "webrtc/p2p/base/transportchannelimpl.h"
30 #include "webrtc/p2p/base/transportcontroller.h"
30 31
31 #ifdef HAVE_QUIC 32 #ifdef HAVE_QUIC
32 #include "webrtc/p2p/quic/quictransport.h" 33 #include "webrtc/p2p/quic/quictransport.h"
33 #endif 34 #endif
34 35
35 namespace cricket { 36 namespace cricket {
36 37
37 namespace { 38 namespace {
38 struct PacketMessageData : public rtc::MessageData { 39 struct PacketMessageData : public rtc::MessageData {
39 PacketMessageData(const char* data, size_t len) : packet(data, len) {} 40 PacketMessageData(const char* data, size_t len) : packet(data, len) {}
40 rtc::Buffer packet; 41 rtc::Buffer packet;
41 }; 42 };
42 } // namespace 43 } // namespace
43 44
45 class FakeIceTransport : public IceTransportInternal,
46 public rtc::MessageHandler {
47 public:
48 explicit FakeIceTransport(const std::string& name, int component)
49 : name_(name), component_(component) {}
50 ~FakeIceTransport() { Reset(); }
51
52 const std::string& transport_name() const override { return name_; }
53 int component() const override { return component_; }
54 uint64_t IceTiebreaker() const { return tiebreaker_; }
55 IceMode remote_ice_mode() const { return remote_ice_mode_; }
56 const std::string& ice_ufrag() const { return ice_ufrag_; }
57 const std::string& ice_pwd() const { return ice_pwd_; }
58 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; }
59 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; }
60
61 // If async, will send packets by "Post"-ing to message queue instead of
62 // synchronously "Send"-ing.
63 void SetAsync(bool async) { async_ = async; }
64 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; }
65
66 TransportState GetState() const override {
67 if (connection_count_ == 0) {
68 return had_connection_ ? TransportState::STATE_FAILED
69 : TransportState::STATE_INIT;
70 }
71
72 if (connection_count_ == 1) {
73 return TransportState::STATE_COMPLETED;
74 }
75
76 return TransportState::STATE_CONNECTING;
77 }
78
79 void SetIceRole(IceRole role) override { role_ = role; }
80 IceRole GetIceRole() const override { return role_; }
81 void SetIceTiebreaker(uint64_t tiebreaker) override {
82 tiebreaker_ = tiebreaker;
83 }
84 void SetIceParameters(const IceParameters& ice_params) override {
85 ice_ufrag_ = ice_params.ufrag;
86 ice_pwd_ = ice_params.pwd;
87 }
88 void SetRemoteIceParameters(const IceParameters& params) override {
89 remote_ice_ufrag_ = params.ufrag;
90 remote_ice_pwd_ = params.pwd;
91 }
92
93 void SetRemoteIceMode(IceMode mode) override { remote_ice_mode_ = mode; }
94
95 void MaybeStartGathering() override {
96 if (gathering_state_ == kIceGatheringNew) {
97 gathering_state_ = kIceGatheringGathering;
98 SignalGatheringState(this);
99 }
100 }
101
102 IceGatheringState gathering_state() const override {
103 return gathering_state_;
104 }
105
106 void Reset() {
107 if (state_ != STATE_INIT) {
108 state_ = STATE_INIT;
109 if (dest_) {
110 dest_->state_ = STATE_INIT;
111 dest_->dest_ = nullptr;
112 dest_ = nullptr;
113 }
114 }
115 }
116
117 void SetWritable(bool writable) { set_writable(writable); }
118
119 void set_writable(bool writable) {
120 if (writable_ == writable) {
121 return;
122 }
123 LOG(INFO) << "set_writable from:" << writable_ << " to " << writable;
124 writable_ = writable;
125 if (writable_) {
126 SignalReadyToSend(this);
127 }
128 SignalWritableState(this);
129 }
130 bool writable() const override { return writable_; }
131
132 // Simulates the two transport channels connecting to each other.
133 // If |asymmetric| is true this method only affects this FakeTransportChannel.
134 // If false, it affects |dest| as well.
Taylor Brandstetter 2016/12/20 03:37:26 Should update this comment
Zhi Huang 2016/12/20 20:17:43 Done.
135 void SetDestination(FakeIceTransport* dest, bool asymmetric = false) {
136 LOG(INFO) << "here " << STATE_INIT;
Taylor Brandstetter 2016/12/20 03:37:26 I think this log statement and the one below are l
Zhi Huang 2016/12/20 20:17:43 Aha, yep, this is for debugging.
137 if (state_ == STATE_INIT && dest) {
138 LOG(INFO) << "here";
139 // This simulates the delivery of candidates.
140 dest_ = dest;
141 state_ = STATE_CONNECTED;
142 set_writable(true);
143 if (!asymmetric) {
144 dest->SetDestination(this, true);
145 }
146 } else if (state_ == STATE_CONNECTED && !dest) {
147 // Simulates loss of connectivity, by asymmetrically forgetting dest_.
148 dest_ = nullptr;
149 state_ = STATE_INIT;
150 set_writable(false);
151 }
152 }
153
154 void SetConnectionCount(size_t connection_count) {
155 size_t old_connection_count = connection_count_;
156 connection_count_ = connection_count;
157 if (connection_count)
158 had_connection_ = true;
159 // In this fake transport channel, |connection_count_| determines the
160 // transport channel state.
161 if (connection_count_ < old_connection_count)
162 SignalStateChanged(this);
163 }
164
165 void SetCandidatesGatheringComplete() {
166 if (gathering_state_ != kIceGatheringComplete) {
167 gathering_state_ = kIceGatheringComplete;
168 SignalGatheringState(this);
169 }
170 }
171
172 void SetReceiving(bool receiving) { set_receiving(receiving); }
173
174 void set_receiving(bool receiving) {
175 if (receiving_ == receiving) {
176 return;
177 }
178 receiving_ = receiving;
179 SignalReceivingState(this);
180 }
181 bool receiving() const override { return receiving_; }
182
183 void SetIceConfig(const IceConfig& config) override { ice_config_ = config; }
184
185 int receiving_timeout() const { return ice_config_.receiving_timeout; }
186 bool gather_continually() const { return ice_config_.gather_continually(); }
187
188 int SendPacket(const char* data,
189 size_t len,
190 const rtc::PacketOptions& options,
191 int flags) override {
192 if (state_ != STATE_CONNECTED) {
193 return -1;
194 }
195
196 if (flags != PF_SRTP_BYPASS && flags != 0) {
197 return -1;
198 }
199
200 PacketMessageData* packet = new PacketMessageData(data, len);
201 if (async_) {
202 if (async_delay_ms_) {
203 rtc::Thread::Current()->PostDelayed(RTC_FROM_HERE, async_delay_ms_,
204 this, 0, packet);
205 } else {
206 rtc::Thread::Current()->Post(RTC_FROM_HERE, this, 0, packet);
207 }
208 } else {
209 rtc::Thread::Current()->Send(RTC_FROM_HERE, this, 0, packet);
210 }
211 rtc::SentPacket sent_packet(options.packet_id, rtc::TimeMillis());
212 SignalSentPacket(this, sent_packet);
213 return static_cast<int>(len);
214 }
215 int SetOption(rtc::Socket::Option opt, int value) override { return true; }
216 bool GetOption(rtc::Socket::Option opt, int* value) override { return true; }
217 int GetError() override { return 0; }
218
219 void AddRemoteCandidate(const Candidate& candidate) override {
220 remote_candidates_.push_back(candidate);
221 }
222
223 void RemoveRemoteCandidate(const Candidate& candidate) override {}
224
225 const Candidates& remote_candidates() const { return remote_candidates_; }
226
227 void OnMessage(rtc::Message* msg) override {
228 PacketMessageData* data = static_cast<PacketMessageData*>(msg->pdata);
229 dest_->SignalReadPacket(dest_, data->packet.data<char>(),
230 data->packet.size(), rtc::CreatePacketTime(0), 0);
231 delete data;
232 }
233
234 bool GetStats(ConnectionInfos* infos) override {
235 ConnectionInfo info;
236 infos->clear();
237 infos->push_back(info);
238 return true;
239 }
240
241 void SetMetricsObserver(webrtc::MetricsObserverInterface* observer) override {
242 }
243
244 private:
245 std::string name_;
246 int component_;
247 enum State { STATE_INIT, STATE_CONNECTED };
248 FakeIceTransport* dest_ = nullptr;
249 State state_ = STATE_INIT;
250 bool async_ = false;
251 int async_delay_ms_ = 0;
252 Candidates remote_candidates_;
253 IceConfig ice_config_;
254 IceRole role_ = ICEROLE_UNKNOWN;
255 uint64_t tiebreaker_ = 0;
256 std::string ice_ufrag_;
257 std::string ice_pwd_;
258 std::string remote_ice_ufrag_;
259 std::string remote_ice_pwd_;
260 IceMode remote_ice_mode_ = ICEMODE_FULL;
261 size_t connection_count_ = 0;
262 IceGatheringState gathering_state_ = kIceGatheringNew;
263 bool had_connection_ = false;
264 bool writable_ = false;
265 bool receiving_ = false;
266 };
267
44 // Fake transport channel class, which can be passed to anything that needs a 268 // Fake transport channel class, which can be passed to anything that needs a
45 // transport channel. Can be informed of another FakeTransportChannel via 269 // transport channel. Can be informed of another FakeTransportChannel via
46 // SetDestination. 270 // SetDestination.
47 // TODO(hbos): Move implementation to .cc file, this and other classes in file. 271 // TODO(hbos): Move implementation to .cc file, this and other classes in file.
48 class FakeTransportChannel : public TransportChannelImpl, 272 class FakeTransportChannel : public TransportChannelImpl,
49 public rtc::MessageHandler { 273 public rtc::MessageHandler {
50 public: 274 public:
51 explicit FakeTransportChannel(const std::string& name, int component) 275 explicit FakeTransportChannel(const std::string& name, int component)
52 : TransportChannelImpl(name, component), 276 : TransportChannelImpl(name, component),
53 dtls_fingerprint_("", nullptr, 0) {} 277 dtls_fingerprint_("", nullptr, 0) {}
54 ~FakeTransportChannel() { Reset(); } 278 ~FakeTransportChannel() { Reset(); }
55 279
56 uint64_t IceTiebreaker() const { return tiebreaker_; } 280 uint64_t IceTiebreaker() const { return tiebreaker_; }
57 IceMode remote_ice_mode() const { return remote_ice_mode_; } 281 IceMode remote_ice_mode() const { return remote_ice_mode_; }
58 const std::string& ice_ufrag() const { return ice_ufrag_; } 282 const std::string& ice_ufrag() const { return ice_ufrag_; }
59 const std::string& ice_pwd() const { return ice_pwd_; } 283 const std::string& ice_pwd() const { return ice_pwd_; }
60 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; } 284 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; }
61 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; } 285 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; }
62 const rtc::SSLFingerprint& dtls_fingerprint() const { 286 const rtc::SSLFingerprint& dtls_fingerprint() const {
63 return dtls_fingerprint_; 287 return dtls_fingerprint_;
64 } 288 }
65 289
66 // If async, will send packets by "Post"-ing to message queue instead of 290 // If async, will send packets by "Post"-ing to message queue instead of
67 // synchronously "Send"-ing. 291 // synchronously "Send"-ing.
68 void SetAsync(bool async) { async_ = async; } 292 void SetAsync(bool async) { async_ = async; }
69 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; } 293 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; }
70 294
71 TransportChannelState GetState() const override { 295 TransportState GetState() const override {
72 if (connection_count_ == 0) { 296 if (connection_count_ == 0) {
73 return had_connection_ ? TransportChannelState::STATE_FAILED 297 return had_connection_ ? TransportState::STATE_FAILED
74 : TransportChannelState::STATE_INIT; 298 : TransportState::STATE_INIT;
75 } 299 }
76 300
77 if (connection_count_ == 1) { 301 if (connection_count_ == 1) {
78 return TransportChannelState::STATE_COMPLETED; 302 return TransportState::STATE_COMPLETED;
79 } 303 }
80 304
81 return TransportChannelState::STATE_CONNECTING; 305 return TransportState::STATE_CONNECTING;
82 } 306 }
83 307
84 void SetIceRole(IceRole role) override { role_ = role; } 308 void SetIceRole(IceRole role) override { role_ = role; }
85 IceRole GetIceRole() const override { return role_; } 309 IceRole GetIceRole() const override { return role_; }
86 void SetIceTiebreaker(uint64_t tiebreaker) override { 310 void SetIceTiebreaker(uint64_t tiebreaker) override {
87 tiebreaker_ = tiebreaker; 311 tiebreaker_ = tiebreaker;
88 } 312 }
89 void SetIceParameters(const IceParameters& ice_params) override { 313 void SetIceParameters(const IceParameters& ice_params) override {
90 ice_ufrag_ = ice_params.ufrag; 314 ice_ufrag_ = ice_params.ufrag;
91 ice_pwd_ = ice_params.pwd; 315 ice_pwd_ = ice_params.pwd;
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 "foundation", local_network_id, 0); 664 "foundation", local_network_id, 0);
441 Candidate remote_candidate(0, "udp", remote_address, 0u, "", "", "local", 0, 665 Candidate remote_candidate(0, "udp", remote_address, 0u, "", "", "local", 0,
442 "foundation", remote_network_id, 0); 666 "foundation", remote_network_id, 0);
443 return new FakeCandidatePair(local_candidate, remote_candidate); 667 return new FakeCandidatePair(local_candidate, remote_candidate);
444 } 668 }
445 669
446 protected: 670 protected:
447 // The ICE channel is never actually used by TransportController directly, 671 // The ICE channel is never actually used by TransportController directly,
448 // since (currently) the DTLS channel pretends to be both ICE + DTLS. This 672 // since (currently) the DTLS channel pretends to be both ICE + DTLS. This
449 // will change when we get rid of TransportChannelImpl. 673 // will change when we get rid of TransportChannelImpl.
450 TransportChannelImpl* CreateIceTransportChannel_n( 674 IceTransportInternal* CreateIceTransportChannel_n(
451 const std::string& transport_name, 675 const std::string& transport_name,
452 int component) override { 676 int component) override {
453 return nullptr; 677 return nullptr;
454 } 678 }
455 679
456 TransportChannelImpl* CreateDtlsTransportChannel_n( 680 TransportChannelImpl* CreateDtlsTransportChannel_n(
457 const std::string& transport_name, 681 const std::string& transport_name,
458 int component, 682 int component,
459 TransportChannelImpl*) override { 683 IceTransportInternal*) override {
460 return new FakeTransportChannel(transport_name, component); 684 return new FakeTransportChannel(transport_name, component);
461 } 685 }
462 686
463 private: 687 private:
464 void SetChannelDestinations_n(FakeTransportController* dest) { 688 void SetChannelDestinations_n(FakeTransportController* dest) {
465 for (TransportChannelImpl* tc : channels_for_testing()) { 689 for (TransportChannelImpl* tc : channels_for_testing()) {
466 FakeTransportChannel* local = static_cast<FakeTransportChannel*>(tc); 690 FakeTransportChannel* local = static_cast<FakeTransportChannel*>(tc);
467 FakeTransportChannel* remote = dest->GetFakeTransportChannel_n( 691 FakeTransportChannel* remote = dest->GetFakeTransportChannel_n(
468 local->transport_name(), local->component()); 692 local->transport_name(), local->component());
469 if (remote) { 693 if (remote) {
470 bool asymmetric = false; 694 bool asymmetric = false;
471 local->SetDestination(remote, asymmetric); 695 local->SetDestination(remote, asymmetric);
472 } 696 }
473 } 697 }
474 } 698 }
475 }; 699 };
476 700
477 } // namespace cricket 701 } // namespace cricket
478 702
479 #endif // WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ 703 #endif // WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698