blob: 2133d9dadd258184b49776897cc339ffa2c6b87a [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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "api/jsepicecandidate.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000012
13#include <vector>
14
tzikcdb87f12018-08-15 17:28:35 +090015#include "absl/memory/memory.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "pc/webrtcsdp.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000017
18namespace webrtc {
19
20IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
21 int sdp_mline_index,
henrike@webrtc.org28e20752013-07-10 00:45:36 +000022 const std::string& sdp,
23 SdpParseError* error) {
24 JsepIceCandidate* jsep_ice = new JsepIceCandidate(sdp_mid, sdp_mline_index);
25 if (!jsep_ice->Initialize(sdp, error)) {
26 delete jsep_ice;
27 return NULL;
28 }
29 return jsep_ice;
30}
31
Steve Anton27ab0e52018-07-23 15:11:53 -070032std::unique_ptr<IceCandidateInterface> CreateIceCandidate(
33 const std::string& sdp_mid,
34 int sdp_mline_index,
35 const cricket::Candidate& candidate) {
36 return absl::make_unique<JsepIceCandidate>(sdp_mid, sdp_mline_index,
37 candidate);
38}
39
henrike@webrtc.org28e20752013-07-10 00:45:36 +000040JsepIceCandidate::JsepIceCandidate(const std::string& sdp_mid,
41 int sdp_mline_index)
Yves Gerey665174f2018-06-19 15:03:05 +020042 : sdp_mid_(sdp_mid), sdp_mline_index_(sdp_mline_index) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +000043
44JsepIceCandidate::JsepIceCandidate(const std::string& sdp_mid,
45 int sdp_mline_index,
46 const cricket::Candidate& candidate)
47 : sdp_mid_(sdp_mid),
48 sdp_mline_index_(sdp_mline_index),
Yves Gerey665174f2018-06-19 15:03:05 +020049 candidate_(candidate) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +000050
Yves Gerey665174f2018-06-19 15:03:05 +020051JsepIceCandidate::~JsepIceCandidate() {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +000052
53bool JsepIceCandidate::Initialize(const std::string& sdp, SdpParseError* err) {
54 return SdpDeserializeCandidate(sdp, this, err);
55}
56
57bool JsepIceCandidate::ToString(std::string* out) const {
58 if (!out)
59 return false;
60 *out = SdpSerializeCandidate(*this);
61 return !out->empty();
62}
63
henrike@webrtc.org28e20752013-07-10 00:45:36 +000064} // namespace webrtc