OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 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 #include "webrtc/base/buffer.h" | 11 #include "webrtc/base/buffer.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <cassert> | |
15 #include <utility> | 14 #include <utility> |
16 | 15 |
17 namespace rtc { | 16 namespace rtc { |
18 | 17 |
19 Buffer::Buffer() : size_(0), capacity_(0), data_(nullptr) { | 18 Buffer::Buffer() : size_(0), capacity_(0), data_(nullptr) { |
20 assert(IsConsistent()); | 19 RTC_DCHECK(IsConsistent()); |
21 } | 20 } |
22 | 21 |
23 Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) { | 22 Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) { |
24 } | 23 } |
25 | 24 |
26 Buffer::Buffer(Buffer&& buf) | 25 Buffer::Buffer(Buffer&& buf) |
27 : size_(buf.size()), | 26 : size_(buf.size()), |
28 capacity_(buf.capacity()), | 27 capacity_(buf.capacity()), |
29 data_(std::move(buf.data_)) { | 28 data_(std::move(buf.data_)) { |
30 assert(IsConsistent()); | 29 RTC_DCHECK(IsConsistent()); |
31 buf.OnMovedFrom(); | 30 buf.OnMovedFrom(); |
32 } | 31 } |
33 | 32 |
34 Buffer::Buffer(size_t size) : Buffer(size, size) { | 33 Buffer::Buffer(size_t size) : Buffer(size, size) { |
35 } | 34 } |
36 | 35 |
37 Buffer::Buffer(size_t size, size_t capacity) | 36 Buffer::Buffer(size_t size, size_t capacity) |
38 : size_(size), | 37 : size_(size), |
39 capacity_(std::max(size, capacity)), | 38 capacity_(std::max(size, capacity)), |
40 data_(new uint8_t[capacity_]) { | 39 data_(new uint8_t[capacity_]) { |
41 assert(IsConsistent()); | 40 RTC_DCHECK(IsConsistent()); |
42 } | 41 } |
43 | 42 |
44 // Note: The destructor works even if the buffer has been moved from. | 43 // Note: The destructor works even if the buffer has been moved from. |
45 Buffer::~Buffer() = default; | 44 Buffer::~Buffer() = default; |
46 | 45 |
47 }; // namespace rtc | 46 }; // namespace rtc |
OLD | NEW |