1 /*
2 * Copyright 2016 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 #include "stats/test/rtc_test_stats.h"
12
13 #include "rtc_base/checks.h"
14
15 namespace webrtc {
16
17 WEBRTC_RTCSTATS_IMPL(RTCTestStats,
18 RTCStats,
19 "test-stats",
20 &m_bool,
21 &m_int32,
22 &m_uint32,
23 &m_int64,
24 &m_uint64,
25 &m_double,
26 &m_string,
27 &m_sequence_bool,
28 &m_sequence_int32,
29 &m_sequence_uint32,
30 &m_sequence_int64,
31 &m_sequence_uint64,
32 &m_sequence_double,
33 &m_sequence_string)
34
RTCTestStats(const std::string & id,int64_t timestamp_us)35 RTCTestStats::RTCTestStats(const std::string& id, int64_t timestamp_us)
36 : RTCStats(id, timestamp_us),
37 m_bool("mBool"),
38 m_int32("mInt32"),
39 m_uint32("mUint32"),
40 m_int64("mInt64"),
41 m_uint64("mUint64"),
42 m_double("mDouble"),
43 m_string("mString"),
44 m_sequence_bool("mSequenceBool"),
45 m_sequence_int32("mSequenceInt32"),
46 m_sequence_uint32("mSequenceUint32"),
47 m_sequence_int64("mSequenceInt64"),
48 m_sequence_uint64("mSequenceUint64"),
49 m_sequence_double("mSequenceDouble"),
50 m_sequence_string("mSequenceString") {}
51
RTCTestStats(const RTCTestStats & other)52 RTCTestStats::RTCTestStats(const RTCTestStats& other)
53 : RTCStats(other.id(), other.timestamp_us()),
54 m_bool(other.m_bool),
55 m_int32(other.m_int32),
56 m_uint32(other.m_uint32),
57 m_int64(other.m_int64),
58 m_uint64(other.m_uint64),
59 m_double(other.m_double),
60 m_string(other.m_string),
61 m_sequence_bool(other.m_sequence_bool),
62 m_sequence_int32(other.m_sequence_int32),
63 m_sequence_uint32(other.m_sequence_uint32),
64 m_sequence_int64(other.m_sequence_int64),
65 m_sequence_uint64(other.m_sequence_uint64),
66 m_sequence_double(other.m_sequence_double),
67 m_sequence_string(other.m_sequence_string) {}
68
~RTCTestStats()69 RTCTestStats::~RTCTestStats() {}
70
71 } // namespace webrtc
72