play around with async tasks
This commit is contained in:
parent
6639c14bd9
commit
805aec1572
|
@ -18,6 +18,7 @@ serde_json = "1.0.32"
|
|||
serde_derive = "1.0.80"
|
||||
url = "1.7.1"
|
||||
futures = "0.1.25"
|
||||
tokio = "0.1.11"
|
||||
http = "0.1.13"
|
||||
hyper = "0.12.14"
|
||||
lazy_static = "1.1.0"
|
||||
|
|
27
src/api3.rs
27
src/api3.rs
|
@ -6,8 +6,11 @@ use crate::json_schema::*;
|
|||
use crate::api_info::*;
|
||||
use serde_json::{json, Value};
|
||||
|
||||
use futures::future::*;
|
||||
use tokio::prelude::*;
|
||||
use hyper::{Method, Body, Request, Response, Server, StatusCode};
|
||||
|
||||
fn test_api_handler(param: Value, info: &ApiMethod) -> Result<Value, Error> {
|
||||
fn test_sync_api_handler(param: Value, info: &ApiMethod) -> Result<Value, Error> {
|
||||
println!("This is a test {}", param);
|
||||
|
||||
// let force: Option<bool> = Some(false);
|
||||
|
@ -25,12 +28,30 @@ fn test_api_handler(param: Value, info: &ApiMethod) -> Result<Value, Error> {
|
|||
Ok(json!(null))
|
||||
}
|
||||
|
||||
fn test_async_api_handler(
|
||||
param: Value,
|
||||
info: &ApiMethod
|
||||
) -> Box<Future<Item = Response<Body>, Error = Error> + Send> {
|
||||
println!("This is a test {}", param);
|
||||
|
||||
let task = lazy(|| {
|
||||
println!("A LAZY TASK");
|
||||
|
||||
let mut resp = Response::new(Body::from("A LAZY TASKs RESPONSE"));
|
||||
*resp.status_mut() = StatusCode::OK;
|
||||
|
||||
ok(resp)
|
||||
});
|
||||
|
||||
Box::new(task)
|
||||
}
|
||||
|
||||
pub fn router() -> MethodInfo {
|
||||
|
||||
let route = MethodInfo::new()
|
||||
.get(ApiMethod {
|
||||
handler: test_api_handler,
|
||||
handler: test_sync_api_handler,
|
||||
async_handler: test_async_api_handler,
|
||||
description: "This is a simple test.",
|
||||
parameters: parameter!{
|
||||
force => Boolean!{
|
||||
|
@ -43,5 +64,3 @@ pub fn router() -> MethodInfo {
|
|||
|
||||
route
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
use failure::*;
|
||||
use futures::future::*;
|
||||
|
||||
use crate::json_schema::*;
|
||||
use serde_json::{Value};
|
||||
use hyper::{Body, Response};
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
|
@ -10,6 +12,7 @@ pub struct ApiMethod {
|
|||
pub parameters: Jss,
|
||||
pub returns: Jss,
|
||||
pub handler: fn(Value, &ApiMethod) -> Result<Value, Error>,
|
||||
pub async_handler: fn(Value, &ApiMethod) -> Box<Future<Item = Response<Body>, Error = Error> + Send>
|
||||
}
|
||||
|
||||
pub struct MethodInfo {
|
||||
|
|
77
src/main.rs
77
src/main.rs
|
@ -10,7 +10,10 @@ use apitest::api_info::*;
|
|||
use apitest::json_schema::*;
|
||||
|
||||
//use serde_derive::{Serialize, Deserialize};
|
||||
use serde_json::{json};
|
||||
use serde_json::{json, Value};
|
||||
|
||||
use tokio::prelude::*;
|
||||
use tokio::timer::Delay;
|
||||
|
||||
//use hyper::body::Payload;
|
||||
use hyper::http::request::Parts;
|
||||
|
@ -18,7 +21,9 @@ use hyper::{Method, Body, Request, Response, Server, StatusCode};
|
|||
use hyper::rt::{Future, Stream};
|
||||
use hyper::service::service_fn;
|
||||
|
||||
use futures::future;
|
||||
use futures::future::*;
|
||||
|
||||
use std::time::{Duration, Instant};
|
||||
|
||||
type BoxFut = Box<Future<Item = Response<Body>, Error = failure::Error> + Send>;
|
||||
|
||||
|
@ -33,15 +38,15 @@ macro_rules! error_response {
|
|||
macro_rules! http_error_future {
|
||||
($status:ident, $msg:expr) => {{
|
||||
let resp = error_response!($status, $msg);
|
||||
return Box::new(futures::future::ok(resp));
|
||||
return Box::new(ok(resp));
|
||||
}}
|
||||
}
|
||||
|
||||
fn handle_api_request<'a>(
|
||||
fn get_request_parameters_async<'a>(
|
||||
info: &'a ApiMethod,
|
||||
parts: Parts,
|
||||
req_body: Body,
|
||||
) -> Box<Future<Item = Response<Body>, Error = failure::Error> + Send + 'a>
|
||||
) -> Box<Future<Item = Value, Error = failure::Error> + Send + 'a>
|
||||
{
|
||||
let resp = req_body.concat2()
|
||||
.map_err(|err| format_err!("Promlems reading request body: {}", err))
|
||||
|
@ -69,6 +74,63 @@ fn handle_api_request<'a>(
|
|||
}
|
||||
|
||||
println!("GOT PARAMS {}", params);
|
||||
Ok(params)
|
||||
});
|
||||
|
||||
Box::new(resp)
|
||||
}
|
||||
|
||||
fn handle_async_api_request<'a>(
|
||||
info: &'a ApiMethod,
|
||||
parts: Parts,
|
||||
req_body: Body,
|
||||
) -> Box<Future<Item = Response<Body>, Error = failure::Error> + Send + 'a>
|
||||
{
|
||||
let params = get_request_parameters_async(info, parts, req_body);
|
||||
|
||||
let resp = params
|
||||
.and_then(move |params| {
|
||||
|
||||
println!("GOT PARAMS {}", params);
|
||||
|
||||
/*
|
||||
let when = Instant::now() + Duration::from_millis(3000);
|
||||
let task = Delay::new(when).then(|_| {
|
||||
println!("A LAZY TASK");
|
||||
ok(())
|
||||
});
|
||||
|
||||
tokio::spawn(task);
|
||||
*/
|
||||
|
||||
(info.async_handler)(params, info)
|
||||
});
|
||||
|
||||
Box::new(resp)
|
||||
}
|
||||
|
||||
fn handle_sync_api_request<'a>(
|
||||
info: &'a ApiMethod,
|
||||
parts: Parts,
|
||||
req_body: Body,
|
||||
) -> Box<Future<Item = Response<Body>, Error = failure::Error> + Send + 'a>
|
||||
{
|
||||
let params = get_request_parameters_async(info, parts, req_body);
|
||||
|
||||
let resp = params
|
||||
.and_then(move |params| {
|
||||
|
||||
println!("GOT PARAMS {}", params);
|
||||
|
||||
/*
|
||||
let when = Instant::now() + Duration::from_millis(3000);
|
||||
let task = Delay::new(when).then(|_| {
|
||||
println!("A LAZY TASK");
|
||||
ok(())
|
||||
});
|
||||
|
||||
tokio::spawn(task);
|
||||
*/
|
||||
|
||||
let res = (info.handler)(params, info)?;
|
||||
|
||||
|
@ -128,7 +190,8 @@ fn handle_request(req: Request<Body>) -> BoxFut {
|
|||
|
||||
// fixme: handle auth
|
||||
|
||||
return handle_api_request(api_method, parts, body);
|
||||
//return handle_sync_api_request(api_method, parts, body);
|
||||
return handle_async_api_request(api_method, parts, body);
|
||||
|
||||
} else {
|
||||
http_error_future!(NOT_FOUND, "Path not found.");
|
||||
|
@ -136,7 +199,7 @@ fn handle_request(req: Request<Body>) -> BoxFut {
|
|||
}
|
||||
}
|
||||
|
||||
Box::new(future::ok(Response::new(Body::from("RETURN WEB GUI\n"))))
|
||||
Box::new(ok(Response::new(Body::from("RETURN WEB GUI\n"))))
|
||||
}
|
||||
|
||||
lazy_static!{
|
||||
|
|
Loading…
Reference in New Issue