15 releases

0.3.0 Jun 15, 2024
0.2.0 Jul 6, 2020
0.1.12 Dec 5, 2019
0.1.11 Aug 18, 2019
0.1.8 Jul 21, 2018

#735 in HTTP server

Download history 29/week @ 2024-07-28 8/week @ 2024-08-04 7/week @ 2024-08-11 1/week @ 2024-08-18 20/week @ 2024-08-25 8/week @ 2024-09-01 2/week @ 2024-09-08 43/week @ 2024-09-22 9/week @ 2024-09-29 11/week @ 2024-10-06 31/week @ 2024-10-13 9/week @ 2024-10-20 21/week @ 2024-10-27 28/week @ 2024-11-03 7/week @ 2024-11-10

69 downloads per month
Used in 4 crates

MIT license

73KB
1.5K SLoC

fibers_http_server

fibers_http_server Documentation Build Status Code Coverage License: MIT

A tiny HTTP/1.1 server framework for Rust.

Documentation

Examples

use std::io::{Read, Write};
use std::net::TcpStream;
use std::thread;
use std::time::Duration;
use bytecodec::bytes::Utf8Encoder;
use bytecodec::value::NullDecoder;
use fibers::{Executor, Spawn, InPlaceExecutor};
use fibers_http_server::{HandleRequest, Reply, Req, Res, ServerBuilder, Status};
use futures::future::{ok, Future};
use httpcodec::{BodyDecoder, BodyEncoder};

// Request handler
struct Hello;
impl HandleRequest for Hello {
    const METHOD: &'static str = "GET";
    const PATH: &'static str = "/hello";

    type ReqBody = ();
    type ResBody = String;
    type Decoder = BodyDecoder<NullDecoder>;
    type Encoder = BodyEncoder<Utf8Encoder>;
    type Reply = Reply<Self::ResBody>;

    fn handle_request(&self, _req: Req<Self::ReqBody>) -> Self::Reply {
        Box::new(ok(Res::new(Status::Ok, "hello".to_owned())))
    }
}

let addr = "127.0.0.1:14758".parse().unwrap();

// HTTP server
thread::spawn(move || {
    let executor = InPlaceExecutor::new().unwrap();
    let mut builder = ServerBuilder::new(addr);
    builder.add_handler(Hello).unwrap();
    let server = builder.finish(executor.handle());
    executor.spawn(server.map_err(|e| panic!("{}", e)));
    executor.run().unwrap()
});
thread::sleep(Duration::from_millis(100));

// HTTP client
let mut client = TcpStream::connect(addr).unwrap();
client
    .write_all(b"GET /hello HTTP/1.1\r\nContent-Length: 0\r\n\r\n")
    .unwrap();
thread::sleep(Duration::from_millis(100));

let mut buf = [0; 1024];
let size = client.read(&mut buf).unwrap();
assert_eq!(
    &buf[..size],
    b"HTTP/1.1 200 OK\r\nContent-Length: 5\r\n\r\nhello".as_ref()
);

Dependencies

~6MB
~114K SLoC