-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Refactor ignore platform reqs checks #10079
Refactor ignore platform reqs checks #10079
Conversation
a38e3bb
to
602a1fa
Compare
Is it safe to do those changes from an API perspective? E.g. could plugins use those classes? And if so - if they extend from them too, can we even change any non-private signatures? If not - a less invasive alternative I can think of is moving the decision logic into static helper methods or so. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO it's mostly looking good, thanks for the work!
The few places I commented on it'd be good to keep the old API functional, but the other places are internal-enough that we shouldn't bother. When restoring setters for BC, we could add trigger_error(E_USER_DEPRECATED...)
to those few places so people notice and migrate away.
Note that for the follow-up of adding wildcard support, using this code is probably a good idea to turn wildcards into regexes, we do this in a few places already: https://github.com/composer/composer/blob/master/src/Composer/Package/BasePackage.php#L251-L256
I'm very glad to hear that, thx!
Yes, keeping BC here is luckily as simple as that. I adapted it and added
Thx for the hint, I stumbled over that already yesterday and thought of using it (+ adding a few tests). Previously I was looking at It's still early but as my commits are ugly fixups - do you squash them automatically on merge or shall I just do that and force-push after approval? |
I can squash on merge. I'll leave this open until master starts targetting 2.2 though. If you want to do a follow-up PR with the pattern matching you could already open a second one that is based on this branch? |
1122a40
to
810a04f
Compare
Sorry, rebased with auto-squash after all.. I was afraid this might otherwise mess up the new branch / PR on merge and wanted to start clean there. |
No worries :) |
810a04f
to
0c94018
Compare
rebased to fix a conflict |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice cleanup imho
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To move away from mixed data-types such as bool|array as soon as possible in the code, seems like a good idea and along those lines, these changes seem to be a good idea as well.
Why would the specific filters include the abstract class PlatformRequirementFilter.
Is it needed to use the class name of one of the specific filter-classes to use one of the methods provided by the abstract class? Like IgnoreAllPlatformRequirementFilter::ignoreNothing()
, is that something to use?
Would it not make more sense to put the abstract public function isReqIgnored($req);
in a interface that holds the contract for all RequirementFilter`s ?
The is{All,Nothing}Ignored methods might be useful.. then again.., that instanceof check could be an interface as well (the difference in calling code being if that has a method-call or a call to instanceof, so: $filter->isAllIgnored()
vs $filter instanceof IgnoreAllReqsFiltering
), although that interface would seem to remain empty/anemic as of now.
I agree, actually I prefer a composition only version as well and wanted to use it initially.
I'm happy to adapt that. Some tests can then be even removed. What do you think @Seldaek? UPDATE: I did the adaptions locally, just waiting for confirmation. |
My comment #9534 (comment) might affect this issue. |
I'm not sure if it does or if I missed something. The intention here was "just" to refactor the platform reqs checks and prepare them to add more functionality like glob like wildcards for which I added another PR. I wasn't even aware of the feature-request regarding upper bounds. Should be independent at least if I'm not mistaken. And would be easier to implement afterwards for sure. |
0c94018
to
eee0052
Compare
rebased to fix a conflict |
You are right in that the code changes made here will probably make things easier anyway indeed. |
3b2d7d6
to
0c26e21
Compare
rebased to fix a conflict and added the inheritance -> composition changes in a fixup as I requested a re-review already anyways Fyi, I also checked the new @imme-emosol what do you think? (and btw sorry, I clicked multiple times on the re-request review icon but nothing changed. No idea if you were spammed by that xD) |
0c26e21
to
9459e67
Compare
In my perception this is a clearer/easier structure 👍 |
9459e67
to
18514c7
Compare
I'll wait until all type changes are merged before doing another rebase 😅 |
Yeah sorry about that :) |
0db7efd
to
7ac1815
Compare
Introduces a `PlatformRequirementFilter` with methods that help to decide if a requirement is ignored or not as discussed in composer#10045 but without changing behaviour. The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
7ac1815
to
49bbad3
Compare
rebased and should be ready again for review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a great improvement to me, just the method name nitpick and then happy to finally merge this :)
src/Composer/Filter/PlatformRequirementFilter/PlatformRequirementFilterInterface.php
Outdated
Show resolved
Hide resolved
Thanks! |
Great thx, I'll rebase and make the wildcard-follow-up feature ready soon then :) |
…trigger_error()` where none was needed Ref: composer/composer@3013674#diff-67d1dfefa9c7b1c7e0b04b07274628d812f82cd82fae635c0aeba643c02e8cd8R145 Ref: composer/composer#10079 Ref: #366 (comment) Ref: composer/composer#10079 (review) /cc @herndlm FYI
…trigger_error()` where none was needed Ref: composer/composer@3013674#diff-67d1dfefa9c7b1c7e0b04b07274628d812f82cd82fae635c0aeba643c02e8cd8R145 Ref: composer/composer#10079 Ref: Roave/BackwardCompatibilityCheck#366 (comment) Ref: composer/composer#10079 (review) /cc @herndlm FYI
Introduces a
PlatformRequirementFilter
with methods that help to decide if a requirement is ignored or not as discussed in #10045 but without changing behaviour.The idea behind this is to be able to adapt simple wildcard or regex ignores in a follow-up.
I changed as much as needed so that the filter and its logic is used everywhere where the
bool|string[]
config was before, because it felt inconsistent otherwise. But I also tried to change as less as possible which is the reason the argument is nullable in some cases and falls back to the nothing filter then or is defined like that in the constructor.Initially I only had one filter class, but this became already too complex and mixed regarding types in my opinion, so I split responsibilities into dedicated filter classes, which is of course more code/classes but way simpler to read/understand/test.