webrtc_m130/api/stats/attribute.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
3.0 KiB
C
Raw Permalink Normal View History

/*
* Copyright 2024 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 API_STATS_ATTRIBUTE_H_
#define API_STATS_ATTRIBUTE_H_
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "absl/types/variant.h"
#include "rtc_base/checks.h"
#include "rtc_base/system/rtc_export.h"
namespace webrtc {
// A light-weight wrapper of an RTCStats attribute, i.e. an individual metric of
// type std::optional<T>.
class RTC_EXPORT Attribute {
public:
// All supported attribute types.
typedef absl::variant<const std::optional<bool>*,
const std::optional<int32_t>*,
const std::optional<uint32_t>*,
const std::optional<int64_t>*,
const std::optional<uint64_t>*,
const std::optional<double>*,
const std::optional<std::string>*,
const std::optional<std::vector<bool>>*,
const std::optional<std::vector<int32_t>>*,
const std::optional<std::vector<uint32_t>>*,
const std::optional<std::vector<int64_t>>*,
const std::optional<std::vector<uint64_t>>*,
const std::optional<std::vector<double>>*,
const std::optional<std::vector<std::string>>*,
const std::optional<std::map<std::string, uint64_t>>*,
const std::optional<std::map<std::string, double>>*>
StatVariant;
template <typename T>
Attribute(const char* name, const std::optional<T>* attribute)
: name_(name), attribute_(attribute) {}
const char* name() const;
const StatVariant& as_variant() const;
bool has_value() const;
template <typename T>
bool holds_alternative() const {
return absl::holds_alternative<const std::optional<T>*>(attribute_);
}
template <typename T>
const std::optional<T>& as_optional() const {
RTC_CHECK(holds_alternative<T>());
return *absl::get<const std::optional<T>*>(attribute_);
}
template <typename T>
const T& get() const {
RTC_CHECK(holds_alternative<T>());
RTC_CHECK(has_value());
return absl::get<const std::optional<T>*>(attribute_)->value();
}
bool is_sequence() const;
bool is_string() const;
Reland "[Stats] Attribute::ToString(), to replace member ValueToString/ToJson." This is a reland of commit 54be7084e0861a0179a5fccd0b27edf7d7994bbb Previously reverted due to an importer issue (b/320646178) and later a dependency on RTCStatsMember<T>::ValueToString(). In this reland, we add Attribute::ToString() but we don't delete the RTCStatsMember<T> stringifier methods, allowing downstream to migrate before they are deleted. Original change's description: > [Stats] Attribute::ToString(), to replace member ValueToString/ToJson. > > Delete RTCStatsMember<T>::ValueToString() and ValueToJson() in favor of > Attribute::ToString(). > > The difference between "ToString" and "ToJson" is that the "ToJson" > version converts 64-bit integers and doubles to floating points with no > more than ~15 digits of precision as to not exceed JSON's precision > limitations. So only in edge cases of really large numbers or numbers > with a silly number of digits will the two methods produce different > results. Also JSON puts '\"' around map key names, e.g. "{\"foo\":123}" > as opposed to "{foo:123}". > > Going forward we see no reason to maintain two different string > converted paths that are this similar, so we only implement one > Attribute::ToString() method which does what "ToJson" did. > > In the next CL we can delete RTCStatsMember<T>. > > Bug: webrtc:15164 > Change-Id: Iaa8cf3bf14b40dc44664f75989832469603131c5 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/334640 > Commit-Queue: Henrik Boström <hbos@webrtc.org> > Reviewed-by: Evan Shrubsole <eshr@google.com> > Reviewed-by: Harald Alvestrand <hta@webrtc.org> > Cr-Commit-Position: refs/heads/main@{#41544} Bug: webrtc:15164 Change-Id: I281ccf5b23d8f194b5ce00186a32846c757b46fc Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/334860 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Henrik Boström <hbos@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41575}
2024-01-19 13:53:01 +01:00
std::string ToString() const;
bool operator==(const Attribute& other) const;
bool operator!=(const Attribute& other) const;
private:
const char* name_;
StatVariant attribute_;
};
struct RTC_EXPORT AttributeInit {
AttributeInit(const char* name, const Attribute::StatVariant& variant);
const char* name;
Attribute::StatVariant variant;
};
} // namespace webrtc
#endif // API_STATS_ATTRIBUTE_H_