xwrust/xwos/lock/
mtx.rs

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
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
//! XWOS RUST:互斥锁
//! ========
//!
//! 互斥锁是用来保证不同线程正确访问共享数据的机制。访问共享数据的代码片段被称为临界区。
//!
//! 互斥锁 **只能** 用在 **线程上下文(Thread Context)** 。等待互斥锁的线程会被阻塞,并让出CPU的使用权。
//!
//! XWOS RUST框架的互斥锁是仿造 [`std::sync::Mutex`] 的来编写的。
//!
//! 互斥锁上锁后,可返回一个 **守卫** [`MutexGuard`] ,用于提供 **Scoped Lock** 机制:即只负责上锁,不用关心解锁。
//! 解锁会由 [`MutexGuard`] 在其生命周期结束后自动触发。
//!
//! # 创建
//!
//! XWOS RUST的互斥锁可使用 [`Mutex::new()`] 创建。
//!
//! + 可以创建具有静态生命周期 [`static`] 约束的全局变量:
//!
//! ```rust
//! use xwrust::xwos::lock::mtx::*;
//!
//! static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
//! ```
//!
//! + 也可以使用 [`alloc::sync::Arc`] 在heap中创建:
//!
//!
//! ```rust
//! extern crate alloc;
//! use alloc::sync::Arc;
//!
//! use xwrust::xwos::lock::mtx::*;
//!
//! pub fn xwrust_example_mutex() {
//!     let mutex: Arc<Mutex<u32>> = Arc::new(Mutex::new(0));
//! }
//! ```
//!
//!
//! # 初始化
//!
//! 无论以何种方式创建的互斥锁,都必须在使用前调用 [`Mutex::init()`] 进行初始化:
//!
//! ```rust
//! pub fn xwrust_example_mutex() {
//!     GLOBAL_MUTEX.init();
//!     mutex.init();
//! }
//! ```
//!
//!
//! # 解锁
//!
//! 上锁后返回的 [`MutexGuard`] 。 [`MutexGuard`] 的生命周期结束时,会自动解锁。
//! 也可调用 [`Mutex::unlock()`] 主动消费掉 [`MutexGuard`] 来解锁。
//!
//!
//! # 上锁
//!
//! ## 普通等待上锁
//!
//! [`Mutex::lock()`] 方法只可在 **线程** 上下文中使用:
//!
//! + 若线程无法获得锁,会阻塞等待。
//! + 当锁的占用者解锁时,锁会唤醒优先级最高的线程,并让此线程获得锁。
//! + 线程获得锁后返回 [`Ok()`] ,并在其中包含锁的守卫 [`MutexGuard`] 。
//! + 当线程阻塞等待被中断时,会在 [`Err()`] 中返回 [`MutexError::Interrupt`] 。
//!
//! ## 超时等待上锁
//!
//! [`Mutex::lock_to()`] 方法只可在 **线程** 上下文中使用:
//!
//! + 若线程无法获得锁,会阻塞等待,等待时会指定一个唤醒时间点。
//! + 当锁的占用者解锁时,锁会唤醒优先级最高的线程,并让此线程获得锁。
//! + 线程获得锁后返回 [`Ok()`] ,并在其中包含锁的守卫 [`MutexGuard`] 。
//! + 当线程阻塞等待被中断时,会在 [`Err()`] 中返回 [`MutexError::Interrupt`] 。
//! + 当到达指定的唤醒时间点,线程被唤醒,并返回 [`MutexError::Timedout`] 。
//!
//! ## 不可中断等待上锁
//!
//! [`Mutex::lock_unintr()`] 方法只可在 **线程** 上下文中使用:
//!
//! + 若线程无法获得锁,会阻塞等待,且不可被中断,也不会超时。
//! + 当锁的占用者解锁时,锁会唤醒优先级最高的线程,并让此线程获得锁。
//! + 线程获得锁后返回 [`Ok()`] ,并在其中包含锁的守卫 [`MutexGuard`] 。
//!
//! ## 尝试等待上锁
//!
//! [`Mutex::trylock()`] 方法只可在 **线程** 上下文中使用,不会阻塞线程,只会检测锁是否可被获取:
//!
//! + 若线程可获得锁,立即获得锁并在 [`Ok()`] 中返回锁的守卫 [`MutexGuard`] 。
//! + 若线程无法获得锁,立即在 [`Err()`] 中返回 [`MutexError::WouldBlock`] 。
//!
//!
//! # 示例
//!
//! [XWOS/xwam/xwrust-example/xwrust_example_mutex](https://gitee.com/xwos/XWOS/blob/main/xwam/xwrust-example/xwrust_example_mutex/src/lib.rs)
//!
//!
//! # 对比 [`std::sync::Mutex`]
//!
//! + XWOS RUST
//!
//! ```rust
//! use xwrust::xwos::thd;
//! use xwrust::xwos::lock::mtx::*;
//! extern crate alloc;
//! use alloc::sync::Arc;
//!
//! pub fn xwrust_example_mutex() {
//!     // ...省略...
//!     let lock: Arc<Mutex<u32>> = Arc::new(Mutex::new(0));
//!     let lock_child = lock.clone();
//!
//!     match lock.lock() {
//!         Ok(mut guard) => { // 主线程上锁成功
//!             *guard = 1; // 访问共享变量
//!         }
//!         Err(e) => {
//!             // 主线程上锁失败
//!         }
//!     }
//!     // ...省略...
//!     thd::Builder::new()
//!         .name("child".into())
//!         .spawn(move |_| {
//!             // 子线程闭包
//!             match lock_child.lock() {
//!                 Ok(mut guard) => { // 子线程上锁成功
//!                     *guard += 1;
//!                 }
//!                 Err(e) => { // 子线程上锁失败
//!                 }
//!             }
//!         });
//! }
//! ```
//!
//! + [`std::sync::Mutex`]
//!
//! ```rust
//! use std::sync::{Arc, Mutex};
//! use std::thread;
//!
//! fn main() {
//!     // 创建互斥锁的方法类似
//!     let lock = Arc::new(Mutex::new(0_u32));
//!     let lock2 = Arc::clone(&lock);
//!
//!     let _ = thread::spawn(move || -> () {
//!         // 访问共享数据的方法类似:
//!         // 子线程中对互斥锁上锁, unwrap() 从 Ok() 中取出 guard,再对 guard 解可变引用可得数据的可变引用
//!         let guard = lock2.lock().unwrap();
//!         *guard = 1;
//!
//!         // std库特有的机制:持有锁时 panic!() 将导致锁变成 **中毒状态(poisoned)** 。
//!         panic!();
//!     }).join();
//!
//!     // std库特有的机制:处理中毒状态的锁
//!     let mut guard = match lock.lock() {
//!         Ok(guard) => guard,
//!         Err(poisoned) => poisoned.into_inner(),
//!     };
//!     *guard += 1;
//! }
//! ```
//!
//! ### 构建全局变量的方式
//!
//! + [`std::sync::Mutex`] 没有编译期构造函数,因此只能借助宏 [`lazy_static!`] 创建 [`static`] 约束的全局变量;
//! + [`xwrust::xwos::lock::mtx`] 则可以直接在函数外部定义。
//!
//! ### 中毒锁机制
//!
//! + [`std::sync::Mutex`] 提供了 **Poisoned Mutex** 机制。
//! 当通过 [`std::thread::spawn()`] 创建的子线程在持有 **互斥锁** 时,发生了 [`panic!()`] ,
//! 此时 **互斥锁** 的状态被称为 **中毒(Poisoned)** 。 [`std::sync::Mutex`] 可在父线程中检测到此错误状态,并尝试恢复。
//! + [`xwrust::xwos::lock::mtx`] 不提供此机制,用户必须处理 [`Ok()`] 与 [`Err()`] ,不可使用 [`unwrap()`]。
//! 因为此机制需要依赖 **unwind** 机制 ,目前 **unwind** 在MCU上还不成熟:
//!   + Gcc可以在MCU C++中使用 **try-catch**;
//!   + LLVM(Clan++)还无法支持在MCU C++中使用 **try-catch**;
//!   + Rust目前在MCU上还无法使用 **panic_unwind** 的 feature。
//!
//! [`std::sync::Mutex`]: <https://doc.rust-lang.org/std/sync/struct.Mutex.html>
//! [`static`]: <https://doc.rust-lang.org/std/keyword.static.html>
//! [`alloc::sync::Arc`]: <https://doc.rust-lang.org/alloc/sync/struct.Arc.html>
//! [`lazy_static!`]: <https://lib.rs/crates/lazy_static>
//! [`std::thread::spawn()`]: <https://doc.rust-lang.org/std/thread/fn.spawn.html>
//! [`panic!()`]: <https://doc.rust-lang.org/core/macro.panic.html>
//! [`Ok()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#variant.Ok>
//! [`Err()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#variant.Err>
//! [`unwrap()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#method.unwrap>
//! [`xwrust::xwos::lock::mtx`]: crate::xwos::lock::mtx

