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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
// **************************************************
// *  Author: Iceyee                                *
// *  Mail: iceyee.studio@qq.com                    *
// *  Git: https://github.com/iceyee                *
// **************************************************
//
// Use.

use std::cmp::Ordering as CmpOrdering;
use std::cmp::PartialOrd;
use std::future::Future;
use std::sync::atomic::AtomicBool;
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
use std::sync::Arc;
use std::time::Duration;
use tokio::sync::Mutex as TokioMutex;
use tokio::task::JoinHandle;
use tokio::time::Sleep;

/// 当前系统正在使用的时区所对应的时间偏移.
/// 比如用+0800表示东八区的时间偏移, 即+08:00.
pub static mut TIME_OFFSET: Option<i16> = None;

const ONE_MILLISECOND: i64 = 1;
const ONE_SECOND: i64 = 1000 * ONE_MILLISECOND;
const ONE_MINUTE: i64 = 60 * ONE_SECOND;
const ONE_HOUR: i64 = 60 * ONE_MINUTE;
const ONE_DAY: i64 = 24 * ONE_HOUR;
const ONE_WEEK: i64 = 7 * ONE_DAY;
// const ONE_MONTH: i64 = 31 * ONE_DAY;
const ONE_YEAR: i64 = 365 * ONE_DAY;
const FOUR_YEAR: i64 = 4 * ONE_YEAR + ONE_DAY;
const ONE_HUNDRED_YEAR: i64 = 25 * FOUR_YEAR - ONE_DAY;
const FOUR_HUNDRED_YEAR: i64 = 4 * ONE_HUNDRED_YEAR + ONE_DAY;
const TIME_0: i64 =
    4 * FOUR_HUNDRED_YEAR + 3 * ONE_HUNDRED_YEAR + ONE_DAY + 17 * FOUR_YEAR + 2 * ONE_YEAR;

// Enum.

/// Error.
///
/// - @see [Timer]
#[derive(Debug, Clone)]
pub enum TimerError {
    InvalidFormat,
}

impl std::fmt::Display for TimerError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        match self {
            Self::InvalidFormat => {
                f.write_str("错误的格式.")?;
            }
        }
        return Ok(());
    }
}

impl std::error::Error for TimerError {}

// Trait.

// Struct.

/// 日期时间.
#[derive(Debug, Clone, PartialEq)]
pub struct DateTime {
    /// \[0, +oo)
    pub year: usize,
    /// \[1, 12]
    pub month: usize,
    /// \[1, 31]
    pub day: usize,
    /// \[0, 23]
    pub hour: usize,
    /// \[0, 59]
    pub minute: usize,
    /// \[0, 59]
    pub second: usize,
    /// \[0, 999]
    pub millisecond: usize,
    /// \[1, 365]
    pub day_of_year: usize,
    /// \[1, 7]
    pub weekday: usize,
    /// 时间戳, 单位:毫秒.
    pub timestamp: i64,
    /// 时间偏移, 比如用+0800表示东八区的时间偏移, 即+08:00.
    pub offset: i16,
}

impl DateTime {
    /// 返回当前时间, 等同于:
    ///
    /// ```
    /// DateTime::from((iceyee_time::now(), None));
    /// ```
    pub fn new() -> Self {
        return DateTime::from((now(), None));
    }

    /// 转成国际标准时间.
    pub fn to_utc(&self) -> Self {
        return Self::from((self.timestamp, Some(0)));
    }
}

