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

propagate handler visibility through route macros #2714

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

Chaostheorie
Copy link

@Chaostheorie Chaostheorie commented Mar 28, 2022

PR Type

Fix

PR Checklist

  • Tests for the changes have been added / updated.
  • Documentation comments have been added / updated.
  • A changelog entry has been made for the appropriate packages.
  • Format code with the latest stable rustfmt.
  • (Team) Label with affected crates and semver status.

Overview

The visibility of the instrumented function is inherited to the generated struct by employing syn's ItemFn.vis attribute.

Closes #2696

@robjtede robjtede added A-codegen project: actix-web-codegen B-semver-patch labels Mar 28, 2022
@robjtede
Copy link
Member

I suspect this could be tested in a trybuild test and asserting the compiler output contains the desired warning.

@robjtede robjtede marked this pull request as draft March 28, 2022 12:41
@robjtede robjtede changed the title Draft: Fix #2696 propagate handler visibility route macros Mar 28, 2022
@robjtede robjtede changed the title propagate handler visibility route macros propagate handler visibility through route macros Mar 28, 2022
@Chaostheorie
Copy link
Author

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)}

@robjtede
Copy link
Member

Good idea. That would work too, yeah.

@Chaostheorie
Copy link
Author

The idea with trybuild tests worked out. Though, this most likely is a breaking change, right?

@robjtede robjtede marked this pull request as ready for review March 28, 2022 22:14
@robjtede
Copy link
Member

robjtede commented Mar 29, 2022

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.

@Chaostheorie
Copy link
Author

Chaostheorie commented Mar 29, 2022

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 Pattern
mod 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 default-features = false, but the 'migration' would at least be easy/ cheap for those affected. In the long term, the feature could be made optional and/ or be removed.

@robjtede robjtede added B-semver-major breaking change requiring a major version bump and removed B-semver-patch labels Apr 2, 2022
@robjtede robjtede added this to the actix-web v5.0 milestone Apr 2, 2022
@robjtede
Copy link
Member

robjtede commented Apr 2, 2022

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.

@Chaostheorie
Copy link
Author

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.

@porkbrain
Copy link

Looking forward to this change. It will help us keep our app with 100s of endpoints cleaner.

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 B-semver-major breaking change requiring a major version bump
Projects
None yet
Development

Successfully merging this pull request may close these issues.

not using handlers declared with routing macro should be detectable
3 participants