kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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 "webrtc/base/buffer.h" |
| 12 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 13 | #include <cassert> |
| 14 | |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 15 | namespace rtc { |
| 16 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 17 | Buffer::Buffer() : size_(0), capacity_(0), data_(nullptr) { |
| 18 | assert(IsConsistent()); |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 19 | } |
| 20 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 21 | Buffer::Buffer(const Buffer& buf) : Buffer(buf.data(), buf.size()) { |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 22 | } |
| 23 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 24 | Buffer::Buffer(Buffer&& buf) |
| 25 | : size_(buf.size()), capacity_(buf.capacity()), data_(buf.data_.Pass()) { |
| 26 | assert(IsConsistent()); |
| 27 | buf.OnMovedFrom(); |
kwiberg@webrtc.org | eebcab5 | 2015-03-24 09:19:06 +0000 | [diff] [blame] | 28 | } |
| 29 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 30 | Buffer::Buffer(size_t size) : Buffer(size, size) { |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 33 | Buffer::Buffer(size_t size, size_t capacity) |
| 34 | : size_(size), |
| 35 | capacity_(std::max(size, capacity)), |
| 36 | data_(new uint8_t[capacity_]) { |
| 37 | assert(IsConsistent()); |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Karl Wiberg | 9478437 | 2015-04-20 14:03:07 +0200 | [diff] [blame] | 40 | // Note: The destructor works even if the buffer has been moved from. |
kwiberg@webrtc.org | 67186fe | 2015-03-09 22:21:53 +0000 | [diff] [blame] | 41 | Buffer::~Buffer() = default; |
| 42 | |
| 43 | }; // namespace rtc |