impl From<(i64, Option<i16>)> for DateTime {
    /// 从时间戳转成[DateTime].
    ///
    /// - @param value (timestamp, offset)
    /// - @param value$0 时间戳, 单位:毫秒.
    /// - @param value$1 时间偏移, 默认是系统设置的时区所对应的偏移.
    fn from(value: (i64, Option<i16>)) -> Self {
        let (timestamp_, offset) = value;
        let offset: i16 = match offset {
            Some(offset) => offset,
            None => unsafe { *TIME_OFFSET.as_ref().unwrap() },
        };
        let offset_hour: i16 = offset / 100 % 100;
        let offset_minute: i16 = offset % 100;
        let mut timestamp: i64 = TIME_0
            + offset_hour as i64 * 60 * 60 * 1000
            + offset_minute as i64 * 60 * 1000
            + timestamp_;
        // 年.
        let mut year: i64 = 0;
        year += timestamp / FOUR_HUNDRED_YEAR * 400;
        timestamp %= FOUR_HUNDRED_YEAR;
        if ONE_HUNDRED_YEAR + ONE_DAY <= timestamp {
            timestamp -= ONE_HUNDRED_YEAR;
            timestamp -= ONE_DAY;
            year += 100;
            if ONE_HUNDRED_YEAR <= timestamp {
                timestamp -= ONE_HUNDRED_YEAR;
                year += 100;
            }
            if ONE_HUNDRED_YEAR <= timestamp {
                timestamp -= ONE_HUNDRED_YEAR;
                year += 100;
            }
        }
        if year % 400 != 0 && 4 * ONE_YEAR <= timestamp {
            timestamp -= 4 * ONE_YEAR;
            year += 4;
        }
        year += timestamp / FOUR_YEAR * 4;
        timestamp %= FOUR_YEAR;
        if ONE_YEAR + ONE_DAY <= timestamp {
            timestamp -= ONE_YEAR;
            timestamp -= ONE_DAY;
            year += 1;
            if ONE_YEAR <= timestamp {
                timestamp -= ONE_YEAR;
                year += 1;
            }
            if ONE_YEAR <= timestamp {
                timestamp -= ONE_YEAR;
                year += 1;
            }
        }
        // println!("@year={:?}", year);
        let day_of_year: i64 = timestamp / ONE_DAY + 1;
        // println!("@day_of_year={:?}", day_of_year);
        // 月.
        let mut month: i64 = 0;
        for x in 1..=12 {
            let max_days: i64 = match x {
                1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
                2 => {
                    if year % 400 == 0 || year % 100 != 0 && year % 4 == 0 {
                        29
                    } else {
                        28
                    }
                }
                _ => 30,
            };
            if max_days * ONE_DAY <= timestamp {
                timestamp -= max_days * ONE_DAY;
                continue;
            } else {
                month = x;
                break;
            }
        }
        // println!("@month={:?}", month);
        // 日.
        let day: i64 = 1 + timestamp / ONE_DAY;
        timestamp %= ONE_DAY;
        // println!("@day={:?}", day);
        // 时分秒.
        let hour: i64 = timestamp / ONE_HOUR;
        timestamp %= ONE_HOUR;
        let minute: i64 = timestamp / ONE_MINUTE;
        timestamp %= ONE_MINUTE;
        let second: i64 = timestamp / ONE_SECOND;
        timestamp %= ONE_SECOND;
        let millisecond: i64 = timestamp / ONE_MILLISECOND;
        // println!(
        //     "@hour,minute,second={:02}:{:02}:{:02}",
        //     hour, minute, second
        // );
        // 周几.
        let mut weekday: i64 = (TIME_0
            + offset_hour as i64 * 60 * 60 * 1000
            + offset_minute as i64 * 60 * 1000
            + timestamp_)
            % ONE_WEEK
            / ONE_DAY
            + 1
            + 5;
        if 7 < weekday {
            weekday -= 7;
        }
        // println!("@week={:?}", weekday);
        return Self {
            year: year as usize,
            month: month as usize,
            day: day as usize,
            hour: hour as usize,
            minute: minute as usize,
            second: second as usize,
            millisecond: millisecond as usize,
            day_of_year: day_of_year as usize,
            weekday: weekday as usize,
            timestamp: timestamp_,
            offset: offset,
        };
    }
}

impl From<(usize, usize, usize, usize, usize, usize, usize, Option<i16>)> for DateTime {
    /// 从设置好的时间, 转成[DateTime].
    ///
    /// - @param value (year, month, day, hour, minute, second, millisecond, offset)
    /// - @param value$0 年.
    /// - @param value$1 月.
    /// - @param value$2 日.
    /// - @param value$3 时.
    /// - @param value$4 分.
    /// - @param value$5 秒.
    /// - @param value$6 毫秒.
    /// - @param value$7 时间偏移, 默认是系统设置的时区所对应的偏移.
    ///
    /// # Panics
    ///
    /// 如果参数不符合特定的数值范围就会panic.
    ///
    /// 例如, '时'的范围是0~23, 如果对应的入参是24, 就会panic.
    ///
    /// 例如, 某一年的二月份, 只有28天, 但是参数'日'的入参是29, 就会panic.
    fn from(value: (usize, usize, usize, usize, usize, usize, usize, Option<i16>)) -> Self {
        let (year, month, day, hour, minute, second, millisecond, offset) = value;
        if month == 0 || 12 < month {
            panic!("@month={:?}", month);
        }
        let max_days: usize = match month {
            1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
            2 => {
                if year % 400 == 0 || year % 100 != 0 && year % 4 == 0 {
                    29
                } else {
                    28
                }
            }
            _ => 30,
        };
        if day == 0 || max_days < day {
            panic!("@day={:?}", day);
        }
        if 23 < hour {
            panic!("@hour={:?}", hour);
        }
        if 59 < minute {
            panic!("@minute={:?}", minute);
        }
        if 59 < second {
            panic!("@second={:?}", second);
        }
        if 999 < millisecond {
            panic!("@millisecond={:?}", millisecond);
        }
        let mut timestamp: i64 = 0;
        let mut t: i64 = year as i64;
        // 年.
        timestamp += t * ONE_YEAR;
        timestamp += t / 400 * 97 * ONE_DAY;
        t %= 400;
        if t != 0 {
            timestamp += (t / 100 * 24 + 1) * ONE_DAY;
            t %= 100;
        }
        if t != 0 {
            timestamp -= ONE_DAY;
            if t % 4 != 0 {
                timestamp += ONE_DAY;
            }
            timestamp += (t / 4) * ONE_DAY;
            t %= 4;
        }
        let _ = t;
        // 月.
        t = 0;
        for x in 1..=12 {
            if month <= x {
                break;
            }
            let max_days: i64 = match x {
                1 | 3 | 5 | 7 | 8 | 10 | 12 => 31,
                2 => {
                    if year % 400 == 0 || year % 100 != 0 && year % 4 == 0 {
                        29
                    } else {
                        28
                    }
                }
                _ => 30,
            };
            timestamp += max_days * ONE_DAY;
            t += max_days;
        }
        // let day_of_year: i64 = t + day as i64;
        // 日.
        timestamp += (day as i64 - 1) * ONE_DAY;
        // 时分秒.
        timestamp += hour as i64 * ONE_HOUR;
        timestamp += minute as i64 * ONE_MINUTE;
        timestamp += second as i64 * ONE_SECOND;
        timestamp += millisecond as i64 * ONE_MILLISECOND;
        // println!("@timestamp={:?}", timestamp);
        // 时间差.
        let offset: i16 = match offset {
            Some(offset) => offset,
            None => unsafe { *TIME_OFFSET.as_ref().unwrap() },
        };
        let offset_hour: i16 = offset / 100 % 100;
        let offset_minute: i16 = offset % 100;
        timestamp -= TIME_0;
        timestamp -= offset_hour as i64 * 60 * 60 * 1000;
        timestamp -= offset_minute as i64 * 60 * 1000;
        return Self::from((timestamp, Some(offset)));
        // // println!("@timestamp={:?}", timestamp);
        // // 周几.
        // let mut weekday: i64 = timestamp % ONE_WEEK / ONE_DAY + 1 + 3;
        // if 7 < weekday {
        //     weekday -= 7;
        // }
        // return Self {
        //     year: year as usize,
        //     month: month as usize,
        //     day: day as usize,
        //     hour: hour as usize,
        //     minute: minute as usize,
        //     second: second as usize,
        //     day_of_year: day_of_year as usize,
        //     weekday: weekday as usize,
        //     timestamp: timestamp,
        //     offset: offset,
        // };
    }
}

impl ToString for DateTime {
    /// 转成字符串, 使用RFC3339标准, 格式'xx-xx-xxTxx:xx:xx.xxx\[+/-\]xx:xx'.
    fn to_string(&self) -> String {
        let v1: String = format!(
            "{}-{:02}-{:02}T{:02}:{:02}:{:02}.{:03}",
            self.year,
            self.month,
            self.day,
            self.hour,
            self.minute,
            self.second,
            self.timestamp % 1000
        );
        let v2: &str = if self.offset == 0 {
            ""
        } else if self.offset < 0 {
            "-"
        } else {
            "+"
        };
        let offset: i16 = if self.offset < 0 {
            -self.offset
        } else {
            self.offset
        };
        let v3: String = if offset == 0 {
            "Z".to_string()
        } else {
            format!("{:02}:{:02}", offset / 100 % 100, offset % 100)
        };
        let result: String = v1 + v2 + &v3;
        return format!("{result:29}");
    }
}

impl PartialOrd for DateTime {
    fn partial_cmp(&self, other: &Self) -> Option<CmpOrdering> {
        if self.timestamp < other.timestamp {
            return Some(CmpOrdering::Less);
        } else if self.timestamp == other.timestamp {
            return Some(CmpOrdering::Equal);
        } else if self.timestamp > other.timestamp {
            return Some(CmpOrdering::Greater);
        } else {
            return None;
        }
    }
}

/// 时钟, 精度200ms ~ 400ms.
#[derive(Clone, Debug)]
pub struct Timer {
    thread_handles: Arc<TokioMutex<Vec<JoinHandle<()>>>>,
    task_number: Arc<AtomicUsize>,
    stop_flag: Arc<AtomicBool>,
}

impl Drop for Timer {
    /// 关闭时钟.
    fn drop(&mut self) {
        if self.task_number.load(Ordering::SeqCst) + 1 == Arc::strong_count(&self.stop_flag) {
            self.stop_flag.store(true, Ordering::SeqCst);
        }
        return;
    }
}

impl Timer {
    /// 创建新的时钟, 默认开启状态.
    pub fn new() -> Self {
        return Timer {
            thread_handles: Arc::new(TokioMutex::new(Vec::new())),
            task_number: Arc::new(AtomicUsize::new(0)),
            stop_flag: Arc::new(AtomicBool::new(false)),
        };
    }

    /// 启动时钟.
    pub fn start(&self) {
        self.stop_flag.store(false, Ordering::SeqCst);
        self.task_number.store(0, Ordering::SeqCst);
        return;
    }

    /// 停止时钟.
    pub fn stop(&self) {
        self.stop_flag.store(true, Ordering::SeqCst);
        // self.thread_handles.lock().await.clear();
        return;
    }

    /// 停止时钟并等待所有任务结束.
    pub async fn stop_and_wait(&self) {
        self.stop_flag.store(true, Ordering::SeqCst);
        let mut thread_handles = self.thread_handles.lock().await;
        loop {
            match thread_handles.pop() {
                Some(handle) => handle.await.unwrap(),
                None => break,
            }
        }
        return;
    }