extern crate core;
use core::cell::UnsafeCell;
use core::result::Result;
use core::default::Default;
use core::ops::Drop;
use core::ops::Deref;
use core::ops::DerefMut;
use core::ptr;
use core::mem;

use crate::types::*;
use crate::errno::*;
use crate::xwos::sync::cond::*;


extern "C" {
    fn xwrustffi_mtx_init(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_fini(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_grab(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_put(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_get_tik(mtx: *mut XwosMtx) -> XwSq;
    fn xwrustffi_mtx_acquire(mtx: *mut XwosMtx, tik: XwSq) -> XwEr;
    fn xwrustffi_mtx_release(mtx: *mut XwosMtx, tik: XwSq) -> XwEr;
    fn xwrustffi_mtx_unlock(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_lock(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_trylock(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_lock_to(mtx: *mut XwosMtx, to: XwTm) -> XwEr;
    fn xwrustffi_mtx_lock_unintr(mtx: *mut XwosMtx) -> XwEr;
    fn xwrustffi_mtx_get_status(mtx: *mut XwosMtx, lkst: *mut XwSq) -> XwEr;
}

/// 互斥锁的错误码
#[derive(Debug)]
pub enum MutexError {
    /// 互斥锁没有初始化
    NotInit(XwEr),
    /// 等待被中断
    Interrupt(XwEr),
    /// 尝试上锁失败
    WouldBlock(XwEr),
    /// 等待超时
    Timedout(XwEr),
    /// 不在线程上下文内
    NotThreadContext(XwEr),
    /// 抢占被关闭
    DisPmpt(XwEr),
    /// 中断底半部被关闭
    DisBh(XwEr),
    /// 中断被关闭
    DisIrq(XwEr),
    /// 未知错误
    Unknown(XwEr),
}

impl MutexError {
    /// 消费掉 `MutexError` 自身,返回内部的错误码。
    pub fn unwrap(self) -> XwEr {
        match self {
            Self::NotInit(rc) => rc,
            Self::Interrupt(rc) => rc,
            Self::Timedout(rc) => rc,
            Self::NotThreadContext(rc) => rc,
            Self::DisPmpt(rc) => rc,
            Self::DisBh(rc) => rc,
            Self::DisIrq(rc) => rc,
            Self::WouldBlock(rc) => rc,
            Self::Unknown(rc) => rc,
        }
    }
}

/// XWOS互斥锁对象占用的内存大小
#[cfg(target_pointer_width = "32")]
pub const SIZEOF_XWOS_MTX: usize = 96;

/// XWOS互斥锁对象占用的内存大小
#[cfg(target_pointer_width = "64")]
pub const SIZEOF_XWOS_MTX: usize = 192;

/// 用于构建互斥锁的内存数组类型
#[repr(C)]
#[cfg_attr(target_pointer_width = "32", repr(align(8)))]
#[cfg_attr(target_pointer_width = "64", repr(align(16)))]
pub(crate) struct XwosMtx {
    pub(crate) obj: [u8; SIZEOF_XWOS_MTX],
}

/// 用于构建互斥锁的内存数组常量
///
/// 此常量的作用是告诉编译器互斥锁对象需要多大的内存。
pub(crate) const XWOS_MTX_INITIALIZER: XwosMtx = XwosMtx {
    obj: [0; SIZEOF_XWOS_MTX],
};

/// 互斥锁对象结构体
pub struct Mutex<T: ?Sized> {
    /// 用于初始化XWOS互斥锁对象的内存空间
    pub(crate) mtx: UnsafeCell<XwosMtx>,
    /// 互斥锁对象的标签
    pub(crate) tik: UnsafeCell<XwSq>,
    /// 用户数据
    pub(crate) data: UnsafeCell<T>,
}

impl<T> Mutex<T> {
    /// 新建互斥锁对象
    ///
    /// 此方法是编译期方法,可用于新建 [`static`] 约束的全局变量。
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    ///
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    /// ```
    ///
    /// [`static`]: https://doc.rust-lang.org/std/keyword.static.html
    pub const fn new(t: T) -> Self {
        Self {
            mtx: UnsafeCell::new(XWOS_MTX_INITIALIZER),
            tik: UnsafeCell::new(0),
            data: UnsafeCell::new(t),
        }
    }
}

impl<T: ?Sized> Mutex<T> {
    /// 初始化互斥锁对象
    ///
    /// 互斥锁对象必须调用此方法一次,方可正常使用。
    ///
    /// # 上下文
    ///
    /// + 任意
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    ///
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     // 从此处开始 GLOBAL_MUTEX 可正常使用
    /// }
    /// ```
    pub fn init(&self) {
        unsafe {
            let rc = xwrustffi_mtx_acquire(self.mtx.get(), *self.tik.get());
            if rc == 0 {
                xwrustffi_mtx_put(self.mtx.get());
            } else {
                xwrustffi_mtx_init(self.mtx.get());
                *self.tik.get() = xwrustffi_mtx_get_tik(self.mtx.get());
            }
        }
    }

    /// 获取互斥锁,若线程无法获取互斥锁,就阻塞等待,直到能获得锁为止
    ///
    /// + 若成功获取互斥锁,将返回 **RAII Guard** : [`MutexGuard`] ,用于提供 **Scoped Lock** 机制。
    ///   + [`MutexGuard`] 中包含 [`Mutex`] 的引用, 当 [`MutexGuard`] 生命周期结束时,会在 [`drop()`] 方法中自动解锁互斥锁。
    /// + 若失败,将返回错误码 [`MutexError`] 。
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`MutexError::NotInit`] 互斥锁未被初始化
    /// + [`MutexError::Interrupt`] 等待被中断
    /// + [`MutexError::NotThreadContext`] 不在线程上下文中
    /// + [`MutexError::DisPmpt`] 抢占被关闭
    /// + [`MutexError::DisBh`] 中断底半部被关闭
    /// + [`MutexError::DisIrq`] 中断被关闭
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     match GLOBAL_MUTEX.lock() {
    ///         Ok(mut guard) => { // 上锁成功
    ///             *guard = 1; // 访问共享变量
    ///         } // guard 生命周期结束,自动解锁
    ///         Err(e) => {
    ///             // 上锁失败
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
    pub fn lock(&self) -> Result<MutexGuard<'_, T>, MutexError> {
        unsafe {
            let mut rc = xwrustffi_mtx_acquire(self.mtx.get(), *self.tik.get());
            if rc == 0 {
                rc = xwrustffi_mtx_lock(self.mtx.get());
                xwrustffi_mtx_put(self.mtx.get());
                if 0 == rc {
                    Ok(MutexGuard::new(self))
                } else if -EINTR == rc {
                    Err(MutexError::Interrupt(rc))
                } else if -ENOTTHDCTX == rc {
                    Err(MutexError::NotThreadContext(rc))
                } else if -EDISPMPT == rc {
                    Err(MutexError::DisPmpt(rc))
                } else if -EDISBH == rc {
                    Err(MutexError::DisBh(rc))
                } else if -EDISIRQ == rc {
                    Err(MutexError::DisIrq(rc))
                } else {
                    Err(MutexError::Unknown(rc))
                }
            } else {
                Err(MutexError::NotInit(rc))
            }
        }
    }

    /// 尝试获取互斥锁,若线程无法获取互斥锁,立即返回错误
    ///
    /// + 若成功获取互斥锁,将返回 **RAII Guard** : [`MutexGuard`] ,用于提供 **Scoped Lock** 机制。
    ///   + [`MutexGuard`] 中包含 [`Mutex`] 的引用, 当 [`MutexGuard`] 生命周期结束时,会在 [`drop()`] 方法中自动解锁互斥锁。
    /// + 若失败,将返回错误码 [`MutexError`] 。
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`MutexError::NotInit`] 互斥锁未被初始化
    /// + [`MutexError::WouldBlock`] 尝试获取锁失败
    /// + [`MutexError::NotThreadContext`] 不在线程上下文中
    ///
    /// # 示例
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     match GLOBAL_MUTEX.trylock() {
    ///         Ok(mut guard) => { // 上锁成功
    ///             *guard = 1; // 访问共享变量
    ///         } // guard 生命周期结束,自动解锁
    ///         Err(e) => {
    ///             // 上锁失败
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
    pub fn trylock(&self) -> Result<MutexGuard<'_, T>, MutexError> {
        unsafe {
            let mut rc = xwrustffi_mtx_acquire(self.mtx.get(), *self.tik.get());
            if rc == 0 {
                rc = xwrustffi_mtx_trylock(self.mtx.get());
                xwrustffi_mtx_put(self.mtx.get());
                if 0 == rc {
                    Ok(MutexGuard::new(self))
                } else if -EWOULDBLOCK == rc {
                    Err(MutexError::WouldBlock(rc))
                } else if -ENOTTHDCTX == rc {
                    Err(MutexError::NotThreadContext(rc))
                } else {
                    Err(MutexError::Unknown(rc))
                }
            } else {
                Err(MutexError::NotInit(rc))
            }
        }
    }

    /// 获取互斥锁,若线程无法获取互斥锁,就限时阻塞等待
    ///
    /// + 若成功获取互斥锁,将返回 **RAII Guard** : [`MutexGuard`] ,用于提供 **Scoped Lock** 机制。
    ///   + [`MutexGuard`] 中包含 [`Mutex`] 的引用, 当 [`MutexGuard`] 生命周期结束时,会在 [`drop()`] 方法中自动解锁互斥锁。
    /// + 若失败,将返回错误码 [`MutexError`] 。
    ///
    /// # 参数说明
    ///
    /// + to: 期望唤醒的时间点
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`MutexError::NotInit`] 互斥锁未被初始化
    /// + [`MutexError::Interrupt`] 等待被中断
    /// + [`MutexError::Timedout`] 等待超时
    /// + [`MutexError::NotThreadContext`] 不在线程上下文中
    /// + [`MutexError::DisPmpt`] 抢占被关闭
    /// + [`MutexError::DisBh`] 中断底半部被关闭
    /// + [`MutexError::DisIrq`] 中断被关闭
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwtm;
    /// use xwrust::xwos::lock::mtx::*;
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     match GLOBAL_MUTEX.lock_to(xwtm::ft(xwtm::s(10))) { // 最多等待10s
    ///         Ok(mut guard) => { // 上锁成功
    ///             *guard = 1; // 访问共享变量
    ///         } // guard 生命周期结束,自动解锁
    ///         Err(e) => {
    ///             // 上锁失败
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
    pub fn lock_to(&self, to: XwTm) -> Result<MutexGuard<'_, T>, MutexError> {
        unsafe {
            let mut rc = xwrustffi_mtx_acquire(self.mtx.get(), *self.tik.get());
            if rc == 0 {
                rc = xwrustffi_mtx_lock_to(self.mtx.get(), to);
                xwrustffi_mtx_put(self.mtx.get());
                if 0 == rc {
                    Ok(MutexGuard::new(self))
                } else if -EINTR == rc {
                    Err(MutexError::Interrupt(rc))
                } else if -ETIMEDOUT == rc {
                    Err(MutexError::Timedout(rc))
                } else if -ENOTTHDCTX == rc {
                    Err(MutexError::NotThreadContext(rc))
                } else if -EDISPMPT == rc {
                    Err(MutexError::DisPmpt(rc))
                } else if -EDISBH == rc {
                    Err(MutexError::DisBh(rc))
                } else if -EDISIRQ == rc {
                    Err(MutexError::DisIrq(rc))
                } else {
                    Err(MutexError::Unknown(rc))
                }
            } else {
                Err(MutexError::NotInit(rc))
            }
        }
    }

    /// 获取互斥锁,若线程无法获取互斥锁,就阻塞等待,且不可中断,直到能获得锁为止
    ///
    /// + 若成功获取互斥锁,将返回 **RAII Guard** : [`MutexGuard`] ,用于提供 **Scoped Lock** 机制。
    ///   + [`MutexGuard`] 中包含 [`Mutex`] 的引用, 当 [`MutexGuard`] 生命周期结束时,会在 [`drop()`] 方法中自动解锁互斥锁。
    /// + 若失败,将返回错误码 [`MutexError`] 。
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`MutexError::NotInit`] 互斥锁未被初始化
    /// + [`MutexError::NotThreadContext`] 不在线程上下文中
    /// + [`MutexError::DisPmpt`] 抢占被关闭
    /// + [`MutexError::DisBh`] 中断底半部被关闭
    /// + [`MutexError::DisIrq`] 中断被关闭
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     match GLOBAL_MUTEX.lock_unintr() {
    ///         Ok(mut guard) => { // 上锁成功
    ///             *guard = 1; // 访问共享变量
    ///         } // guard 生命周期结束,自动解锁
    ///         Err(e) => {
    ///             // 上锁失败
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
    pub fn lock_unintr(&self) -> Result<MutexGuard<'_, T>, MutexError> {
        unsafe {
            let mut rc = xwrustffi_mtx_acquire(self.mtx.get(), *self.tik.get());
            if rc == 0 {
                rc = xwrustffi_mtx_lock_unintr(self.mtx.get());
                xwrustffi_mtx_put(self.mtx.get());
                if 0 == rc {
                    Ok(MutexGuard::new(self))
                } else if -EWOULDBLOCK == rc {
                    Err(MutexError::WouldBlock(rc))
                } else if -ENOTTHDCTX == rc {
                    Err(MutexError::NotThreadContext(rc))
                } else if -EDISPMPT == rc {
                    Err(MutexError::DisPmpt(rc))
                } else if -EDISBH == rc {
                    Err(MutexError::DisBh(rc))
                } else if -EDISIRQ == rc {
                    Err(MutexError::DisIrq(rc))
                } else {
                    Err(MutexError::Unknown(rc))
                }
            } else {
                Err(MutexError::NotInit(rc))
            }
        }
    }

    /// 释放 [`MutexGuard`],并在 [`drop()`] 方法中解锁互斥锁
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::lock::mtx::*;
    /// static GLOBAL_MUTEX: Mutex<u32> = Mutex::new(0);
    ///
    /// pub fn xwrust_example_mutex() {
    ///     // ...省略...
    ///     GLOBAL_MUTEX.init();
    ///     match GLOBAL_MUTEX.lock() {
    ///         Ok(mut guard) => { // 上锁成功
    ///             *guard = 1; // 访问共享变量
    ///             Mutex::unlock(guard); // 主动解锁
    ///         }
    ///         Err(e) => {
    ///             // 上锁失败
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
    pub fn unlock(guard: MutexGuard<'_, T>) {
        drop(guard)
    }
}

unsafe impl<T: ?Sized + Send> Send for Mutex<T> {}
unsafe impl<T: ?Sized + Send> Sync for Mutex<T> {}

impl<T> From<T> for Mutex<T> {
    /// 从数据新建互斥锁对象
    ///
    /// 此方法会将数据所有权转移到互斥锁对象的内部
    ///
    /// 等价于 [`Mutex::new`]
    fn from(t: T) -> Self {
        Mutex::new(t)
    }
}

impl<T: ?Sized + Default> Default for Mutex<T> {
    fn default() -> Mutex<T> {
        Mutex::new(Default::default())
    }
}

impl<T: ?Sized> Drop for Mutex<T> {
    fn drop(&mut self) {
        unsafe {
            xwrustffi_mtx_fini(self.mtx.get());
        }
    }
}

/// 互斥锁对象的RAII Guard
///
/// **RAII Guard** 用于提供 **Scoped Lock** 机制。
///
/// + [`MutexGuard`] 中包含 [`Mutex`] 的引用, 当 [`MutexGuard`] 生命周期结束时,会在 [`drop()`] 方法中自动解锁互斥锁。
/// + [`MutexGuard`] 不可在线程之间转移所有权,因为其 [`drop()`] 方法包含解锁的语义,上锁和解锁必须在同一线程;
/// + [`MutexGuard`] 虽然可以在多线程中传递引用( [`Sync`] 约束),但其实现中没有 **unlock()** 方法,意味着其他线程即便拿到引用也不能解锁。
///
/// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
/// [`Sync`]: https://doc.rust-lang.org/std/marker/trait.Send.html
pub struct MutexGuard<'a, T: ?Sized + 'a> {
    /// 互斥锁的引用
    lock: &'a Mutex<T>,
}

impl<T: ?Sized> !Send for MutexGuard<'_, T> {}
unsafe impl<T: ?Sized + Sync> Sync for MutexGuard<'_, T> {}

impl<'a, T: ?Sized> MutexGuard<'a, T> {
    fn new(lock: &'a Mutex<T>) -> MutexGuard<'a, T> {
        MutexGuard { lock: lock }
    }

    /// 阻塞当前线程,直到被条件量唤醒
    ///
    /// 此方法会消费互斥锁的守卫(Guard),并当线程阻塞时,在条件量内部释放互斥锁。
    /// 当条件成立,线程被唤醒,会在条件量内部上锁互斥锁,并重新返回互斥锁的守卫(Guard)。
    ///
    /// + 当返回互斥锁的守卫 [`MutexGuard`] 时,互斥锁已经被重新上锁;
    /// + 当返回 [`Err()`] 时,互斥锁未被上锁。
    ///
    /// # 参数说明
    ///
    /// + cond: 条件量的引用
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`CondError::NotInit`] 条件量未被初始化
    /// + [`CondError::Interrupt`] 等待被中断
    /// + [`CondError::NotThreadContext`] 不在线程上下文中
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::thd;
    /// use xwrust::xwos::lock::mtx::*;
    /// use xwrust::xwos::sync::cond::*;
    /// extern crate alloc;
    /// use alloc::sync::Arc;
    ///
    /// pub fn xwrust_example_mutex() {
    ///     let pair = Arc::new((Mutex::new(true), Cond::new()));
    ///     pair.0.init();
    ///     pair.1.init();
    ///     let pair_c = pair.clone();
    ///
    ///     thd::Builder::new()
    ///         .name("child".into())
    ///         .spawn(move |_| { // 子线程闭包
    ///             cthd::sleep(xwtm::ms(500));
    ///             let (lock, cvar) = &*pair_c;
    ///             match lock_child.lock() {
    ///                 Ok(mut guard) => {
    ///                     *guard = false; // 设置共享数据
    ///                     drop(guard); // 先解锁再触发条件可提高效率
    ///                     cvar.broadcast();
    ///                 },
    ///                 Err(e) => { // 子线程上锁失败
    ///                 },
    ///             }
    ///         });
    ///     let (lock, cvar) = &*pair;
    ///     let mut guard;
    ///     match lock.lock() {
    ///         Ok(g) => {
    ///             guard = g;
    ///             while *guard {
    ///                 match guard.wait(cvar) {
    ///                     Ok(g) => { // 唤醒
    ///                         guard = g;
    ///                     },
    ///                     Err(e) => { // 等待条件量失败
    ///                         break;
    ///                     },
    ///                 }
    ///             }
    ///         },
    ///         Err(e) => { // 上锁失败
    ///         },
    ///     }
    /// }
    /// ```
    ///
    /// [`Err()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#variant.Err>
    pub fn wait(self, cond: &Cond) -> Result<MutexGuard<'a, T>, CondError> {
        unsafe {
            let mut rc = xwrustffi_cond_acquire(cond.cond.get(), *cond.tik.get());
            if rc == 0 {
                let mut lkst = 0;
                rc = xwrustffi_cond_wait(cond.cond.get(),
                                         self.lock.mtx.get() as _, XWOS_LK_MTX, ptr::null_mut(),
                                         &mut lkst);
                xwrustffi_cond_put(cond.cond.get());
                if 0 == rc {
                    Ok(self)
                } else {
                    if XWOS_LKST_LOCKED == lkst {
                        drop(self);
                    } else {
                        mem::forget(self);
                    }
                    if -EINTR == rc {
                        Err(CondError::Interrupt(rc))
                    } else if -ENOTTHDCTX == rc {
                        Err(CondError::NotThreadContext(rc))
                    } else {
                        Err(CondError::Unknown(rc))
                    }
                }
            } else {
                drop(self);
                Err(CondError::NotInit(rc))
            }
        }
    }

    /// 限时阻塞当前线程,直到被条件量唤醒
    ///
    /// 此方法会消费互斥锁的守卫(Guard),并当线程阻塞时,在条件量内部释放互斥锁。
    /// 当条件成立,线程被唤醒,会在条件量内部上锁互斥锁,并重新返回互斥锁的守卫(Guard)。
    /// 当超时后,将返回错误。
    ///
    /// + 当返回互斥锁的守卫 [`MutexGuard`] 时,互斥锁已经被重新上锁;
    /// + 当返回 [`Err()`] 时,互斥锁未被上锁。
    ///
    /// # 参数说明
    ///
    /// + cond: 条件量的引用
    /// + to: 期望唤醒的时间点
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`CondError::NotInit`] 条件量未被初始化
    /// + [`CondError::Interrupt`] 等待被中断
    /// + [`CondError::Timedout`] 等待超时
    /// + [`CondError::NotThreadContext`] 不在线程上下文中
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::thd;
    /// use xwrust::xwos::lock::mtx::*;
    /// use xwrust::xwos::sync::cond::*;
    /// extern crate alloc;
    /// use alloc::sync::Arc;
    ///
    /// pub fn xwrust_example_mutex() {
    ///     let pair = Arc::new((Mutex::new(true), Cond::new()));
    ///     pair.0.init();
    ///     pair.1.init();
    ///     let pair_c = pair.clone();
    ///
    ///     thd::Builder::new()
    ///         .name("child".into())
    ///         .spawn(move |_| { // 子线程闭包
    ///             cthd::sleep(xwtm::ms(500));
    ///             let (lock, cvar) = &*pair_c;
    ///             match lock_child.lock() {
    ///                 Ok(mut guard) => {
    ///                     *guard = false; // 设置共享数据
    ///                     drop(guard); // 先解锁再触发条件可提高效率
    ///                     cvar.broadcast();
    ///                 },
    ///                 Err(e) => { // 子线程上锁失败
    ///                 },
    ///             }
    ///         });
    ///     let (lock, cvar) = &*pair;
    ///     let mut guard;
    ///     match lock.lock() {
    ///         Ok(g) => {
    ///             guard = g;
    ///             while *guard {
    ///                 match guard.wait_to(cvar, xwtm::ft(xwtm::s(2))) {
    ///                     Ok(g) => { // 唤醒
    ///                         guard = g;
    ///                     },
    ///                     Err(e) => { // 等待条件量失败
    ///                         break;
    ///                     },
    ///                 }
    ///             }
    ///         },
    ///         Err(e) => { // 上锁失败
    ///         },
    ///     }
    /// }
    /// ```
    ///
    /// [`Err()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#variant.Err>
    pub fn wait_to(self, cond: &Cond, to: XwTm) -> Result<MutexGuard<'a, T>, CondError> {
        unsafe {
            let mut rc = xwrustffi_cond_acquire(cond.cond.get(), *cond.tik.get());
            if rc == 0 {
                let mut lkst = 0;
                rc = xwrustffi_cond_wait_to(cond.cond.get(),
                                            self.lock.mtx.get() as _, XWOS_LK_MTX, ptr::null_mut(),
                                            to, &mut lkst);
                xwrustffi_cond_put(cond.cond.get());
                if 0 == rc {
                    Ok(self)
                } else {
                    if XWOS_LKST_LOCKED == lkst {
                        drop(self);
                    } else {
                        mem::forget(self);
                    }
                    if -EINTR == rc {
                        Err(CondError::Interrupt(rc))
                    } else if -ETIMEDOUT == rc {
                        Err(CondError::Timedout(rc))
                    } else if -ENOTTHDCTX == rc {
                        Err(CondError::NotThreadContext(rc))
                    } else {
                        Err(CondError::Unknown(rc))
                    }
                }
            } else {
                drop(self);
                Err(CondError::NotInit(rc))
            }
        }
    }

    /// 阻塞当前线程,直到被条件量唤醒,且阻塞不可被中断
    ///
    /// 此方法会消费互斥锁的守卫(Guard),并当线程阻塞时,在条件量内部释放互斥锁。
    /// 当条件成立,线程被唤醒,会在条件量内部上锁互斥锁,并重新返回互斥锁的守卫(Guard)。
    ///
    /// + 当返回互斥锁的守卫 [`MutexGuard`] 时,互斥锁已经被重新上锁;
    /// + 当返回 [`Err()`] 时,互斥锁未被上锁。
    ///
    /// # 参数说明
    ///
    /// + cond: 条件量的引用
    ///
    /// # 上下文
    ///
    /// + 线程
    ///
    /// # 错误码
    ///
    /// + [`CondError::NotInit`] 条件量未被初始化
    /// + [`CondError::NotThreadContext`] 不在线程上下文中
    ///
    /// # 示例
    ///
    /// ```rust
    /// use xwrust::xwos::thd;
    /// use xwrust::xwos::lock::mtx::*;
    /// use xwrust::xwos::sync::cond::*;
    /// extern crate alloc;
    /// use alloc::sync::Arc;
    ///
    /// pub fn xwrust_example_mutex() {
    ///     let pair = Arc::new((Mutex::new(true), Cond::new()));
    ///     pair.0.init();
    ///     pair.1.init();
    ///     let pair_c = pair.clone();
    ///
    ///     thd::Builder::new()
    ///         .name("child".into())
    ///         .spawn(move |_| { // 子线程闭包
    ///             cthd::sleep(xwtm::ms(500));
    ///             let (lock, cvar) = &*pair_c;
    ///             match lock_child.lock() {
    ///                 Ok(mut guard) => {
    ///                     *guard = false; // 设置共享数据
    ///                     drop(guard); // 先解锁再触发条件可提高效率
    ///                     cvar.broadcast();
    ///                 },
    ///                 Err(e) => { // 子线程上锁失败
    ///                 },
    ///             }
    ///         });
    ///     let (lock, cvar) = &*pair;
    ///     let mut guard;
    ///     match lock.lock() {
    ///         Ok(g) => {
    ///             guard = g;
    ///             while *guard {
    ///                 match guard.wait_unintr(cvar) {
    ///                     Ok(g) => { // 唤醒
    ///                         guard = g;
    ///                     },
    ///                     Err(e) => { // 等待条件量失败
    ///                         break;
    ///                     },
    ///                 }
    ///             }
    ///         },
    ///         Err(e) => { // 上锁失败
    ///         },
    ///     }
    /// }
    /// ```
    ///
    /// [`Err()`]: <https://doc.rust-lang.org/core/result/enum.Result.html#variant.Err>
    pub fn wait_unintr(self, cond: &Cond) -> Result<MutexGuard<'a, T>, CondError> {
        unsafe {
            let mut rc = xwrustffi_cond_acquire(cond.cond.get(), *cond.tik.get());
            if rc == 0 {
                let mut lkst = 0;
                rc = xwrustffi_cond_wait_unintr(cond.cond.get(),
                                                self.lock.mtx.get() as _, XWOS_LK_MTX, ptr::null_mut(),
                                                &mut lkst);
                xwrustffi_cond_put(cond.cond.get());
                if 0 == rc {
                    Ok(self)
                } else {
                    if XWOS_LKST_LOCKED == lkst {
                        drop(self);
                    } else {
                        mem::forget(self);
                    }
                    if -ENOTTHDCTX == rc {
                        Err(CondError::NotThreadContext(rc))
                    } else {
                        Err(CondError::Unknown(rc))
                    }
                }
            } else {
                drop(self);
                Err(CondError::NotInit(rc))
            }
        }
    }
}

impl<T: ?Sized> Deref for MutexGuard<'_, T> {
    type Target = T;

    fn deref(&self) -> &T {
        unsafe { &*self.lock.data.get() }
    }
}

impl<T: ?Sized> DerefMut for MutexGuard<'_, T> {
    fn deref_mut(&mut self) -> &mut T {
        unsafe { &mut *self.lock.data.get() }
    }
}

impl<T: ?Sized> Drop for MutexGuard<'_, T> {
    #[inline]
    fn drop(&mut self) {
        unsafe {
            xwrustffi_mtx_unlock(self.lock.mtx.get());
        }
    }
}