|
@@ -1,14 +1,19 @@
|
|
|
use crate::{connection::Connection, error::Error, value::Value};
|
|
|
use bytes::Bytes;
|
|
|
-use std::convert::TryInto;
|
|
|
+use std::{convert::TryInto, ops::Neg};
|
|
|
+
|
|
|
+pub fn incr(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
+ conn.db().incr(&args[1], 1)
|
|
|
+}
|
|
|
|
|
|
pub fn incr_by(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
let by: i64 = (&Value::Blob(args[2].to_owned())).try_into()?;
|
|
|
conn.db().incr(&args[1], by)
|
|
|
}
|
|
|
|
|
|
-pub fn incr(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
- conn.db().incr(&args[1], 1)
|
|
|
+pub fn incr_by_float(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
+ let by: f64 = (&Value::Blob(args[2].to_owned())).try_into()?;
|
|
|
+ conn.db().incr(&args[1], by)
|
|
|
}
|
|
|
|
|
|
pub fn decr(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
@@ -17,7 +22,7 @@ pub fn decr(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
|
|
|
pub fn decr_by(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
let by: i64 = (&Value::Blob(args[2].to_owned())).try_into()?;
|
|
|
- conn.db().incr(&args[1], -1 * by)
|
|
|
+ conn.db().incr(&args[1], by.neg())
|
|
|
}
|
|
|
|
|
|
pub fn get(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
@@ -28,15 +33,23 @@ pub fn getdel(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
Ok(conn.db().getdel(&args[1]))
|
|
|
}
|
|
|
|
|
|
+pub fn getset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
+ Ok(conn.db().getset(&args[1], &Value::Blob(args[2].to_owned())))
|
|
|
+}
|
|
|
+
|
|
|
pub fn mget(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
Ok(conn.db().get_multi(&args[1..]))
|
|
|
}
|
|
|
|
|
|
-
|
|
|
pub fn set(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
Ok(conn.db().set(&args[1], &Value::Blob(args[2].to_owned())))
|
|
|
}
|
|
|
|
|
|
-pub fn getset(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
- Ok(conn.db().getset(&args[1], &Value::Blob(args[2].to_owned())))
|
|
|
+pub fn strlen(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
|
|
|
+ match conn.db().get(&args[1]) {
|
|
|
+ Value::Blob(x) => Ok((x.len() as i64).into()),
|
|
|
+ Value::String(x) => Ok((x.len() as i64).into()),
|
|
|
+ Value::Null => Ok(0_i64.into()),
|
|
|
+ _ => Err(Error::WrongType),
|
|
|
+ }
|
|
|
}
|