[swift-evolution] [Review] SE 0192 - Non-Exhaustive Enums

Jordan Rose jordan_rose at apple.com
Mon Jan 8 15:14:02 CST 2018


It's true that Apple framework authors have this capability, known as a "linked-on-or-after check", but it has several caveats:

- It can only check what SDK the application was linked against. Any prebuilt libraries that the application uses might have been built against an older or newer SDK. (Yes, Apple discourages linking against libraries you didn't build yourself; at the same time we all know people do it.)

- The check is "what SDK was the application linked against". That means that a developer is opting into all new behavior when they update to a new SDK, instead of just one API's.

- The whole system still has to work together, so it's not always possible to preserve the old behavior.

- This means that it's not true that "every library actually keeps old implementations around". What happens is that individual frameworks may choose to do a "linked-on-or-after" check for a particular feature, and modify their behavior based on that. They may also choose not to, which might make sense for, e.g., a new UIView animation kind, or a new property list serialization kind.

I haven't looked at all, but I suspect the vast majority of changes between Apple OS releases, including new cases added to enums, are not guarded by linked-on-or-after checks. (I probably can't look, or at least can't tell you, because anything not release-noted might be left that way for a reason.) You may have been thinking of, say, the .NET approach to compatibility <https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/versions-and-dependencies>, where Microsoft actually does ship several copies of the standard library and runtimes when they make major breaking changes, but even then they don't do this for every single OS update.


I think Jon's original point has been answered by now: this is an issue in Objective-C, but not one that leads to undefined behavior, because in effect the compiler treats all C enums as "non-exhaustive" except in warnings. (You can imagine a `default: break;` inserted at the end of any switch that doesn't otherwise have one in C.)

Jordan


