#http #server #site #async #response-headers

bin+lib ezhttp

为小型网站提供的简单HTTP服务器

5个版本

0.1.4 2024年8月23日
0.1.3 2024年7月11日
0.1.2 2024年6月22日
0.1.1 2024年6月17日
0.1.0 2024年6月3日

#337 in HTTP服务器

自定义许可证

34KB
891

EzHttp

为小型网站提供的简单HTTP服务器

此库正在开发中,因此如果您发现任何错误,请将它们写入问题

示例

use ezhttp::{Headers, HttpRequest, HttpResponse, HttpServer, HttpServerStarter};
use std::time::Duration;

struct EzSite {
    index_page: String,
}

impl EzSite {
    fn new(index_page: &str) -> Self {
        EzSite {
            index_page: index_page.to_string(),
        }
    }
}

impl HttpServer for EzSite {
    async fn on_request(&mut self, req: &HttpRequest) -> Option<HttpResponse> {
        println!("{} > {} {}", req.addr, req.method, req.page);

        if req.page == "/" {
            Some(HttpResponse::from_str(
                Headers::from(vec![("Content-Type", "text/html")]), // response headers
                "200 OK".to_string(),                               // response status code
                &self.index_page,                                   // response body
            ))
        } else {
            None // close connection
        }
    }

    async fn on_start(&mut self, host: &str) {
        println!("Http server started on {}", host);
    }

    async fn on_close(&mut self) {
        println!("Http server closed");
    }
}

fn main() {
    let site = EzSite::new("Hello World!");
    let host = "localhost:8080";

    HttpServerStarter::new(site, host)
        .timeout(Some(Duration::from_secs(5))) // read & write timeout
        .threads(5) // threadpool size
        .start_forever()
        .expect("http server error");
}

更多示例

依赖关系

~4–11MB
~105K SLoC