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

[gardening] Remove conditional casts from Error to NSError. #2210

Closed
wants to merge 1 commit into from

Conversation

drodriguez
Copy link
Contributor

@drodriguez drodriguez commented May 2, 2019

Since Swift 3 (IIRC) Error can always be casted to NSError, so the
conditional casts are always going to succeed and they produce warnings.
However because in macOS SwiftFoundation.NSError is not the ObjC
NSError, the compiler misses this, and might fail to mark some catch as
exhaustives.

To avoid one warning per use of NSError, move all the warnings into a
single one in a utility function, used from all the places when Error
needs to be transformed into NSError. In a couple of cases, the code is
simplified because a branch disappears.

This should remove a lot of warnings while compiling the tests.

@drodriguez
Copy link
Contributor Author

@swift-ci please test

Copy link
Contributor

@millenomi millenomi left a comment

Choose a reason for hiding this comment

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

See the git log for this change — it works around specific mismatches when building SCF on Darwin. (On Darwin, all errors can be casted to NSError, but it is not swift-corelibs-foundation's NSError, it's the ObjC one, and the compiler can't prove exhaustiveness for ours.)

@drodriguez
Copy link
Contributor Author

I will try to have a look at what you are saying. I might be able to avoid the warnings while keeping the compatibility.

@drodriguez drodriguez force-pushed the gardening-nserror branch from 5fe414c to 373133f Compare May 14, 2019 22:28
@drodriguez
Copy link
Contributor Author

@millenomi: I think I found what you were referring to. Could it be #2158? I think the current solution will be better than the previous one. It still produces a warning, but it was a clear comment that the warning cannot be removed, but at least removes the multiple warnings and reduces noise a lot.

@swift-ci please test

@drodriguez drodriguez requested a review from millenomi May 16, 2019 19:54
Since Swift 3 (IIRC) Error can always be casted to NSError, so the
conditional casts are always going to succeed and they produce warnings.
However because in macOS SwiftFoundation.NSError is not the ObjC
NSError, the compiler misses this, and might fail to mark some catch as
exhaustives.

To avoid one warning per use of NSError, move all the warnings into a
single one in a utility function, used from all the places when Error
needs to be transformed into NSError. In a couple of cases, the code is
simplified because a branch disappears.

This should remove a lot of warnings while compiling the tests.
@drodriguez drodriguez force-pushed the gardening-nserror branch from 373133f to 1ab1299 Compare July 9, 2019 00:56
@drodriguez
Copy link
Contributor Author

Rebased on top of current master. I checked if any other of this warning appeared in the mean time and it looks like it still covers all of them.

@millenomi: do you have some feedback about these changes? If you prefer not to apply, that's fine with me. I can abandon this PR in that case.

@swift-ci please test Linux platform

@drodriguez
Copy link
Contributor Author

@swift-ci please test Linux platform

@shahmishal shahmishal closed this Oct 6, 2020
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.

3 participants