> On Jan 8, 2018, at 11:02, Saagar Jha via swift-evolution <swift-evolution at swift.org> wrote:
> 
> (Disclaimer: I’m no expert in this, and I know there are people in this list that are, so if there’s anything wrong please feel free to step in and correct me)
> 
> As far as I’m aware, Apple’s frameworks check which version of the framework you linked with at runtime (for UIKit, I believe this function is UIApplicationLinkedOnOrAfter) and modify their behavior to match. For example, if this function shows your application was linked with the iOS 6 SDK you’d get the old skeuomorphic UI instead of the “flatter”, newer iOS 7-style controls. What this means is every library actually keeps old implementations around in addition to the newer ones and picks the necessary one at runtime, so binary compatibility boils down to things like “don't change the memory layout of classes” rather than “don’t change the behavior of your program”.
> 
> Saagar Jha
> 
>> On Jan 5, 2018, at 19:11, Jon Shier via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>> 
>> At this point I think it might be useful to outline how binary compatibility works for Objective-C on Apple platforms right now. As an app developer I’m not intimately familiar with what happens when you run an app compiled with the iOS 10 SDK on iOS 11. Are there just runtime checks to call old code paths or something else? The more this thread goes on the more confused I get about why Swift would have this issue while it doesn’t appear to be one for Obj-C. If an enum adds a case now, I don’t have to care until I recompile using the new SDK. Is the intention for Swift to be different in this regard?
>> 
>> 
>> 
>> Jon Shier
>> 
>> On Jan 5, 2018, at 6:41 PM, Jordan Rose via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>> 
>>> 
>>> 
>>>> On Jan 3, 2018, at 00:54, Jason Merchant via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>>> 
>>>> Is it hard to imagine that most everyone can get what they want and keep the syntax clean and streamlined at the same time? Without any "@" signs or other compiler hints?
>>> 
>>> For what it's worth, the original version of the proposal started with a modifier (a context-sensitive keyword, like 'final'), but the core team felt that there were a lot of modifiers in the language already, and this didn't meet the bar.
>>> 
>>> 
>>>> "Rather, we are how to enable the vendor of a nonexhaustive enum to add new cases without breaking binaries compiled against previous versions"
>>>> 
>>>> When an enum changes, and the change causes the code to break, the user can be presented with migration options from an automated IDE tool. In what specific way does this not solve the issue about having to upgrade your code when using someone else's code library? This very notion implies your disgruntled about doing work when things are upgraded, is that really what this fuss is all about?
>>>> 
>>>> A well written language interpreter and auto-tooling IDE would not need hints embedded in the code syntax itself. Migration hints from version to version should not be a part of either the past or future version of the code library.
>>> 
>>> Thanks for bringing this up! Unfortunately, it falls down in practice, because if there's a new enum case, it's unclear what you want to do with it. If you're handling errors, it's not obvious that the way you've handled any of the other errors is appropriate. In the (admittedly controversial) SKPaymentTransactionState case, none of the existing code would be appropriate to handle the newly-introduced "deferred" case, and nor could StoreKit provide "template" code that would be appropriate to the client app.
>>> 
>>> 
>>> In any case, though, the key point on this particular quoted sentence is "without breaking binaries". Any such change must be valid without recompilation, and indeed without any intervention from the developer or an IDE, because that's what happens when the user updates their OS.
>>> 
>>> Jordan
>>> 
>>> 
>>> 
>>>> 
>>>> ...
>>>> 
>>>> I don't expect the community to agree on language grammar, but the common sense here on how to achieve the intended goals seems to be out of wack.
>>>> 
>>>> If someone can present a clear logical statement as to how an automated migration tool behind the scenes in the IDE to handle all your versioning worries, does not make this whole discussion about adding more convoluted syntax additions irrelevant, I'd love to hear it.
>>>> 
>>>> ___________________
>>>> 
>>>> Sincerely,
>>>> Jason
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 
>>>> On Tue, Jan 2, 2018 at 12:36 PM, Xiaodi Wu <xiaodi.wu at gmail.com <mailto:xiaodi.wu at gmail.com>> wrote:
>>>> On Tue, Jan 2, 2018 at 12:11 PM, Jason Merchant via swift-evolution <swift-evolution at swift.org <mailto:swift-evolution at swift.org>> wrote:
>>>> I think this whole thing has been unnecessarily convoluted. As a result, the majority of the replies are rabbit holes.
>>>> 
>>>> In my opinion, the true root of the concept in question is as follows:
>>>> 
>>>> A list of something is desired:
>>>> 1 - Pancake
>>>> 2 - Waffle
>>>> 3 - Juice
>>>> 
>>>> Developer wishes to be able to:
>>>> A) Add new things to the list of choices in the future as they come up with new ideas
>>>> B) Sometimes select one of the choices to be chosen as the normal choice if no choice is made by the user
>>>> 
>>>> A and B are separate desires. In some circumstances a developer may want to add a new choice and make it the normal choice when there was no normal choice was clarified before.
>>>> 
>>>> I don't think this is an accurate summary of the problem being tackled here. Rather, we are how to enable the vendor of a nonexhaustive enum to add new cases without breaking binaries compiled against previous versions. There is little here to do with what a "default" should be. Indeed, it is an explicit design decision of Swift not to support types having an implicit default value.
>>>>  
>>>> ____________________
>>>> 
>>>> Part 2:
>>>> 
>>>> After this simple desire is clear, there should be two discussions:
>>>> A) In a text only coding language, what would we like the syntax to look like? (Without regard to past-bias. What should it really be, forget what mistaken design choices were made in Swift in the past)
>>>> B) How do we approach making this happen behind the scenes?
>>>> 
>>>> Bonus: Given that some of us have changed our approach to programming significantly beyond text based coding, and into more dynamic mediums of programming in other niches, and even here and there in Xcode - I would recommend considering how the IDE would show a modern version of this concept. I feel too often that Swift design syntax has a lack of awareness between the distinctions of what the IDE should do, as opposed to what the syntax of the language should be, and what should be handled behind the scenes by automated tooling.
>>>> 
>>>> _____________________
>>>> 
>>>> My opinion, in answering the above questions is in preference to a simple easy to read and write syntax, something like the following:
>>>> 
>>>> choices Breakfast {
>>>>     Pancake, Waffle, Juice
>>>> }
>>>> 
>>>> If a "default" choice is desired, it is obvious to me that I would select the choice from the IDE, and it would be visually indicated that it was the default.
>>>> 
>>>> When changes occur, whether new choices are added, old ones are removed or changed, or a default is added, changed, or removed - a behind the scenes automated tool analyzes the changes and presents migration options through the IDE.
>>>> 
>>>> _____________________
>>>> 
>>>> Sincerely,
>>>> Jason
>>>> 
>>>> 
>>>> 
>>>> 
>>>> _______________________________________________
>>>> swift-evolution mailing list
>>>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>>>> 
>>>> 
>>>> 
>>>> _______________________________________________
>>>> swift-evolution mailing list
>>>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>>> 
>>> _______________________________________________
>>> swift-evolution mailing list
>>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>>> https://lists.swift.org/mailman/listinfo/swift-evolution <https://lists.swift.org/mailman/listinfo/swift-evolution>
>> _______________________________________________
>> swift-evolution mailing list
>> swift-evolution at swift.org <mailto:swift-evolution at swift.org>
>> https://lists.swift.org/mailman/listinfo/swift-evolution
> 
> _______________________________________________
> swift-evolution mailing list
> swift-evolution at swift.org
> https://lists.swift.org/mailman/listinfo/swift-evolution

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20180108/a4df91df/attachment.html>


More information about the swift-evolution mailing list