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
// Pasts
// Copyright © 2019-2021 Jeron Aldaron Lau.
//
// Licensed under any of:
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// - MIT License (https://mit-license.org/)
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
// At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).
//
//! Minimal and simpler alternative to the futures crate.
//!
//! # Optional Features
//! The **std** feature is enabled by default, disable it to use on `no_std`.
//!
//! # Getting Started
//! This example pulls in a timer future from the `async-std` crate, then
//! executes it with the pasts executor.
//!
//! Add the following to your *Cargo.toml*:
//!
//! ```toml
//! [dependencies]
//! pasts = "0.7"
//! aysnc-std = "1.0"
//! ```
//!
//! ```rust,no_run
//! use core::{time::Duration, future::Future, task::{Context, Poll}, pin::Pin};
//! use async_std::task;
//! use pasts::{exec, wait};
//!
//! /// An event handled by the event loop.
//! enum Event {
//!     One(()),
//!     Two(()),
//! }
//!
//! /// Shared state between tasks on the thread.
//! struct State(usize);
//!
//! impl State {
//!     /// Event loop.  Return false to stop program.
//!     fn event(&mut self, event: Event) {
//!         match event {
//!             Event::One(()) => {
//!                 println!("One {}", self.0);
//!                 self.0 += 1;
//!                 if self.0 > 5 {
//!                     std::process::exit(0);
//!                 }
//!             },
//!             Event::Two(()) => {
//!                 println!("Two {}", self.0);
//!                 self.0 += 1
//!             },
//!         }
//!     }
//! }
//!
//! struct Interval(Duration, Pin<Box<dyn Future<Output = ()>>>);
//!
//! impl Interval {
//!     fn new(duration: Duration) -> Self {
//!         Interval(duration, Box::pin(task::sleep(duration)))
//!     }
//! }
//!
//! impl Future for &mut Interval {
//!     type Output = ();
//!
//!     fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
//!         match self.1.as_mut().poll(cx) {
//!             Poll::Pending => Poll::Pending,
//!             Poll::Ready(()) => {
//!                 self.1 = Box::pin(task::sleep(self.0));
//!                 Poll::Ready(())
//!             }
//!         }
//!     }
//! }
//!
//! fn main() {
//!     let mut state = State(0);
//!     let mut one = Interval::new(Duration::from_secs_f64(0.999));
//!     let mut two = Interval::new(Duration::from_secs_f64(2.0));
//!
//!     exec!(state.event(wait! {
//!         Event::One((&mut one).await),
//!         Event::Two((&mut two).await),
//!     }))
//! }
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![doc(
    html_logo_url = "https://libcala.github.io/logo.svg",
    html_favicon_url = "https://libcala.github.io/icon.svg",
    html_root_url = "https://docs.rs/pasts"
)]
#![deny(unsafe_code)]
#![warn(
    anonymous_parameters,
    missing_copy_implementations,
    missing_debug_implementations,
    missing_docs,
    nonstandard_style,
    rust_2018_idioms,
    single_use_lifetimes,
    trivial_casts,
    trivial_numeric_casts,
    unreachable_pub,
    unused_extern_crates,
    unused_qualifications,
    variant_size_differences
)]

#[cfg(any(not(feature = "std"), target_arch = "wasm32"))]
extern crate alloc;

mod exec;
mod poll;
mod util;

pub use exec::block_on;