xwrust/xwos/sync/cond.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
//! XWOS RUST:条件量
//! ========
//!
//! 条件量是操作系统比较底层的同步机制,可以同时阻塞多个线程。当条件成立,条件量可以唤醒一个或所有正在等待的线程。
//!
//! XWOS RUST的条件量通常还需要一个伴生的锁一起工作。线程通常需要持有 **锁** 的情况下去等待条件量,
//! 条件量阻塞线程的同时会同步释放 **锁** 。当条件成立,线程被唤醒时,条件量会自动获得 **锁**。
//!
//! XWOS RUST的条件量机制,主要包括以下操作:
//!
//! + 线程A等待条件量的 **条件** 成立而阻塞;
//! + 另一个线程B或中断或其他任意上下文使 **条件** 成立,并唤醒条件量上阻塞的线程,可以 **单播** 也可以 **广播** 。
//! 为了防止两个上下文竞争 **条件** ,条件量需要和一个 **锁** 一起使用,锁用于保护 **条件** 不会被同时访问。
//! + XWOS的条件量的锁的类型包括:
//! + 互斥锁
//! + 自旋锁
//! + 顺序锁的独占读锁
//! + 顺序锁的写锁
//!
//!
//! # 创建
//!
//! XWOS RUST的条件量可使用 [`Cond::new()`] 创建。
//!
//! + 可以创建具有静态生命周期 [`static`] 约束的全局变量:
//!
//! ```rust
//! use xwrust::xwos::sync::cond::*;
//!
//! static GLOBAL_COND: Cond = Cond::new();
//! ```
//!
//! + 也可以使用 [`alloc::sync::Arc`] 在heap中创建:
//!
//! ```rust
//! extern crate alloc;
//! use alloc::sync::Arc;
//!
//! use xwrust::xwos::sync::cond::*;
//!
//! pub fn xwrust_example_cond() {
//! let cond = Arc::new(Cond::new());
//! let cond_c = cond.clone();
//! }
//! ```
//!
//!
//! # 初始化
//!
//! 无论以何种方式创建的条件量,都必须在使用前调用 [`Cond::init()`] 进行初始化:
//!
//! ```rust
//! pub fn xwrust_example_cond() {
//! GLOBAL_COND.init();
//! cond.init();
//! }
//! ```
//!
//!
//! # 单播
//!
//! [`Cond::unicast()`] 方法可用来使得条件量的条件成立,但只唤醒一个线程。此方法可在 **任意** 上下文使用。
//!
//!
//! # 广播
//!
//! [`Cond::broadcast()`] 方法可用来使得条件量的条件成立,并唤醒全部线程。此方法可在 **任意** 上下文使用。
//!
//!
//! # 冻结与解冻
//!
//! ## 冻结
//!
//! XWOS RUST的条件量可以使用方法 [`Cond::freeze()`] 进行 **冻结** 操作,被冻结的条件量不能再进行 **单薄** 和 **广播** 操作。
//!
//! ## 解冻
//!
//! [`Cond::thaw()`] 方法是**冻结** 操作的逆操作。条件量解冻后,可重新进行 **单薄** 和 **广播** 操作。
//!
//!
//! # 等待
//!
//! 等待操作需要在获得锁的情况下进行,因此 **等待** 的方法实现在锁的 **守卫(Guard)** 内部,以便区分锁的类型:
//!
//! ## 普通等待
//!
//! **普通等待** 的方法只可在 **线程** 上下文中使用,会 **消费** 锁的 **守卫(Guard)** ,然后线程阻塞等待条件量:
//!
//! + 通过 **单播** 或 **广播** 可唤醒线程,线程唤醒后,会进行获得锁的操作。当锁是互斥锁时,线程可能又会因无法获得锁而被阻塞。
//! + 当线程的阻塞等待被中断时,会在 [`Err`] 中返回 [`CondError::Interrupt`] 。
//! + 获得锁后,会在 [`Ok`] 中重新返回锁的 **守卫(Guard)** 。
//! + 当发生错误,返回 [`Err`] 时,锁的 **守卫(Guard)** 被 **消费** ,生命周期结束,不再可用。
//!
//! 各种锁的 **等待** 条件量的方法:
//!
//! + 互斥锁: [`crate::xwos::lock::mtx::MutexGuard::wait()`]
//! + 自旋锁: [`crate::xwos::lock::spinlock::SpinlockGuard::wait()`]
//! + 顺序锁的独占读锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait()`]
//! + 顺序锁的写锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait()`]
//!
//! ## 超时等待
//!
//! **超时等待** 的方法只可在 **线程** 上下文中使用,会 **消费** 锁的 **守卫(Guard)** ,然后线程阻塞等待条件量,等待时会指定一个唤醒时间点:
//!
//! + 通过 **单播** 或 **广播** 可唤醒线程,线程唤醒后,会进行获得锁的操作。
//! 当锁是互斥锁时,线程可能又会因无法获得锁而被阻塞,但到指定的唤醒时间点时一定会超时唤醒。
//! + 当线程的阻塞等待被中断时,会在 [`Err`] 中返回 [`CondError::Interrupt`] 。
//! + 当到达指定的唤醒时间点,线程被唤醒,并返回 [`CondError::Timedout`] 。
//! + 获得锁后,会在 [`Ok`] 中重新返回锁的 **守卫(Guard)** 。
//! + 当发生错误,返回 [`Err`] 时,锁的 **守卫(Guard)** 被 **消费** ,生命周期结束,不再可用。
//!
//! 各种锁的 **等待** 条件量的方法:
//!
//! + 互斥锁: [`crate::xwos::lock::mtx::MutexGuard::wait_to()`]
//! + 自旋锁: [`crate::xwos::lock::spinlock::SpinlockGuard::wait_to()`]
//! + 顺序锁的独占读锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait_to()`]
//! + 顺序锁的写锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait_to()`]
//!
//! ## 不可中断等待
//!
//! **不可中断等待** 的方法只可在 **线程** 上下文中使用,会 **消费** 锁的 **守卫(Guard)** ,然后线程阻塞等待条件量,并且不可被中断:
//!
//! + 通过 **单播** 或 **广播** 可唤醒线程,线程唤醒后,会进行获得锁的操作。
//! 当锁是互斥锁时,线程可能又会因无法获得锁而被阻塞,互斥锁的阻塞等待同样是不可被中断的。
//! + 获得锁后,会在 [`Ok`] 中重新返回锁的 **守卫(Guard)** 。
//! + 当发生错误,返回 [`Err`] 时,锁的 **守卫(Guard)** 被 **消费** ,生命周期结束,不再可用。
//!
//! 各种锁的 **等待** 条件量的方法:
//!
//! + 互斥锁: [`crate::xwos::lock::mtx::MutexGuard::wait_unintr()`]
//! + 自旋锁: [`crate::xwos::lock::spinlock::SpinlockGuard::wait_unintr()`]
//! + 顺序锁的独占读锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait_unintr()`]
//! + 顺序锁的写锁: [`crate::xwos::lock::seqlock::SeqlockGuard::wait_unintr()`]
//!
//!
//! # 绑定到信号选择器
//!
//! 条件量是 **同步对象** ,可以通过方法 [`Cond::bind()`] 将条件量绑定到信号选择器 [`Sel<M>`] 上,通过 [`Sel<M>`] ,单一线程可以同时等待多个不同的 **同步对象** 。
//!
//! 条件量采用 **非独占** 的方式进行绑定。
//!
//!
//! # 示例
//!
//! [XWOS/xwam/xwrust-example/xwrust_example_cond](https://gitee.com/xwos/XWOS/blob/main/xwam/xwrust-example/xwrust_example_cond/src/lib.rs)
//!
//!
//! [`static`]: <https://doc.rust-lang.org/std/keyword.static.html>
//! [`alloc::sync::Arc`]: <https://doc.rust-lang.org/alloc/sync/struct.Arc.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>
//! [`Sel<M>`]: super::sel::Sel
extern crate core;
use core::ffi::*;
use core::cell::UnsafeCell;
use crate::types::*;
use crate::errno::*;
use crate::xwbmp::*;
use crate::xwos::sync::sel::*;
extern "C" {
pub(crate) fn xwrustffi_cond_init(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_fini(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_grab(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_put(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_get_tik(cond: *mut XwosCond) -> XwSq;
pub(crate) fn xwrustffi_cond_acquire(cond: *mut XwosCond, tik: XwSq) -> XwEr;
pub(crate) fn xwrustffi_cond_release(cond: *mut XwosCond, tik: XwSq) -> XwEr;
pub(crate) fn xwrustffi_cond_bind(cond: *mut XwosCond, sel: *mut c_void, pos: XwSq) -> XwEr;
pub(crate) fn xwrustffi_cond_unbind(cond: *mut XwosCond, sel: *mut c_void) -> XwEr;
pub(crate) fn xwrustffi_cond_freeze(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_thaw(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_broadcast(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_unicast(cond: *mut XwosCond) -> XwEr;
pub(crate) fn xwrustffi_cond_wait(cond: *mut XwosCond,
lock: *mut c_void, lktype: XwSq, lkdata: *mut c_void,
lkst: *mut XwSq) -> XwEr;
pub(crate) fn xwrustffi_cond_wait_to(cond: *mut XwosCond,
lock: *mut c_void, lktype: XwSq, lkdata: *mut c_void,
to: XwTm, lkst: *mut XwSq) -> XwEr;
pub(crate) fn xwrustffi_cond_wait_unintr(cond: *mut XwosCond,
lock: *mut c_void, lktype: XwSq, lkdata: *mut c_void,
lkst: *mut XwSq) -> XwEr;
}
/// 条件量的错误码
#[derive(Debug)]
pub enum CondError {
/// 没有错误
Ok(XwEr),
/// 条件量没有初始化
NotInit(XwEr),
/// 条件量已被冻结
AlreadyFrozen(XwEr),
/// 条件量已解冻
AlreadyThawed(XwEr),
/// 等待被中断
Interrupt(XwEr),
/// 等待超时
Timedout(XwEr),
/// 不在线程上下文内
NotThreadContext(XwEr),
/// 信号选择器的位置超出范围
OutOfSelPos(XwEr),
/// 条件量已经绑定
AlreadyBound(XwEr),
/// 信号选择器的位置被占用
SelPosBusy(XwEr),
/// 未知错误
Unknown(XwEr),
}
impl CondError {
/// 消费掉 `CondError` 自身,返回内部的错误码。
pub fn unwrap(self) -> XwEr {
match self {
Self::Ok(rc) => rc,
Self::NotInit(rc) => rc,
Self::AlreadyFrozen(rc) => rc,
Self::AlreadyThawed(rc) => rc,
Self::Interrupt(rc) => rc,
Self::Timedout(rc) => rc,
Self::NotThreadContext(rc) => rc,
Self::OutOfSelPos(rc) => rc,
Self::AlreadyBound(rc) => rc,
Self::SelPosBusy(rc) => rc,
Self::Unknown(rc) => rc,
}
}
/// 如果错误码是 [`CondError::Ok`] ,返回 `true` 。
pub const fn is_ok(&self) -> bool {
matches!(*self, Self::Ok(_))
}
/// 如果错误码不是 [`CondError::Ok`] ,返回 `true` 。
pub const fn is_err(&self) -> bool {
!self.is_ok()
}
}
/// 锁类型:无
pub(crate) const XWOS_LK_NONE: XwSq = 0;
/// 锁类型:互斥锁
pub(crate) const XWOS_LK_MTX: XwSq = 1;
/// 锁类型:自旋锁
pub(crate) const XWOS_LK_SPLK: XwSq = 2;
/// 锁类型:顺序写锁
pub(crate) const XWOS_LK_SQLK_WR: XwSq = 3;
/// 锁类型:独占顺序读锁
pub(crate) const XWOS_LK_SQLK_RDEX: XwSq = 4;
/// 锁类型:抽象回调锁
pub(crate) const XWOS_LK_CALLBACK: XwSq = 5;
/// 锁状态:锁定
pub(crate) const XWOS_LKST_LOCKED: XwSq = 0;
/// 锁状态:未锁定
pub(crate) const XWOS_LKST_UNLOCKED: XwSq = 1;
/// XWOS条件量对象占用的内存大小
#[cfg(target_pointer_width = "32")]
pub const SIZEOF_XWOS_COND: usize = 64;
/// XWOS条件量对象占用的内存大小
#[cfg(target_pointer_width = "64")]
pub const SIZEOF_XWOS_COND: usize = 128;
/// 用于构建条件量的内存数组类型
#[repr(C)]
#[cfg_attr(target_pointer_width = "32", repr(align(8)))]
#[cfg_attr(target_pointer_width = "64", repr(align(16)))]
pub(crate) struct XwosCond {
pub(crate) obj: [u8; SIZEOF_XWOS_COND],
}
/// 用于构建条件量的内存数组常量
///
/// 此常量的作用是告诉编译器条件量对象需要多大的内存。
pub(crate) const XWOS_COND_INITIALIZER: XwosCond = XwosCond {
obj: [0; SIZEOF_XWOS_COND],
};
/// 条件量对象结构体
pub struct Cond {
/// 用于初始化XWOS条件量对象的内存空间
pub(crate) cond: UnsafeCell<XwosCond>,
/// 条件量对象的标签
pub(crate) tik: UnsafeCell<XwSq>,
}
unsafe impl Send for Cond {}
unsafe impl Sync for Cond {}
impl Drop for Cond {
fn drop(&mut self) {
unsafe {
xwrustffi_cond_fini(self.cond.get());
}
}
}
impl Cond {
/// 新建条件量对象
///
/// 此方法是编译期方法。
///
/// # 示例
///
/// + 具有 [`static`] 约束的全局变量全局变量:
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// static GLOBAL_COND: Cond = Cond::new();
/// ```
///
/// + 在heap中创建:
///
/// ```rust
/// extern crate alloc;
/// use alloc::sync::Arc;
///
/// pub fn xwrust_example_cond() {
/// let cond = Arc::new(Cond::new());
/// }
/// ```
///
/// [`static`]: https://doc.rust-lang.org/std/keyword.static.html
pub const fn new() -> Self {
Self {
cond: UnsafeCell::new(XWOS_COND_INITIALIZER),
tik: UnsafeCell::new(0),
}
}
}
impl Cond {
/// 初始化条件量对象
///
/// 条件量对象必须调用此方法一次,方可正常使用。
///
/// # 上下文
///
/// + 任意
///
/// # 示例
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// static GLOBAL_COND: Cond = Cond::new();
///
/// pub unsafe extern "C" fn xwrust_main() {
/// // ...省略...
/// GLOBAL_COND.init();
/// // 从此处开始 GLOBAL_COND 可正常使用
/// }
/// ```
pub fn init(&self) {
unsafe {
let rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
xwrustffi_cond_put(self.cond.get());
} else {
xwrustffi_cond_init(self.cond.get());
*self.tik.get() = xwrustffi_cond_get_tik(self.cond.get());
}
}
}
/// 冻结条件量
///
/// 条件量被冻结后,可被线程等待,但被能被单播 [`Cond::unicast()`] 或广播 [`Cond::broadcast()`] 。
///
/// # 上下文
///
/// + 任意
///
/// # 错误码
///
/// + [`CondError::Ok`] 没有错误
/// + [`CondError::NotInit`] 条件量没有初始化
/// + [`CondError::AlreadyFrozen`] 条件量已被冻结
///
/// # 示例
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// pub unsafe extern "C" fn xwrust_main() {
/// // ...省略...
/// condvar: Cond = Cond::new();
/// condvar.init();
/// condvar.freeze();
/// }
/// ```
pub fn freeze(&self) -> CondError {
unsafe {
let mut rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
rc = xwrustffi_cond_freeze(self.cond.get());
xwrustffi_cond_put(self.cond.get());
if XWOK == rc {
CondError::Ok(rc)
} else if -EALREADY == rc {
CondError::AlreadyFrozen(rc)
} else {
CondError::Unknown(rc)
}
} else {
CondError::NotInit(rc)
}
}
}
/// 解冻条件量
///
/// 被冻结的条件量解冻后,可被单播 [`Cond::unicast()`] 或广播 [`Cond::broadcast()`] 。
///
/// # 上下文
///
/// + 任意
///
/// # 错误码
///
/// + [`CondError::Ok`] 没有错误
/// + [`CondError::NotInit`] 条件量没有初始化
/// + [`CondError::AlreadyThawed`] 条件量已解冻
///
/// # 示例
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// pub unsafe extern "C" fn xwrust_main() {
/// // ...省略...
/// condvar: Cond = Cond::new();
/// condvar.init();
/// condvar.freeze(); // 冻结
/// // ...省略...
/// condvar.thaw(); // 解冻
/// }
/// ```
pub fn thaw(&self) -> CondError {
unsafe {
let mut rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
rc = xwrustffi_cond_thaw(self.cond.get());
xwrustffi_cond_put(self.cond.get());
if XWOK == rc {
CondError::Ok(rc)
} else if -EALREADY == rc {
CondError::AlreadyThawed(rc)
} else {
CondError::Unknown(rc)
}
} else {
CondError::NotInit(rc)
}
}
}
/// 单播条件量对象
///
/// 只会唤醒第一个线程,阻塞线程的队列使用的是先进先出(FIFO)算法 。
///
/// # 上下文
///
/// + 任意
///
/// # 错误码
///
/// + [`CondError::Ok`] 没有错误
/// + [`CondError::NotInit`] 条件量没有初始化
/// + [`CondError::AlreadyFrozen`] 条件量已被冻结
///
/// # 示例
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// pub unsafe extern "C" fn xwrust_main() {
/// // ...省略...
/// condvar: Cond = Cond::new();
/// condvar.init();
/// // ...省略...
/// condvar.unicast();
/// }
/// ```
pub fn unicast(&self) -> CondError {
unsafe {
let mut rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
rc = xwrustffi_cond_unicast(self.cond.get());
xwrustffi_cond_put(self.cond.get());
if XWOK == rc {
CondError::Ok(rc)
} else if -ENEGATIVE == rc {
CondError::AlreadyFrozen(rc)
} else {
CondError::Unknown(rc)
}
} else {
CondError::NotInit(rc)
}
}
}
/// 广播条件量
///
/// 阻塞队列中的线程会全部被唤醒。
///
/// # 上下文
///
/// + 任意
///
/// # 错误码
///
/// + [`CondError::Ok`] 没有错误
/// + [`CondError::NotInit`] 条件量没有初始化
/// + [`CondError::AlreadyFrozen`] 条件量已被冻结
///
/// # 示例
///
/// ```rust
/// use xwrust::xwos::sync::cond::*;
///
/// pub unsafe extern "C" fn xwrust_main() {
/// // ...省略...
/// condvar: Cond = Cond::new();
/// condvar.init();
/// // ...省略...
/// condvar.broadcast();
/// }
/// ```
pub fn broadcast(&self) -> CondError {
unsafe {
let mut rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
rc = xwrustffi_cond_broadcast(self.cond.get());
xwrustffi_cond_put(self.cond.get());
if XWOK == rc {
CondError::Ok(rc)
} else if -ENEGATIVE == rc {
CondError::AlreadyFrozen(rc)
} else {
CondError::Unknown(rc)
}
} else {
CondError::NotInit(rc)
}
}
}
/// 绑定条件量对象到信号选择器
///
/// + 条件量绑定到信号选择器上时,采用 **非独占** 的方式进行绑定。
/// + 绑定成功,通过 [`Ok()`] 返回 [`CondSel<'a, M>`] 。
/// + 如果位置已被其他 **同步对象** 以 **独占** 的方式占领,通过 [`Err()`] 返回 [`CondError::SelPosBusy`] 。
/// + 当指定的位置超出范围(例如 [`Sel<M>`] 只有8个位置,用户偏偏要绑定到位置9 ),通过 [`Err()`] 返回 [`CondError::OutOfSelPos`] 。
/// + 重复绑定,通过 [`Err()`] 返回 [`CondError::AlreadyBound`] 。
///
/// [`CondSel<'a, M>`] 中包含条件量的绑定信息。 [`CondSel<'a, M>`] 与 [`Cond`] 与 [`Sel<M>`] 具有相同的生命周期约束 `'a` 。
/// [`CondSel::selected()`] 可用来判断条件量是否被选择。当 [`CondSel<'a, M>`] [`drop()`] 时,会自动解绑。
///
/// # 参数说明
///
/// + sel: 信号选择器的引用
/// + pos: 位置
///
/// # 上下文
///
/// + 任意
///
/// # 错误码
///
/// + [`CondError::OutOfSelPos`] 信号选择器的位置超出范围
/// + [`CondError::AlreadyBound`] 条件量已经绑定
/// + [`CondError::SelPosBusy`] 信号选择器的位置被占用
///
/// # 示例
///
/// ```rust
/// pub fn xwrust_example_sel() {
/// // ...省略...
/// let cond0 = Arc::new(Cond::new());
/// cond0.init();
/// let cond0sel = match cond0.bind(&sel, 0) {
/// Ok(s) => { // 绑定成功,`s` 为 `CondSel`
/// s
/// },
/// Err(e) => { // 绑定失败,`e` 为 `SelError`
/// return;
/// }
/// };
/// // ...省略...
/// }
/// ```
///
/// [`CondSel<'a, M>`]: CondSel
/// [`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>
/// [`Sel<M>`]: super::sel::Sel
/// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
pub fn bind<'a, const M: XwSz>(&'a self, sel: &'a Sel<M>, pos: XwSq)
-> Result<CondSel<'a, M>, CondError>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{
unsafe {
let mut rc = xwrustffi_cond_acquire(self.cond.get(), *self.tik.get());
if rc == 0 {
rc = xwrustffi_cond_bind(self.cond.get(), sel.sel.get() as _, pos);
if XWOK == rc {
Ok(CondSel {
cond: self,
sel: sel,
pos: pos,
})
} else if -ECHRNG == rc {
Err(CondError::OutOfSelPos(rc))
} else if -EALREADY == rc {
Err(CondError::AlreadyBound(rc))
} else if -EBUSY == rc {
Err(CondError::SelPosBusy(rc))
} else {
Err(CondError::Unknown(rc))
}
} else {
Err(CondError::NotInit(rc))
}
}
}
}
/// 条件量的选择子
///
/// `CondSel<'a, M>` 与 [`Cond`] 与 [`Sel<M>`] 具有相同的生命周期约束 `'a` 。因为 `CondSel<'a, M>` 中包含了 [`Cond`] 与 [`Sel<M>`] 的引用。
///
/// `CondSel<'a, M>` 中包含了绑定的位置信息,条件量采用 **非独占** 的方式进行绑定。
///
/// [`CondSel::selected()`] 可用来判断条件量是否被选择。
///
/// 当 `CondSel<'a, M>` 被 [`drop()`] 时,会自动将 [`Cond`] 从 [`Sel<M>`] 解绑。
///
/// [`Sel<M>`]: super::sel::Sel
/// [`drop()`]: https://doc.rust-lang.org/std/mem/fn.drop.html
pub struct CondSel<'a, const M: XwSz>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{
cond: &'a Cond,
sel: &'a Sel<M>,
pos: XwSq,
}
unsafe impl<'a, const M: XwSz> Send for CondSel<'a, M>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{}
unsafe impl<'a, const M: XwSz> Sync for CondSel<'a, M>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{}
impl<'a, const M: XwSz> Drop for CondSel<'a, M>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{
fn drop(&mut self) {
unsafe {
xwrustffi_cond_unbind(self.cond.cond.get(), self.sel.sel.get() as _);
xwrustffi_cond_put(self.cond.cond.get());
}
}
}
impl<'a, const M: XwSz> CondSel<'a, M>
where
[XwBmp; (M + XwBmp::BITS as usize - 1) / XwBmp::BITS as usize]: Sized
{
/// 判断触发的 **选择信号** 是否包括此条件量
///
/// # 示例
///
/// ```rust
/// let msk = Bmp::<8>::new(); // 8位位图
/// msk.s1all(); // 掩码为0xFF
/// loop {
/// let res = sel.select(&msk);
/// match res {
/// Ok(t) => { // 信号选择器上有 **选择信号** , `t` 为 **选择信号** 的位图。
/// if cond0sel.selected(&t) { // 条件量0被选择到
/// }
/// if cond1sel.selected(&t) { // 条件量1被选择到
/// }
/// },
/// Err(e) => { // 等待信号选择器失败,`e` 为 `SelError`
/// break;
/// },
/// }
/// }
/// ```
pub fn selected(&self, trg: &Bmp<M>) -> bool {
trg.t1i(self.pos)
}
}