use crate::{AsyncBaseDistributedObject, AsyncRFairLock, AsyncRLock, AsyncRLockable, AsyncRObject, AsyncRObjectBase, AsyncRedisConnectionManager, RedissonResult};
use async_trait::async_trait;
use std::sync::Arc;
use std::time::Duration;
pub struct AsyncRBitSet {
base: AsyncBaseDistributedObject,
}
impl AsyncRBitSet {
pub fn new(connection_manager: Arc<AsyncRedisConnectionManager>, name: String) -> Self {
Self {
base: AsyncBaseDistributedObject::new(connection_manager, name),
}
}
pub async fn set(&self, bit_index: i64) -> RedissonResult<bool> {
let mut conn = self.base.get_connection().await?;
let previous: i32 = conn
.execute_command(&mut redis::cmd("SETBIT").arg(self.base.get_full_key()).arg(bit_index).arg(1))
.await?;
Ok(previous > 0)
}
pub async fn clear(&self, bit_index: i64) -> RedissonResult<bool> {
let mut conn = self.base.get_connection().await?;
let previous: i32 = conn
.execute_command(&mut redis::cmd("SETBIT").arg(self.base.get_full_key()).arg(bit_index).arg(0))
.await?;
Ok(previous > 0)
}
pub async fn get(&self, bit_index: i64) -> RedissonResult<bool> {
let mut conn = self.base.get_connection().await?;
let value: i32 = conn
.execute_command(&mut redis::cmd("GETBIT").arg(self.base.get_full_key()).arg(bit_index))
.await?;
Ok(value > 0)
}
pub async fn cardinality(&self) -> RedissonResult<u64> {
let mut conn = self.base.get_connection().await?;
let count: u64 = conn
.execute_command(&mut redis::cmd("BITCOUNT").arg(self.base.get_full_key()))
.await?;
Ok(count)
}
pub async fn and(&self, other_set: &AsyncRBitSet) -> RedissonResult<()> {
let mut conn = self.base.get_connection().await?;
conn.execute_command::<()>(
&mut redis::cmd("BITOP")
.arg("AND")
.arg(self.base.get_full_key())
.arg(self.base.get_full_key())
.arg(other_set.base.get_full_key())
).await?;
Ok(())
}
pub async fn or(&self, other_set: &AsyncRBitSet) -> RedissonResult<()> {
let mut conn = self.base.get_connection().await?;
conn.execute_command::<()>(
&mut redis::cmd("BITOP")
.arg("OR")
.arg(self.base.get_full_key())
.arg(self.base.get_full_key())
.arg(other_set.base.get_full_key())
).await?;
Ok(())
}
pub async fn xor(&self, other_set: &AsyncRBitSet) -> RedissonResult<()> {
let mut conn = self.base.get_connection().await?;
conn.execute_command::<()>(
&mut redis::cmd("BITOP")
.arg("XOR")
.arg(self.base.get_full_key())
.arg(self.base.get_full_key())
.arg(other_set.base.get_full_key())
).await?;
Ok(())
}
}
#[async_trait]
impl AsyncRObject for AsyncRBitSet {
async fn delete(&self) -> RedissonResult<bool> {
self.base.delete().await
}
async fn rename(&self, new_name: &str) -> RedissonResult<()> {
self.base.rename(new_name).await
}
async fn is_exists(&self) -> RedissonResult<bool> {
self.base.is_exists().await
}
async fn move_to_db(&self, db_index: i32) -> RedissonResult<bool> {
self.base.move_to_db(db_index).await
}
async fn get_expire_time(&self) -> RedissonResult<Option<Duration>> {
self.base.get_expire_time().await
}
async fn expire(&self, duration: Duration) -> RedissonResult<bool> {
self.base.expire(duration).await
}
async fn expire_at(&self, timestamp: i64) -> RedissonResult<bool> {
self.base.expire_at(timestamp).await
}
async fn clear_expire(&self) -> RedissonResult<bool> {
self.base.clear_expire().await
}
}
#[async_trait]
impl AsyncRLockable for AsyncRBitSet {
fn get_lock(&self) -> AsyncRLock {
AsyncRLock::new(
self.base.connection_manager(),
format!("{}:lock", self.base.get_full_key()),
Duration::from_secs(30)
)
}
fn get_fair_lock(&self) -> AsyncRFairLock {
AsyncRFairLock::new(
self.base.connection_manager(),
format!("{}:fair_lock", self.base.get_full_key()),
Duration::from_secs(30)
)
}
async fn lock(&self) -> RedissonResult<()> {
self.get_lock().lock().await
}
async fn try_lock(&self) -> RedissonResult<bool> {
self.get_lock().try_lock().await
}
async fn try_lock_timeout(&self, wait_time: Duration) -> RedissonResult<bool> {
self.get_lock().try_lock_with_timeout(wait_time).await
}
async fn lock_lease(&self, lease_time: Duration) -> RedissonResult<()> {
self.get_lock().lock_with_lease_time(lease_time).await
}
async fn unlock(&self) -> RedissonResult<bool> {
self.get_lock().unlock().await
}
async fn force_unlock(&self) -> RedissonResult<bool> {
self.get_lock().force_unlock().await
}
async fn is_locked(&self) -> RedissonResult<bool> {
self.get_lock().is_locked().await
}
async fn is_held_by_current_thread(&self) -> bool {
self.get_lock().is_held_by_current_thread().await
}
}