kestrel-timer 0.2.2

High-performance async timer library based on Hierarchical Timing Wheel algorithm
Documentation
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
# Kestrel Timer


> 基于分层时间轮(Hierarchical Timing Wheel)算法的高性能异步定时器库

[![Rust](https://img.shields.io/badge/rust-1.70%2B-orange.svg)](https://www.rust-lang.org/)
[![Tokio](https://img.shields.io/badge/tokio-1.48-blue.svg)](https://tokio.rs/)
[![Crates.io](https://img.shields.io/crates/v/kestrel-timer.svg)](https://crates.io/crates/kestrel-timer)
[![Documentation](https://docs.rs/kestrel-timer/badge.svg)](https://docs.rs/kestrel-timer)
[![License](https://img.shields.io/crates/l/kestrel-timer.svg)](https://github.com/ShaoG-R/kestrel-timer#license)

## 📚 目录


- [项目概述]#项目概述
- [核心特性]#核心特性
- [快速开始]#快速开始
- [架构说明]#架构说明
- [使用示例]#使用示例
- [配置选项]#配置选项
- [性能基准]#性能基准
- [使用场景]#使用场景
- [许可证]#许可证

## 项目概述


`kestrel-timer` 是一个基于分层时间轮算法的高性能异步定时器库,专为 Rust 和 Tokio 设计。提供 O(1) 时间复杂度的定时器操作,轻松处理 10,000+ 并发定时器。

**核心优势**:
- 双层时间轮架构,自动分离短延迟和长延迟任务
- 相比传统堆实现,性能提升 2-12 倍
- 支持定时器推迟、批量操作、完成通知
- 生产就绪,经过严格测试

## 核心特性


### 🏗️ 分层时间轮架构


- **双层设计**:L0 层(高精度短延迟)+ L1 层(长延迟)自动分层
- **智能降级**:L1 层任务到期后自动降级到 L0 层执行
- **无轮次检查**:L0 层无需 rounds 判断,减少 90% 任务的检查开销

### ⚡ 高性能


- **O(1) 时间复杂度**:插入、删除、触发操作均为 O(1)
- **优化数据结构**`FxHashMap` + `parking_lot::Mutex`
- **位运算优化**:槽位数量为 2 的幂次方,快速取模
- **支持大规模**:轻松处理 10,000+ 并发定时器

### 🔄 完整功能


- ✅ 异步回调支持(基于 Tokio)
- ✅ 定时器推迟(保持或替换回调)
- ✅ 批量操作(调度、取消、推迟)
- ✅ 完成通知机制
- ✅ TimerService(Actor 模式管理)
- ✅ 线程安全

## 快速开始


### 安装


在 `Cargo.toml` 中添加:

```toml
[dependencies]
kestrel-timer = "0.2.0"
tokio = { version = "1.48", features = ["full"] }
```

### 基础使用


```rust
use kestrel_timer::{TimerWheel, CallbackWrapper, TimerTask, CompletionReceiver};
use std::time::Duration;

#[tokio::main]

async fn main() {
    // 创建定时器(使用默认配置)
    let timer = TimerWheel::with_defaults();
    
    // 创建任务 + 注册
    let callback = Some(CallbackWrapper::new(|| async {
        println!("定时器触发!");
    }));
    let task = TimerTask::new_oneshot(Duration::from_secs(1), callback);
    let handle = timer.register(task);
    
    // 等待完成
    let (rx, _handle) = handle.into_parts();
    match rx {
        CompletionReceiver::OneShot(receiver) => {
            receiver.wait().await;
        },
        _ => {}
    }
}
```

### 批量操作


```rust
use kestrel_timer::{TimerWheel, CallbackWrapper, TimerTask};
use std::time::Duration;

let timer = TimerWheel::with_defaults();

// 批量创建 + 注册
let tasks: Vec<_> = (0..100)
    .map(|i| {
        let delay = Duration::from_millis(100 + i * 10);
        let callback = Some(CallbackWrapper::new(move || async move {
            println!("定时器 {} 触发", i);
        }));
        TimerTask::new_oneshot(delay, callback)
    })
    .collect();

let batch_handle = timer.register_batch(tasks);

// 批量取消
batch_handle.cancel_all();
```

### 推迟定时器


```rust
use kestrel_timer::{TimerWheel, CallbackWrapper, TimerTask};
use std::time::Duration;

let timer = TimerWheel::with_defaults();

let callback = Some(CallbackWrapper::new(|| async {
    println!("原始回调");
}));
let task = TimerTask::new_oneshot(Duration::from_millis(50), callback);
let task_id = task.get_id();
let handle = timer.register(task);

// 推迟并保持原回调
timer.postpone(task_id, Duration::from_millis(150), None);

// 推迟并替换回调
let new_callback = Some(CallbackWrapper::new(|| async {
    println!("新回调");
}));
timer.postpone(task_id, Duration::from_millis(200), new_callback);
```

### TimerService 使用


```rust
use kestrel_timer::{TimerWheel, TimerService, TimerTask, CallbackWrapper, TaskNotification};
use kestrel_timer::config::ServiceConfig;
use std::time::Duration;

let timer = TimerWheel::with_defaults();
let mut service = timer.create_service(ServiceConfig::default());

// 批量调度
let tasks: Vec<_> = vec![
    TimerTask::new_oneshot(Duration::from_millis(100), Some(CallbackWrapper::new(|| async {}))),
    TimerTask::new_oneshot(Duration::from_millis(200), Some(CallbackWrapper::new(|| async {}))),
];
service.register_batch(tasks).unwrap();

// 接收超时通知
let mut timeout_rx = service.take_receiver().unwrap();
while let Some(notification) = timeout_rx.recv().await {
    match notification {
        TaskNotification::OneShot(task_id) => {
            println!("一次性任务 {:?} 完成", task_id);
        },
        TaskNotification::Periodic(task_id) => {
            println!("周期性任务 {:?} 被调用", task_id);
        },
    }
}

service.shutdown().await;
```

## 架构说明


### 分层时间轮设计


```
┌─────────────────────────────────────────────┐
│              L1 层(高层)                  │
│  槽位数:64 | Tick: 1s | 覆盖:64秒         │
│              ↓ 降级到 L0                    │
└─────────────────────────────────────────────┘
┌─────────────────────────────────────────────┐
│              L0 层(底层)                  │
│  槽位数:512 | Tick: 10ms | 覆盖:5.12秒    │
│              ▲ 当前指针                     │
└─────────────────────────────────────────────┘
```

**L0 层(底层 - 高精度)**:
- 槽位数:512(默认),Tick:10ms
- 覆盖范围:5.12 秒
- 处理 80-90% 的短延迟任务

**L1 层(高层 - 长时间)**:
- 槽位数:64(默认),Tick:1000ms
- 覆盖范围:64 秒
- 处理长延迟任务,支持 rounds 机制

**工作流程**:
1. 短延迟(< 5.12s)→ 直接插入 L0 层
2. 长延迟(≥ 5.12s)→ 插入 L1 层
3. L1 任务到期 → 自动降级到 L0 层
4. L0 任务到期 → 立即触发

### 性能优化


- **分层架构**:避免单层轮次检查,L0 层无需 rounds 判断
- **高效锁机制**`parking_lot::Mutex` 比标准 Mutex 更快
- **位运算优化**:槽位数为 2 的幂次方,使用 `& (n-1)` 快速取模
- **缓存优化**:预计算槽位掩码、tick 时长等常用值
- **批量优化**:减少锁竞争,智能处理小批量

## 使用示例


完整的 API 文档请访问 [docs.rs/kestrel-timer](https://docs.rs/kestrel-timer)

### 主要 API


**TimerTask**:
- `TimerTask::new_oneshot(delay, callback)` - 创建一次性任务
- `TimerTask::new_periodic(initial_delay, interval, callback, buffer_size)` - 创建周期性任务
- `get_id()` - 获取任务 ID
- `get_task_type()` - 获取任务类型
- `get_interval()` - 获取周期任务的间隔时间

**TimerWheel**:
- `TimerWheel::with_defaults()` - 使用默认配置创建
- `TimerWheel::new(config)` - 使用自定义配置创建
- `register(task)` - 注册任务
- `register_batch(tasks)` - 批量注册
- `cancel(task_id)` - 取消任务
- `cancel_batch(task_ids)` - 批量取消
- `postpone(task_id, delay, callback)` - 推迟任务
- `postpone_batch(updates)` - 批量推迟

**TimerHandle**:
- `cancel()` - 取消定时器
- `task_id()` - 获取任务 ID
- `into_parts()` - 获取完成通知接收器和句柄

**TimerService**:
- `register(task)` - 注册任务
- `register_batch(tasks)` - 批量注册
- `take_receiver()` - 获取超时通知接收器
- `cancel_task(task_id)` - 取消任务
- `cancel_batch(task_ids)` - 批量取消
- `postpone(task_id, delay, callback)` - 推迟任务
- `postpone_batch(updates)` - 批量推迟
- `shutdown()` - 关闭服务

## 配置选项


### 默认配置


```rust
let timer = TimerWheel::with_defaults();
// L0: 512 槽位 × 10ms = 5.12 秒
// L1: 64 槽位 × 1s = 64 秒
```

### 自定义配置


```rust
use kestrel_timer::WheelConfig;

let config = WheelConfig::builder()
    .l0_tick_duration(Duration::from_millis(10))  // L0 tick
    .l0_slot_count(512)                            // L0 槽位(必须是 2 的幂)
    .l1_tick_duration(Duration::from_secs(1))      // L1 tick
    .l1_slot_count(64)                             // L1 槽位(必须是 2 的幂)
    .build()?;
let timer = TimerWheel::new(config);
```

### 推荐配置


**高精度场景(网络超时)**:
```rust
let config = WheelConfig::builder()
    .l0_tick_duration(Duration::from_millis(5))
    .l0_slot_count(1024)
    .l1_tick_duration(Duration::from_millis(500))
    .l1_slot_count(64)
    .build()?;
```

**低精度场景(心跳检测)**:
```rust
let config = WheelConfig::builder()
    .l0_tick_duration(Duration::from_millis(100))
    .l0_slot_count(512)
    .l1_tick_duration(Duration::from_secs(10))
    .l1_slot_count(128)
    .build()?;
```

## 性能基准


### 运行基准测试


```bash
cargo bench
```

### 性能对比


与基于堆(BinaryHeap)的传统定时器实现相比:

| 操作 | 分层时间轮 | 堆实现 | 优势 |
|------|-----------|--------|------|
| 插入单个任务 | O(1) ~5μs | O(log n) ~10-20μs | 2-4x 更快 |
| 批量插入 1000 | ~2ms | ~15-25ms | 7-12x 更快 |
| 取消任务 | O(1) ~2μs | O(n) ~50-100μs | 25-50x 更快 |
| 推迟任务 | O(1) ~4μs | O(log n) ~15-30μs | 4-7x 更快 |

### 大规模测试


```bash
cargo test --test integration_test test_large_scale_timers
```

- ✅ 10,000 个并发定时器
- ✅ 创建时间 < 100ms
- ✅ 所有定时器正确触发

## 使用场景


### 1. 网络超时管理


```rust
use kestrel_timer::{TimerWheel, CallbackWrapper, TimerTask};
use std::time::Duration;

async fn handle_connection(timer: &TimerWheel, conn_id: u64) {
    let callback = Some(CallbackWrapper::new(move || async move {
        println!("连接 {} 超时", conn_id);
        close_connection(conn_id).await;
    }));
    let task = TimerTask::new_oneshot(Duration::from_secs(30), callback);
    let handle = timer.register(task);
    
    // 连接完成时取消超时
    // handle.cancel();
}
```

### 2. 心跳检测


```rust
use kestrel_timer::{TimerWheel, TimerTask, CallbackWrapper};
use kestrel_timer::config::ServiceConfig;
use std::time::Duration;

let timer = TimerWheel::with_defaults();
let mut service = timer.create_service(ServiceConfig::default());

for client_id in client_ids {
    let callback = Some(CallbackWrapper::new(move || async move {
        println!("客户端 {} 心跳超时", client_id);
    }));
    let task = TimerTask::new_oneshot(Duration::from_secs(30), callback);
    service.register(task).unwrap();
}
```

### 3. 缓存过期


```rust
use kestrel_timer::{TimerTask, CallbackWrapper};
use std::sync::Arc;
use std::time::Duration;

async fn set_cache(&self, key: String, value: String, ttl: Duration) {
    self.cache.lock().insert(key.clone(), value);
    
    let cache = Arc::clone(&self.cache);
    let callback = Some(CallbackWrapper::new(move || {
        let cache = Arc::clone(&cache);
        let key = key.clone();
        async move {
            cache.lock().remove(&key);
        }
    }));
    let task = TimerTask::new_oneshot(ttl, callback);
    self.timer.register(task);
}
```

### 4. 游戏 Buff 系统


```rust
use kestrel_timer::{TimerWheel, TimerTask, CallbackWrapper, TaskId};
use std::time::Duration;

async fn apply_buff(
    timer: &TimerWheel,
    player_id: u64,
    buff_type: BuffType,
    duration: Duration
) -> TaskId {
    let callback = Some(CallbackWrapper::new(move || async move {
        remove_buff(player_id, buff_type).await;
    }));
    let task = TimerTask::new_oneshot(duration, callback);
    let task_id = task.get_id();
    timer.register(task);
    task_id
}

// 延长 Buff
timer.postpone(task_id, new_duration, None);
```

### 5. 重试机制


```rust
use kestrel_timer::{TimerWheel, TimerTask, CallbackWrapper};
use std::time::Duration;

async fn retry_with_backoff(timer: &TimerWheel, operation: impl Fn()) {
    for retry in 1..=5 {
        let delay = Duration::from_secs(2_u64.pow(retry - 1));
        let callback = Some(CallbackWrapper::new(move || async move {
            operation().await;
        }));
        let task = TimerTask::new_oneshot(delay, callback);
        timer.register(task);
    }
}
```

## 许可证


本项目采用 MIT 或 Apache-2.0 双许可证。

- MIT License ([LICENSE-MIT]LICENSE-MIThttp://opensource.org/licenses/MIT)
- Apache License 2.0 ([LICENSE-APACHE]LICENSE-APACHEhttp://www.apache.org/licenses/LICENSE-2.0)

## 致谢


时间轮算法由 George Varghese 和 Tony Lauck 在论文 ["Hashed and Hierarchical Timing Wheels"](http://www.cs.columbia.edu/~nahum/w6998/papers/sosp87-timing-wheels.pdf) (SOSP '87) 中提出。

---

**完整文档**:[docs.rs/kestrel-timer](https://docs.rs/kestrel-timer)