-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core/raw/buf): Reduce one allocation by
Arc::from_iter
(#4440)
* feat(core/raw/buf): Reduce one allocation by `Arc::from_iter` Signed-off-by: Xuanwo <[email protected]> * Format code Signed-off-by: Xuanwo <[email protected]> --------- Signed-off-by: Xuanwo <[email protected]>
- Loading branch information
Showing
4 changed files
with
128 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
use crate::raw::oio::Buffer; | ||
use bytes::{Buf, Bytes}; | ||
use std::collections::VecDeque; | ||
use std::sync::Arc; | ||
|
||
/// QueueBuf is a queue of [`Buffer`]. | ||
/// | ||
/// It's designed to allow storing multiple buffers without copying underlying bytes and consume them | ||
/// in order. | ||
/// | ||
/// QueueBuf mainly provides the following operations: | ||
/// | ||
/// - `push`: Push a new buffer in the queue. | ||
/// - `collect`: Collect all buffer in the queue as a new [`Buffer`] | ||
/// - `advance`: Advance the queue by `cnt` bytes. | ||
#[derive(Default)] | ||
pub struct QueueBuf(VecDeque<Buffer>); | ||
|
||
impl QueueBuf { | ||
/// Create a new buffer queue. | ||
#[inline] | ||
pub fn new() -> Self { | ||
Self::default() | ||
} | ||
|
||
/// Push new [`Buffer`] into the queue. | ||
#[inline] | ||
pub fn push(&mut self, buf: Buffer) { | ||
self.0.push_back(buf); | ||
} | ||
|
||
/// Total bytes size inside the buffer queue. | ||
#[inline] | ||
pub fn len(&self) -> usize { | ||
self.0.iter().map(|b| b.len()).sum() | ||
} | ||
|
||
/// Is the buffer queue empty. | ||
#[inline] | ||
pub fn is_empty(&self) -> bool { | ||
self.len() == 0 | ||
} | ||
|
||
/// Build a new [`Buffer`] from the queue. | ||
/// | ||
/// If the queue is empty, it will return an empty buffer. Otherwise, it will iterate over all | ||
/// buffers and collect them into a new buffer. | ||
/// | ||
/// # Notes | ||
/// | ||
/// There are allocation overheads when collecting multiple buffers into a new buffer. But | ||
/// most of them should be acceptable since we can expect the item length of buffers are slower | ||
/// than 4k. | ||
#[inline] | ||
pub fn collect(&self) -> Buffer { | ||
if self.0.is_empty() { | ||
Buffer::new() | ||
} else if self.0.len() == 1 { | ||
self.0.clone().pop_front().unwrap() | ||
} else { | ||
let iter = self.0.clone().into_iter().flatten(); | ||
// This operation only needs one allocation from iterator to `Arc<[Bytes]>` instead | ||
// of iterator -> `Vec<Bytes>` -> `Arc<[Bytes]>`. | ||
let bs: Arc<[Bytes]> = Arc::from_iter(iter); | ||
Buffer::from(bs) | ||
} | ||
} | ||
|
||
/// Advance the buffer queue by `cnt` bytes. | ||
#[inline] | ||
pub fn advance(&mut self, cnt: usize) { | ||
assert!(cnt <= self.len(), "cannot advance past {cnt} bytes"); | ||
|
||
let mut new_cnt = cnt; | ||
while new_cnt > 0 { | ||
let buf = self.0.front_mut().expect("buffer must be valid"); | ||
if new_cnt < buf.remaining() { | ||
buf.advance(new_cnt); | ||
break; | ||
} else { | ||
new_cnt -= buf.remaining(); | ||
self.0.pop_front(); | ||
} | ||
} | ||
} | ||
|
||
/// Clear the buffer queue. | ||
#[inline] | ||
pub fn clear(&mut self) { | ||
self.0.clear() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters