2016-07-17 11:11:33 +08:00
|
|
|
// This file is part of libfringe, a low-level green threading library.
|
|
|
|
// Copyright (c) whitequark <whitequark@whitequark.org>
|
|
|
|
// See the LICENSE file included in this distribution.
|
|
|
|
|
|
|
|
//! Generators.
|
|
|
|
//!
|
|
|
|
//! Generators allow repeatedly suspending the execution of a function,
|
|
|
|
//! returning a value to the caller, and resuming the suspended function
|
|
|
|
//! afterwards.
|
|
|
|
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use core::{ptr, mem};
|
|
|
|
|
|
|
|
use stack;
|
2016-08-12 05:04:40 +08:00
|
|
|
use context::Context;
|
2016-07-17 11:11:33 +08:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub enum State {
|
|
|
|
/// Generator can be resumed. This is the initial state.
|
2016-08-11 10:16:13 +08:00
|
|
|
Runnable,
|
2016-07-17 11:11:33 +08:00
|
|
|
/// Generator cannot be resumed. This is the state of the generator after
|
2016-08-11 10:16:13 +08:00
|
|
|
/// the generator function has returned or panicked.
|
|
|
|
Unavailable
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 05:04:40 +08:00
|
|
|
/// Generator wraps a function and allows suspending its execution more than once, returning
|
|
|
|
/// a value each time.
|
2016-07-17 11:11:33 +08:00
|
|
|
///
|
2016-08-12 05:04:40 +08:00
|
|
|
/// The first time `resume(input0)` is called, the function is called as `f(yielder, input0)`.
|
|
|
|
/// It runs until it suspends its execution through `yielder.generate(output0)`, after which
|
|
|
|
/// `resume(input0)` returns `output0`. The function can be resumed again using `resume(input1)`,
|
|
|
|
/// after which `yielder.generate(output0)` returns `input1`, and so on. Once the function returns,
|
|
|
|
/// the `resume()` call will return `None`, and it will return `None` every time it is called
|
|
|
|
/// after that.
|
2016-07-17 11:11:33 +08:00
|
|
|
///
|
2016-08-12 05:04:40 +08:00
|
|
|
/// If the generator function panics, the panic is propagated through the `resume()` call as usual.
|
|
|
|
///
|
|
|
|
/// After the generator function returns or panics, it is safe to reclaim the generator stack
|
|
|
|
/// using `unwrap()`.
|
2016-07-17 11:11:33 +08:00
|
|
|
///
|
|
|
|
/// `state()` can be used to determine whether the generator function has returned;
|
2016-08-11 10:16:13 +08:00
|
|
|
/// the state is `State::Runnable` after creation and suspension, and `State::Unavailable`
|
|
|
|
/// once the generator function returns or panics.
|
2016-07-17 11:11:33 +08:00
|
|
|
///
|
2016-08-13 08:07:08 +08:00
|
|
|
/// When the input type is `()`, a generator implements the Iterator trait.
|
|
|
|
///
|
2016-07-17 11:11:33 +08:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use fringe::{OsStack, Generator};
|
|
|
|
///
|
|
|
|
/// let stack = OsStack::new(0).unwrap();
|
2016-08-12 05:04:40 +08:00
|
|
|
/// let mut add_one = Generator::new(stack, move |yielder, mut input| {
|
|
|
|
/// loop {
|
|
|
|
/// if input == 0 { break }
|
|
|
|
/// input = yielder.generate(input + 1)
|
2016-07-17 11:11:33 +08:00
|
|
|
/// }
|
|
|
|
/// });
|
2016-08-12 05:04:40 +08:00
|
|
|
/// println!("{:?}", add_one.resume(2)); // prints Some(3)
|
|
|
|
/// println!("{:?}", add_one.resume(3)); // prints Some(4)
|
|
|
|
/// println!("{:?}", add_one.resume(0)); // prints None
|
2016-07-17 11:11:33 +08:00
|
|
|
/// ```
|
2016-08-13 08:07:08 +08:00
|
|
|
///
|
|
|
|
/// # Iterator example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use fringe::{OsStack, Generator};
|
|
|
|
///
|
|
|
|
/// let stack = OsStack::new(0).unwrap();
|
|
|
|
/// let mut nat = Generator::new(stack, move |yielder, ()| {
|
|
|
|
/// for i in 1.. { yielder.generate(i) }
|
|
|
|
/// });
|
|
|
|
/// println!("{:?}", nat.next()); // prints Some(0)
|
|
|
|
/// println!("{:?}", nat.next()); // prints Some(1)
|
|
|
|
/// println!("{:?}", nat.next()); // prints Some(2)
|
|
|
|
/// ```
|
2016-07-17 11:11:33 +08:00
|
|
|
#[derive(Debug)]
|
2016-08-12 05:04:40 +08:00
|
|
|
pub struct Generator<Input: Send, Output: Send, Stack: stack::Stack> {
|
2016-07-17 11:11:33 +08:00
|
|
|
state: State,
|
2016-08-12 05:04:40 +08:00
|
|
|
context: Context<Stack>,
|
|
|
|
phantom: (PhantomData<*const Input>, PhantomData<*const Output>)
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 05:04:40 +08:00
|
|
|
impl<Input, Output, Stack> Generator<Input, Output, Stack>
|
|
|
|
where Input: Send, Output: Send, Stack: stack::Stack {
|
2016-07-17 11:11:33 +08:00
|
|
|
/// Creates a new generator.
|
2016-08-12 05:04:40 +08:00
|
|
|
pub fn new<F>(stack: Stack, f: F) -> Generator<Input, Output, Stack>
|
|
|
|
where Stack: stack::GuardedStack,
|
|
|
|
F: FnOnce(&mut Yielder<Input, Output, Stack>, Input) + Send {
|
2016-07-17 11:45:50 +08:00
|
|
|
unsafe { Generator::unsafe_new(stack, f) }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Same as `new`, but does not require `stack` to have a guard page.
|
|
|
|
///
|
|
|
|
/// This function is unsafe because the generator function can easily violate
|
|
|
|
/// memory safety by overflowing the stack. It is useful in environments where
|
|
|
|
/// guarded stacks do not exist, e.g. in absence of an MMU.
|
2016-08-12 05:04:40 +08:00
|
|
|
pub unsafe fn unsafe_new<F>(stack: Stack, f: F) -> Generator<Input, Output, Stack>
|
|
|
|
where F: FnOnce(&mut Yielder<Input, Output, Stack>, Input) + Send {
|
|
|
|
unsafe extern "C" fn generator_wrapper<Input, Output, Stack, F>(env: usize) -> !
|
|
|
|
where Input: Send, Output: Send, Stack: stack::Stack,
|
|
|
|
F: FnOnce(&mut Yielder<Input, Output, Stack>, Input) {
|
2016-07-17 11:11:33 +08:00
|
|
|
// Retrieve our environment from the callee and return control to it.
|
2016-08-12 05:04:40 +08:00
|
|
|
let (mut yielder, f) = ptr::read(env as *mut (Yielder<Input, Output, Stack>, F));
|
|
|
|
let data = Context::swap(yielder.context, yielder.context, 0);
|
|
|
|
// See the second half of Yielder::generate_bare.
|
|
|
|
let (new_context, input) = ptr::read(data as *mut (*mut Context<Stack>, Input));
|
|
|
|
yielder.context = new_context as *mut Context<Stack>;
|
2016-07-17 11:11:33 +08:00
|
|
|
// Run the body of the generator.
|
2016-08-12 05:04:40 +08:00
|
|
|
f(&mut yielder, input);
|
2016-07-17 11:11:33 +08:00
|
|
|
// Past this point, the generator has dropped everything it has held.
|
2016-08-12 05:04:40 +08:00
|
|
|
loop { yielder.generate_bare(None); }
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
|
2016-07-17 11:45:50 +08:00
|
|
|
let mut generator = Generator {
|
2016-08-11 10:16:13 +08:00
|
|
|
state: State::Runnable,
|
2016-08-12 05:04:40 +08:00
|
|
|
context: Context::new(stack, generator_wrapper::<Input, Output, Stack, F>),
|
|
|
|
phantom: (PhantomData, PhantomData)
|
2016-07-17 11:45:50 +08:00
|
|
|
};
|
2016-07-17 11:11:33 +08:00
|
|
|
|
2016-07-17 11:45:50 +08:00
|
|
|
// Transfer environment to the callee.
|
2016-08-12 05:04:40 +08:00
|
|
|
let mut env = (Yielder::new(&mut generator.context), f);
|
|
|
|
Context::swap(&mut generator.context, &generator.context,
|
|
|
|
&mut env as *mut (Yielder<Input, Output, Stack>, F) as usize);
|
|
|
|
mem::forget(env);
|
2016-07-17 11:11:33 +08:00
|
|
|
|
2016-07-17 11:45:50 +08:00
|
|
|
generator
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 05:04:40 +08:00
|
|
|
/// Resumes the generator and return the next value it yields.
|
|
|
|
/// If the generator function has returned, returns `None`.
|
|
|
|
#[inline]
|
|
|
|
pub fn resume(&mut self, input: Input) -> Option<Output> {
|
|
|
|
match self.state {
|
|
|
|
State::Runnable => {
|
|
|
|
// Set the state to Unavailable. Since we have exclusive access to the generator,
|
|
|
|
// the only case where this matters is the generator function panics, after which
|
|
|
|
// it must not be invocable again.
|
|
|
|
self.state = State::Unavailable;
|
|
|
|
|
|
|
|
// Switch to the generator function, and retrieve the yielded value.
|
|
|
|
let val = unsafe {
|
|
|
|
let mut data_in = (&mut self.context as *mut Context<Stack>, input);
|
|
|
|
let data_out =
|
|
|
|
ptr::read(Context::swap(&mut self.context, &self.context,
|
|
|
|
&mut data_in as *mut (*mut Context<Stack>, Input) as usize)
|
|
|
|
as *mut Option<Output>);
|
|
|
|
mem::forget(data_in);
|
|
|
|
data_out
|
|
|
|
};
|
|
|
|
|
|
|
|
// Unless the generator function has returned, it can be switched to again, so
|
|
|
|
// set the state to Runnable.
|
|
|
|
if val.is_some() { self.state = State::Runnable }
|
|
|
|
|
|
|
|
val
|
|
|
|
}
|
|
|
|
State::Unavailable => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-17 11:11:33 +08:00
|
|
|
/// Returns the state of the generator.
|
2016-08-13 18:52:12 +08:00
|
|
|
#[inline]
|
2016-07-17 11:11:33 +08:00
|
|
|
pub fn state(&self) -> State { self.state }
|
|
|
|
|
|
|
|
/// Extracts the stack from a generator when the generator function has returned.
|
|
|
|
/// If the generator function has not returned
|
2016-08-11 10:16:13 +08:00
|
|
|
/// (i.e. `self.state() == State::Runnable`), panics.
|
2016-07-17 11:11:33 +08:00
|
|
|
pub fn unwrap(self) -> Stack {
|
|
|
|
match self.state {
|
2016-08-11 10:16:13 +08:00
|
|
|
State::Runnable => panic!("Argh! Bastard! Don't touch that!"),
|
|
|
|
State::Unavailable => unsafe { self.context.unwrap() }
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Yielder is an interface provided to every generator through which it
|
|
|
|
/// returns a value.
|
|
|
|
#[derive(Debug)]
|
2016-08-12 05:04:40 +08:00
|
|
|
pub struct Yielder<Input: Send, Output: Send, Stack: stack::Stack> {
|
|
|
|
context: *mut Context<Stack>,
|
|
|
|
phantom: (PhantomData<*const Input>, PhantomData<*const Output>)
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
|
2016-08-12 05:04:40 +08:00
|
|
|
impl<Input, Output, Stack> Yielder<Input, Output, Stack>
|
|
|
|
where Input: Send, Output: Send, Stack: stack::Stack {
|
|
|
|
fn new(context: *mut Context<Stack>) -> Yielder<Input, Output, Stack> {
|
2016-07-17 11:11:33 +08:00
|
|
|
Yielder {
|
|
|
|
context: context,
|
2016-08-12 05:04:40 +08:00
|
|
|
phantom: (PhantomData, PhantomData)
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2016-08-12 05:04:40 +08:00
|
|
|
fn generate_bare(&mut self, mut val: Option<Output>) -> Input {
|
2016-07-17 11:11:33 +08:00
|
|
|
unsafe {
|
2016-08-12 05:04:40 +08:00
|
|
|
let data = Context::swap(self.context, self.context,
|
|
|
|
&mut val as *mut Option<Output> as usize);
|
|
|
|
let (new_context, input) = ptr::read(data as *mut (*mut Context<Stack>, Input));
|
2016-07-17 11:11:33 +08:00
|
|
|
// The generator can be moved (and with it, the context).
|
|
|
|
// This changes the address of the context.
|
|
|
|
// Thus, we update it after each swap.
|
2016-08-12 05:04:40 +08:00
|
|
|
self.context = new_context;
|
|
|
|
// However, between this point and the next time we enter generate_bare
|
2016-07-17 11:11:33 +08:00
|
|
|
// the generator cannot be moved, as a &mut Generator is necessary
|
|
|
|
// to resume the generator function.
|
2016-08-12 05:04:40 +08:00
|
|
|
input
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-12 05:04:40 +08:00
|
|
|
/// Suspends the generator and returns `Some(item)` from the `resume()`
|
2016-07-17 11:11:33 +08:00
|
|
|
/// invocation that resumed the generator.
|
|
|
|
#[inline(always)]
|
2016-08-12 05:04:40 +08:00
|
|
|
pub fn generate(&mut self, item: Output) -> Input {
|
|
|
|
self.generate_bare(Some(item))
|
2016-07-17 11:11:33 +08:00
|
|
|
}
|
|
|
|
}
|
2016-08-13 08:07:08 +08:00
|
|
|
|
|
|
|
impl<Output, Stack> Iterator for Generator<(), Output, Stack>
|
|
|
|
where Output: Send, Stack: stack::Stack {
|
|
|
|
type Item = Output;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> { self.resume(()) }
|
|
|
|
}
|