123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- use crate::{connection::Connection, error::Error, value::Value};
- use bytes::Bytes;
- use std::collections::HashSet;
- async fn compare_sets<F1>(conn: &Connection, keys: &[Bytes], op: F1) -> Result<Value, Error>
- where
- F1: Fn(&mut HashSet<Bytes>, &HashSet<Bytes>) -> bool,
- {
- conn.db().get_map_or(
- &keys[0],
- |v| match v {
- Value::Set(x) => {
- #[allow(clippy::mutable_key_type)]
- let mut all_entries = x.read().clone();
- for key in keys[1..].iter() {
- let mut do_break = false;
- let _ = conn.db().get_map_or(
- key,
- |v| match v {
- Value::Set(x) => {
- if !op(&mut all_entries, &x.read()) {
- do_break = true;
- }
- Ok(Value::Null)
- }
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Null),
- )?;
- if do_break {
- break;
- }
- }
- Ok(all_entries
- .iter()
- .map(|entry| Value::Blob(entry.clone()))
- .collect::<Vec<Value>>()
- .into())
- }
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Array(vec![])),
- )
- }
- pub async fn sadd(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::Set(x) => {
- let mut x = x.write();
- let mut len = 0;
- for val in (&args[2..]).iter() {
- if x.insert(val.clone()) {
- len += 1;
- }
- }
- Ok(len.into())
- }
- _ => Err(Error::WrongType),
- },
- || {
- #[allow(clippy::mutable_key_type)]
- let mut x = HashSet::new();
- let mut len = 0;
- for val in (&args[2..]).iter() {
- if x.insert(val.clone()) {
- len += 1;
- }
- }
- conn.db().set(&args[1], x.into(), None);
- Ok(len.into())
- },
- )
- }
- pub async fn scard(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::Set(x) => Ok((x.read().len() as i64).into()),
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn sdiff(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- compare_sets(conn, &args[1..], |all_entries, elements| {
- for element in elements.iter() {
- if all_entries.contains(element) {
- all_entries.remove(element);
- }
- }
- true
- })
- .await
- }
- pub async fn sdiffstore(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- if let Value::Array(values) = sdiff(conn, &args[1..]).await? {
- #[allow(clippy::mutable_key_type)]
- let mut x = HashSet::new();
- let mut len = 0;
- for val in values.iter() {
- if let Value::Blob(blob) = val {
- if x.insert(blob.clone()) {
- len += 1;
- }
- }
- }
- conn.db().set(&args[1], x.into(), None);
- Ok(len.into())
- } else {
- Ok(0.into())
- }
- }
- pub async fn sinter(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- compare_sets(conn, &args[1..], |all_entries, elements| {
- all_entries.retain(|element| elements.contains(element));
- for element in elements.iter() {
- if !all_entries.contains(element) {
- all_entries.remove(element);
- }
- }
- !all_entries.is_empty()
- })
- .await
- }
- pub async fn sintercard(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- if let Ok(Value::Array(x)) = sinter(conn, args).await {
- Ok((x.len() as i64).into())
- } else {
- Ok(0.into())
- }
- }
- pub async fn sinterstore(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- if let Value::Array(values) = sinter(conn, &args[1..]).await? {
- #[allow(clippy::mutable_key_type)]
- let mut x = HashSet::new();
- let mut len = 0;
- for val in values.iter() {
- if let Value::Blob(blob) = val {
- if x.insert(blob.clone()) {
- len += 1;
- }
- }
- }
- conn.db().set(&args[1], x.into(), None);
- Ok(len.into())
- } else {
- Ok(0.into())
- }
- }
- pub async fn sismember(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::Set(x) => {
- if x.read().contains(&args[2]) {
- Ok(1.into())
- } else {
- Ok(0.into())
- }
- }
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- pub async fn smembers(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::Set(x) => Ok(x
- .read()
- .iter()
- .map(|x| Value::Blob(x.clone()))
- .collect::<Vec<Value>>()
- .into()),
- _ => Err(Error::WrongType),
- },
- || Ok(Value::Array(vec![])),
- )
- }
- pub async fn smismember(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
- conn.db().get_map_or(
- &args[1],
- |v| match v {
- Value::Set(x) => {
- let x = x.read();
- Ok((&args[2..])
- .iter()
- .map(|member| {
- if x.contains(member) {
- 1
- } else {
- 0
- }
- })
- .collect::<Vec<i32>>()
- .into())
- }
- _ => Err(Error::WrongType),
- },
- || Ok(0.into()),
- )
- }
- #[cfg(test)]
- mod test {
- use crate::{
- cmd::test::{create_connection, run_command},
- error::Error,
- value::Value,
- };
- #[tokio::test]
- async fn test_set_wrong_type() {
- let c = create_connection();
- let _ = run_command(&c, &["set", "foo", "1"]).await;
- assert_eq!(
- Err(Error::WrongType),
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "5"]).await,
- );
- }
- #[tokio::test]
- async fn sadd() {
- let c = create_connection();
- assert_eq!(
- Ok(Value::Integer(5)),
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "5"]).await,
- );
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "6"]).await,
- );
- }
- #[tokio::test]
- async fn scard() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "5"]).await,
- run_command(&c, &["scard", "foo"]).await
- );
- }
- #[tokio::test]
- async fn sdiff() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
- run_command(&c, &["scard", "1"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "2", "c"]).await,
- run_command(&c, &["scard", "2"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "3", "a", "c", "e"]).await,
- run_command(&c, &["scard", "3"]).await
- );
- match run_command(&c, &["sdiff", "1", "2", "3"]).await {
- Ok(Value::Array(v)) => {
- assert_eq!(2, v.len());
- if v[0] == Value::Blob("b".into()) {
- assert_eq!(v[1], Value::Blob("d".into()));
- } else {
- assert_eq!(v[1], Value::Blob("b".into()));
- }
- }
- _ => unreachable!(),
- };
- }
- #[tokio::test]
- async fn sdiffstore() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
- run_command(&c, &["scard", "1"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "2", "c"]).await,
- run_command(&c, &["scard", "2"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "3", "a", "c", "e"]).await,
- run_command(&c, &["scard", "3"]).await
- );
- assert_eq!(
- Ok(Value::Integer(2)),
- run_command(&c, &["sdiffstore", "4", "1", "2", "3"]).await
- );
- match run_command(&c, &["smembers", "4"]).await {
- Ok(Value::Array(v)) => {
- assert_eq!(2, v.len());
- if v[0] == Value::Blob("b".into()) {
- assert_eq!(v[1], Value::Blob("d".into()));
- } else {
- assert_eq!(v[1], Value::Blob("b".into()));
- }
- }
- _ => unreachable!(),
- };
- }
- #[tokio::test]
- async fn sinter() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
- run_command(&c, &["scard", "1"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "2", "c", "x"]).await,
- run_command(&c, &["scard", "2"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "3", "a", "c", "e"]).await,
- run_command(&c, &["scard", "3"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("c".into())])),
- run_command(&c, &["sinter", "1", "2", "3"]).await
- );
- }
- #[tokio::test]
- async fn sintercard() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
- run_command(&c, &["scard", "1"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "2", "c", "x"]).await,
- run_command(&c, &["scard", "2"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "3", "a", "c", "e"]).await,
- run_command(&c, &["scard", "3"]).await
- );
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["sintercard", "1", "2", "3"]).await
- );
- }
- #[tokio::test]
- async fn sinterstore() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
- run_command(&c, &["scard", "1"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "2", "c", "x"]).await,
- run_command(&c, &["scard", "2"]).await
- );
- assert_eq!(
- run_command(&c, &["sadd", "3", "a", "c", "e"]).await,
- run_command(&c, &["scard", "3"]).await
- );
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["sinterstore", "foo", "1", "2", "3"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![Value::Blob("c".into())])),
- run_command(&c, &["smembers", "foo"]).await
- );
- }
- #[tokio::test]
- async fn sismember() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "5"]).await,
- run_command(&c, &["scard", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Integer(1)),
- run_command(&c, &["sismember", "foo", "5"]).await
- );
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["sismember", "foo", "6"]).await
- );
- assert_eq!(
- Ok(Value::Integer(0)),
- run_command(&c, &["sismember", "foobar", "5"]).await
- );
- }
- #[tokio::test]
- async fn smismember() {
- let c = create_connection();
- assert_eq!(
- run_command(&c, &["sadd", "foo", "1", "2", "3", "4", "5", "5"]).await,
- run_command(&c, &["scard", "foo"]).await
- );
- assert_eq!(
- Ok(Value::Array(vec![
- Value::Integer(1),
- Value::Integer(0),
- Value::Integer(1),
- ])),
- run_command(&c, &["smismember", "foo", "5", "6", "3"]).await
- );
- }
- }
|