1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use crate::storage::kv::{Modify, WriteData};
use crate::storage::lock_manager::LockManager;
use crate::storage::raw::ttl::convert_to_expire_ts;
use crate::storage::txn::commands::{
Command, CommandExt, ResponsePolicy, TypedCommand, WriteCommand, WriteContext, WriteResult,
};
use crate::storage::txn::Result;
use crate::storage::{ProcessResult, Snapshot};
use engine_traits::CfName;
use txn_types::Mutation;
command! {
RawAtomicStore:
cmd_ty => (),
display => "kv::command::atomic_store {:?}", (ctx),
content => {
cf: CfName,
mutations: Vec<Mutation>,
ttl: Option<u64>,
}
}
impl CommandExt for RawAtomicStore {
ctx!();
tag!(raw_atomic_store);
gen_lock!(mutations: multiple(|x| x.key()));
fn write_bytes(&self) -> usize {
let mut bytes = 0;
for m in &self.mutations {
match *m {
Mutation::Put((ref key, ref value)) | Mutation::Insert((ref key, ref value)) => {
bytes += key.as_encoded().len();
bytes += value.len();
}
Mutation::Delete(ref key) | Mutation::Lock(ref key) => {
bytes += key.as_encoded().len();
}
Mutation::CheckNotExists(_) => (),
}
}
bytes
}
}
impl<S: Snapshot, L: LockManager> WriteCommand<S, L> for RawAtomicStore {
fn process_write(self, _: S, _: WriteContext<'_, L>) -> Result<WriteResult> {
let mut data = vec![];
let rows = self.mutations.len();
let (cf, mutations, ctx) = (self.cf, self.mutations, self.ctx);
let expire_ts = self.ttl.map(convert_to_expire_ts);
for m in mutations {
match m {
Mutation::Put((key, value)) => {
let mut m = Modify::Put(cf, key, value);
if let Some(ts) = expire_ts {
m.with_ttl(ts);
}
data.push(m);
}
Mutation::Delete(key) => {
data.push(Modify::Delete(cf, key));
}
_ => panic!("Not support mutation type"),
}
}
let to_be_write = WriteData::from_modifies(data);
Ok(WriteResult {
ctx,
to_be_write,
rows,
pr: ProcessResult::Res,
lock_info: None,
lock_guards: vec![],
response_policy: ResponsePolicy::OnApplied,
})
}
}