-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object is unordered #368
Comments
instance ToJSON X where
toEncoding X{..} = pairs ("b" .= xB <> "a" .= xA) the order is going to be |
By the way, you can use aeson-pretty to output the keys in the order you want (it only solves a half of the problem, but still). |
Thanks for the quick response! That short-circuits my investigation quite conveniently 😄 |
I don't think it'd be worth breaking aeson API compatibility to add this. It would be cool to have ordering info somehow or other, though. This way, you can consume and modify json, and more easily see what was changed. At that point, though, you might as well have something like aeson which also preserves layout. This'd make it possible to implement json refactoring. |
Coincidentally there is GetShopTV/swagger2#56, if |
One interesting approach might be |
@mgsloan and what would happen on key removal/addition? is there any invariant (or law) involved for the |
@hvr Values with the same |
@hvr, @mgsloan check the As I mentioned, it helps with serialisation. Deserialisation into it (and avoiding backwards-incompatible changes in
-- | `Parser` internals obviously changes
class FromJSON a where
parseJSON :: Value -> Parser a
fromEncoding :: Parser a
fromEncoding = fromEncoding >>= parseJSON My gut feeling says: that will give
As I have juggled this idea for a while, writing |
There is http://hackage.haskell.org/package/insert-ordered-containers and I have positive experience with it when serialising |
It seems to me that there is an existing solution (use |
I’d be ok with closing, personally. |
This solves preserving ordering for encoding, but I would like ordering to be preserved on decoding into a |
@awalterschulze Unfortunately that's not possible with aeson. The parser, which discards key order, is pretty opaque so there isn't a good way around this. |
Currently I am using
|
The reliance on lists and You may also like @phadej's suggestion above, of parsing a token stream (preserving a lot of information from the source); he made a PR since then. For validation that seems just right. |
Yes that looks perfect. I'll be looking forward to that merge. |
Bitten by this again, this time in the decoding direction. It looks like @phadej’s RFC for a token parsing PR is stale; have there been any other developments in this space? |
I have ran into this issue as well, I need to create a JSON formatter as part of a program, so it must preserve the original user document's ordering. |
NB: I’m discussing the
Object
constructor used inValue
. I haven’t yet looked into how this all works forEncoding
.Object
is a synonym forHashMap Text Value
, and as such is unordered. This is in keeping with JSON.org, at least, which describes objects as unordered.However, JSON documents are obviously ordered, and that ordering may be important for performance when used with e.g. incremental parsers. Furthermore while one can represent unordered key/value pairs unambiguously with ordered ones, the reverse is not possible (without mapping keys or duplicating them in an array).
An ordered representation for
Object
would be valuable for my use case for both of these reasons.The text was updated successfully, but these errors were encountered: