mirror of https://github.com/fafhrd91/actix-web
code formatting cleanup
This commit is contained in:
parent
efe990dca5
commit
ec4633a911
|
@ -2,6 +2,10 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 4.2.3
|
||||
|
||||
- Add a scope macro that takes a path
|
||||
|
||||
## 4.2.2
|
||||
|
||||
- Fix regression when declaring `wrap` attribute using an expression.
|
||||
|
|
|
@ -328,4 +328,4 @@ pub fn test(_: TokenStream, item: TokenStream) -> TokenStream {
|
|||
#[proc_macro_attribute]
|
||||
pub fn scope(args: TokenStream, input: TokenStream) -> TokenStream {
|
||||
route::ScopeArgs::new(args, input).generate()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
use std::collections::HashSet;
|
||||
use std::{collections::HashSet, fmt};
|
||||
|
||||
use actix_router::ResourceDef;
|
||||
use proc_macro::TokenStream;
|
||||
use proc_macro2::{Span, TokenStream as TokenStream2};
|
||||
use quote::{quote, ToTokens, TokenStreamExt};
|
||||
use std::fmt;
|
||||
use syn::{punctuated::Punctuated, Ident, LitStr, Path, Token};
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -556,8 +555,8 @@ fn input_and_compile_error(mut item: TokenStream, err: syn::Error) -> TokenStrea
|
|||
item
|
||||
}
|
||||
|
||||
/// Implements scope proc macro
|
||||
///
|
||||
/// Implements scope proc macro
|
||||
///
|
||||
|
||||
struct ScopeItems {
|
||||
handlers: Vec<String>,
|
||||
|
@ -570,23 +569,29 @@ impl ScopeItems {
|
|||
for item in items {
|
||||
match item {
|
||||
syn::Item::Fn(ref fun) => {
|
||||
|
||||
for attr in fun.attrs.iter() {
|
||||
for bound in attr.path().segments.iter() {
|
||||
if bound.ident == "get" || bound.ident == "post" || bound.ident == "put" || bound.ident == "head" || bound.ident == "connect" || bound.ident == "options" || bound.ident == "trace" || bound.ident == "patch" || bound.ident == "delete" {
|
||||
if bound.ident == "get"
|
||||
|| bound.ident == "post"
|
||||
|| bound.ident == "put"
|
||||
|| bound.ident == "head"
|
||||
|| bound.ident == "connect"
|
||||
|| bound.ident == "options"
|
||||
|| bound.ident == "trace"
|
||||
|| bound.ident == "patch"
|
||||
|| bound.ident == "delete"
|
||||
{
|
||||
handlers.push(format!("{}", fun.sig.ident));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
_ => continue,
|
||||
}
|
||||
}
|
||||
|
||||
Self {
|
||||
handlers,
|
||||
}
|
||||
Self { handlers }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -610,12 +615,14 @@ impl ScopeArgs {
|
|||
|
||||
let mut items = Vec::new();
|
||||
match ast.expr.as_ref() {
|
||||
syn::Expr::Block(expr) => for item in expr.block.stmts.iter() {
|
||||
match item {
|
||||
syn::Stmt::Item(ref item) => items.push(item.clone()),
|
||||
_ => continue,
|
||||
syn::Expr::Block(expr) => {
|
||||
for item in expr.block.stmts.iter() {
|
||||
match item {
|
||||
syn::Stmt::Item(ref item) => items.push(item.clone()),
|
||||
_ => continue,
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
_ => panic!("Scope should containt only code block"),
|
||||
}
|
||||
|
||||
|
@ -641,10 +648,9 @@ impl ScopeArgs {
|
|||
|
||||
match text.parse() {
|
||||
Ok(res) => res,
|
||||
Err(error) => panic!("Error: {:?}\nGenerated code: {}", error, text)
|
||||
Err(error) => panic!("Error: {:?}\nGenerated code: {}", error, text),
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
impl fmt::Display for ScopeArgs {
|
||||
|
@ -655,22 +661,36 @@ impl fmt::Display for ScopeArgs {
|
|||
let module_name = syn::Ident::new(&module_name, ast.ident.span());
|
||||
let ast = match ast.expr.as_ref() {
|
||||
syn::Expr::Block(expr) => quote!(pub mod #module_name #expr),
|
||||
_ => panic!("Unexpect non-block ast in scope macro")
|
||||
_ => panic!("Unexpect non-block ast in scope macro"),
|
||||
};
|
||||
|
||||
writeln!(f, "{}\n", ast)?;
|
||||
writeln!(f, "#[allow(non_camel_case_types)]")?;
|
||||
writeln!(f, "struct {};\n", self.name)?;
|
||||
writeln!(f, "impl actix_web::dev::HttpServiceFactory for {} {{", self.name)?;
|
||||
writeln!(f, " fn register(self, __config: &mut actix_web::dev::AppService) {{")?;
|
||||
write!(f, " let scope = actix_web::Scope::new(\"{}\")", self.path)?;
|
||||
writeln!(
|
||||
f,
|
||||
"impl actix_web::dev::HttpServiceFactory for {} {{",
|
||||
self.name
|
||||
)?;
|
||||
writeln!(
|
||||
f,
|
||||
" fn register(self, __config: &mut actix_web::dev::AppService) {{"
|
||||
)?;
|
||||
write!(
|
||||
f,
|
||||
" let scope = actix_web::Scope::new(\"{}\")",
|
||||
self.path
|
||||
)?;
|
||||
|
||||
for handler in self.scope_items.handlers.iter() {
|
||||
write!(f, ".service({}::{})", module_name, handler)?;
|
||||
}
|
||||
|
||||
writeln!(f, ";\n")?;
|
||||
writeln!(f, " actix_web::dev::HttpServiceFactory::register(scope, __config)")?;
|
||||
writeln!(
|
||||
f,
|
||||
" actix_web::dev::HttpServiceFactory::register(scope, __config)"
|
||||
)?;
|
||||
writeln!(f, " }}\n}}")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ use actix_web::{
|
|||
web, App, Error, HttpRequest, HttpResponse, Responder,
|
||||
};
|
||||
use actix_web_codegen::{
|
||||
connect, delete, get, head, options, patch, post, put, route, routes, trace, scope
|
||||
connect, delete, get, head, options, patch, post, put, route, routes, scope, trace,
|
||||
};
|
||||
use futures_core::future::LocalBoxFuture;
|
||||
|
||||
|
@ -387,8 +387,10 @@ async fn test_wrap() {
|
|||
|
||||
#[scope("/test")]
|
||||
const mod_inner: () = {
|
||||
use actix_web::{HttpResponse, HttpRequest, Responder, put, head, connect, options, trace, patch, delete, web };
|
||||
use actix_web::web::Json;
|
||||
use actix_web::{
|
||||
connect, delete, head, options, patch, put, trace, web, web::Json, HttpRequest,
|
||||
HttpResponse, Responder,
|
||||
};
|
||||
|
||||
#[actix_web::get("/test")]
|
||||
pub async fn test() -> impl Responder {
|
||||
|
@ -401,22 +403,22 @@ const mod_inner: () = {
|
|||
let doubled = int_value * 2;
|
||||
HttpResponse::Ok().body(format!("Twice value: {}", doubled))
|
||||
}
|
||||
|
||||
|
||||
#[actix_web::post("/test")]
|
||||
pub async fn test_post() -> impl Responder {
|
||||
HttpResponse::Ok().body(format!("post works"))
|
||||
}
|
||||
}
|
||||
|
||||
#[put("/test")]
|
||||
#[put("/test")]
|
||||
pub async fn test_put() -> impl Responder {
|
||||
HttpResponse::Ok().body(format!("put works"))
|
||||
}
|
||||
}
|
||||
|
||||
#[head("/test")]
|
||||
pub async fn test_head() -> impl Responder {
|
||||
HttpResponse::Ok().finish()
|
||||
}
|
||||
|
||||
|
||||
#[connect("/test")]
|
||||
pub async fn test_connect() -> impl Responder {
|
||||
HttpResponse::Ok().body("connect works")
|
||||
|
@ -441,7 +443,7 @@ const mod_inner: () = {
|
|||
pub async fn test_delete() -> impl Responder {
|
||||
HttpResponse::Ok().body("delete works")
|
||||
}
|
||||
|
||||
|
||||
pub fn mod_test2() -> impl actix_web::Responder {
|
||||
actix_web::HttpResponse::Ok().finish()
|
||||
}
|
||||
|
@ -464,7 +466,7 @@ async fn test_scope_get_param_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "Twice value: 8");
|
||||
assert_eq!(body_str, "Twice value: 8");
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -475,7 +477,7 @@ async fn test_scope_post_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "post works");
|
||||
assert_eq!(body_str, "post works");
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -486,7 +488,7 @@ async fn test_scope_put_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "put works");
|
||||
assert_eq!(body_str, "put works");
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -506,9 +508,9 @@ async fn test_scope_connect_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "connect works");
|
||||
assert_eq!(body_str, "connect works");
|
||||
}
|
||||
|
||||
|
||||
#[actix_rt::test]
|
||||
async fn test_scope_options_async() {
|
||||
let srv = actix_test::start(|| App::new().service(mod_inner));
|
||||
|
@ -517,7 +519,7 @@ async fn test_scope_options_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "options works");
|
||||
assert_eq!(body_str, "options works");
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -528,7 +530,7 @@ async fn test_scope_trace_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert!(body_str.contains("trace works"));
|
||||
assert!(body_str.contains("trace works"));
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -539,7 +541,7 @@ async fn test_scope_patch_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "patch works");
|
||||
assert_eq!(body_str, "patch works");
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
|
@ -550,5 +552,5 @@ async fn test_scope_delete_async() {
|
|||
let mut response = request.send().await.unwrap();
|
||||
let body = response.body().await.unwrap();
|
||||
let body_str = String::from_utf8(body.to_vec()).unwrap();
|
||||
assert_eq!(body_str, "delete works");
|
||||
}
|
||||
assert_eq!(body_str, "delete works");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue