<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hi Morten,<div class=""><br class=""></div><div class="">I’ve actually been working on this same idea already and will have something to propose soon.</div><div class=""><br class=""></div><div class="">- Tony<br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On Oct 19, 2017, at 2:03 AM, Morten Bek Ditlevsen via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><span style="font-size:13px" class="">Hi all,</span><div style="font-size:13px" class="">At work we have just added Codable support for a whole bunch of model objects in our code base.</div><div style="font-size:13px" class="">Many places we have added CodingKeys enumeration in order to convert the camel cased property names to snake case for our JSON keys.</div><div style="font-size:13px" class="">As an experiment I have tried adding a KeyCodingStrategy option to a copy of the JSONEncoder and JSONDecoder implementations.</div><div style="font-size:13px" class="">This is currently an enumeration with the following values</div><div style="font-size:13px" class="">.original</div><div style="font-size:13px" class="">.snakeCase</div><div style="font-size:13px" class="">.custom((String) -&gt; String)</div><div style="font-size:13px" class=""><br class=""></div><div style="font-size:13px" class="">I just extended CodingKey as follows:</div><div style="font-size:13px" class=""><div class="">extension CodingKey {</div><div class="">&nbsp; &nbsp; func stringValue(with encodingStrategy: StructuralEncoder.KeyEncodingStrategy) -&gt; String {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; switch encodingStrategy {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; case .original:</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return stringValue</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; case .snakeCase:</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let pattern = "([a-z0-9])([A-Z])"</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let regex = try! NSRegularExpression(pattern: pattern, options: [])</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let range = NSRange(location: 0, length: stringValue.characters.count)</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return regex.stringByReplacingMatches(in: stringValue, options: [], range: range, withTemplate: "$1_$2").lowercased()</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; case .custom(let t):</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return t(stringValue)</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; }</div><div class="">&nbsp; &nbsp; }</div><div class="">}</div><div class=""><br class=""></div><div class="">and then I replaced all references to key.stringValue with key.stringValue(with: self.encoder.options.keyCodingStrategy)</div><div class=""><br class=""></div><div class="">This seems to work very nicely.</div><div class=""><br class=""></div><div class="">So my question is: Do anyone else see the benefit of such an addition to the JSONEncoder and JSONDecoder?</div><div class=""><br class=""></div><div class="">The downside as I see it, is that the current CodingKeys are guaranteed to be unique by the compiler, and it would be possible to create collisions by using key name transforms.</div><div class="">Is this downside bigger than the gains?</div></div><div style="font-size:13px" class=""><br class=""></div><div style="font-size:13px" class="">One advantage is that one could argue that one CodingKey strategy may not fit all serialization mechanisms. For instance one might wish to have upper camel cased keys in Plists (just an example) and snake case in JSON. This method could easily support this, while the current CodingKeys strategy cannot...</div><div style="font-size:13px" class=""><br class=""></div><div style="font-size:13px" class="">Looking forward to hearing feedback.</div><div style="font-size:13px" class=""><br class=""></div><div style="font-size:13px" class="">Sincerely,</div><div style="font-size:13px" class="">/morten</div><div class=""><br class=""></div></div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></div></body></html>