-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
propagate handler visibility through route macros #2714
base: master
Are you sure you want to change the base?
Conversation
I suspect this could be tested in a trybuild test and asserting the compiler output contains the desired warning. |
It doesn't seem like trybuild supports checking of compiler warnings. It would be possible to instead create a test that tests the visibility with modules instead, is this sufficient @robjtede ? For example, the following should fail … mod test {
#[get("/test")]
async fn test() -> … { … }
}
fn main() -> … {
…
App::new()
.service(test::test)
…
} … while on the other hand, this should work … mod test {
#[get("/test")]
pub async fn test() -> … { … }
}
fn main() -> … {
…
App::new()
.service(test::test)
…
} |
Good idea. That would work too, yeah. |
The idea with trybuild tests worked out. Though, this most likely is a breaking change, right? |
Only the question about breakage is keeping this from being merged. I've asked the other contributors for input. My view is this could reasonably be called a fix and resulting compile errors "relying on a bug". Also toying with the idea of issuing a warning at compile time or otherwise trying to figure out how to release this in a non-technically-breaking way but nothing promising has come up yet. |
Well, the docs AFAIK never actually mention the 'public' visibility of the routing macros, but since they've been public for at least v3 and now v4.0.1. Further, all examples of the routing macros in the actix-codegen docs are 'private' so they most likely need to be adjusted. A warning for private visibility is also a problem since, e.g., the following pattern would be valid even after the change: ServiceConfig Patternmod example {
#[route("/test", method = "GET", method = "HEAD")]
async fn example() -> HttpResponse {
HttpResponse::Ok().finish()
}
pub fn configure_routes(cfg: &mut ServiceConfig) {
cfg.service(example);
}
}
#[actix_web::main]
pub fn main() -> … {
HttpServer::new(move || {
App::new()
.service(web::scope("/example").configure(example::configure_routes))
.build()
});
} The first thought coming to my mind is making the 'default' public visibility, a crate feature that is part of the default feature set. This would limit the problem to projects employing |
Makes me sad but we can't really justify this before the next breaking change and I don't see a way to do it without breaks. |
Well, that's to be expected for such a change. Please ping me before the next breaking change, and I'll rebase and, if required, update the patch. |
Looking forward to this change. It will help us keep our app with 100s of endpoints cleaner. |
PR Type
Fix
PR Checklist
Overview
The visibility of the instrumented function is inherited to the generated struct by employing syn's
ItemFn.vis
attribute.Closes #2696