This introduces the `hyper::service` module, which replaces `tokio-service`. Since the trait is specific to hyper, its associated types have been adjusted. It didn't make sense to need to define `Service<Request=http::Request>`, since we already know the context is HTTP. Instead, the request and response bodies are associated types now, and slightly stricter bounds have been placed on `Error`. The helpers `service_fn` and `service_fn_ok` should be sufficient for now to ease creating `Service`s. The `NewService` trait now allows service creation to also be asynchronous. These traits are similar to `tower` in nature, and possibly will be replaced completely by it in the future. For now, hyper defining its own allows the traits to have better context, and prevents breaking changes in `tower` from affecting hyper. Closes #1461 BREAKING CHANGE: The `Service` trait has changed: it has some changed associated types, and `call` is now bound to `&mut self`. The `NewService` trait has changed: it has some changed associated types, and `new_service` now returns a `Future`. `Client` no longer implements `Service` for now. `hyper::server::conn::Serve` now returns `Connecting` instead of `Connection`s, since `new_service` can now return a `Future`. The `Connecting` is a future wrapping the new service future, returning a `Connection` afterwards. In many cases, `Future::flatten` can be used.
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(warnings)]
 | |
| extern crate futures;
 | |
| extern crate hyper;
 | |
| extern crate pretty_env_logger;
 | |
| extern crate tokio;
 | |
| 
 | |
| use futures::{future, Future, Stream};
 | |
| 
 | |
| use hyper::{Body, Chunk, Client, Method, Request, Response, Server, StatusCode};
 | |
| use hyper::client::HttpConnector;
 | |
| use hyper::service::service_fn;
 | |
| 
 | |
| #[allow(unused, deprecated)]
 | |
| use std::ascii::AsciiExt;
 | |
| 
 | |
| static NOTFOUND: &[u8] = b"Not Found";
 | |
| static URL: &str = "http://127.0.0.1:1337/web_api";
 | |
| static INDEX: &[u8] = b"<a href=\"test.html\">test.html</a>";
 | |
| static LOWERCASE: &[u8] = b"i am a lower case string";
 | |
| 
 | |
| fn response_examples(req: Request<Body>, client: &Client<HttpConnector>)
 | |
|     -> Box<Future<Item=Response<Body>, Error=hyper::Error> + Send>
 | |
| {
 | |
|     match (req.method(), req.uri().path()) {
 | |
|         (&Method::GET, "/") | (&Method::GET, "/index.html") => {
 | |
|             let body = Body::from(INDEX);
 | |
|             Box::new(future::ok(Response::new(body)))
 | |
|         },
 | |
|         (&Method::GET, "/test.html") => {
 | |
|             // Run a web query against the web api below
 | |
|             let req = Request::builder()
 | |
|                 .method(Method::POST)
 | |
|                 .uri(URL)
 | |
|                 .body(LOWERCASE.into())
 | |
|                 .unwrap();
 | |
|             let web_res_future = client.request(req);
 | |
| 
 | |
|             Box::new(web_res_future.map(|web_res| {
 | |
|                 let body = Body::wrap_stream(web_res.into_body().map(|b| {
 | |
|                     Chunk::from(format!("before: '{:?}'<br>after: '{:?}'",
 | |
|                                         std::str::from_utf8(LOWERCASE).unwrap(),
 | |
|                                         std::str::from_utf8(&b).unwrap()))
 | |
|                 }));
 | |
|                 Response::new(body)
 | |
|             }))
 | |
|         },
 | |
|         (&Method::POST, "/web_api") => {
 | |
|             // A web api to run against. Simple upcasing of the body.
 | |
|             let body = Body::wrap_stream(req.into_body().map(|chunk| {
 | |
|                 let upper = chunk.iter().map(|byte| byte.to_ascii_uppercase())
 | |
|                     .collect::<Vec<u8>>();
 | |
|                 Chunk::from(upper)
 | |
|             }));
 | |
|             Box::new(future::ok(Response::new(body)))
 | |
|         },
 | |
|         _ => {
 | |
|             let body = Body::from(NOTFOUND);
 | |
|             Box::new(future::ok(Response::builder()
 | |
|                                          .status(StatusCode::NOT_FOUND)
 | |
|                                          .body(body)
 | |
|                                          .unwrap()))
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     pretty_env_logger::init();
 | |
| 
 | |
|     let addr = "127.0.0.1:1337".parse().unwrap();
 | |
| 
 | |
|     tokio::run(future::lazy(move || {
 | |
|         // Share a `Client` with all `Service`s
 | |
|         let client = Client::new();
 | |
| 
 | |
|         let new_service = move || {
 | |
|             // Move a clone of `client` into the `service_fn`.
 | |
|             let client = client.clone();
 | |
|             service_fn(move |req| {
 | |
|                 response_examples(req, &client)
 | |
|             })
 | |
|         };
 | |
| 
 | |
|         let server = Server::bind(&addr)
 | |
|             .serve(new_service)
 | |
|             .map_err(|e| eprintln!("server error: {}", e));
 | |
| 
 | |
|         println!("Listening on http://{}", addr);
 | |
| 
 | |
|         server
 | |
|     }));
 | |
| }
 | |
| 
 |