Ver Fonte

Added support for `srem`.

Cesar Rodas há 3 anos atrás
pai
commit
74b1e31f45
2 ficheiros alterados com 57 adições e 0 exclusões
  1. 52 0
      src/cmd/set.rs
  2. 5 0
      src/dispatcher.rs

+ 52 - 0
src/cmd/set.rs

@@ -272,6 +272,28 @@ pub async fn srandmember(conn: &Connection, args: &[Bytes]) -> Result<Value, Err
     )
 }
 
+pub async fn srem(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
+    conn.db().get_map_or(
+        &args[1],
+        |v| match v {
+            Value::Set(x) => {
+                let mut set = x.write();
+                let mut i = 0;
+
+                for value in (&args[2..]).iter() {
+                    if set.remove(value) {
+                        i += 1;
+                    }
+                }
+
+                Ok(i.into())
+            }
+            _ => Err(Error::WrongType),
+        },
+        || Ok(0.into()),
+    )
+}
+
 pub async fn sunion(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
     compare_sets(conn, &args[1..], |all_entries, elements| {
         for element in elements.iter() {
@@ -556,6 +578,36 @@ mod test {
     }
 
     #[tokio::test]
+    async fn srem() {
+        let c = create_connection();
+
+        assert_eq!(
+            run_command(&c, &["sadd", "1", "a", "b", "c", "d"]).await,
+            run_command(&c, &["scard", "1"]).await
+        );
+
+        assert_eq!(
+            Ok(Value::Integer(1)),
+            run_command(&c, &["srem", "1", "b"]).await
+        );
+
+        assert_eq!(
+            Ok(Value::Integer(3)),
+            run_command(&c, &["scard", "1"]).await
+        );
+
+        assert_eq!(
+            Ok(Value::Integer(2)),
+            run_command(&c, &["srem", "1", "a", "b", "c"]).await
+        );
+
+        assert_eq!(
+            Ok(Value::Integer(1)),
+            run_command(&c, &["scard", "1"]).await
+        );
+    }
+
+    #[tokio::test]
     async fn sunion() {
         let c = create_connection();
 

+ 5 - 0
src/dispatcher.rs

@@ -83,6 +83,11 @@ dispatcher! {
             [""],
             -2,
         },
+        srem {
+            cmd::set::srem,
+            [""],
+            -3,
+        },
         sunion {
             cmd::set::sunion,
             [""],