Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not using handlers declared with routing macro should be detectable #2696

Open
ulf5 opened this issue Mar 16, 2022 · 2 comments · May be fixed by #2714
Open

not using handlers declared with routing macro should be detectable #2696

ulf5 opened this issue Mar 16, 2022 · 2 comments · May be fixed by #2714
Assignees
Labels
A-codegen project: actix-web-codegen C-improvement Category: an improvement to existing functionality good-first-issue easy to pick up for newcomers

Comments

@ulf5
Copy link

ulf5 commented Mar 16, 2022

Hello,

I've been using actix-web for a while and it's working very well! There is one little thing that's been bothering me, though.
When I write services with actix-web I really like to use the macros for specifying method and path, as in the example below:

use actix_web::{get, web, App, HttpServer, Responder};

#[get("/hello/{name}")]
async fn greet(name: web::Path<String>) -> impl Responder {
    format!("Hello {name}!")
}

#[actix_web::main] // or #[tokio::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| {
        App::new().service(greet)
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await
}

I think it's great to have the path and method next to the implementation of the endpoint. However, nearly every time I add a new endpoint I forget to add the service to the app in when setting up the server, leading to a confused developer and a 404 when testing it out :)

I am not experienced enough with Rust's macro system to know if it's actually possible to do, but it would really be great if just using the macro could somehow add the service.

@robjtede
Copy link
Member

robjtede commented Mar 16, 2022

Magically adding services to the routing tree is a non-goal of Actix Web.

There might be something we can tweak to make them flag to cargo check as unused code though.

In particular, it might make sense to copy the original function's visibility instead of making it always "pub" (which causes rust to not do use checks).

pub struct #name;

@robjtede robjtede added C-improvement Category: an improvement to existing functionality good-first-issue easy to pick up for newcomers A-codegen project: actix-web-codegen labels Mar 16, 2022
@robjtede robjtede changed the title QOL improvement for the method macros not using handlers declared with routing macro should be detectable Mar 16, 2022
@Chaostheorie Chaostheorie linked a pull request Mar 28, 2022 that will close this issue
5 tasks
@Chaostheorie
Copy link

@robjtede I'm interested in this feature and would like to contribute if possible. A draft implementation of your proposal has been done, but I'm not quite sure if this is the idiomatic way because it's my first time working with syn.

@robjtede robjtede added this to the actix-web v5.0 milestone Apr 2, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-codegen project: actix-web-codegen C-improvement Category: an improvement to existing functionality good-first-issue easy to pick up for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants