Elad Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 1 | /* |
| 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 Gerey | 988cc08 | 2018-10-23 10:03:01 | [diff] [blame] | 14 | #include <stdint.h> |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 15 | |
Bjorn Terelius | f4db542 | 2018-06-26 09:41:27 | [diff] [blame] | 16 | #include <memory> |
Björn Terelius | 9a60970 | 2022-02-11 13:25:49 | [diff] [blame] | 17 | #include <string> |
| 18 | #include <vector> |
Bjorn Terelius | f4db542 | 2018-06-26 09:41:27 | [diff] [blame] | 19 | |
Björn Terelius | 9a60970 | 2022-02-11 13:25:49 | [diff] [blame] | 20 | #include "absl/strings/string_view.h" |
Danil Chapovalov | 16cb1f6 | 2019-09-05 09:29:59 | [diff] [blame] | 21 | #include "api/rtc_event_log/rtc_event.h" |
Björn Terelius | ada810a | 2021-05-24 08:19:55 | [diff] [blame] | 22 | #include "api/units/timestamp.h" |
Björn Terelius | 9a60970 | 2022-02-11 13:25:49 | [diff] [blame] | 23 | #include "logging/rtc_event_log/events/rtc_event_field_encoding_parser.h" |
Elad Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 24 | |
| 25 | namespace webrtc { |
| 26 | |
Björn Terelius | d2a370f | 2022-01-25 09:48:33 | [diff] [blame] | 27 | struct 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 Terelius | cb24158 | 2022-02-25 08:22:38 | [diff] [blame] | 42 | Timestamp log_time() const { return timestamp; } |
Björn Terelius | d2a370f | 2022-01-25 09:48:33 | [diff] [blame] | 43 | |
| 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 Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 51 | class RtcEventProbeClusterCreated final : public RtcEvent { |
| 52 | public: |
Björn Terelius | b26335a | 2021-01-05 12:26:43 | [diff] [blame] | 53 | static constexpr Type kType = Type::ProbeClusterCreated; |
| 54 | |
Bjorn Terelius | d7a076c | 2018-05-25 11:36:28 | [diff] [blame] | 55 | RtcEventProbeClusterCreated(int32_t id, |
| 56 | int32_t bitrate_bps, |
| 57 | uint32_t min_probes, |
| 58 | uint32_t min_bytes); |
Elad Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 59 | ~RtcEventProbeClusterCreated() override = default; |
| 60 | |
Björn Terelius | b26335a | 2021-01-05 12:26:43 | [diff] [blame] | 61 | Type GetType() const override { return kType; } |
| 62 | bool IsConfigEvent() const override { return false; } |
Elad Alon | 078a781 | 2017-10-02 11:33:31 | [diff] [blame] | 63 | |
Elad Alon | e401863 | 2018-11-02 13:56:12 | [diff] [blame] | 64 | std::unique_ptr<RtcEventProbeClusterCreated> Copy() const; |
Bjorn Terelius | f4db542 | 2018-06-26 09:41:27 | [diff] [blame] | 65 | |
Elad Alon | 0b1b5c1 | 2018-11-09 20:50:14 | [diff] [blame] | 66 | 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 Terelius | 9a60970 | 2022-02-11 13:25:49 | [diff] [blame] | 71 | 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 Alon | 0b1b5c1 | 2018-11-09 20:50:14 | [diff] [blame] | 84 | private: |
| 85 | RtcEventProbeClusterCreated(const RtcEventProbeClusterCreated& other); |
| 86 | |
Bjorn Terelius | d7a076c | 2018-05-25 11:36:28 | [diff] [blame] | 87 | const int32_t id_; |
| 88 | const int32_t bitrate_bps_; |
| 89 | const uint32_t min_probes_; |
| 90 | const uint32_t min_bytes_; |
Elad Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 91 | }; |
| 92 | |
Elad Alon | 652cc84 | 2017-10-02 09:27:52 | [diff] [blame] | 93 | } // namespace webrtc |
| 94 | |
| 95 | #endif // LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_PROBE_CLUSTER_CREATED_H_ |