<!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 David and Geordie,</p>

<p dir="auto">That approach won’t work — encoders and decoders only work directly with concrete <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">Codable</code> types (e.g. <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">String</code>, <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">Int</code>, <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">MyFoo</code> [where <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">MyFoo</code> is <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">Codable], etc.).<br>
This is by design: since there is no type information stored in the JSON payload, there isn’t necessarily a way to tell how to decode the type you’re looking at, so asking for a general</code>Codable` isn’t helpful.</p>

<p dir="auto">Since it’s unlikely that what you truly need is a <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">[String : Any]</code> but really a <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">[String : &lt;one of String, Int, MyFoo, etc.&gt;]</code>, one easy way to decode this type is to create a wrapper <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">enum</code> or similar which overrides <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">init(from:)</code> to be able to decode from one of those types. You can then ask to decode a <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">[String : MyWrapperType]</code> and use that instead.</p>

<p dir="auto">What types are you expecting in the dictionary?</p>

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

<p dir="auto">On 19 Oct 2017, at 18:11, David Baraff via swift-users 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="3D733C52-04CA-42EA-A993-C0A29520E430"><div dir="auto">I’ll try. &nbsp;Is that cast smart enough to apply recursively? We shall see.<br><br><div id="AppleMailSignature">Sent from my iPad</div><div><br>On Oct 19, 2017, at 7:34 AM, Geordie Jay &lt;<a href="mailto:geojay@gmail.com">geojay@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div><div dir="auto">I mean can you do something along the lines of</div><div dir="auto"><br></div><div dir="auto">let codableDict = stringAnyDict as? [String : Codable]</div><div dir="auto"><br></div><div dir="auto">?</div><div dir="auto"><br></div><div dir="auto">I’m not at a computer to test it myself</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div class="gmail_quote"><div>David Baraff &lt;<a href="mailto:davidbaraff@gmail.com">davidbaraff@gmail.com</a>&gt; schrieb am Do. 19. Okt. 2017 um 15:45:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">That’s exactly what I want.&nbsp; The ironic part is that I got my dictionary by decoding a Json file.&nbsp; If that’s where my dictionary came from, is there a simple way of coercing the Json serialization routines to give me back codables, rather than Anys?<div><br><br><div id="m_-5564253180470883141AppleMailSignature">Sent from my iPad</div></div></div><div dir="auto"><div><div><br>On Oct 19, 2017, at 3:38 AM, Geordie Jay &lt;<a href="mailto:geojay@gmail.com" target="_blank">geojay@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div><br><div class="gmail_quote"><div dir="auto">David Baraff via swift-users &lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt; schrieb am Do. 19. Okt. 2017 um 03:47:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">So I have simple structs like this:<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; struct Library: Codable {<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let domain: String<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let unit: String<br>
&nbsp; &nbsp; &nbsp; &nbsp; }<br>
<br>
and it’s super-simple to serialize.&nbsp; Yay.<br>
<br>
But:<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; struct LibraryGroup : Codable {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// I wish...<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;let libraries: [Library]<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;let someDict: [String : Any]<br>
&nbsp; &nbsp; &nbsp; &nbsp; }<br>
</blockquote><div dir="auto"><br></div><div dir="auto">I haven’t tried this, but is it possible to have a dictionary of [String : Codable] ? Because that’s exactly the type requirements you’re describing, no?</div><div dir="auto"><br></div><div dir="auto">Geordie</div><div dir="auto"><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
So what I’m looking for is something where if the values in someDict are themselves Codable, I can serialize things, and if they’re not, I can’t.&nbsp; In my previous scheme, I was using NSKeyedArchiver to serialize everything, manualy, including someDict; in trying to switch to Codable I ran smack into the fact that Codable wants to know what all the types are, in advance.<br>
<br>
Am I just stuck?&nbsp; How do I get the best of both worlds, where the compiler can make use of the fact that it can see the data types of my structures, while still being able to serialize heterogenous data like is found in LibraryGroup?<br>
<br>
Is my only alternative to write a custom coder for LibraryGroup?&nbsp; Is there any hope I could teach Codable what to do with<br>
&nbsp; &nbsp; &nbsp; &nbsp; [String: Any]<br>
<br>
?<br>
<br>
<br>
_______________________________________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
</blockquote></div></div>
</div></blockquote></div></div></blockquote></div></div>
</div></blockquote></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-users mailing list<br>
swift-users@swift.org<br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" style="color:#777">https://lists.swift.org/mailman/listinfo/swift-users</a></p>
</blockquote></div>
<div style="white-space:normal">
</div>
</div>
</body>
</html>