2018-10-06 04:56:46 +00:00
|
|
|
#![feature(proc_macro_hygiene, decl_macro)]
|
2017-04-05 08:19:33 +00:00
|
|
|
|
2018-09-20 04:14:30 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2017-04-05 08:19:33 +00:00
|
|
|
|
2018-08-12 13:10:11 +00:00
|
|
|
use rocket::config::{Environment, Config, LoggingLevel};
|
2017-04-05 08:19:33 +00:00
|
|
|
|
|
|
|
#[get("/", format = "application/json")]
|
|
|
|
fn get() -> &'static str { "json" }
|
|
|
|
|
|
|
|
#[get("/", format = "text/html")]
|
|
|
|
fn get2() -> &'static str { "html" }
|
|
|
|
|
|
|
|
#[get("/", format = "text/plain")]
|
|
|
|
fn get3() -> &'static str { "plain" }
|
|
|
|
|
|
|
|
#[post("/", format = "application/json")]
|
|
|
|
fn post() -> &'static str { "json" }
|
|
|
|
|
|
|
|
#[post("/", format = "text/html")]
|
|
|
|
fn post2() -> &'static str { "html" }
|
|
|
|
|
|
|
|
#[post("/", format = "text/plain")]
|
|
|
|
fn post3() -> &'static str { "plain" }
|
|
|
|
|
|
|
|
fn rocket() -> rocket::Rocket {
|
2018-08-12 13:10:11 +00:00
|
|
|
let config = Config::build(Environment::Production).log_level(LoggingLevel::Off);
|
|
|
|
rocket::custom(config.unwrap())
|
2017-04-05 08:19:33 +00:00
|
|
|
.mount("/", routes![get, get2, get3])
|
|
|
|
.mount("/", routes![post, post2, post3])
|
|
|
|
}
|
|
|
|
|
|
|
|
mod benches {
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
use super::rocket;
|
|
|
|
use self::test::Bencher;
|
2017-06-06 20:41:04 +00:00
|
|
|
use rocket::local::Client;
|
2017-04-05 08:19:33 +00:00
|
|
|
use rocket::http::{Accept, ContentType};
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn accept_format(b: &mut Bencher) {
|
2017-06-06 20:41:04 +00:00
|
|
|
let client = Client::new(rocket()).unwrap();
|
2017-04-05 08:19:33 +00:00
|
|
|
let mut requests = vec![];
|
2017-06-06 20:41:04 +00:00
|
|
|
requests.push(client.get("/").header(Accept::JSON));
|
|
|
|
requests.push(client.get("/").header(Accept::HTML));
|
|
|
|
requests.push(client.get("/").header(Accept::Plain));
|
2017-04-05 08:19:33 +00:00
|
|
|
|
|
|
|
b.iter(|| {
|
|
|
|
for request in requests.iter_mut() {
|
2017-06-06 20:41:04 +00:00
|
|
|
request.mut_dispatch();
|
2017-04-05 08:19:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn content_type_format(b: &mut Bencher) {
|
2017-06-06 20:41:04 +00:00
|
|
|
let client = Client::new(rocket()).unwrap();
|
2017-04-05 08:19:33 +00:00
|
|
|
let mut requests = vec![];
|
2017-06-06 20:41:04 +00:00
|
|
|
requests.push(client.post("/").header(ContentType::JSON));
|
|
|
|
requests.push(client.post("/").header(ContentType::HTML));
|
|
|
|
requests.push(client.post("/").header(ContentType::Plain));
|
2017-04-05 08:19:33 +00:00
|
|
|
|
|
|
|
b.iter(|| {
|
|
|
|
for request in requests.iter_mut() {
|
2017-06-06 20:41:04 +00:00
|
|
|
request.mut_dispatch();
|
2017-04-05 08:19:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|