blob: ae6810c39d68237f562953d83834d00d21703536 [file] [log] [blame]
Elad Alon652cc842017-10-02 09:27:521/*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * 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.
9 */
10
11#ifndef LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_PROBE_CLUSTER_CREATED_H_
12#define LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_PROBE_CLUSTER_CREATED_H_
13
Yves Gerey988cc082018-10-23 10:03:0114#include <stdint.h>
Jonas Olssona4d87372019-07-05 17:08:3315
Bjorn Tereliusf4db5422018-06-26 09:41:2716#include <memory>
Björn Terelius9a609702022-02-11 13:25:4917#include <string>
18#include <vector>
Bjorn Tereliusf4db5422018-06-26 09:41:2719
Björn Terelius9a609702022-02-11 13:25:4920#include "absl/strings/string_view.h"
Danil Chapovalov16cb1f62019-09-05 09:29:5921#include "api/rtc_event_log/rtc_event.h"
Björn Tereliusada810a2021-05-24 08:19:5522#include "api/units/timestamp.h"
Björn Terelius9a609702022-02-11 13:25:4923#include "logging/rtc_event_log/events/rtc_event_field_encoding_parser.h"
Elad Alon652cc842017-10-02 09:27:5224
25namespace webrtc {
26
Björn Tereliusd2a370f2022-01-25 09:48:3327struct LoggedBweProbeClusterCreatedEvent {
28 LoggedBweProbeClusterCreatedEvent() = default;
29 LoggedBweProbeClusterCreatedEvent(Timestamp timestamp,
30 int32_t id,
31 int32_t bitrate_bps,
32 uint32_t min_packets,
33 uint32_t min_bytes)
34 : timestamp(timestamp),
35 id(id),
36 bitrate_bps(bitrate_bps),
37 min_packets(min_packets),
38 min_bytes(min_bytes) {}
39
40 int64_t log_time_us() const { return timestamp.us(); }
41 int64_t log_time_ms() const { return timestamp.ms(); }
Björn Tereliuscb241582022-02-25 08:22:3842 Timestamp log_time() const { return timestamp; }
Björn Tereliusd2a370f2022-01-25 09:48:3343
44 Timestamp timestamp = Timestamp::MinusInfinity();
45 int32_t id;
46 int32_t bitrate_bps;
47 uint32_t min_packets;
48 uint32_t min_bytes;
49};
50
Elad Alon652cc842017-10-02 09:27:5251class RtcEventProbeClusterCreated final : public RtcEvent {
52 public:
Björn Tereliusb26335a2021-01-05 12:26:4353 static constexpr Type kType = Type::ProbeClusterCreated;
54
Bjorn Tereliusd7a076c2018-05-25 11:36:2855 RtcEventProbeClusterCreated(int32_t id,
56 int32_t bitrate_bps,
57 uint32_t min_probes,
58 uint32_t min_bytes);
Elad Alon652cc842017-10-02 09:27:5259 ~RtcEventProbeClusterCreated() override = default;
60
Björn Tereliusb26335a2021-01-05 12:26:4361 Type GetType() const override { return kType; }
62 bool IsConfigEvent() const override { return false; }
Elad Alon078a7812017-10-02 11:33:3163
Elad Alone4018632018-11-02 13:56:1264 std::unique_ptr<RtcEventProbeClusterCreated> Copy() const;
Bjorn Tereliusf4db5422018-06-26 09:41:2765
Elad Alon0b1b5c12018-11-09 20:50:1466 int32_t id() const { return id_; }
67 int32_t bitrate_bps() const { return bitrate_bps_; }
68 uint32_t min_probes() const { return min_probes_; }
69 uint32_t min_bytes() const { return min_bytes_; }
70
Björn Terelius9a609702022-02-11 13:25:4971 static std::string Encode(rtc::ArrayView<const RtcEvent*> batch) {
72 // TODO(terelius): Implement
73 return "";
74 }
75
76 static RtcEventLogParseStatus Parse(
77 absl::string_view encoded_bytes,
78 bool batched,
79 std::vector<LoggedBweProbeClusterCreatedEvent>& output) {
80 // TODO(terelius): Implement
81 return RtcEventLogParseStatus::Error("Not Implemented", __FILE__, __LINE__);
82 }
83
Elad Alon0b1b5c12018-11-09 20:50:1484 private:
85 RtcEventProbeClusterCreated(const RtcEventProbeClusterCreated& other);
86
Bjorn Tereliusd7a076c2018-05-25 11:36:2887 const int32_t id_;
88 const int32_t bitrate_bps_;
89 const uint32_t min_probes_;
90 const uint32_t min_bytes_;
Elad Alon652cc842017-10-02 09:27:5291};
92
Elad Alon652cc842017-10-02 09:27:5293} // namespace webrtc
94
95#endif // LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_PROBE_CLUSTER_CREATED_H_