<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Sun, Nov 5, 2017 at 11:54 PM Jacob Bandes-Storch via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Over a year ago, we discussed adding a magic &quot;allValues&quot;/&quot;allCases&quot; static property on enums with a compiler-derived implementation. The original <a href="https://github.com/apple/swift-evolution/pull/114" target="_blank">proposal PR</a> has been reopened for Swift 5 after languishing for a while, and I&#39;d like to revisit it and make some changes before it goes up for formal review.</div></div></div></blockquote><div><br></div><div>Thanks for bringing this one back up!</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>Prior discussion: <a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160411/015098.html" target="_blank">https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160411/015098.html</a> (good luck finding the rest of the thread if you weren&#39;t on the list at the time...)</div><div><br></div><div>[cc&#39;d swift-dev for importer/availability-related topics below.]</div><div><br></div><div><b>**Naming**</b><br></div><div><b><br></b></div><div>Given the complexity gap between a simple enumeration of cases and full support for non-enum types and associated values (which we don&#39;t intend to support with this proposal), I think it might be a good idea to adopt the names <b>CaseEnumerable/allCases</b> instead of ValueEnumerable/allValues.</div></div></blockquote><div><br></div><div>Naming the protocol CaseEnumerable/allCases seems like an unnecessary restriction. There may be a complexity gap today in synthesizing the requirement for types other than basic enums, but that doesn&#39;t mean that it will always exist. What&#39;s the value of locking ourselves into the more restrictive name? Protocols act as contracts that can be used for generic programming and should thus be as generalized as possible. Any type could implement ValueEnumerable and implement allValues by hand if they wanted. If you don&#39;t intend to forbid this, then the name CaseEnumerable/allCases is not an improvement over ValueEnumerable/allValues.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div>The original proposal didn&#39;t expose allValues as a requirement, for fear of unduly restricting its type. However, if the protocol&#39;s scope is more limited, <b>static var allCases</b> can be exposed as a requirement since the implementations are not likely to be complex. Furthermore... </div></div></blockquote><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div><br></div><div><b>**Generics**</b></div><div><br></div><div>Since <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0142-associated-types-constraints.md" target="_blank">SE-0142</a> was implemented in Swift 4, we now have more expressive options for the protocol requirements:</div><div><br></div><div>  // 1 - array only</div><div>  protocol CaseEnumerable {</div><div>    static var allCases: [Self] { get }</div><div>  }</div><div><br></div><div>  // 2 - any sequence</div><div><div>  protocol CaseEnumerable {</div><div>    associatedtype <b>CaseSequence</b>: Sequence where CaseSequence.Element == Self</div><div>    static var <b>allCases</b>: CaseSequence { get }</div><div>  }</div></div><div><br></div><div>  // 3 - any collection</div><div><div>  protocol CaseEnumerable {</div><div>    associatedtype <b>CaseCollection</b>: Collection where CaseCollection.Element == Self</div><div>    static var <b>allCases</b>: CaseCollection { get }</div><div>  }</div></div><div><br></div><div>This restricts the CaseEnumerable protocol to be used as a generic constraint, but that&#39;d be true even with a plain array because of the Self type.</div><div><br></div><div>Personally I like the flexibility provided by the associatedtype, but I also recognize it won&#39;t be incredibly useful for enums — more so if we wanted to provide e.g. UInt8.allValues, whose ideal implementation might be &quot;return 0...UInt8.max&quot;. So I could see allowing allValues to be any sequence or collection, but flexibility for allCases might be less important. Others should weigh in here.</div></div></blockquote><div><br></div><div>This goes back to the point above about generality in protocol design and future-proofing—Sequence would be the most forward thinking way to specify the allValues requirement, even if the synthesized version uses something more refined, like Collection.</div><div><br></div><div>I would strongly prefer if the synthesized allValues for simple enums was *not* an array, but rather a special Int-indexable RandomAccessCollection (which could be wrapped in an AnyRandomAccessCollection to prevent leaking implementation details in the API). The rationale for this is that the information about the cases of an enum is already part of the static metadata of a type, so we shouldn&#39;t force callers of allValues to incur a heap allocation that is both (1) relatively slow and (2) moves information we already have into a new copy in heap memory.</div><div><br></div><div>The idea that popped into my head for synthesizing the implementation is something like this, where we map ordinals to cases. The optimizer will compress this very nicely, I believe, so iterating the cases of an enum would be extremely fast:</div><div><br></div><div>enum MyEnum: ValueEnumerable {</div><div>  case zero, one, two, three</div><div><br></div><div>  static var allValues: AnyRandomAccessCollection&lt;MyEnum&gt; {<br></div><div>    return AnyRandomAccessCollection((0..&lt;4).lazy.map {</div><div>      switch $0 {</div><div>      case 0: return zero</div><div>      case 1: return one</div><div>      case 2: return two</div><div>      case 3: return three</div><div>      default: fatalError(&quot;unreachable&quot;)</div><div>      }</div><div>    })</div><div>  }</div><div>}</div><div><br></div><div>Some might argue that the cases where this performance difference is a concern are rare, but IMO an implementation synthesized by the compiler should attempt to be as optimal as possible and not admit obvious performance penalties if we can predict and avoid them.<br></div><div><br></div><div>There&#39;s also a possible optimization to the code above if you special case RawRepresentable enums where all cases are in a contiguous range of integral raw values—you can just have your `map` function call init?(rawValue:) instead.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div><br></div><div><b>**Implementation strategy and edge cases**</b></div><div><div><br></div><div><a href="https://twitter.com/CodaFi_/status/920132464001024001" target="_blank">Last year</a>, Robert Widmann put together an implementation of CaseEnumerable: <a href="https://github.com/apple/swift/compare/master...CodaFi:ace-attorney" target="_blank">https://github.com/apple/swift/compare/master...CodaFi:ace-attorney</a> </div><div>I&#39;d love to hear from anyone more familiar with the code whether there&#39;s anything we&#39;d want to change about this approach.</div></div><div><br></div><div>A few tricky situations have been brought to my attention:</div><div><br></div><div>- Enums <b>imported from C/Obj-C</b> headers. Doug Gregor writes: <i>&quot;<span style="font-size:12.8px">The autogenerated allValues would only be able to </span><span class="m_5782906200150708813gmail-il" style="font-size:12.8px">list</span><span style="font-size:12.8px"> the </span><span class="m_5782906200150708813gmail-il" style="font-size:12.8px">enum</span><span style="font-size:12.8px"> </span><span class="m_5782906200150708813gmail-il" style="font-size:12.8px">cases</span><span style="font-size:12.8px"> it knows about from the header it was compiled with. If the library changes to add </span><span class="m_5782906200150708813gmail-il" style="font-size:12.8px">cases</span><span style="font-size:12.8px"> in the future (which, for example, Apple frameworks tend to do), those wouldn’t be captured in allValues.</span>&quot;</i></div><div><br></div><div>My understanding of the runtime/importer is very shallow, but with the current metadata-based strategy, I suspect imported enums couldn&#39;t be supported at all, or if they could, the metadata would be generated at import time rather than loaded dynamically from the library, which naturally wouldn&#39;t behave the same way when you drop in an upgraded version of the library. Is that correct?</div><div><br></div><div>(Nonetheless, if a user really wanted this auto-generation, it would be nice to allow it somehow. Personally, I have had enums whose &quot;source of truth&quot; was an Obj-C header file, but since it was compiled in with the rest of the application, we didn&#39;t care at all about library upgrades. Maybe an internal extension adding a conformance can be allowed to participate in auto-generation?)</div><div><br></div><div>- Enums with <b>availability</b> annotations on some cases. Doug Gregor writes: <i>&quot;<span style="font-size:12.8px">if I have a case that’s only available on macOS 10.12 and newer, it probably shouldn’t show up if I use allValues when running on macOS 10.11.</span>&quot;</i></div><div><br></div><div><div>If we fetch cases from the enum metadata, does this &quot;just work&quot; since the metadata will be coming from whichever version of the library is loaded at runtime? If not, is it at least <i>possible</i> to extract availability info from the metadata? Finally, if not, should we try to synthesize an implementation that uses #available checks, or just refuse to synthesize allCases?</div></div><div><br></div><div>- Should it be possible to add a CaseEnumerable conformance in an <b>extension</b>? My thinking is: we want to make sure the metadata is coming from the module that defines the enum, so we could restrict autogeneration of allCases to that same module. (That is, it wouldn&#39;t be possible to synthesize allCases for a CaseEnumerable extension on an enum from another module.) Although, it may be that I am missing something and this restriction isn&#39;t actually necessary. The question to answer is: in exactly which circumstances can the implementation be synthesized?</div></div></blockquote><div><br></div><div>If we want to be consistent with Codable and Equatable/Hashable conformance, then conformance should not be synthesized in an extension. However, I personally want to remove that restriction for Eq/Hash so that it can be added in same-file extensions, and Itai Ferber wants to do the same for Codable (<a href="https://github.com/apple/swift/pull/11735">https://github.com/apple/swift/pull/11735</a>).</div><div><br></div><div>In those cases, you would have a resilience problem if you could synthesize in an extension outside the same file—Codable and Equatable/Hashable need access to the private stored members of the type, so same-file extensions are the only place where that would still work. For ValueEnumerable, you don&#39;t have that problem, because cases are always public, so it could be argued that synthesizing it anywhere is safe. So, in my mind, the only issue becomes where we want to be consistent with the other synthesized protocols or not.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br></div><div><br></div><div>Looking forward to hearing everyone&#39;s thoughts,</div><div><div class="m_5782906200150708813gmail_signature"><div dir="ltr"><div>Jacob<br></div></div></div></div>
</div>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div></div>