mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

This is part of a large-scale effort to increase adoption of absl::string_view across the WebRTC code base. This CL converts the majority of "const std::string&"s in function parameters under rtc_base/ to absl::string_view. Bug: webrtc:13579 Change-Id: I2b1e3776aa42326aa405f76bb324a2d233b21dca Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/254081 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Xavier Lepaul <xalep@webrtc.org> Reviewed-by: Anders Lilienthal <andersc@webrtc.org> Reviewed-by: Per Kjellander <perkj@webrtc.org> Commit-Queue: Ali Tofigh <alito@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36239}
148 lines
5.4 KiB
C++
148 lines
5.4 KiB
C++
/*
|
|
* Copyright 2018 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.
|
|
*/
|
|
|
|
#ifndef RTC_BASE_UNIQUE_ID_GENERATOR_H_
|
|
#define RTC_BASE_UNIQUE_ID_GENERATOR_H_
|
|
|
|
#include <limits>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "api/array_view.h"
|
|
#include "api/sequence_checker.h"
|
|
#include "rtc_base/synchronization/mutex.h"
|
|
#include "rtc_base/system/no_unique_address.h"
|
|
|
|
namespace rtc {
|
|
|
|
// This class will generate numbers. A common use case is for identifiers.
|
|
// The generated numbers will be unique, in the local scope of the generator.
|
|
// This means that a generator will never generate the same number twice.
|
|
// The generator can also be initialized with a sequence of known ids.
|
|
// In such a case, it will never generate an id from that list.
|
|
// Recommendedations:
|
|
// * Prefer unsigned types.
|
|
// * Prefer larger types (uint8_t will run out quickly).
|
|
template <typename TIntegral>
|
|
class UniqueNumberGenerator {
|
|
public:
|
|
typedef TIntegral value_type;
|
|
UniqueNumberGenerator();
|
|
// Creates a generator that will never return any value from the given list.
|
|
explicit UniqueNumberGenerator(ArrayView<TIntegral> known_ids);
|
|
~UniqueNumberGenerator();
|
|
|
|
// Generates a number that this generator has never produced before.
|
|
// If there are no available numbers to generate, this method will fail
|
|
// with an `RTC_CHECK`.
|
|
TIntegral GenerateNumber();
|
|
TIntegral operator()() { return GenerateNumber(); }
|
|
|
|
// Adds an id that this generator should no longer generate.
|
|
// Return value indicates whether the ID was hitherto unknown.
|
|
bool AddKnownId(TIntegral value);
|
|
|
|
private:
|
|
RTC_NO_UNIQUE_ADDRESS webrtc::SequenceChecker sequence_checker_;
|
|
static_assert(std::is_integral<TIntegral>::value, "Must be integral type.");
|
|
TIntegral counter_ RTC_GUARDED_BY(sequence_checker_);
|
|
std::set<TIntegral> known_ids_ RTC_GUARDED_BY(sequence_checker_);
|
|
};
|
|
|
|
// This class will generate unique ids. Ids are 32 bit unsigned integers.
|
|
// The generated ids will be unique, in the local scope of the generator.
|
|
// This means that a generator will never generate the same id twice.
|
|
// The generator can also be initialized with a sequence of known ids.
|
|
// In such a case, it will never generate an id from that list.
|
|
class UniqueRandomIdGenerator {
|
|
public:
|
|
typedef uint32_t value_type;
|
|
UniqueRandomIdGenerator();
|
|
// Create a generator that will never return any value from the given list.
|
|
explicit UniqueRandomIdGenerator(ArrayView<uint32_t> known_ids);
|
|
~UniqueRandomIdGenerator();
|
|
|
|
// Generates a random id that this generator has never produced before.
|
|
// This method becomes more expensive with each use, as the probability of
|
|
// collision for the randomly generated numbers increases.
|
|
uint32_t GenerateId();
|
|
uint32_t operator()() { return GenerateId(); }
|
|
|
|
// Adds an id that this generator should no longer generate.
|
|
// Return value indicates whether the ID was hitherto unknown.
|
|
bool AddKnownId(uint32_t value);
|
|
|
|
private:
|
|
// TODO(bugs.webrtc.org/12666): This lock is needed due to an instance in
|
|
// SdpOfferAnswerHandler being shared between threads.
|
|
webrtc::Mutex mutex_;
|
|
std::set<uint32_t> known_ids_ RTC_GUARDED_BY(&mutex_);
|
|
};
|
|
|
|
// This class will generate strings. A common use case is for identifiers.
|
|
// The generated strings will be unique, in the local scope of the generator.
|
|
// This means that a generator will never generate the same string twice.
|
|
// The generator can also be initialized with a sequence of known ids.
|
|
// In such a case, it will never generate an id from that list.
|
|
class UniqueStringGenerator {
|
|
public:
|
|
typedef std::string value_type;
|
|
UniqueStringGenerator();
|
|
explicit UniqueStringGenerator(ArrayView<std::string> known_ids);
|
|
~UniqueStringGenerator();
|
|
|
|
std::string GenerateString();
|
|
std::string operator()() { return GenerateString(); }
|
|
|
|
// Adds an id that this generator should no longer generate.
|
|
// Return value indicates whether the ID was hitherto unknown.
|
|
bool AddKnownId(absl::string_view value);
|
|
|
|
private:
|
|
// This implementation will be simple and will generate "0", "1", ...
|
|
UniqueNumberGenerator<uint32_t> unique_number_generator_;
|
|
};
|
|
|
|
template <typename TIntegral>
|
|
UniqueNumberGenerator<TIntegral>::UniqueNumberGenerator() : counter_(0) {
|
|
sequence_checker_.Detach();
|
|
}
|
|
|
|
template <typename TIntegral>
|
|
UniqueNumberGenerator<TIntegral>::UniqueNumberGenerator(
|
|
ArrayView<TIntegral> known_ids)
|
|
: counter_(0), known_ids_(known_ids.begin(), known_ids.end()) {
|
|
sequence_checker_.Detach();
|
|
}
|
|
|
|
template <typename TIntegral>
|
|
UniqueNumberGenerator<TIntegral>::~UniqueNumberGenerator() {}
|
|
|
|
template <typename TIntegral>
|
|
TIntegral UniqueNumberGenerator<TIntegral>::GenerateNumber() {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
while (true) {
|
|
RTC_CHECK_LT(counter_, std::numeric_limits<TIntegral>::max());
|
|
auto pair = known_ids_.insert(counter_++);
|
|
if (pair.second) {
|
|
return *pair.first;
|
|
}
|
|
}
|
|
}
|
|
|
|
template <typename TIntegral>
|
|
bool UniqueNumberGenerator<TIntegral>::AddKnownId(TIntegral value) {
|
|
RTC_DCHECK_RUN_ON(&sequence_checker_);
|
|
return known_ids_.insert(value).second;
|
|
}
|
|
} // namespace rtc
|
|
|
|
#endif // RTC_BASE_UNIQUE_ID_GENERATOR_H_
|