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

Intersection derive macro #6046

Merged
merged 4 commits into from
Apr 4, 2024
Merged

Intersection derive macro #6046

merged 4 commits into from
Apr 4, 2024

Conversation

Serock3
Copy link
Contributor

@Serock3 Serock3 commented Apr 2, 2024

Add derive macro for the Intersection trait.

Fixes DES-725.


This change is Reviewable

Copy link

linear bot commented Apr 2, 2024

Copy link
Contributor

@hulthe hulthe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 17 files reviewed, 6 unresolved discussions (waiting on @Serock3)


gui/build-e2e.sh line 8 at r3 (raw file):

npm run build-test-executable
cp ../dist/mullvadvpn-app-e2e-tests "$HOME/.cache/mullvad-test/packages/app-e2e-tests-2024.1-beta2-dev-${COMMIT}_amd64-unknown-linux-gnu"
cp ../dist/mullvadvpn-app-e2e-tests "$HOME/.cache/mullvad-test/packages/app-e2e-tests-2024.1-beta2-dev-${COMMIT}_x86_64-unknown-linux-gnu"

did you mean to commit this?


mullvad-types/intersection-derive/Cargo.toml line 4 at r3 (raw file):

name = "intersection-derive"
description = "Derive macro for the `Intersection` trait"
version = "0.1.0"

Probably shouldn't have a version


mullvad-types/intersection-derive/src/lib.rs line 18 at r3 (raw file):

        syn::Data::Struct(data) => derive_for_struct(&input, data),
        syn::Data::Enum(_) => todo!(),
        syn::Data::Union(_) => todo!(),

These should ideally return a nice syn::Error rather than panicking, like the Tuple struct case below.


mullvad-types/intersection-derive/src/lib.rs line 36 at r3 (raw file):

        field_conversions.append_all(quote! {
            #name: self.#name.intersection(other.#name)?,

Macro-generated code should refer to items by their absolute paths, even when calling trait methods. Otherwise the generated code will be dependent on what items the macro caller has in scope.

Sadly, this is kind of ugly x)

Suggestion:

            #name: ::mullvad_types::Intersection::intersection(self.#name, other.#name)?,

mullvad-types/intersection-derive/src/lib.rs line 45 at r3 (raw file):

                Some(Self {
                    #field_conversions
                })

Suggestion:

        impl ::mullvad_types::Intersection for #my_type {
            fn intersection(self, other: Self) -> ::core::option::Option<Self> {
                ::core::option::Option::Some(Self {
                    #field_conversions
                })

mullvad-types/src/lib.rs line 132 at r3 (raw file):

                }
            }
        }

This macro should ideally also name items by their absolute paths, especially since it's macro_exported.

@Serock3 Serock3 self-assigned this Apr 3, 2024
@Serock3 Serock3 force-pushed the intersection-macro branch from e09f241 to 34acd3a Compare April 3, 2024 08:19
Copy link
Contributor Author

@Serock3 Serock3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 17 files reviewed, 6 unresolved discussions (waiting on @hulthe)


mullvad-types/intersection-derive/Cargo.toml line 4 at r3 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

Probably shouldn't have a version

True


mullvad-types/intersection-derive/src/lib.rs line 36 at r3 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

Macro-generated code should refer to items by their absolute paths, even when calling trait methods. Otherwise the generated code will be dependent on what items the macro caller has in scope.

Sadly, this is kind of ugly x)

I thought that since I export the derive macro with the same name as the trait (e.g. if you use mullvad_types::Intersection, you get both which is a super strange namespace rule I had no idea about) that it would be ok. But I guess if you were to use use mullvad_types::Intersection as SomethingElse then it would break.

This is giving me issues though, I can't use the derive macro in the mullvad_types crate since it expects crate::Intersection::intersection. Google tells me that this is a hard problem to solve, potentially https://crates.io/crates/proc-macro-crate could do it, but that adds another dependency.


mullvad-types/src/lib.rs line 132 at r3 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

This macro should ideally also name items by their absolute paths, especially since it's macro_exported.

Luckily, for declarative macros you have the $crate syntax which just works.


