-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25286bd
commit 45784eb
Showing
7 changed files
with
144 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
use crate::utils; | ||
use std::sync; | ||
use std::sync::Arc; | ||
use std::sync::Mutex; | ||
use std::task; | ||
use std::task::Wake; | ||
use std::task::Waker; | ||
|
||
use super::Readiness; | ||
|
||
/// An efficient waker which delegates wake events. | ||
#[derive(Debug, Clone)] | ||
pub(crate) struct InlineWaker { | ||
pub(crate) id: usize, | ||
pub(crate) readiness: Arc<Mutex<Readiness>>, | ||
} | ||
|
||
impl InlineWaker { | ||
/// Create a new instance of `InlineWaker`. | ||
pub(crate) fn new(id: usize, readiness: Arc<Mutex<Readiness>>) -> Self { | ||
Self { id, readiness } | ||
} | ||
} | ||
|
||
impl Wake for InlineWaker { | ||
fn wake(self: std::sync::Arc<Self>) { | ||
let mut readiness = self.readiness.lock().unwrap(); | ||
if !readiness.set_ready(self.id) { | ||
readiness | ||
.parent_waker() | ||
.as_mut() | ||
.expect("`parent_waker` not available from `Readiness`. Did you forget to call `Readiness::set_waker`?") | ||
.wake_by_ref() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
mod inline_waker; | ||
mod readiness; | ||
mod waker_list; | ||
|
||
pub(crate) use inline_waker::InlineWaker; | ||
pub(crate) use readiness::Readiness; | ||
pub(crate) use waker_list::WakerList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
use bitvec::{bitvec, vec::BitVec}; | ||
use std::task::Waker; | ||
|
||
use crate::utils; | ||
|
||
/// Tracks which wakers are "ready" and should be polled. | ||
#[derive(Debug)] | ||
pub(crate) struct Readiness { | ||
count: usize, | ||
ready: BitVec, | ||
parent_waker: Option<Waker>, | ||
} | ||
|
||
impl Readiness { | ||
/// Create a new instance of readiness. | ||
pub(crate) fn new(count: usize) -> Self { | ||
Self { | ||
count, | ||
ready: bitvec![true as usize; count], | ||
parent_waker: None, | ||
} | ||
} | ||
|
||
/// Returns the old ready state for this id | ||
pub(crate) fn set_ready(&mut self, id: usize) -> bool { | ||
if !self.ready[id] { | ||
self.count += 1; | ||
self.ready.set(id, true); | ||
|
||
false | ||
} else { | ||
true | ||
} | ||
} | ||
|
||
/// Returns whether the task id was previously ready | ||
pub(crate) fn clear_ready(&mut self, id: usize) -> bool { | ||
if self.ready[id] { | ||
self.count -= 1; | ||
self.ready.set(id, false); | ||
|
||
true | ||
} else { | ||
false | ||
} | ||
} | ||
|
||
/// Returns `true` if any of the wakers are ready. | ||
pub(crate) fn any_ready(&self) -> bool { | ||
self.count > 0 | ||
} | ||
|
||
/// Access the parent waker. | ||
#[inline] | ||
pub(crate) fn parent_waker(&self) -> Option<&Waker> { | ||
self.parent_waker.as_ref() | ||
} | ||
|
||
/// Set the parent `Waker`. This needs to be called at the start of every | ||
/// `poll` function. | ||
pub(crate) fn set_waker(&mut self, parent_waker: &Waker) { | ||
self.parent_waker = Some(parent_waker.clone()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use std::sync::Arc; | ||
use std::sync::Mutex; | ||
use std::task::Waker; | ||
|
||
use super::{InlineWaker, Readiness}; | ||
use crate::utils; | ||
|
||
/// A collection of wakers which delegate to an in-line waker. | ||
pub(crate) struct WakerList { | ||
wakers: Vec<Waker>, | ||
readiness: Arc<Mutex<Readiness>>, | ||
} | ||
|
||
impl WakerList { | ||
/// Create a new instance of `WakerList`. | ||
pub(crate) fn new(len: usize) -> Self { | ||
let readiness = Arc::new(Mutex::new(Readiness::new(len))); | ||
Self { | ||
wakers: (0..len) | ||
.map(|i| Arc::new(InlineWaker::new(i, readiness.clone())).into()) | ||
.collect(), | ||
readiness, | ||
} | ||
} | ||
|
||
pub(crate) fn get(&self, index: usize) -> Option<&Waker> { | ||
self.wakers.get(index) | ||
} | ||
|
||
/// Access the `Readiness`. | ||
pub(crate) fn readiness(&self) -> &Mutex<Readiness> { | ||
self.readiness.as_ref() | ||
} | ||
} |