OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 // This file contains structures used for retrieving statistics from an ongoing | 11 // This file contains structures used for retrieving statistics from an ongoing |
12 // libjingle session. | 12 // libjingle session. |
13 | 13 |
14 #ifndef WEBRTC_API_STATSTYPES_H_ | 14 #ifndef WEBRTC_API_STATSTYPES_H_ |
15 #define WEBRTC_API_STATSTYPES_H_ | 15 #define WEBRTC_API_STATSTYPES_H_ |
16 | 16 |
17 #include <algorithm> | 17 #include <algorithm> |
18 #include <list> | 18 #include <list> |
19 #include <map> | 19 #include <map> |
20 #include <string> | 20 #include <string> |
21 | 21 |
22 #include "webrtc/base/basictypes.h" | 22 #include "webrtc/base/basictypes.h" |
23 #include "webrtc/base/common.h" | 23 #include "webrtc/base/common.h" |
24 #include "webrtc/base/constructormagic.h" | 24 #include "webrtc/base/constructormagic.h" |
25 #include "webrtc/base/linked_ptr.h" | |
26 #include "webrtc/base/refcount.h" | 25 #include "webrtc/base/refcount.h" |
27 #include "webrtc/base/scoped_ref_ptr.h" | 26 #include "webrtc/base/scoped_ref_ptr.h" |
28 #include "webrtc/base/stringencode.h" | 27 #include "webrtc/base/stringencode.h" |
29 #include "webrtc/base/thread_checker.h" | 28 #include "webrtc/base/thread_checker.h" |
30 | 29 |
31 namespace webrtc { | 30 namespace webrtc { |
32 | 31 |
33 class StatsReport { | 32 class StatsReport { |
34 public: | 33 public: |
35 // Indicates whether a track is for sending or receiving. | 34 // Indicates whether a track is for sending or receiving. |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
257 | 256 |
258 Value(StatsValueName name, int64_t value, Type int_type); | 257 Value(StatsValueName name, int64_t value, Type int_type); |
259 Value(StatsValueName name, float f); | 258 Value(StatsValueName name, float f); |
260 Value(StatsValueName name, const std::string& value); | 259 Value(StatsValueName name, const std::string& value); |
261 Value(StatsValueName name, const char* value); | 260 Value(StatsValueName name, const char* value); |
262 Value(StatsValueName name, bool b); | 261 Value(StatsValueName name, bool b); |
263 Value(StatsValueName name, const Id& value); | 262 Value(StatsValueName name, const Id& value); |
264 | 263 |
265 ~Value(); | 264 ~Value(); |
266 | 265 |
266 // Support ref counting. Note that we don't need thread safety, so | |
267 // no atomic operations. | |
268 int AddRef() const { return ++ref_count_; } | |
269 int Release() const { | |
270 int count = --ref_count_; | |
271 if (!count) | |
272 delete this; | |
273 return count; | |
274 } | |
275 | |
267 // TODO(tommi): This compares name as well as value... | 276 // TODO(tommi): This compares name as well as value... |
268 // I think we should only need to compare the value part and | 277 // I think we should only need to compare the value part and |
269 // move the name part into a hash map. | 278 // move the name part into a hash map. |
270 bool Equals(const Value& other) const; | 279 bool Equals(const Value& other) const; |
271 | 280 |
272 // Comparison operators. Return true iff the current instance is of the | 281 // Comparison operators. Return true iff the current instance is of the |
273 // correct type and holds the same value. No conversion is performed so | 282 // correct type and holds the same value. No conversion is performed so |
274 // a string value of "123" is not equal to an int value of 123 and an int | 283 // a string value of "123" is not equal to an int value of 123 and an int |
275 // value of 123 is not equal to a float value of 123.0f. | 284 // value of 123 is not equal to a float value of 123.0f. |
276 // One exception to this is that types kInt and kInt64 can be compared and | 285 // One exception to this is that types kInt and kInt64 can be compared and |
(...skipping 20 matching lines...) Expand all Loading... | |
297 | 306 |
298 // Converts the native value to a string representation of the value. | 307 // Converts the native value to a string representation of the value. |
299 std::string ToString() const; | 308 std::string ToString() const; |
300 | 309 |
301 Type type() const { return type_; } | 310 Type type() const { return type_; } |
302 | 311 |
303 // TODO(tommi): Move |name| and |display_name| out of the Value struct. | 312 // TODO(tommi): Move |name| and |display_name| out of the Value struct. |
304 const StatsValueName name; | 313 const StatsValueName name; |
305 | 314 |
306 private: | 315 private: |
316 mutable int ref_count_; | |
nisse-webrtc
2017/01/18 10:54:01
It seems I forgot to initialize this one... Will f
| |
317 | |
307 const Type type_; | 318 const Type type_; |
308 // TODO(tommi): Use C++ 11 union and make value_ const. | 319 // TODO(tommi): Use C++ 11 union and make value_ const. |
309 union InternalType { | 320 union InternalType { |
310 int int_; | 321 int int_; |
311 int64_t int64_; | 322 int64_t int64_; |
312 float float_; | 323 float float_; |
313 bool bool_; | 324 bool bool_; |
314 std::string* string_; | 325 std::string* string_; |
315 const char* static_string_; | 326 const char* static_string_; |
316 Id* id_; | 327 Id* id_; |
317 } value_; | 328 } value_; |
318 | 329 |
319 private: | |
320 RTC_DISALLOW_COPY_AND_ASSIGN(Value); | 330 RTC_DISALLOW_COPY_AND_ASSIGN(Value); |
321 }; | 331 }; |
322 | 332 |
323 // TODO(tommi): Consider using a similar approach to how we store Ids using | 333 typedef rtc::scoped_refptr<Value> ValuePtr; |
324 // scoped_refptr for values. | |
325 typedef rtc::linked_ptr<Value> ValuePtr; | |
326 typedef std::map<StatsValueName, ValuePtr> Values; | 334 typedef std::map<StatsValueName, ValuePtr> Values; |
327 | 335 |
328 // Ownership of |id| is passed to |this|. | 336 // Ownership of |id| is passed to |this|. |
329 explicit StatsReport(const Id& id); | 337 explicit StatsReport(const Id& id); |
330 | 338 |
331 // Factory functions for various types of stats IDs. | 339 // Factory functions for various types of stats IDs. |
332 static Id NewBandwidthEstimationId(); | 340 static Id NewBandwidthEstimationId(); |
333 static Id NewTypedId(StatsType type, const std::string& id); | 341 static Id NewTypedId(StatsType type, const std::string& id); |
334 static Id NewTypedIntId(StatsType type, int id); | 342 static Id NewTypedIntId(StatsType type, int id); |
335 static Id NewIdWithDirection( | 343 static Id NewIdWithDirection( |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
404 StatsReport* Find(const StatsReport::Id& id); | 412 StatsReport* Find(const StatsReport::Id& id); |
405 | 413 |
406 private: | 414 private: |
407 Container list_; | 415 Container list_; |
408 rtc::ThreadChecker thread_checker_; | 416 rtc::ThreadChecker thread_checker_; |
409 }; | 417 }; |
410 | 418 |
411 } // namespace webrtc | 419 } // namespace webrtc |
412 | 420 |
413 #endif // WEBRTC_API_STATSTYPES_H_ | 421 #endif // WEBRTC_API_STATSTYPES_H_ |
OLD | NEW |