gui/build-e2e.sh line 8 at r3 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

did you mean to commit this?

Nope, thanks for catching that!

@Serock3 Serock3 force-pushed the intersection-macro branch from 34acd3a to 64edf2e Compare April 3, 2024 08:52
Copy link
Contributor Author

@Serock3 Serock3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 17 files reviewed, 6 unresolved discussions (waiting on @hulthe)


mullvad-types/intersection-derive/src/lib.rs line 18 at r3 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

These should ideally return a nice syn::Error rather than panicking, like the Tuple struct case below.

Done.

@Serock3 Serock3 marked this pull request as ready for review April 3, 2024 14:06
@Serock3 Serock3 force-pushed the intersection-macro branch 2 times, most recently from 17cc7b5 to 6311619 Compare April 3, 2024 14:39
Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 11 of 16 files at r1, 2 of 3 files at r2, 2 of 2 files at r4, 4 of 6 files at r5, 3 of 3 files at r6, all commit messages.
Reviewable status: all files reviewed, 9 unresolved discussions (waiting on @hulthe and @Serock3)


mullvad-relay-selector/src/relay_selector/mod.rs line 743 at r4 (raw file):

            // In the case where there is only one exit to choose from, we have to pick it before
            // the entry
            (exits, [entry]) if exits.contains(entry) => {

In the case where there is only one entry to choose from, we have to pick it before the exit*

Code quote:

            // In the case where there is only one exit to choose from, we have to pick it before
            // the entry
            (exits, [entry]) if exits.contains(entry) => {

mullvad-types/intersection-derive/Cargo.toml line 11 at r4 (raw file):

rust-version.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Nit: Probably don't need this comment :D

Code quote:

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

mullvad-types/intersection-derive/src/lib.rs line 1 at r6 (raw file):

//! This `proc-macro` crate exports the [`Intersection`] derive macro, see it's documentation for

Nit its

Code quote:

it's

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: all files reviewed, 10 unresolved discussions (waiting on @hulthe and @Serock3)


mullvad-types/src/lib.rs line 145 at r6 (raw file):

impl_intersection_partialeq!(relay_constraints::Ownership);
// NOTE: it contains an inner constraint
impl_intersection_partialeq!(relay_constraints::TransportPort);

I think you could just add derive(Intersection) to TransportPort, since there's an implementation for TransportProtocol.

@Serock3 Serock3 force-pushed the intersection-macro branch from 6311619 to 46fcfd1 Compare April 4, 2024 11:39
Copy link
Contributor Author

@Serock3 Serock3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 10 of 17 files reviewed, 7 unresolved discussions (waiting on @hulthe and @MarkusPettersson98)


mullvad-relay-selector/src/relay_selector/mod.rs line 743 at r4 (raw file):

Previously, MarkusPettersson98 (Markus Pettersson) wrote…

In the case where there is only one entry to choose from, we have to pick it before the exit*

Whoops, fixed that


mullvad-types/intersection-derive/Cargo.toml line 11 at r4 (raw file):

Previously, MarkusPettersson98 (Markus Pettersson) wrote…

Nit: Probably don't need this comment :D

Nope, forgot to remove the auto generated comment


mullvad-types/intersection-derive/src/lib.rs line 45 at r3 (raw file):

                Some(Self {
                    #field_conversions
                })

I ended up leaving the relative Intersection reference, but added a comment about the https://crates.io/crates/proc-macro-crate crate if it causes problems in the future

Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 7 of 7 files at r7, all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @hulthe)

@Serock3 Serock3 force-pushed the intersection-macro branch 2 times, most recently from 1293f66 to 55e99fa Compare April 4, 2024 14:22
Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewed all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @hulthe)

Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed 1 of 1 files at r10, all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @hulthe)

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm:

Reviewed all commit messages.
Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @hulthe)

@MarkusPettersson98 MarkusPettersson98 merged commit 7170e05 into main Apr 4, 2024
44 of 45 checks passed
@MarkusPettersson98 MarkusPettersson98 deleted the intersection-macro branch April 4, 2024 14:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants