-
Notifications
You must be signed in to change notification settings - Fork 516
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
[bgen] Add ToArray and ToFlags extension methods for strongly typed [Flags] enums. #18925
Conversation
…Flags] enums. We have a few different implementations of how to compute a set or array of NSString constants from an enum value, and also computing an enum value from a set or array of NSString constants. So add support to the generator for generating a ToArray and a ToFlags method for these conversions, and remove all the manual code. This has a few advantages: * The generated code is automatically updated with new enum fields (not all previous implementations were). * Reduces code duplication. * Reduces manual code. Additionally, when computing between a group of constants and the corresponding flags, we have to handle any missing constants or flags gracefully, otherwise the code won’t be forward compatible. Example (from bug xamarin#18833): * App developer writes code to fetch the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property, which is an enum value of flags. * App developer ships their app in the app store. * Apple releases a new iOS update, adding new values and constants to the enum. * The native [AVCaptureMetadataOutput availableMetadataObjectTypes] method returns these new constants. * This means that if the AVCaptureMetadataOutput.AvailableMetadataObjectTypes property throws an exception if encountering unknown constants, our API wouldn’t be forward compatible. * The correct solution here is that AVCaptureMetadataOutput.AvailableMetadataObjectTypes must ignore any constants it doesn’t know about. Fixes xamarin#18833.
✅ API diff for current PR / commitLegacy Xamarin (No breaking changes).NET (No breaking changes)✅ API diff vs stableLegacy Xamarin (No breaking changes).NET (No breaking changes)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
💻 [CI Build] Windows Integration Tests passed 💻✅ All Windows Integration Tests passed. Pipeline on Agent |
📚 [PR Build] Artifacts 📚Packages generatedView packagesPipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Ventura (13.0) passed 💻✅ All tests on macOS M1 - Mac Ventura (13.0) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Big Sur (11.5) passed 💻✅ All tests on macOS M1 - Mac Big Sur (11.5) passed. Pipeline on Agent |
🚀 [CI Build] Test results 🚀Test results✅ All tests passed on VSTS: simulator tests. 🎉 All 235 tests passed 🎉 Tests counts✅ bcl: All 69 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
We have a few different implementations of how to compute a set or array of NSString
constants from an enum value, and also computing an enum value from a set or array
of NSString constants.
So add support to the generator for generating a ToArray and a ToFlags method for
these conversions, and remove all the manual code.
This has a few advantages:
implementations were).
Additionally, when computing between a group of constants and the corresponding flags,
we have to handle any missing constants or flags gracefully, otherwise the code won’t
be forward compatible.
Example (from bug #18833):
property, which is an enum value of flags.
these new constants.
throws an exception if encountering unknown constants, our API wouldn’t be forward
compatible.
must ignore any constants it doesn’t know about.
Fixes #18833.