Fix clang style warnings in api/candidate.h
Bug: webrtc:163 Change-Id: I694194d34573b1f2e4769bf52ec861127940d017 Reviewed-on: https://webrtc-review.googlesource.com/15940 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Steve Anton <steveanton@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20454}
This commit is contained in:
parent
9d4a2e6fd2
commit
36b28db887
@ -36,6 +36,7 @@ rtc_source_set("call_api") {
|
||||
rtc_static_library("libjingle_peerconnection_api") {
|
||||
cflags = []
|
||||
sources = [
|
||||
"candidate.cc",
|
||||
"candidate.h",
|
||||
"datachannelinterface.h",
|
||||
"dtmfsenderinterface.h",
|
||||
|
||||
123
api/candidate.cc
Normal file
123
api/candidate.cc
Normal file
@ -0,0 +1,123 @@
|
||||
/*
|
||||
* Copyright 2017 The WebRTC Project Authors. All rights reserved.
|
||||
*
|
||||
* Use of this source code is governed by a BSD-style license
|
||||
* that can be found in the LICENSE file in the root of the source
|
||||
* tree. An additional intellectual property rights grant can be found
|
||||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "api/candidate.h"
|
||||
|
||||
namespace cricket {
|
||||
|
||||
Candidate::Candidate()
|
||||
: id_(rtc::CreateRandomString(8)),
|
||||
component_(0),
|
||||
priority_(0),
|
||||
network_type_(rtc::ADAPTER_TYPE_UNKNOWN),
|
||||
generation_(0),
|
||||
network_id_(0),
|
||||
network_cost_(0) {}
|
||||
|
||||
Candidate::Candidate(int component,
|
||||
const std::string& protocol,
|
||||
const rtc::SocketAddress& address,
|
||||
uint32_t priority,
|
||||
const std::string& username,
|
||||
const std::string& password,
|
||||
const std::string& type,
|
||||
uint32_t generation,
|
||||
const std::string& foundation,
|
||||
uint16_t network_id,
|
||||
uint16_t network_cost)
|
||||
: id_(rtc::CreateRandomString(8)),
|
||||
component_(component),
|
||||
protocol_(protocol),
|
||||
address_(address),
|
||||
priority_(priority),
|
||||
username_(username),
|
||||
password_(password),
|
||||
type_(type),
|
||||
network_type_(rtc::ADAPTER_TYPE_UNKNOWN),
|
||||
generation_(generation),
|
||||
foundation_(foundation),
|
||||
network_id_(network_id),
|
||||
network_cost_(network_cost) {}
|
||||
|
||||
Candidate::Candidate(const Candidate&) = default;
|
||||
|
||||
Candidate::~Candidate() = default;
|
||||
|
||||
bool Candidate::IsEquivalent(const Candidate& c) const {
|
||||
// We ignore the network name, since that is just debug information, and
|
||||
// the priority and the network cost, since they should be the same if the
|
||||
// rest are.
|
||||
return (component_ == c.component_) && (protocol_ == c.protocol_) &&
|
||||
(address_ == c.address_) && (username_ == c.username_) &&
|
||||
(password_ == c.password_) && (type_ == c.type_) &&
|
||||
(generation_ == c.generation_) && (foundation_ == c.foundation_) &&
|
||||
(related_address_ == c.related_address_) &&
|
||||
(network_id_ == c.network_id_);
|
||||
}
|
||||
|
||||
bool Candidate::MatchesForRemoval(const Candidate& c) const {
|
||||
return component_ == c.component_ && protocol_ == c.protocol_ &&
|
||||
address_ == c.address_;
|
||||
}
|
||||
|
||||
std::string Candidate::ToStringInternal(bool sensitive) const {
|
||||
std::ostringstream ost;
|
||||
std::string address =
|
||||
sensitive ? address_.ToSensitiveString() : address_.ToString();
|
||||
ost << "Cand[" << transport_name_ << ":" << foundation_ << ":" << component_
|
||||
<< ":" << protocol_ << ":" << priority_ << ":" << address << ":" << type_
|
||||
<< ":" << related_address_ << ":" << username_ << ":" << password_ << ":"
|
||||
<< network_id_ << ":" << network_cost_ << ":" << generation_ << "]";
|
||||
return ost.str();
|
||||
}
|
||||
|
||||
uint32_t Candidate::GetPriority(uint32_t type_preference,
|
||||
int network_adapter_preference,
|
||||
int relay_preference) const {
|
||||
// RFC 5245 - 4.1.2.1.
|
||||
// priority = (2^24)*(type preference) +
|
||||
// (2^8)*(local preference) +
|
||||
// (2^0)*(256 - component ID)
|
||||
|
||||
// |local_preference| length is 2 bytes, 0-65535 inclusive.
|
||||
// In our implemenation we will partion local_preference into
|
||||
// 0 1
|
||||
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// | NIC Pref | Addr Pref |
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// NIC Type - Type of the network adapter e.g. 3G/Wifi/Wired.
|
||||
// Addr Pref - Address preference value as per RFC 3484.
|
||||
// local preference = (NIC Type << 8 | Addr_Pref) - relay preference.
|
||||
|
||||
int addr_pref = IPAddressPrecedence(address_.ipaddr());
|
||||
int local_preference =
|
||||
((network_adapter_preference << 8) | addr_pref) + relay_preference;
|
||||
|
||||
return (type_preference << 24) | (local_preference << 8) | (256 - component_);
|
||||
}
|
||||
|
||||
bool Candidate::operator==(const Candidate& o) const {
|
||||
return id_ == o.id_ && component_ == o.component_ &&
|
||||
protocol_ == o.protocol_ && relay_protocol_ == o.relay_protocol_ &&
|
||||
address_ == o.address_ && priority_ == o.priority_ &&
|
||||
username_ == o.username_ && password_ == o.password_ &&
|
||||
type_ == o.type_ && network_name_ == o.network_name_ &&
|
||||
network_type_ == o.network_type_ && generation_ == o.generation_ &&
|
||||
foundation_ == o.foundation_ &&
|
||||
related_address_ == o.related_address_ && tcptype_ == o.tcptype_ &&
|
||||
transport_name_ == o.transport_name_ && network_id_ == o.network_id_;
|
||||
}
|
||||
|
||||
bool Candidate::operator!=(const Candidate& o) const {
|
||||
return !(*this == o);
|
||||
}
|
||||
|
||||
} // namespace cricket
|
||||
105
api/candidate.h
105
api/candidate.h
@ -29,17 +29,9 @@ namespace cricket {
|
||||
|
||||
class Candidate {
|
||||
public:
|
||||
Candidate();
|
||||
// TODO(pthatcher): Match the ordering and param list as per RFC 5245
|
||||
// candidate-attribute syntax. http://tools.ietf.org/html/rfc5245#section-15.1
|
||||
Candidate()
|
||||
: id_(rtc::CreateRandomString(8)),
|
||||
component_(0),
|
||||
priority_(0),
|
||||
network_type_(rtc::ADAPTER_TYPE_UNKNOWN),
|
||||
generation_(0),
|
||||
network_id_(0),
|
||||
network_cost_(0) {}
|
||||
|
||||
Candidate(int component,
|
||||
const std::string& protocol,
|
||||
const rtc::SocketAddress& address,
|
||||
@ -50,20 +42,9 @@ class Candidate {
|
||||
uint32_t generation,
|
||||
const std::string& foundation,
|
||||
uint16_t network_id = 0,
|
||||
uint16_t network_cost = 0)
|
||||
: id_(rtc::CreateRandomString(8)),
|
||||
component_(component),
|
||||
protocol_(protocol),
|
||||
address_(address),
|
||||
priority_(priority),
|
||||
username_(username),
|
||||
password_(password),
|
||||
type_(type),
|
||||
network_type_(rtc::ADAPTER_TYPE_UNKNOWN),
|
||||
generation_(generation),
|
||||
foundation_(foundation),
|
||||
network_id_(network_id),
|
||||
network_cost_(network_cost) {}
|
||||
uint16_t network_cost = 0);
|
||||
Candidate(const Candidate&);
|
||||
~Candidate();
|
||||
|
||||
const std::string & id() const { return id_; }
|
||||
void set_id(const std::string & id) { id_ = id; }
|
||||
@ -132,15 +113,6 @@ class Candidate {
|
||||
// Candidates in a new generation replace those in the old generation.
|
||||
uint32_t generation() const { return generation_; }
|
||||
void set_generation(uint32_t generation) { generation_ = generation; }
|
||||
const std::string generation_str() const {
|
||||
std::ostringstream ost;
|
||||
ost << generation_;
|
||||
return ost.str();
|
||||
}
|
||||
void set_generation_str(const std::string& str) {
|
||||
std::istringstream ist(str);
|
||||
ist >> generation_;
|
||||
}
|
||||
|
||||
// |network_cost| measures the cost/penalty of using this candidate. A network
|
||||
// cost of 0 indicates this candidate can be used freely. A value of
|
||||
@ -186,24 +158,11 @@ class Candidate {
|
||||
void set_url(const std::string& url) { url_ = url; }
|
||||
|
||||
// Determines whether this candidate is equivalent to the given one.
|
||||
bool IsEquivalent(const Candidate& c) const {
|
||||
// We ignore the network name, since that is just debug information, and
|
||||
// the priority and the network cost, since they should be the same if the
|
||||
// rest are.
|
||||
return (component_ == c.component_) && (protocol_ == c.protocol_) &&
|
||||
(address_ == c.address_) && (username_ == c.username_) &&
|
||||
(password_ == c.password_) && (type_ == c.type_) &&
|
||||
(generation_ == c.generation_) && (foundation_ == c.foundation_) &&
|
||||
(related_address_ == c.related_address_) &&
|
||||
(network_id_ == c.network_id_);
|
||||
}
|
||||
bool IsEquivalent(const Candidate& c) const;
|
||||
|
||||
// Determines whether this candidate can be considered equivalent to the
|
||||
// given one when looking for a matching candidate to remove.
|
||||
bool MatchesForRemoval(const Candidate& c) const {
|
||||
return component_ == c.component_ && protocol_ == c.protocol_ &&
|
||||
address_ == c.address_;
|
||||
}
|
||||
bool MatchesForRemoval(const Candidate& c) const;
|
||||
|
||||
std::string ToString() const {
|
||||
return ToStringInternal(false);
|
||||
@ -215,57 +174,13 @@ class Candidate {
|
||||
|
||||
uint32_t GetPriority(uint32_t type_preference,
|
||||
int network_adapter_preference,
|
||||
int relay_preference) const {
|
||||
// RFC 5245 - 4.1.2.1.
|
||||
// priority = (2^24)*(type preference) +
|
||||
// (2^8)*(local preference) +
|
||||
// (2^0)*(256 - component ID)
|
||||
int relay_preference) const;
|
||||
|
||||
// |local_preference| length is 2 bytes, 0-65535 inclusive.
|
||||
// In our implemenation we will partion local_preference into
|
||||
// 0 1
|
||||
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// | NIC Pref | Addr Pref |
|
||||
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||
// NIC Type - Type of the network adapter e.g. 3G/Wifi/Wired.
|
||||
// Addr Pref - Address preference value as per RFC 3484.
|
||||
// local preference = (NIC Type << 8 | Addr_Pref) - relay preference.
|
||||
|
||||
int addr_pref = IPAddressPrecedence(address_.ipaddr());
|
||||
int local_preference = ((network_adapter_preference << 8) | addr_pref) +
|
||||
relay_preference;
|
||||
|
||||
return (type_preference << 24) |
|
||||
(local_preference << 8) |
|
||||
(256 - component_);
|
||||
}
|
||||
|
||||
bool operator==(const Candidate& o) const {
|
||||
return id_ == o.id_ && component_ == o.component_ &&
|
||||
protocol_ == o.protocol_ && relay_protocol_ == o.relay_protocol_ &&
|
||||
address_ == o.address_ && priority_ == o.priority_ &&
|
||||
username_ == o.username_ && password_ == o.password_ &&
|
||||
type_ == o.type_ && network_name_ == o.network_name_ &&
|
||||
network_type_ == o.network_type_ && generation_ == o.generation_ &&
|
||||
foundation_ == o.foundation_ &&
|
||||
related_address_ == o.related_address_ && tcptype_ == o.tcptype_ &&
|
||||
transport_name_ == o.transport_name_ && network_id_ == o.network_id_;
|
||||
}
|
||||
bool operator!=(const Candidate& o) const { return !(*this == o); }
|
||||
bool operator==(const Candidate& o) const;
|
||||
bool operator!=(const Candidate& o) const;
|
||||
|
||||
private:
|
||||
std::string ToStringInternal(bool sensitive) const {
|
||||
std::ostringstream ost;
|
||||
std::string address = sensitive ? address_.ToSensitiveString() :
|
||||
address_.ToString();
|
||||
ost << "Cand[" << transport_name_ << ":" << foundation_ << ":" << component_
|
||||
<< ":" << protocol_ << ":" << priority_ << ":" << address << ":"
|
||||
<< type_ << ":" << related_address_ << ":" << username_ << ":"
|
||||
<< password_ << ":" << network_id_ << ":" << network_cost_ << ":"
|
||||
<< generation_ << "]";
|
||||
return ost.str();
|
||||
}
|
||||
std::string ToStringInternal(bool sensitive) const;
|
||||
|
||||
std::string id_;
|
||||
int component_;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user