Opool is a Rust library that provides a highly optimized object pool implementation. It is designed to be efficient and flexible, allowing you to manage the lifecycle of your objects and reuse them to reduce allocation overhead. Opool supports no_std
with alloc available.
PoolAllocator
] Trait: This trait defines the interface for a pool allocator. It includes methods for allocating, resetting, and validating objects. The resetting and validating functions are optional.Pool
] Struct: This struct represents an object pool. It uses an ArrayQueue for storage and a PoolAllocator for object management.LocalPool
] Struct: This struct represents a thread-local object pool, restricted to use within the current thread. It utilizes a VecDeque for storage and a PoolAllocator for object management.RefGuard
], [RcGuard
], [RefLocalGuard
] and [RcLocalGuard
] Structs: These structs are smart pointers that automatically return the object to the pool when they are dropped. They also provide methods for accessing the underlying object.First, define your allocator by implementing the [PoolAllocator
] trait. This involves providing a [PoolAllocator::allocate
] method to create new objects and optionally a [PoolAllocator::reset
] method to reset objects to their initial state and a [PoolAllocator::is_valid
] method to check if an object is still valid for pushing back into the pool.
Then, create a [Pool
] or [LocalPool
] with your allocator. You can use the new
method to create an empty pool or the new_prefilled
method to create a pool that is initially filled with a certain number of objects.
To get an object from the pool, use the get
method. This will return a RefGuard
or RcGuard
depending on whether you called get
or get_rc
. These guards automatically return the object to the pool when they are dropped.
To use get_rc
you need to convert the pool to reference counted flavor by calling to_rc
on it.
Here is an example:
```rust use opool::{Pool, PoolAllocator}; struct MyAllocator;
const BUFSIZE: usize = 1024 * 8;
impl PoolAllocator
/// OPTIONAL METHODS:
#[inline]
fn reset(&self, _obj: &mut Vec<u8>) {
// Optionally you can clear or zero object fields here
}
#[inline]
fn is_valid(&self, obj: &Vec<u8>) -> bool {
// you can optionally is_valid if object is good to be pushed back to the pool
obj.capacity() == BUF_SIZE
}
}
let pool = Pool::new(64, MyAllocator); let obj = pool.get(); // Use the object, and it will be automatically recycled after its lifetime ends.
```
Add this to your Cargo.toml
:
toml
[dependencies]
opool = "0.1"
Opool is licensed under the MIT license. Please see the LICENSE
file for more details.