transaction.rs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. use crate::{
  2. connection::{Connection, ConnectionStatus},
  3. error::Error,
  4. value::Value,
  5. };
  6. use bytes::Bytes;
  7. pub async fn discard(conn: &Connection, _: &[Bytes]) -> Result<Value, Error> {
  8. conn.stop_transaction()
  9. }
  10. pub async fn multi(conn: &Connection, _: &[Bytes]) -> Result<Value, Error> {
  11. conn.start_transaction()
  12. }
  13. pub async fn exec(conn: &Connection, _: &[Bytes]) -> Result<Value, Error> {
  14. if conn.status() != ConnectionStatus::Multi {
  15. return Err(Error::NotInTx);
  16. }
  17. if conn.did_keys_change() {
  18. let _ = conn.stop_transaction();
  19. return Ok(Value::Null);
  20. }
  21. let db = conn.db();
  22. let locked_keys = conn.get_tx_keys();
  23. db.lock_keys(&locked_keys);
  24. let mut results = vec![];
  25. if let Some(commands) = conn.get_queue_commands() {
  26. for args in commands.iter() {
  27. let result = match conn.all_connections().get_dispatcher().get_handler(args) {
  28. Ok(handler) => handler
  29. .execute(conn, args)
  30. .await
  31. .unwrap_or_else(|x| x.into()),
  32. Err(err) => err.into(),
  33. };
  34. results.push(result);
  35. }
  36. }
  37. db.unlock_keys(&locked_keys);
  38. let _ = conn.stop_transaction();
  39. Ok(results.into())
  40. }
  41. pub async fn watch(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
  42. conn.watch_key(
  43. &(&args[1..])
  44. .iter()
  45. .map(|key| (key, conn.db().get_version(key)))
  46. .collect::<Vec<(&Bytes, u128)>>(),
  47. );
  48. Ok(Value::Ok)
  49. }
  50. pub async fn unwatch(conn: &Connection, _: &[Bytes]) -> Result<Value, Error> {
  51. conn.discard_watched_keys();
  52. Ok(Value::Ok)
  53. }
  54. #[cfg(test)]
  55. mod test {
  56. use crate::dispatcher::Dispatcher;
  57. use crate::{
  58. cmd::test::{create_connection, run_command},
  59. error::Error,
  60. value::Value,
  61. };
  62. use bytes::Bytes;
  63. #[tokio::test]
  64. async fn test_exec() {
  65. let c = create_connection();
  66. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  67. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  68. assert_eq!(
  69. Ok(Value::Queued),
  70. run_command(&c, &["set", "foo", "foo"]).await
  71. );
  72. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  73. assert_eq!(
  74. Ok(Value::Array(vec![
  75. Value::Null,
  76. Value::Ok,
  77. Value::Blob("foo".into()),
  78. ])),
  79. run_command(&c, &["exec"]).await
  80. );
  81. }
  82. #[tokio::test]
  83. async fn test_nested_multi() {
  84. let c = create_connection();
  85. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  86. assert_eq!(Err(Error::NestedTx), run_command(&c, &["multi"]).await);
  87. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  88. assert_eq!(
  89. Ok(Value::Queued),
  90. run_command(&c, &["set", "foo", "foo"]).await
  91. );
  92. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  93. assert_eq!(
  94. Ok(Value::Array(vec![
  95. Value::Null,
  96. Value::Ok,
  97. Value::Blob("foo".into()),
  98. ])),
  99. run_command(&c, &["exec"]).await
  100. );
  101. }
  102. #[tokio::test]
  103. async fn test_discard() {
  104. let c = create_connection();
  105. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  106. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  107. assert_eq!(
  108. Ok(Value::Queued),
  109. run_command(&c, &["set", "foo", "foo"]).await
  110. );
  111. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  112. assert_eq!(Ok(Value::Ok), run_command(&c, &["discard"]).await);
  113. assert_eq!(Err(Error::NotInTx), run_command(&c, &["exec"]).await);
  114. }
  115. #[tokio::test]
  116. async fn test_exec_watch_changes() {
  117. let c = create_connection();
  118. assert_eq!(
  119. Ok(Value::Ok),
  120. run_command(&c, &["watch", "foo", "bar"]).await
  121. );
  122. assert_eq!(Ok(Value::Ok), run_command(&c, &["set", "foo", "bar"]).await);
  123. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  124. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  125. assert_eq!(
  126. Ok(Value::Queued),
  127. run_command(&c, &["set", "foo", "foo"]).await
  128. );
  129. assert_eq!(Ok(Value::Queued), run_command(&c, &["get", "foo"]).await);
  130. assert_eq!(Ok(Value::Null), run_command(&c, &["exec"]).await);
  131. }
  132. #[test]
  133. fn test_extract_keys() {
  134. assert_eq!(vec!["foo"], get_keys(&["get", "foo"]));
  135. assert_eq!(vec!["foo"], get_keys(&["set", "foo", "bar"]));
  136. assert_eq!(vec!["foo", "bar"], get_keys(&["mget", "foo", "bar"]));
  137. assert_eq!(
  138. vec!["key", "key1", "key2"],
  139. get_keys(&["SINTERSTORE", "key", "key1", "key2"])
  140. );
  141. }
  142. #[tokio::test]
  143. async fn test_exec_brpop_not_waiting() {
  144. let c = create_connection();
  145. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  146. assert_eq!(
  147. Ok(Value::Queued),
  148. run_command(&c, &["brpop", "foo", "1000"]).await
  149. );
  150. assert_eq!(
  151. Ok(Value::Array(vec![Value::Null,])),
  152. run_command(&c, &["exec"]).await
  153. );
  154. }
  155. #[tokio::test]
  156. async fn test_exec_blpop_not_waiting() {
  157. let c = create_connection();
  158. assert_eq!(Ok(Value::Ok), run_command(&c, &["multi"]).await);
  159. assert_eq!(
  160. Ok(Value::Queued),
  161. run_command(&c, &["blpop", "foo", "1000"]).await
  162. );
  163. assert_eq!(
  164. Ok(Value::Array(vec![Value::Null,])),
  165. run_command(&c, &["exec"]).await
  166. );
  167. }
  168. fn get_keys(args: &[&str]) -> Vec<Bytes> {
  169. let args: Vec<Bytes> = args.iter().map(|s| Bytes::from(s.to_string())).collect();
  170. let d = Dispatcher::new();
  171. if let Ok(cmd) = d.get_handler(&args) {
  172. cmd.get_keys(&args).iter().map(|k| (*k).clone()).collect()
  173. } else {
  174. vec![]
  175. }
  176. }
  177. }