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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
mod cache;
mod checksum;
pub mod dag;
mod endpoint;
mod error;
mod interceptors;
pub(crate) mod metrics;
pub mod readpool_impl;
mod statistics;
mod tracker;
pub use self::endpoint::Endpoint;
pub use self::error::{Error, Result};
pub use checksum::checksum_crc64_xor;
use crate::storage::mvcc::TimeStamp;
use crate::storage::Statistics;
use async_trait::async_trait;
use engine_rocks::PerfLevel;
use kvproto::{coprocessor as coppb, kvrpcpb};
use metrics::ReqTag;
use rand::prelude::*;
use tikv_util::deadline::Deadline;
use tikv_util::time::Duration;
use txn_types::TsSet;
pub const REQ_TYPE_DAG: i64 = 103;
pub const REQ_TYPE_ANALYZE: i64 = 104;
pub const REQ_TYPE_CHECKSUM: i64 = 105;
type HandlerStreamStepResult = Result<(Option<coppb::Response>, bool)>;
#[async_trait]
pub trait RequestHandler: Send {
async fn handle_request(&mut self) -> Result<coppb::Response> {
panic!("unary request is not supported for this handler");
}
fn handle_streaming_request(&mut self) -> HandlerStreamStepResult {
panic!("streaming request is not supported for this handler");
}
fn collect_scan_statistics(&mut self, _dest: &mut Statistics) {
}
fn into_boxed(self) -> Box<dyn RequestHandler>
where
Self: 'static + Sized,
{
Box::new(self)
}
}
type RequestHandlerBuilder<Snap> =
Box<dyn for<'a> FnOnce(Snap, &ReqContext) -> Result<Box<dyn RequestHandler>> + Send>;
#[derive(Debug, Clone)]
pub struct ReqContext {
pub tag: ReqTag,
pub context: kvrpcpb::Context,
pub ranges: Vec<coppb::KeyRange>,
pub deadline: Deadline,
pub peer: Option<String>,
pub is_desc_scan: Option<bool>,
pub txn_start_ts: TimeStamp,
pub bypass_locks: TsSet,
pub cache_match_version: Option<u64>,
pub lower_bound: Vec<u8>,
pub upper_bound: Vec<u8>,
pub perf_level: PerfLevel,
}
impl ReqContext {
pub fn new(
tag: ReqTag,
mut context: kvrpcpb::Context,
ranges: Vec<coppb::KeyRange>,
max_handle_duration: Duration,
peer: Option<String>,
is_desc_scan: Option<bool>,
txn_start_ts: TimeStamp,
cache_match_version: Option<u64>,
perf_level: PerfLevel,
) -> Self {
let deadline = Deadline::from_now(max_handle_duration);
let bypass_locks = TsSet::from_u64s(context.take_resolved_locks());
let lower_bound = match ranges.first().as_ref() {
Some(range) => range.start.clone(),
None => vec![],
};
let upper_bound = match ranges.last().as_ref() {
Some(range) => range.end.clone(),
None => vec![],
};
Self {
tag,
context,
deadline,
peer,
is_desc_scan,
txn_start_ts,
ranges,
bypass_locks,
cache_match_version,
lower_bound,
upper_bound,
perf_level,
}
}
#[cfg(test)]
pub fn default_for_test() -> Self {
Self::new(
ReqTag::test,
Default::default(),
Vec::new(),
Duration::from_secs(100),
None,
None,
TimeStamp::max(),
None,
PerfLevel::EnableCount,
)
}
pub fn build_task_id(&self) -> u64 {
const ID_SHIFT: u32 = 16;
const MASK: u64 = u64::max_value() >> ID_SHIFT;
const MAX_TS: u64 = u64::max_value();
let base = match self.txn_start_ts.into_inner() {
0 | MAX_TS => thread_rng().next_u64(),
start_ts => start_ts,
};
let task_id: u64 = self.context.get_task_id();
if task_id > 0 {
(task_id << (64 - ID_SHIFT)) | (base & MASK)
} else {
base
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_build_task_id() {
let mut ctx = ReqContext::default_for_test();
let start_ts: u64 = 0x05C6_1BFA_2648_324A;
ctx.txn_start_ts = start_ts.into();
ctx.context.set_task_id(1);
assert_eq!(ctx.build_task_id(), 0x0001_1BFA_2648_324A);
ctx.context.set_task_id(0);
assert_eq!(ctx.build_task_id(), start_ts);
}
}