Joachim Bauch | 6f2ef74 | 2015-05-21 17:52:01 +0200 | [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 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 11 | #ifndef RTC_BASE_BUFFER_QUEUE_H_ |
| 12 | #define RTC_BASE_BUFFER_QUEUE_H_ |
Joachim Bauch | 6f2ef74 | 2015-05-21 17:52:01 +0200 | [diff] [blame] | 13 | |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 14 | #include <stddef.h> |
Jonas Olsson | a4d8737 | 2019-07-05 19:08:33 +0200 | [diff] [blame] | 15 | |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 16 | #include <deque> |
| 17 | #include <vector> |
Joachim Bauch | 6f2ef74 | 2015-05-21 17:52:01 +0200 | [diff] [blame] | 18 | |
Artem Titov | d15a575 | 2021-02-10 14:31:24 +0100 | [diff] [blame] | 19 | #include "api/sequence_checker.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 20 | #include "rtc_base/buffer.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 21 | #include "rtc_base/constructor_magic.h" |
Mirko Bonadei | 20e4c80 | 2020-11-23 11:07:42 +0100 | [diff] [blame] | 22 | #include "rtc_base/system/no_unique_address.h" |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 23 | #include "rtc_base/thread_annotations.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 24 | |
| 25 | namespace rtc { |
| 26 | |
Tomas Gunnarsson | b6bc09b | 2020-09-29 13:04:01 +0200 | [diff] [blame] | 27 | class BufferQueue final { |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 28 | public: |
| 29 | // Creates a buffer queue with a given capacity and default buffer size. |
| 30 | BufferQueue(size_t capacity, size_t default_size); |
Tomas Gunnarsson | b6bc09b | 2020-09-29 13:04:01 +0200 | [diff] [blame] | 31 | ~BufferQueue(); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 32 | |
| 33 | // Return number of queued buffers. |
| 34 | size_t size() const; |
| 35 | |
Artem Titov | 96e3b99 | 2021-07-26 16:03:14 +0200 | [diff] [blame] | 36 | // Clear the BufferQueue by moving all Buffers from `queue_` to `free_list_`. |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 37 | void Clear(); |
| 38 | |
| 39 | // ReadFront will only read one buffer at a time and will truncate buffers |
| 40 | // that don't fit in the passed memory. |
| 41 | // Returns true unless no data could be returned. |
| 42 | bool ReadFront(void* data, size_t bytes, size_t* bytes_read); |
| 43 | |
| 44 | // WriteBack always writes either the complete memory or nothing. |
| 45 | // Returns true unless no data could be written. |
| 46 | bool WriteBack(const void* data, size_t bytes, size_t* bytes_written); |
| 47 | |
Tomas Gunnarsson | b6bc09b | 2020-09-29 13:04:01 +0200 | [diff] [blame] | 48 | bool is_writable() const { |
| 49 | RTC_DCHECK_RUN_ON(&sequence_checker_); |
| 50 | return queue_.size() < capacity_; |
| 51 | } |
| 52 | |
| 53 | bool is_readable() const { |
| 54 | RTC_DCHECK_RUN_ON(&sequence_checker_); |
| 55 | return !queue_.empty(); |
| 56 | } |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 57 | |
| 58 | private: |
Mirko Bonadei | 20e4c80 | 2020-11-23 11:07:42 +0100 | [diff] [blame] | 59 | RTC_NO_UNIQUE_ADDRESS webrtc::SequenceChecker sequence_checker_; |
Tomas Gunnarsson | b6bc09b | 2020-09-29 13:04:01 +0200 | [diff] [blame] | 60 | const size_t capacity_; |
| 61 | const size_t default_size_; |
| 62 | std::deque<Buffer*> queue_ RTC_GUARDED_BY(sequence_checker_); |
| 63 | std::vector<Buffer*> free_list_ RTC_GUARDED_BY(sequence_checker_); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 64 | |
| 65 | RTC_DISALLOW_COPY_AND_ASSIGN(BufferQueue); |
| 66 | }; |
| 67 | |
| 68 | } // namespace rtc |
Joachim Bauch | 6f2ef74 | 2015-05-21 17:52:01 +0200 | [diff] [blame] | 69 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 70 | #endif // RTC_BASE_BUFFER_QUEUE_H_ |