    /// 定时任务, 模式匹配.
    ///
    /// - @param pattern "秒 分 时 日 月 周几", "second minute hour day month weekday", 可以参考linux的crontab.
    /// - @param f 任务, 参数是stop标志, 表示是否已经发出停止的信号.
    pub fn schedule_pattern<'a, 'b, F1, F2>(&'a self, pattern: &str, mut f: F1) -> bool
    where
        F1: FnMut(Arc<AtomicBool>) -> F2 + Send + 'static,
        F2: Future<Output = ()> + Send + 'b,
        'a: 'b,
    {
        // 1 解析.
        // 在'*'可能有'/', 即SLASH.
        enum Status {
            MIN,
            MAX,
            SEPARATION,
            SLASH,
        }
        let expand = |mut min: usize, max: usize, separation: usize| {
            let mut result: Vec<usize> = Vec::new();
            while min <= max {
                result.push(min);
                min += separation;
            }
            return result;
        };
        let mut table: [([bool; 60], usize, usize); 6] = [
            ([false; 60], 0, 59),
            ([false; 60], 0, 59),
            ([false; 60], 0, 59),
            ([false; 60], 1, 31),
            ([false; 60], 1, 12),
            ([false; 60], 1, 7),
        ];
        let mut pattern: String = pattern.to_string();
        while pattern.contains("  ") {
            pattern = pattern.replace("  ", " ");
        }
        if pattern.split(' ').count() != table.len() {
            return false;
        }
        let mut index: usize = 0;
        for x in pattern.split(' ') {
            if x.len() == 0 {
                return false;
            }
            for y in x.split([',', ',']) {
                let mut status: Status = Status::MIN;
                let mut min: Vec<u8> = Vec::new();
                let mut max: Vec<u8> = Vec::new();
                let mut separation: Vec<u8> = Vec::new();
                for z in y.as_bytes() {
                    match status {
                        Status::MIN => {
                            if z.is_ascii_digit() {
                                min.push(*z);
                            } else if *z == b'-' {
                                status = Status::MAX;
                            } else if *z == b'*' {
                                if 0 < min.len() {
                                    return false;
                                }
                                min.extend_from_slice(table[index].1.to_string().as_bytes());
                                max.extend_from_slice(table[index].2.to_string().as_bytes());
                                status = Status::SLASH;
                            } else {
                                return false;
                            }
                        }
                        Status::MAX => {
                            if z.is_ascii_digit() {
                                max.push(*z);
                            } else if *z == b'/' {
                                status = Status::SEPARATION;
                            } else {
                                return false;
                            }
                        }
                        Status::SEPARATION => {
                            if z.is_ascii_digit() {
                                separation.push(*z);
                            } else {
                                return false;
                            }
                        }
                        Status::SLASH => {
                            if *z == b'/' {
                                status = Status::SEPARATION;
                            }
                        }
                    }
                }
                match status {
                    Status::MIN => {
                        if min.len() == 0 {
                            return false;
                        } else {
                            max = min.clone();
                        }
                    }
                    Status::MAX => {
                        if max.len() == 0 {
                            return false;
                        }
                    }
                    Status::SEPARATION => {
                        if separation.len() == 0 {
                            return false;
                        }
                    }
                    Status::SLASH => {}
                }
                let min: usize = if min.len() == 0 {
                    table[index].1
                } else {
                    match String::from_utf8(min) {
                        Ok(s) => match s.parse::<usize>() {
                            Ok(s) => s,
                            Err(_) => return false,
                        },
                        Err(_) => return false,
                    }
                };
                let max: usize = if max.len() == 0 {
                    table[index].2
                } else {
                    match String::from_utf8(max) {
                        Ok(s) => match s.parse::<usize>() {
                            Ok(s) => s,
                            Err(_) => return false,
                        },
                        Err(_) => return false,
                    }
                };
                let separation: usize = if separation.len() == 0 {
                    1
                } else {
                    match String::from_utf8(separation) {
                        Ok(s) => match s.parse::<usize>() {
                            Ok(s) => s,
                            Err(_) => return false,
                        },
                        Err(_) => return false,
                    }
                };
                if min < table[index].1
                    || table[index].2 < min
                    || max < table[index].1
                    || table[index].2 < max
                    || max < min
                {
                    return false;
                }
                for z in expand(min, max, separation) {
                    table[index].0[z] = true;
                }
            } // for y in x.split(',') {...}
            index += 1;
        } // for x in pattern.split(' ') {...}
          // 2 执行.
        let task_number_clone = self.task_number.clone();
        let stop_flag_clone: Arc<AtomicBool> = self.stop_flag.clone();
        let handle = tokio::task::spawn(async move {
            let task_number = task_number_clone;
            let stop_flag = stop_flag_clone;
            task_number.fetch_add(1, Ordering::SeqCst);
            let second = &table[0];
            let minute = &table[1];
            let hour = &table[2];
            let day = &table[3];
            let month = &table[4];
            let weekday = &table[5];
            while !stop_flag.load(Ordering::SeqCst) {
                let t: u64 = (1000 - now() as u64 % 1000) + 200;
                let sl = tokio::task::spawn(sleep(t as usize));
                let dt: DateTime = DateTime::new();
                if second.0[dt.second]
                    && minute.0[dt.minute]
                    && hour.0[dt.hour]
                    && day.0[dt.day]
                    && month.0[dt.month]
                    && weekday.0[dt.weekday]
                {
                    f(stop_flag.clone()).await;
                }
                while !stop_flag.load(Ordering::SeqCst) && !sl.is_finished() {
                    sleep(200).await;
                }
            }
        });
        // 3 handle管理.
        let thread_handles_clone = self.thread_handles.clone();
        tokio::task::spawn(async move {
            let thread_handles = thread_handles_clone;
            thread_handles.lock().await.push(handle);
        });
        return true;
    }

    /// 定时任务, 任务执行的同时等待.
    ///
    /// - @param delay 初始延迟, 单位:毫秒.
    /// - @param period 每轮任务的时间间隔, 单位:毫秒.
    /// - @param f 任务, 参数是stop标志, 表示是否已经发出停止的信号.
    pub fn schedule_execute_before<'a, 'b, F1, F2>(&'a self, delay: usize, period: usize, mut f: F1)
    where
        F1: FnMut(Arc<AtomicBool>) -> F2 + Send + 'static,
        F2: Future<Output = ()> + Send + 'b,
        'a: 'b,
    {
        let task_number_clone = self.task_number.clone();
        let stop_flag_clone: Arc<AtomicBool> = self.stop_flag.clone();
        let handle = tokio::task::spawn(async move {
            let task_number = task_number_clone;
            let stop_flag = stop_flag_clone;
            task_number.fetch_add(1, Ordering::SeqCst);
            // 1 初始延迟.
            let sl = tokio::task::spawn(sleep(delay));
            while !stop_flag.load(Ordering::SeqCst) && !sl.is_finished() {
                sleep(200).await;
            }
            while !stop_flag.load(Ordering::SeqCst) {
                // 2 等待并执行.
                let sl = tokio::task::spawn(sleep(period));
                f(stop_flag.clone()).await;
                while !stop_flag.load(Ordering::SeqCst) && !sl.is_finished() {
                    sleep(200).await;
                }
            }
        });
        // 3 handle管理.
        let thread_handles_clone = self.thread_handles.clone();
        tokio::task::spawn(async move {
            let thread_handles = thread_handles_clone;
            thread_handles.lock().await.push(handle);
        });
        return;
    }

    /// 定时任务, 在任务执行完成后等待.
    ///
    /// - @param delay 初始延迟, 单位:毫秒.
    /// - @param period 每轮任务的时间间隔, 单位:毫秒.
    /// - @param f 任务, 参数是stop标志, 表示是否已经发出停止的信号.
    pub fn schedule_execute_after<'a, 'b, F1, F2>(&'a self, delay: usize, period: usize, mut f: F1)
    where
        F1: FnMut(Arc<AtomicBool>) -> F2 + Send + 'static,
        F2: Future<Output = ()> + Send + 'b,
        'a: 'b,
    {
        let task_number_clone = self.task_number.clone();
        let stop_flag_clone: Arc<AtomicBool> = self.stop_flag.clone();
        let handle = tokio::task::spawn(async move {
            let task_number = task_number_clone;
            let stop_flag = stop_flag_clone;
            task_number.fetch_add(1, Ordering::SeqCst);
            // 1 初始延迟.
            let sl = tokio::task::spawn(sleep(delay));
            while !stop_flag.load(Ordering::SeqCst) && !sl.is_finished() {
                sleep(200).await;
            }
            while !stop_flag.load(Ordering::SeqCst) {
                // 2 执行并等待.
                f(stop_flag.clone()).await;
                let sl = tokio::task::spawn(sleep(period));
                while !stop_flag.load(Ordering::SeqCst) && !sl.is_finished() {
                    sleep(200).await;
                }
            }
        });
        // 3 handle管理.
        let thread_handles_clone = self.thread_handles.clone();
        tokio::task::spawn(async move {
            let thread_handles = thread_handles_clone;
            thread_handles.lock().await.push(handle);
        });
        return;
    }
}

// Function.

/// 返回当前系统的时间戳, 单位:毫秒.
pub fn now() -> i64 {
    #[cfg(target_os = "linux")]
    unsafe {
        // struct timeval {
        //     time_t      tv_sec;     /* seconds */
        //     suseconds_t tv_usec;    /* microseconds */
        // };
        // struct timezone {
        //     int tz_minuteswest;     /* minutes west of Greenwich */
        //     int tz_dsttime;         /* type of DST correction */
        // };
        // int gettimeofday(struct timeval *tv, struct timezone *tz);
        use std::ffi::c_int;
        use std::ffi::c_long;
        #[derive(Debug, Clone, Default, PartialEq)]
        #[repr(C)]
        pub struct TimeValue {
            pub tv_sec: c_long,
            pub tv_usec: c_long,
        }
        #[derive(Debug, Clone, Default, PartialEq)]
        #[repr(C)]
        pub struct TimeZone {
            pub tz_minuteswest: c_int,
            pub tz_dsttime: c_int,
        }
        extern "C" {
            fn gettimeofday(tv: *mut TimeValue, tz: *mut TimeZone) -> c_int;
        }
        let mut tv: TimeValue = Default::default();
        let mut tz: TimeZone = Default::default();
        if gettimeofday(&mut tv, &mut tz) != 0 {
            return 0;
        }
        return tv.tv_sec as i64 * 1000 + tv.tv_usec as i64 / 1000;
    }
    #[cfg(target_os = "windows")]
    unsafe {
        // typedef struct _SYSTEMTIME {
        //     WORD wYear;
        //     WORD wMonth;
        //     WORD wDayOfWeek;
        //     WORD wDay;
        //     WORD wHour;
        //     WORD wMinute;
        //     WORD wSecond;
        //     WORD wMilliseconds;
        // } SYSTEMTIME, *PSYSTEMTIME, *LPSYSTEMTIME;
        // void GetLocalTime(
        //         [out] LPSYSTEMTIME lpSystemTime
        //         );
        // time_t time(time_t *);
        use std::ffi::c_long;
        use std::ffi::c_short;
        #[allow(non_snake_case)]
        #[derive(Debug, Clone, Default)]
        #[repr(C)]
        struct SYSTEMTIME {
            wYear: c_short,
            wMonth: c_short,
            wDayOfWeek: c_short,
            wDay: c_short,
            wHour: c_short,
            wMinute: c_short,
            wSecond: c_short,
            wMilliseconds: c_short,
        }
        extern "C" {
            fn GetLocalTime(lpSystemTime: *mut SYSTEMTIME);
            fn time(t: *mut c_long) -> c_long;
        }
        let mut st: SYSTEMTIME = Default::default();
        GetLocalTime(&mut st);
        let mut t: c_long = 0;
        time(&mut t);
        return t as i64 * 1000 + st.wMilliseconds as i64;
    }
}

pub fn now_seconds() -> i64 {
    return now() / 1000;
}

/// 延时, 单位:毫秒.
pub fn sleep(t: usize) -> Sleep {
    return tokio::time::sleep(Duration::from_millis(t as u64));
}

// 初始化全局变量TIME_OFFSET.
#[ctor::ctor]
fn init() {
    #[cfg(target_os = "linux")]
    unsafe {
        // extern long timezone;
        // void tzset ();
        use std::ffi::c_long;
        extern "C" {
            static mut timezone: c_long;
            fn tzset();
        }
        tzset();
        let offset_hour: i16 = timezone as i16 / 60 / 60;
        let offset_minute: i16 = timezone as i16 / 60 % 60;
        TIME_OFFSET = Some(-(offset_hour * 100 + offset_minute));
    }
    #[cfg(target_os = "windows")]
    unsafe {
        // typedef struct _SYSTEMTIME {
        //     WORD wYear;
        //     WORD wMonth;
        //     WORD wDayOfWeek;
        //     WORD wDay;
        //     WORD wHour;
        //     WORD wMinute;
        //     WORD wSecond;
        //     WORD wMilliseconds;
        // } SYSTEMTIME, *PSYSTEMTIME, *LPSYSTEMTIME;
        // typedef struct _TIME_ZONE_INFORMATION {
        //     LONG       Bias;
        //     WCHAR      StandardName[32];
        //     SYSTEMTIME StandardDate;
        //     LONG       StandardBias;
        //     WCHAR      DaylightName[32];
        //     SYSTEMTIME DaylightDate;
        //     LONG       DaylightBias;
        // } TIME_ZONE_INFORMATION, *PTIME_ZONE_INFORMATION, *LPTIME_ZONE_INFORMATION;
        // DWORD GetTimeZoneInformation(
        //         [out] LPTIME_ZONE_INFORMATION lpTimeZoneInformation
        //         );
        use std::ffi::c_int;
        use std::ffi::c_long;
        use std::ffi::c_ushort;
        #[allow(non_snake_case)]
        #[derive(Debug, Clone, Default)]
        #[repr(C)]
        struct SYSTEMTIME {
            wYear: c_ushort,
            wMonth: c_ushort,
            wDayOfWeek: c_ushort,
            wDay: c_ushort,
            wHour: c_ushort,
            wMinute: c_ushort,
            wSecond: c_ushort,
            wMilliseconds: c_ushort,
        }
        #[allow(non_camel_case_types)]
        #[allow(non_snake_case)]
        #[derive(Debug, Clone, Default)]
        #[repr(C)]
        struct TIME_ZONE_INFORMATION {
            Bias: c_long,
            StandardName: [c_ushort; 32],
            StandardDate: SYSTEMTIME,
            StandardBias: c_long,
            DaylightName: [c_ushort; 32],
            DaylightDate: SYSTEMTIME,
            DaylightBias: c_long,
        }
        extern "C" {
            fn GetTimeZoneInformation(lpTimeZoneInformation: *mut TIME_ZONE_INFORMATION) -> c_int;
        }
        let mut tzi: TIME_ZONE_INFORMATION = Default::default();
        GetTimeZoneInformation(&mut tzi);
        let offset_hour: i16 = tzi.Bias as i16 / 60;
        let offset_minute: i16 = tzi.Bias as i16 % 60;
        TIME_OFFSET = Some(-(offset_hour * 100 + offset_minute));
    }
    return;
}