henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * libjingle |
| 3 | * Copyright 2012, Google Inc. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | // This file contains the PeerConnection interface as defined in |
| 29 | // http://dev.w3.org/2011/webrtc/editor/webrtc.html#peer-to-peer-connections. |
| 30 | // Applications must use this interface to implement peerconnection. |
| 31 | // PeerConnectionFactory class provides factory methods to create |
| 32 | // peerconnection, mediastream and media tracks objects. |
| 33 | // |
| 34 | // The Following steps are needed to setup a typical call using Jsep. |
| 35 | // 1. Create a PeerConnectionFactoryInterface. Check constructors for more |
| 36 | // information about input parameters. |
| 37 | // 2. Create a PeerConnection object. Provide a configuration string which |
| 38 | // points either to stun or turn server to generate ICE candidates and provide |
| 39 | // an object that implements the PeerConnectionObserver interface. |
| 40 | // 3. Create local MediaStream and MediaTracks using the PeerConnectionFactory |
| 41 | // and add it to PeerConnection by calling AddStream. |
| 42 | // 4. Create an offer and serialize it and send it to the remote peer. |
| 43 | // 5. Once an ice candidate have been found PeerConnection will call the |
| 44 | // observer function OnIceCandidate. The candidates must also be serialized and |
| 45 | // sent to the remote peer. |
| 46 | // 6. Once an answer is received from the remote peer, call |
| 47 | // SetLocalSessionDescription with the offer and SetRemoteSessionDescription |
| 48 | // with the remote answer. |
| 49 | // 7. Once a remote candidate is received from the remote peer, provide it to |
| 50 | // the peerconnection by calling AddIceCandidate. |
| 51 | |
| 52 | |
| 53 | // The Receiver of a call can decide to accept or reject the call. |
| 54 | // This decision will be taken by the application not peerconnection. |
| 55 | // If application decides to accept the call |
| 56 | // 1. Create PeerConnectionFactoryInterface if it doesn't exist. |
| 57 | // 2. Create a new PeerConnection. |
| 58 | // 3. Provide the remote offer to the new PeerConnection object by calling |
| 59 | // SetRemoteSessionDescription. |
| 60 | // 4. Generate an answer to the remote offer by calling CreateAnswer and send it |
| 61 | // back to the remote peer. |
| 62 | // 5. Provide the local answer to the new PeerConnection by calling |
| 63 | // SetLocalSessionDescription with the answer. |
| 64 | // 6. Provide the remote ice candidates by calling AddIceCandidate. |
| 65 | // 7. Once a candidate have been found PeerConnection will call the observer |
| 66 | // function OnIceCandidate. Send these candidates to the remote peer. |
| 67 | |
| 68 | #ifndef TALK_APP_WEBRTC_PEERCONNECTIONINTERFACE_H_ |
| 69 | #define TALK_APP_WEBRTC_PEERCONNECTIONINTERFACE_H_ |
| 70 | |
| 71 | #include <string> |
| 72 | #include <vector> |
| 73 | |
| 74 | #include "talk/app/webrtc/datachannelinterface.h" |
| 75 | #include "talk/app/webrtc/dtmfsenderinterface.h" |
| 76 | #include "talk/app/webrtc/jsep.h" |
| 77 | #include "talk/app/webrtc/mediastreaminterface.h" |
| 78 | #include "talk/app/webrtc/statstypes.h" |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 79 | #include "talk/app/webrtc/umametrics.h" |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 80 | #include "webrtc/base/fileutils.h" |
| 81 | #include "webrtc/base/socketaddress.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 82 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 83 | namespace rtc { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 84 | class Thread; |
| 85 | } |
| 86 | |
| 87 | namespace cricket { |
| 88 | class PortAllocator; |
| 89 | class WebRtcVideoDecoderFactory; |
| 90 | class WebRtcVideoEncoderFactory; |
| 91 | } |
| 92 | |
| 93 | namespace webrtc { |
| 94 | class AudioDeviceModule; |
| 95 | class MediaConstraintsInterface; |
| 96 | |
| 97 | // MediaStream container interface. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 98 | class StreamCollectionInterface : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 99 | public: |
| 100 | // TODO(ronghuawu): Update the function names to c++ style, e.g. find -> Find. |
| 101 | virtual size_t count() = 0; |
| 102 | virtual MediaStreamInterface* at(size_t index) = 0; |
| 103 | virtual MediaStreamInterface* find(const std::string& label) = 0; |
| 104 | virtual MediaStreamTrackInterface* FindAudioTrack( |
| 105 | const std::string& id) = 0; |
| 106 | virtual MediaStreamTrackInterface* FindVideoTrack( |
| 107 | const std::string& id) = 0; |
| 108 | |
| 109 | protected: |
| 110 | // Dtor protected as objects shouldn't be deleted via this interface. |
| 111 | ~StreamCollectionInterface() {} |
| 112 | }; |
| 113 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 114 | class StatsObserver : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 115 | public: |
tommi@webrtc.org | 5b06b06 | 2014-08-15 08:38:30 +0000 | [diff] [blame] | 116 | // TODO(tommi): Remove. |
| 117 | virtual void OnComplete(const std::vector<StatsReport>& reports) {} |
| 118 | |
| 119 | // TODO(tommi): Make pure virtual and remove implementation. |
| 120 | virtual void OnComplete(const StatsReports& reports) { |
| 121 | std::vector<StatsReportCopyable> report_copies; |
| 122 | for (size_t i = 0; i < reports.size(); ++i) |
| 123 | report_copies.push_back(StatsReportCopyable(*reports[i])); |
| 124 | std::vector<StatsReport>* r = |
| 125 | reinterpret_cast<std::vector<StatsReport>*>(&report_copies); |
| 126 | OnComplete(*r); |
| 127 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 128 | |
| 129 | protected: |
| 130 | virtual ~StatsObserver() {} |
| 131 | }; |
| 132 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 133 | class UMAObserver : public rtc::RefCountInterface { |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 134 | public: |
mallinath@webrtc.org | d37bcfa | 2014-05-12 23:10:18 +0000 | [diff] [blame] | 135 | virtual void IncrementCounter(PeerConnectionUMAMetricsCounter type) = 0; |
| 136 | virtual void AddHistogramSample(PeerConnectionUMAMetricsName type, |
| 137 | int value) = 0; |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 138 | |
| 139 | protected: |
| 140 | virtual ~UMAObserver() {} |
| 141 | }; |
| 142 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 143 | class PeerConnectionInterface : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 144 | public: |
| 145 | // See http://dev.w3.org/2011/webrtc/editor/webrtc.html#state-definitions . |
| 146 | enum SignalingState { |
| 147 | kStable, |
| 148 | kHaveLocalOffer, |
| 149 | kHaveLocalPrAnswer, |
| 150 | kHaveRemoteOffer, |
| 151 | kHaveRemotePrAnswer, |
| 152 | kClosed, |
| 153 | }; |
| 154 | |
| 155 | // TODO(bemasc): Remove IceState when callers are changed to |
| 156 | // IceConnection/GatheringState. |
| 157 | enum IceState { |
| 158 | kIceNew, |
| 159 | kIceGathering, |
| 160 | kIceWaiting, |
| 161 | kIceChecking, |
| 162 | kIceConnected, |
| 163 | kIceCompleted, |
| 164 | kIceFailed, |
| 165 | kIceClosed, |
| 166 | }; |
| 167 | |
| 168 | enum IceGatheringState { |
| 169 | kIceGatheringNew, |
| 170 | kIceGatheringGathering, |
| 171 | kIceGatheringComplete |
| 172 | }; |
| 173 | |
| 174 | enum IceConnectionState { |
| 175 | kIceConnectionNew, |
| 176 | kIceConnectionChecking, |
| 177 | kIceConnectionConnected, |
| 178 | kIceConnectionCompleted, |
| 179 | kIceConnectionFailed, |
| 180 | kIceConnectionDisconnected, |
| 181 | kIceConnectionClosed, |
| 182 | }; |
| 183 | |
| 184 | struct IceServer { |
| 185 | std::string uri; |
| 186 | std::string username; |
| 187 | std::string password; |
| 188 | }; |
| 189 | typedef std::vector<IceServer> IceServers; |
| 190 | |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 191 | enum IceTransportsType { |
| 192 | kNone, |
| 193 | kRelay, |
| 194 | kNoHost, |
| 195 | kAll |
| 196 | }; |
| 197 | |
| 198 | struct RTCConfiguration { |
| 199 | IceTransportsType type; |
| 200 | IceServers servers; |
| 201 | |
| 202 | RTCConfiguration() : type(kAll) {} |
| 203 | explicit RTCConfiguration(IceTransportsType type) : type(type) {} |
| 204 | }; |
| 205 | |
jiayl@webrtc.org | b18bf5e | 2014-08-04 18:34:16 +0000 | [diff] [blame] | 206 | struct RTCOfferAnswerOptions { |
| 207 | static const int kUndefined = -1; |
| 208 | static const int kMaxOfferToReceiveMedia = 1; |
| 209 | |
| 210 | // The default value for constraint offerToReceiveX:true. |
| 211 | static const int kOfferToReceiveMediaTrue = 1; |
| 212 | |
| 213 | int offer_to_receive_video; |
| 214 | int offer_to_receive_audio; |
| 215 | bool voice_activity_detection; |
| 216 | bool ice_restart; |
| 217 | bool use_rtp_mux; |
| 218 | |
| 219 | RTCOfferAnswerOptions() |
| 220 | : offer_to_receive_video(kUndefined), |
| 221 | offer_to_receive_audio(kUndefined), |
| 222 | voice_activity_detection(true), |
| 223 | ice_restart(false), |
| 224 | use_rtp_mux(true) {} |
| 225 | |
| 226 | RTCOfferAnswerOptions(int offer_to_receive_video, |
| 227 | int offer_to_receive_audio, |
| 228 | bool voice_activity_detection, |
| 229 | bool ice_restart, |
| 230 | bool use_rtp_mux) |
| 231 | : offer_to_receive_video(offer_to_receive_video), |
| 232 | offer_to_receive_audio(offer_to_receive_audio), |
| 233 | voice_activity_detection(voice_activity_detection), |
| 234 | ice_restart(ice_restart), |
| 235 | use_rtp_mux(use_rtp_mux) {} |
| 236 | }; |
| 237 | |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 238 | // Used by GetStats to decide which stats to include in the stats reports. |
| 239 | // |kStatsOutputLevelStandard| includes the standard stats for Javascript API; |
| 240 | // |kStatsOutputLevelDebug| includes both the standard stats and additional |
| 241 | // stats for debugging purposes. |
| 242 | enum StatsOutputLevel { |
| 243 | kStatsOutputLevelStandard, |
| 244 | kStatsOutputLevelDebug, |
| 245 | }; |
| 246 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 247 | // Accessor methods to active local streams. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 248 | virtual rtc::scoped_refptr<StreamCollectionInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 249 | local_streams() = 0; |
| 250 | |
| 251 | // Accessor methods to remote streams. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 252 | virtual rtc::scoped_refptr<StreamCollectionInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 253 | remote_streams() = 0; |
| 254 | |
| 255 | // Add a new MediaStream to be sent on this PeerConnection. |
| 256 | // Note that a SessionDescription negotiation is needed before the |
| 257 | // remote peer can receive the stream. |
perkj@webrtc.org | b5d045e | 2014-11-04 13:01:33 +0000 | [diff] [blame^] | 258 | // TODO(perkj): Make pure virtual once Chrome mocks have implemented. |
| 259 | virtual bool AddStream(MediaStreamInterface* stream) { return false;} |
| 260 | |
| 261 | // Deprecated: |
| 262 | // TODO(perkj): Remove once its not used by Chrome. |
| 263 | virtual bool AddStream(MediaStreamInterface* stream, |
| 264 | const MediaConstraintsInterface* constraints) { |
| 265 | return false; |
| 266 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 267 | |
| 268 | // Remove a MediaStream from this PeerConnection. |
| 269 | // Note that a SessionDescription negotiation is need before the |
| 270 | // remote peer is notified. |
| 271 | virtual void RemoveStream(MediaStreamInterface* stream) = 0; |
| 272 | |
| 273 | // Returns pointer to the created DtmfSender on success. |
| 274 | // Otherwise returns NULL. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 275 | virtual rtc::scoped_refptr<DtmfSenderInterface> CreateDtmfSender( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 276 | AudioTrackInterface* track) = 0; |
| 277 | |
wu@webrtc.org | b9a088b | 2014-02-13 23:18:49 +0000 | [diff] [blame] | 278 | virtual bool GetStats(StatsObserver* observer, |
| 279 | MediaStreamTrackInterface* track, |
| 280 | StatsOutputLevel level) = 0; |
| 281 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 282 | virtual rtc::scoped_refptr<DataChannelInterface> CreateDataChannel( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 283 | const std::string& label, |
| 284 | const DataChannelInit* config) = 0; |
| 285 | |
| 286 | virtual const SessionDescriptionInterface* local_description() const = 0; |
| 287 | virtual const SessionDescriptionInterface* remote_description() const = 0; |
| 288 | |
| 289 | // Create a new offer. |
| 290 | // The CreateSessionDescriptionObserver callback will be called when done. |
| 291 | virtual void CreateOffer(CreateSessionDescriptionObserver* observer, |
jiayl@webrtc.org | b18bf5e | 2014-08-04 18:34:16 +0000 | [diff] [blame] | 292 | const MediaConstraintsInterface* constraints) {} |
| 293 | |
| 294 | // TODO(jiayl): remove the default impl and the old interface when chromium |
| 295 | // code is updated. |
| 296 | virtual void CreateOffer(CreateSessionDescriptionObserver* observer, |
| 297 | const RTCOfferAnswerOptions& options) {} |
| 298 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 299 | // Create an answer to an offer. |
| 300 | // The CreateSessionDescriptionObserver callback will be called when done. |
| 301 | virtual void CreateAnswer(CreateSessionDescriptionObserver* observer, |
| 302 | const MediaConstraintsInterface* constraints) = 0; |
| 303 | // Sets the local session description. |
| 304 | // JsepInterface takes the ownership of |desc| even if it fails. |
| 305 | // The |observer| callback will be called when done. |
| 306 | virtual void SetLocalDescription(SetSessionDescriptionObserver* observer, |
| 307 | SessionDescriptionInterface* desc) = 0; |
| 308 | // Sets the remote session description. |
| 309 | // JsepInterface takes the ownership of |desc| even if it fails. |
| 310 | // The |observer| callback will be called when done. |
| 311 | virtual void SetRemoteDescription(SetSessionDescriptionObserver* observer, |
| 312 | SessionDescriptionInterface* desc) = 0; |
| 313 | // Restarts or updates the ICE Agent process of gathering local candidates |
| 314 | // and pinging remote candidates. |
| 315 | virtual bool UpdateIce(const IceServers& configuration, |
| 316 | const MediaConstraintsInterface* constraints) = 0; |
| 317 | // Provides a remote candidate to the ICE Agent. |
| 318 | // A copy of the |candidate| will be created and added to the remote |
| 319 | // description. So the caller of this method still has the ownership of the |
| 320 | // |candidate|. |
| 321 | // TODO(ronghuawu): Consider to change this so that the AddIceCandidate will |
| 322 | // take the ownership of the |candidate|. |
| 323 | virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0; |
| 324 | |
buildbot@webrtc.org | 1567b8c | 2014-05-08 19:54:16 +0000 | [diff] [blame] | 325 | virtual void RegisterUMAObserver(UMAObserver* observer) = 0; |
| 326 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 327 | // Returns the current SignalingState. |
| 328 | virtual SignalingState signaling_state() = 0; |
| 329 | |
| 330 | // TODO(bemasc): Remove ice_state when callers are changed to |
| 331 | // IceConnection/GatheringState. |
| 332 | // Returns the current IceState. |
| 333 | virtual IceState ice_state() = 0; |
| 334 | virtual IceConnectionState ice_connection_state() = 0; |
| 335 | virtual IceGatheringState ice_gathering_state() = 0; |
| 336 | |
| 337 | // Terminates all media and closes the transport. |
| 338 | virtual void Close() = 0; |
| 339 | |
| 340 | protected: |
| 341 | // Dtor protected as objects shouldn't be deleted via this interface. |
| 342 | ~PeerConnectionInterface() {} |
| 343 | }; |
| 344 | |
| 345 | // PeerConnection callback interface. Application should implement these |
| 346 | // methods. |
| 347 | class PeerConnectionObserver { |
| 348 | public: |
| 349 | enum StateType { |
| 350 | kSignalingState, |
| 351 | kIceState, |
| 352 | }; |
| 353 | |
perkj@webrtc.org | c2dd5ee | 2014-11-04 11:31:29 +0000 | [diff] [blame] | 354 | // Deprecated. |
| 355 | // TODO(perkj): Remove once its not used by Chrome. |
| 356 | virtual void OnError() {} |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 357 | |
| 358 | // Triggered when the SignalingState changed. |
| 359 | virtual void OnSignalingChange( |
| 360 | PeerConnectionInterface::SignalingState new_state) {} |
| 361 | |
| 362 | // Triggered when SignalingState or IceState have changed. |
| 363 | // TODO(bemasc): Remove once callers transition to OnSignalingChange. |
| 364 | virtual void OnStateChange(StateType state_changed) {} |
| 365 | |
| 366 | // Triggered when media is received on a new stream from remote peer. |
| 367 | virtual void OnAddStream(MediaStreamInterface* stream) = 0; |
| 368 | |
| 369 | // Triggered when a remote peer close a stream. |
| 370 | virtual void OnRemoveStream(MediaStreamInterface* stream) = 0; |
| 371 | |
| 372 | // Triggered when a remote peer open a data channel. |
perkj@webrtc.org | c2dd5ee | 2014-11-04 11:31:29 +0000 | [diff] [blame] | 373 | virtual void OnDataChannel(DataChannelInterface* data_channel) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 374 | |
mallinath@webrtc.org | 0d92ef6 | 2014-01-22 02:21:22 +0000 | [diff] [blame] | 375 | // Triggered when renegotiation is needed, for example the ICE has restarted. |
fischman@webrtc.org | d7568a0 | 2014-01-13 22:04:12 +0000 | [diff] [blame] | 376 | virtual void OnRenegotiationNeeded() = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 377 | |
| 378 | // Called any time the IceConnectionState changes |
| 379 | virtual void OnIceConnectionChange( |
| 380 | PeerConnectionInterface::IceConnectionState new_state) {} |
| 381 | |
| 382 | // Called any time the IceGatheringState changes |
| 383 | virtual void OnIceGatheringChange( |
| 384 | PeerConnectionInterface::IceGatheringState new_state) {} |
| 385 | |
| 386 | // New Ice candidate have been found. |
| 387 | virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0; |
| 388 | |
| 389 | // TODO(bemasc): Remove this once callers transition to OnIceGatheringChange. |
| 390 | // All Ice candidates have been found. |
| 391 | virtual void OnIceComplete() {} |
| 392 | |
| 393 | protected: |
| 394 | // Dtor protected as objects shouldn't be deleted via this interface. |
| 395 | ~PeerConnectionObserver() {} |
| 396 | }; |
| 397 | |
| 398 | // Factory class used for creating cricket::PortAllocator that is used |
| 399 | // for ICE negotiation. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 400 | class PortAllocatorFactoryInterface : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 401 | public: |
| 402 | struct StunConfiguration { |
| 403 | StunConfiguration(const std::string& address, int port) |
| 404 | : server(address, port) {} |
| 405 | // STUN server address and port. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 406 | rtc::SocketAddress server; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 407 | }; |
| 408 | |
| 409 | struct TurnConfiguration { |
| 410 | TurnConfiguration(const std::string& address, |
| 411 | int port, |
| 412 | const std::string& username, |
| 413 | const std::string& password, |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 414 | const std::string& transport_type, |
| 415 | bool secure) |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 416 | : server(address, port), |
| 417 | username(username), |
| 418 | password(password), |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 419 | transport_type(transport_type), |
| 420 | secure(secure) {} |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 421 | rtc::SocketAddress server; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 422 | std::string username; |
| 423 | std::string password; |
| 424 | std::string transport_type; |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 425 | bool secure; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 426 | }; |
| 427 | |
| 428 | virtual cricket::PortAllocator* CreatePortAllocator( |
| 429 | const std::vector<StunConfiguration>& stun_servers, |
| 430 | const std::vector<TurnConfiguration>& turn_configurations) = 0; |
| 431 | |
| 432 | protected: |
| 433 | PortAllocatorFactoryInterface() {} |
| 434 | ~PortAllocatorFactoryInterface() {} |
| 435 | }; |
| 436 | |
| 437 | // Used to receive callbacks of DTLS identity requests. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 438 | class DTLSIdentityRequestObserver : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 439 | public: |
| 440 | virtual void OnFailure(int error) = 0; |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 441 | virtual void OnSuccess(const std::string& der_cert, |
| 442 | const std::string& der_private_key) = 0; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 443 | protected: |
| 444 | virtual ~DTLSIdentityRequestObserver() {} |
| 445 | }; |
| 446 | |
| 447 | class DTLSIdentityServiceInterface { |
| 448 | public: |
| 449 | // Asynchronously request a DTLS identity, including a self-signed certificate |
| 450 | // and the private key used to sign the certificate, from the identity store |
| 451 | // for the given identity name. |
| 452 | // DTLSIdentityRequestObserver::OnSuccess will be called with the identity if |
| 453 | // the request succeeded; DTLSIdentityRequestObserver::OnFailure will be |
| 454 | // called with an error code if the request failed. |
| 455 | // |
| 456 | // Only one request can be made at a time. If a second request is called |
| 457 | // before the first one completes, RequestIdentity will abort and return |
| 458 | // false. |
| 459 | // |
| 460 | // |identity_name| is an internal name selected by the client to identify an |
| 461 | // identity within an origin. E.g. an web site may cache the certificates used |
| 462 | // to communicate with differnent peers under different identity names. |
| 463 | // |
| 464 | // |common_name| is the common name used to generate the certificate. If the |
| 465 | // certificate already exists in the store, |common_name| is ignored. |
| 466 | // |
| 467 | // |observer| is the object to receive success or failure callbacks. |
| 468 | // |
| 469 | // Returns true if either OnFailure or OnSuccess will be called. |
| 470 | virtual bool RequestIdentity( |
| 471 | const std::string& identity_name, |
| 472 | const std::string& common_name, |
| 473 | DTLSIdentityRequestObserver* observer) = 0; |
wu@webrtc.org | 91053e7 | 2013-08-10 07:18:04 +0000 | [diff] [blame] | 474 | |
| 475 | virtual ~DTLSIdentityServiceInterface() {} |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 476 | }; |
| 477 | |
| 478 | // PeerConnectionFactoryInterface is the factory interface use for creating |
| 479 | // PeerConnection, MediaStream and media tracks. |
| 480 | // PeerConnectionFactoryInterface will create required libjingle threads, |
| 481 | // socket and network manager factory classes for networking. |
| 482 | // If an application decides to provide its own threads and network |
| 483 | // implementation of these classes it should use the alternate |
| 484 | // CreatePeerConnectionFactory method which accepts threads as input and use the |
| 485 | // CreatePeerConnection version that takes a PortAllocatorFactoryInterface as |
| 486 | // argument. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 487 | class PeerConnectionFactoryInterface : public rtc::RefCountInterface { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 488 | public: |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 489 | class Options { |
| 490 | public: |
| 491 | Options() : |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 492 | disable_encryption(false), |
| 493 | disable_sctp_data_channels(false) { |
| 494 | } |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 495 | bool disable_encryption; |
| 496 | bool disable_sctp_data_channels; |
| 497 | }; |
| 498 | |
| 499 | virtual void SetOptions(const Options& options) = 0; |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 500 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 501 | virtual rtc::scoped_refptr<PeerConnectionInterface> |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 502 | CreatePeerConnection( |
| 503 | const PeerConnectionInterface::RTCConfiguration& configuration, |
| 504 | const MediaConstraintsInterface* constraints, |
| 505 | PortAllocatorFactoryInterface* allocator_factory, |
| 506 | DTLSIdentityServiceInterface* dtls_identity_service, |
| 507 | PeerConnectionObserver* observer) = 0; |
| 508 | |
| 509 | // TODO(mallinath) : Remove below versions after clients are updated |
| 510 | // to above method. |
| 511 | // In latest W3C WebRTC draft, PC constructor will take RTCConfiguration, |
| 512 | // and not IceServers. RTCConfiguration is made up of ice servers and |
| 513 | // ice transport type. |
| 514 | // http://dev.w3.org/2011/webrtc/editor/webrtc.html |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 515 | inline rtc::scoped_refptr<PeerConnectionInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 516 | CreatePeerConnection( |
| 517 | const PeerConnectionInterface::IceServers& configuration, |
| 518 | const MediaConstraintsInterface* constraints, |
| 519 | PortAllocatorFactoryInterface* allocator_factory, |
| 520 | DTLSIdentityServiceInterface* dtls_identity_service, |
buildbot@webrtc.org | 41451d4 | 2014-05-03 05:39:45 +0000 | [diff] [blame] | 521 | PeerConnectionObserver* observer) { |
| 522 | PeerConnectionInterface::RTCConfiguration rtc_config; |
| 523 | rtc_config.servers = configuration; |
| 524 | return CreatePeerConnection(rtc_config, constraints, allocator_factory, |
| 525 | dtls_identity_service, observer); |
| 526 | } |
| 527 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 528 | virtual rtc::scoped_refptr<MediaStreamInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 529 | CreateLocalMediaStream(const std::string& label) = 0; |
| 530 | |
| 531 | // Creates a AudioSourceInterface. |
| 532 | // |constraints| decides audio processing settings but can be NULL. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 533 | virtual rtc::scoped_refptr<AudioSourceInterface> CreateAudioSource( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 534 | const MediaConstraintsInterface* constraints) = 0; |
| 535 | |
| 536 | // Creates a VideoSourceInterface. The new source take ownership of |
| 537 | // |capturer|. |constraints| decides video resolution and frame rate but can |
| 538 | // be NULL. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 539 | virtual rtc::scoped_refptr<VideoSourceInterface> CreateVideoSource( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 540 | cricket::VideoCapturer* capturer, |
| 541 | const MediaConstraintsInterface* constraints) = 0; |
| 542 | |
| 543 | // Creates a new local VideoTrack. The same |source| can be used in several |
| 544 | // tracks. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 545 | virtual rtc::scoped_refptr<VideoTrackInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 546 | CreateVideoTrack(const std::string& label, |
| 547 | VideoSourceInterface* source) = 0; |
| 548 | |
| 549 | // Creates an new AudioTrack. At the moment |source| can be NULL. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 550 | virtual rtc::scoped_refptr<AudioTrackInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 551 | CreateAudioTrack(const std::string& label, |
| 552 | AudioSourceInterface* source) = 0; |
| 553 | |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 +0000 | [diff] [blame] | 554 | // Starts AEC dump using existing file. Takes ownership of |file| and passes |
| 555 | // it on to VoiceEngine (via other objects) immediately, which will take |
wu@webrtc.org | a8910d2 | 2014-01-23 22:12:45 +0000 | [diff] [blame] | 556 | // the ownerhip. If the operation fails, the file will be closed. |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 +0000 | [diff] [blame] | 557 | // TODO(grunell): Remove when Chromium has started to use AEC in each source. |
wu@webrtc.org | a8910d2 | 2014-01-23 22:12:45 +0000 | [diff] [blame] | 558 | // http://crbug.com/264611. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 559 | virtual bool StartAecDump(rtc::PlatformFile file) = 0; |
wu@webrtc.org | a989080 | 2013-12-13 00:21:03 +0000 | [diff] [blame] | 560 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 561 | protected: |
| 562 | // Dtor and ctor protected as objects shouldn't be created or deleted via |
| 563 | // this interface. |
| 564 | PeerConnectionFactoryInterface() {} |
| 565 | ~PeerConnectionFactoryInterface() {} // NOLINT |
| 566 | }; |
| 567 | |
| 568 | // Create a new instance of PeerConnectionFactoryInterface. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 569 | rtc::scoped_refptr<PeerConnectionFactoryInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 570 | CreatePeerConnectionFactory(); |
| 571 | |
| 572 | // Create a new instance of PeerConnectionFactoryInterface. |
| 573 | // Ownership of |factory|, |default_adm|, and optionally |encoder_factory| and |
| 574 | // |decoder_factory| transferred to the returned factory. |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 575 | rtc::scoped_refptr<PeerConnectionFactoryInterface> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 576 | CreatePeerConnectionFactory( |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 577 | rtc::Thread* worker_thread, |
| 578 | rtc::Thread* signaling_thread, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 579 | AudioDeviceModule* default_adm, |
| 580 | cricket::WebRtcVideoEncoderFactory* encoder_factory, |
| 581 | cricket::WebRtcVideoDecoderFactory* decoder_factory); |
| 582 | |
| 583 | } // namespace webrtc |
| 584 | |
| 585 | #endif // TALK_APP_WEBRTC_PEERCONNECTIONINTERFACE_H_ |