blob: cf8aeb0cb4210254c16cada39834adb7c71ec0ed [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
deadbeefb10f32f2017-02-08 01:38:21 -080011// This file contains declarations of interfaces that wrap SDP-related
12// constructs; session descriptions and ICE candidates. The inner "cricket::"
13// objects shouldn't be accessed directly; the intention is that an application
14// using the PeerConnection API only creates these objects from strings, and
15// them passes them into the PeerConnection.
16//
17// Though in the future, we're planning to provide an SDP parsing API, with a
18// structure more friendly than cricket::SessionDescription.
henrike@webrtc.org28e20752013-07-10 00:45:36 +000019
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#ifndef API_JSEP_H_
21#define API_JSEP_H_
henrike@webrtc.org28e20752013-07-10 00:45:36 +000022
pbos9baddf22017-01-02 06:44:41 -080023#include <stddef.h>
24
Steve Anton88f2cb92017-12-05 12:47:32 -080025#include <memory>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000026#include <string>
27#include <vector>
28
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020029#include "absl/types/optional.h"
Steve Anton10542f22019-01-11 09:11:00 -080030#include "api/rtc_error.h"
Harald Alvestrand11146cd2020-02-20 11:40:37 +010031#include "rtc_base/deprecation.h"
Steve Anton10542f22019-01-11 09:11:00 -080032#include "rtc_base/ref_count.h"
Mirko Bonadei3b56ee72018-10-15 17:15:12 +020033#include "rtc_base/system/rtc_export.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000034
35namespace cricket {
tommi6f59a4f2016-03-11 14:05:09 -080036class Candidate;
Honghai Zhang7fb69db2016-03-14 11:59:18 -070037class SessionDescription;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000038} // namespace cricket
39
40namespace webrtc {
41
42struct SdpParseError {
43 public:
44 // The sdp line that causes the error.
45 std::string line;
46 // Explains the error.
47 std::string description;
48};
49
50// Class representation of an ICE candidate.
deadbeefb10f32f2017-02-08 01:38:21 -080051//
henrike@webrtc.org28e20752013-07-10 00:45:36 +000052// An instance of this interface is supposed to be owned by one class at
53// a time and is therefore not expected to be thread safe.
deadbeefb10f32f2017-02-08 01:38:21 -080054//
55// An instance can be created by CreateIceCandidate.
Mirko Bonadei35214fc2019-09-23 14:54:28 +020056class RTC_EXPORT IceCandidateInterface {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000057 public:
58 virtual ~IceCandidateInterface() {}
deadbeefb10f32f2017-02-08 01:38:21 -080059 // If present, this is the value of the "a=mid" attribute of the candidate's
60 // m= section in SDP, which identifies the m= section.
henrike@webrtc.org28e20752013-07-10 00:45:36 +000061 virtual std::string sdp_mid() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -080062 // This indicates the index (starting at zero) of m= section this candidate
Steve Anton88f2cb92017-12-05 12:47:32 -080063 // is associated with. Needed when an endpoint doesn't support MIDs.
henrike@webrtc.org28e20752013-07-10 00:45:36 +000064 virtual int sdp_mline_index() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -080065 // Only for use internally.
henrike@webrtc.org28e20752013-07-10 00:45:36 +000066 virtual const cricket::Candidate& candidate() const = 0;
zhihuangd7e771d2017-02-16 11:29:39 -080067 // The URL of the ICE server which this candidate was gathered from.
68 // TODO(zhihuang): Remove the default implementation once the subclasses
69 // implement this method.
Steve Anton845bb732017-12-05 12:50:26 -080070 virtual std::string server_url() const;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000071 // Creates a SDP-ized form of this candidate.
72 virtual bool ToString(std::string* out) const = 0;
73};
74
75// Creates a IceCandidateInterface based on SDP string.
deadbeef8d60a942017-02-27 14:47:33 -080076// Returns null if the sdp string can't be parsed.
77// |error| may be null.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +020078RTC_EXPORT IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
79 int sdp_mline_index,
80 const std::string& sdp,
81 SdpParseError* error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000082
Steve Anton27ab0e52018-07-23 15:11:53 -070083// Creates an IceCandidateInterface based on a parsed candidate structure.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +020084RTC_EXPORT std::unique_ptr<IceCandidateInterface> CreateIceCandidate(
Steve Anton27ab0e52018-07-23 15:11:53 -070085 const std::string& sdp_mid,
86 int sdp_mline_index,
87 const cricket::Candidate& candidate);
88
deadbeefb10f32f2017-02-08 01:38:21 -080089// This class represents a collection of candidates for a specific m= section.
90// Used in SessionDescriptionInterface.
henrike@webrtc.org28e20752013-07-10 00:45:36 +000091class IceCandidateCollection {
92 public:
93 virtual ~IceCandidateCollection() {}
94 virtual size_t count() const = 0;
95 // Returns true if an equivalent |candidate| exist in the collection.
96 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0;
97 virtual const IceCandidateInterface* at(size_t index) const = 0;
98};
99
Steve Anton88f2cb92017-12-05 12:47:32 -0800100// Enum that describes the type of the SessionDescriptionInterface.
101// Corresponds to RTCSdpType in the WebRTC specification.
102// https://w3c.github.io/webrtc-pc/#dom-rtcsdptype
103enum class SdpType {
104 kOffer, // Description must be treated as an SDP offer.
105 kPrAnswer, // Description must be treated as an SDP answer, but not a final
106 // answer.
Eldar Rello5ab79e62019-10-09 18:29:44 +0300107 kAnswer, // Description must be treated as an SDP final answer, and the
108 // offer-answer exchange must be considered complete after
109 // receiving this.
110 kRollback // Resets any pending offers and sets signaling state back to
111 // stable.
Steve Anton88f2cb92017-12-05 12:47:32 -0800112};
113
114// Returns the string form of the given SDP type. String forms are defined in
115// SessionDescriptionInterface.
Mirko Bonadei3ac63752019-11-05 09:56:32 +0100116RTC_EXPORT const char* SdpTypeToString(SdpType type);
Steve Anton88f2cb92017-12-05 12:47:32 -0800117
118// Returns the SdpType from its string form. The string form can be one of the
119// constants defined in SessionDescriptionInterface. Passing in any other string
120// results in nullopt.
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +0200121absl::optional<SdpType> SdpTypeFromString(const std::string& type_str);
Steve Anton88f2cb92017-12-05 12:47:32 -0800122
deadbeefb10f32f2017-02-08 01:38:21 -0800123// Class representation of an SDP session description.
124//
125// An instance of this interface is supposed to be owned by one class at a time
126// and is therefore not expected to be thread safe.
127//
128// An instance can be created by CreateSessionDescription.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +0200129class RTC_EXPORT SessionDescriptionInterface {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000130 public:
Steve Anton88f2cb92017-12-05 12:47:32 -0800131 // String representations of the supported SDP types.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000132 static const char kOffer[];
133 static const char kPrAnswer[];
134 static const char kAnswer[];
Eldar Rello5ab79e62019-10-09 18:29:44 +0300135 static const char kRollback[];
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000136
137 virtual ~SessionDescriptionInterface() {}
deadbeefb10f32f2017-02-08 01:38:21 -0800138
139 // Only for use internally.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000140 virtual cricket::SessionDescription* description() = 0;
141 virtual const cricket::SessionDescription* description() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800142
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000143 // Get the session id and session version, which are defined based on
144 // RFC 4566 for the SDP o= line.
145 virtual std::string session_id() const = 0;
146 virtual std::string session_version() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800147
Steve Anton88f2cb92017-12-05 12:47:32 -0800148 // Returns the type of this session description as an SdpType. Descriptions of
149 // the various types are found in the SdpType documentation.
150 // TODO(steveanton): Remove default implementation once Chromium has been
151 // updated.
152 virtual SdpType GetType() const;
153
deadbeefb10f32f2017-02-08 01:38:21 -0800154 // kOffer/kPrAnswer/kAnswer
Steve Anton88f2cb92017-12-05 12:47:32 -0800155 // TODO(steveanton): Remove this in favor of |GetType| that returns SdpType.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000156 virtual std::string type() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800157
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000158 // Adds the specified candidate to the description.
deadbeefb10f32f2017-02-08 01:38:21 -0800159 //
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000160 // Ownership is not transferred.
deadbeefb10f32f2017-02-08 01:38:21 -0800161 //
162 // Returns false if the session description does not have a media section
163 // that corresponds to |candidate.sdp_mid()| or
164 // |candidate.sdp_mline_index()|.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000165 virtual bool AddCandidate(const IceCandidateInterface* candidate) = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800166
167 // Removes the candidates from the description, if found.
168 //
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700169 // Returns the number of candidates removed.
170 virtual size_t RemoveCandidates(
Steve Anton845bb732017-12-05 12:50:26 -0800171 const std::vector<cricket::Candidate>& candidates);
Honghai Zhang7fb69db2016-03-14 11:59:18 -0700172
deadbeefb10f32f2017-02-08 01:38:21 -0800173 // Returns the number of m= sections in the session description.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000174 virtual size_t number_of_mediasections() const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800175
176 // Returns a collection of all candidates that belong to a certain m=
177 // section.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000178 virtual const IceCandidateCollection* candidates(
179 size_t mediasection_index) const = 0;
deadbeefb10f32f2017-02-08 01:38:21 -0800180
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000181 // Serializes the description to SDP.
182 virtual bool ToString(std::string* out) const = 0;
183};
184
deadbeefb10f32f2017-02-08 01:38:21 -0800185// Creates a SessionDescriptionInterface based on the SDP string and the type.
deadbeef8d60a942017-02-27 14:47:33 -0800186// Returns null if the sdp string can't be parsed or the type is unsupported.
187// |error| may be null.
Steve Anton88f2cb92017-12-05 12:47:32 -0800188// TODO(steveanton): This function is deprecated. Please use the functions below
189// which take an SdpType enum instead. Remove this once it is no longer used.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +0200190RTC_EXPORT SessionDescriptionInterface* CreateSessionDescription(
191 const std::string& type,
192 const std::string& sdp,
193 SdpParseError* error);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000194
Steve Anton88f2cb92017-12-05 12:47:32 -0800195// Creates a SessionDescriptionInterface based on the SDP string and the type.
196// Returns null if the SDP string cannot be parsed.
197// If using the signature with |error_out|, details of the parsing error may be
198// written to |error_out| if it is not null.
Mirko Bonadei3b56ee72018-10-15 17:15:12 +0200199RTC_EXPORT std::unique_ptr<SessionDescriptionInterface>
200CreateSessionDescription(SdpType type, const std::string& sdp);
201RTC_EXPORT std::unique_ptr<SessionDescriptionInterface>
202CreateSessionDescription(SdpType type,
203 const std::string& sdp,
204 SdpParseError* error_out);
Steve Anton88f2cb92017-12-05 12:47:32 -0800205
Steve Antond9e4a062018-07-24 18:23:33 -0700206// Creates a SessionDescriptionInterface based on a parsed SDP structure and the
207// given type, ID and version.
208std::unique_ptr<SessionDescriptionInterface> CreateSessionDescription(
209 SdpType type,
210 const std::string& session_id,
211 const std::string& session_version,
212 std::unique_ptr<cricket::SessionDescription> description);
213
deadbeefb10f32f2017-02-08 01:38:21 -0800214// CreateOffer and CreateAnswer callback interface.
Mirko Bonadeiac194142018-10-22 17:08:37 +0200215class RTC_EXPORT CreateSessionDescriptionObserver
216 : public rtc::RefCountInterface {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000217 public:
deadbeefb10f32f2017-02-08 01:38:21 -0800218 // This callback transfers the ownership of the |desc|.
219 // TODO(deadbeef): Make this take an std::unique_ptr<> to avoid confusion
220 // around ownership.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000221 virtual void OnSuccess(SessionDescriptionInterface* desc) = 0;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100222 // The OnFailure callback takes an RTCError, which consists of an
223 // error code and a string.
224 // RTCError is non-copyable, so it must be passed using std::move.
225 // Earlier versions of the API used a string argument. This version
Harald Alvestrand11146cd2020-02-20 11:40:37 +0100226 // is removed; its functionality was the same as passing
227 // error.message.
228 virtual void OnFailure(RTCError error) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000229
230 protected:
Steve Anton845bb732017-12-05 12:50:26 -0800231 ~CreateSessionDescriptionObserver() override = default;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000232};
233
deadbeefb10f32f2017-02-08 01:38:21 -0800234// SetLocalDescription and SetRemoteDescription callback interface.
Mirko Bonadeiac194142018-10-22 17:08:37 +0200235class RTC_EXPORT SetSessionDescriptionObserver : public rtc::RefCountInterface {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000236 public:
237 virtual void OnSuccess() = 0;
Harald Alvestrand5081c0c2018-03-09 15:18:03 +0100238 // See description in CreateSessionDescriptionObserver for OnFailure.
Harald Alvestrand11146cd2020-02-20 11:40:37 +0100239 virtual void OnFailure(RTCError error) = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000240
241 protected:
Steve Anton845bb732017-12-05 12:50:26 -0800242 ~SetSessionDescriptionObserver() override = default;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000243};
244
245} // namespace webrtc
246
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200247#endif // API_JSEP_H_