<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">Hi Brandon,</p>

<p dir="auto">Thanks for looking at this! We’ve got plans internally to potentially add a strategy to <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">JSONEncoder</code>/<code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">JSONDecoder</code> to allow lenient conversions like this — i.e. implicitly stringify numbers (or parse them from string input), among some others.<br>
This would be opt-in for consumers of <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">JSONDecoder</code> while not requiring any special annotations on <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">Codable</code> types.</p>

<p dir="auto">— Itai</p>

<p dir="auto">On 30 Aug 2017, at 10:59, Sneed, Brandon via swift-corelibs-dev wrote:</p>

</div>
<div style="white-space:normal"></div>
<blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><div id="51AAF58D-1B44-4118-93E0-827F3EEB8D2A">
<div bgcolor="white" lang="EN-US" link="#0563C1" vlink="#954F72">
<div style="page:WordSection1">
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Hi everyone,</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Just throwing this out to see if anyone else is working on this, or has opinions/suggestions on how it’s implemented.  I’d like to add this to the Codable/JSONDecoder/JSONEncoder system if no one else is working
 on it.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Type type conversion, I mean given this JSON payload:</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">{</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">        "name": "Endeavor”,</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">        "abv": 8.9,</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">        "brewery": "Saint Arnold”,</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">        "style": "ipa"</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">}</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">and a struct defined as:</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">struct Beer: Codable {</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let name: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let abv: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let brewery: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let style: BeerStyle</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">}</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Notice that “abv” is a number in the JSON, but a String in the struct.  I’d like to make it such that I can let the system know it’s ok to convert it from a number to a string as opposed to throwing an exception. 
 The benefits are:</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">1.       It’s defensive; service types can change without causing my application to crash.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">2.       It allows a developer to work with the types they want to work with as opposed to what the server provides, thus saving them time of writing a custom encode/decode code for all members.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">The argument against it that I’ve heard is generally “it’s a service bug, make them fix it”, which is valid but the reality is we’re not all in control of the services we injest.  The same type of logic could
 be applied to a member name changing, though I haven’t seen this happen often in practice.  I do see types in a json payload change with some frequency though.  I think much of the reason stems from the fact that type conversion in javascript is effectively
 free, ie: you ask for a String, you get a String if possible.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">To implement this type conversion in practice, looking at it from the point of view using Codable/JSON(en/de)coder, one way would be to make it opt-in:</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">struct Beer: Codable, CodingConvertible {</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let name: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let abv: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let brewery: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let style: BeerStyle</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">}</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">I like this because looking at the struct, the members still remain clear and relatively unambiguous.  The downside is it’s unknown which member is likely to get converted.  And since it’s opt-in, conversion
 doesn’t happen if the CodingConvertible conformance isn’t adhered to.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Another option would be to box each type, like so:</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">struct Beer: Codable {</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let name: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let abv: Convertible&lt;String&gt;</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let brewery: String</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">    let style: BeerStyle</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">}</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">This seems tedious for developers, but would show which types are being converted.  It does however seriously weaken benefit #1 above.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Those example usages above aside, I do think it’d be best if this conversion behavior was the default and no end-developer changes required.  I think that could be done without impact to code that’s been already
 been written against the JSON en/decode bits.</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">I’m very open to alternatives, other ideas, or anything else you might have to say on the subject.  Thanks for reading!</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt">Brandon Sneed</span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
<p style="font-family:Calibri; font-size:12pt; margin:0; margin-bottom:0.0001pt"><span style="font-size:11.0pt"> </span></p>
</div>
</div></div></blockquote>
<div style="white-space:normal">
<blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px">
</blockquote><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">_______________________________________________<br>
swift-corelibs-dev mailing list<br>
swift-corelibs-dev@swift.org<br>
<a href="https://lists.swift.org/mailman/listinfo/swift-corelibs-dev" style="color:#777">https://lists.swift.org/mailman/listinfo/swift-corelibs-dev</a></p>
</blockquote></div>
<div style="white-space:normal">
</div>
</div>
</body>
</html>