Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix wasm and nostd builds#863

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
dignifiedquire merged 13 commits intomasterfromfix-wasm
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 35 additions & 18 deletions.github/workflows/ci.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -29,24 +29,6 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true

- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}

- name: Cache cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}

- name: Cache cargo build
uses: actions/cache@v2
with:
path: target
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}

- name: check
uses: actions-rs/cargo@v1
with:
Expand DownExpand Up@@ -160,6 +142,41 @@ jobs:
- name: test
run: cross test --all --features unstable --target ${{ matrix.target }}

check_wasm:
name: Check wasm targets
runs-on: ubuntu-latest
strategy:
matrix:
rust: [nightly, beta, stable]

steps:
- uses: actions/checkout@master

- name: Install rust with wasm32-unknown-unknown
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
target: wasm32-unknown-unknown
override: true

- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: wasm32-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}

- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --target wasm32-unknown-unknown

- name: check unstable
uses: actions-rs/cargo@v1
with:
command: check
args: --target wasm32-unknown-unknown --tests --all --features unstable

check_fmt_and_docs:
name: Checking fmt and docs
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletionsCargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,11 +33,12 @@ default = [
"log",
"num_cpus",
"pin-project-lite",
"gloo-timers",
]
docs = ["attributes", "unstable", "default"]
unstable = [
"std",
"futures-timer",
"async-io"
]
attributes = ["async-attributes"]
std = [
Expand DownExpand Up@@ -74,7 +75,6 @@ once_cell = { version = "1.3.1", optional = true }
pin-project-lite = { version = "0.1.4", optional = true }
pin-utils = { version = "0.1.0-alpha.4", optional = true }
slab = { version = "0.4.2", optional = true }
futures-timer = { version = "3.0.2", optional = true }

# Devdepencency, but they are not allowed to be optional :/
surf = { version = "1.0.3", optional = true }
Expand All@@ -86,7 +86,7 @@ blocking = { version = "1.0.0", optional = true }
futures-lite = { version = "1.0.0", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
futures-timer = { version = "3.0.2",optional = true,features = ["wasm-bindgen"] }
gloo-timers = { version = "0.2.1", features = ["futures"], optional = true }
wasm-bindgen-futures = { version = "0.4.10", optional = true }
futures-channel = { version = "0.3.4", optional = true }

Expand Down
11 changes: 6 additions & 5 deletionssrc/task/builder.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
use std::cell::Cell;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
Expand All@@ -7,7 +6,7 @@ use std::task::{Context, Poll};
use pin_project_lite::pin_project;

use crate::io;
use crate::task::{self,JoinHandle, Task, TaskLocalsWrapper};
use crate::task::{JoinHandle, Task, TaskLocalsWrapper};

/// Task builder that configures the settings of a new task.
#[derive(Debug, Default)]
Expand DownExpand Up@@ -61,7 +60,7 @@ impl Builder {
});

let task = wrapped.tag.task().clone();
let handle = task::executor::spawn(wrapped);
let handle =crate::task::executor::spawn(wrapped);

Ok(JoinHandle::new(handle, task))
}
Expand All@@ -81,7 +80,7 @@ impl Builder {
});

let task = wrapped.tag.task().clone();
let handle = task::executor::local(wrapped);
let handle =crate::task::executor::local(wrapped);

Ok(JoinHandle::new(handle, task))
}
Expand DownExpand Up@@ -143,6 +142,8 @@ impl Builder {
where
F: Future<Output = T>,
{
use std::cell::Cell;

let wrapped = self.build(future);

// Log this `block_on` operation.
Expand All@@ -167,7 +168,7 @@ impl Builder {
TaskLocalsWrapper::set_current(&wrapped.tag, || {
let res = if should_run {
// The first call should run the executor
task::executor::run(wrapped)
crate::task::executor::run(wrapped)
} else {
futures_lite::future::block_on(wrapped)
};
Expand Down
10 changes: 10 additions & 0 deletionssrc/task/join_handle.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -78,7 +78,17 @@ impl<T> Drop for JoinHandle<T> {
impl<T>FutureforJoinHandle<T>{
typeOutput =T;

#[cfg(not(target_os ="unknown"))]
fnpoll(mutself:Pin<&mutSelf>,cx:&mutContext<'_>) ->Poll<Self::Output>{
Pin::new(&mutself.handle.as_mut().unwrap()).poll(cx)
}

#[cfg(target_arch ="wasm32")]
fnpoll(mutself:Pin<&mutSelf>,cx:&mutContext<'_>) ->Poll<Self::Output>{
matchPin::new(&mutself.handle.as_mut().unwrap()).poll(cx){
Poll::Ready(Ok(t)) =>Poll::Ready(t),
Poll::Ready(Err(_)) =>unreachable!("channel must not be canceled"),
Poll::Pending =>Poll::Pending,
}
}
}
16 changes: 9 additions & 7 deletionssrc/utils.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -59,7 +59,10 @@ pub(crate) trait Context {
fn context(self, message: impl Fn() -> String) -> Self;
}

#[cfg(all(not(target_os = "unknown"), feature = "default"))]
#[cfg(all(
not(target_os = "unknown"),
any(feature = "default", feature = "unstable")
))]
mod timer {
pub type Timer = async_io::Timer;
}
Expand All@@ -69,20 +72,19 @@ pub(crate) fn timer_after(dur: std::time::Duration) -> timer::Timer {
Timer::after(dur)
}

#[cfg(any(
all(target_arch = "wasm32", feature = "default"),
all(feature = "unstable", not(feature = "default"))
))]
#[cfg(any(all(target_arch = "wasm32", feature = "default"),))]
mod timer {
use std::pin::Pin;
use std::task::Poll;

use gloo_timers::future::TimeoutFuture;

#[derive(Debug)]
pub(crate) struct Timer(futures_timer::Delay);
pub(crate) struct Timer(TimeoutFuture);

impl Timer {
pub(crate) fn after(dur: std::time::Duration) -> Self {
Timer(futures_timer::Delay::new(dur))
Timer(TimeoutFuture::new(dur.as_millis() as u32))
}
}

Expand Down
6 changes: 2 additions & 4 deletionstests/collect.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
#[cfg(feature = "unstable")]
#[test]
fn test_send()-> async_std::io::Result<()>{
fn test_send() {
use async_std::prelude::*;
use async_std::{stream, task};

Expand All@@ -14,7 +14,5 @@ fn test_send() -> async_std::io::Result<()> {

// This line triggers a compilation error
test_send_trait(&fut);

Ok(())
})
});
}

[8]ページ先頭

©2009-2025 Movatter.jp