This introduces a bit of complexity to the example, mainly the use of the try_continue! macro for dealing with errors, but I think this is an appropriate trade-off as users of this library are likely to be framework authors instead of end users.
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(macro_rules)]
 | |
| 
 | |
| extern crate hyper;
 | |
| extern crate debug;
 | |
| 
 | |
| use std::io::util::copy;
 | |
| use std::io::net::ip::Ipv4Addr;
 | |
| 
 | |
| use hyper::{Get, Post};
 | |
| use hyper::server::{Server, Handler, Incoming};
 | |
| use hyper::header::ContentLength;
 | |
| 
 | |
| struct Echo;
 | |
| 
 | |
| macro_rules! try_continue(
 | |
|     ($e:expr) => {{
 | |
|         match $e {
 | |
|             Ok(v) => v,
 | |
|             Err(e) => { println!("Error: {}", e); continue; }
 | |
|         }
 | |
|     }}
 | |
| )
 | |
| 
 | |
| impl Handler for Echo {
 | |
|     fn handle(self, mut incoming: Incoming) {
 | |
|         for (mut req, mut res) in incoming {
 | |
|             match req.uri {
 | |
|                 hyper::uri::AbsolutePath(ref path) => match (&req.method, path.as_slice()) {
 | |
|                     (&Get, "/") | (&Get, "/echo") => {
 | |
|                         let out = b"Try POST /echo";
 | |
| 
 | |
|                         res.headers.set(ContentLength(out.len()));
 | |
|                         try_continue!(res.write(out));
 | |
|                         try_continue!(res.end());
 | |
|                         continue;
 | |
|                     },
 | |
|                     (&Post, "/echo") => (), // fall through, fighting mutable borrows
 | |
|                     _ => {
 | |
|                         res.status = hyper::status::NotFound;
 | |
|                         try_continue!(res.end());
 | |
|                         continue;
 | |
|                     }
 | |
|                 },
 | |
|                 _ => {
 | |
|                     try_continue!(res.end());
 | |
|                     continue; 
 | |
|                 }
 | |
|             };
 | |
| 
 | |
|             try_continue!(copy(&mut req, &mut res));
 | |
|             try_continue!(res.end());
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let server = Server::http(Ipv4Addr(127, 0, 0, 1), 1337);
 | |
|     server.listen(Echo).unwrap();
 | |
| }
 |