-
Notifications
You must be signed in to change notification settings - Fork 624
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
Add support for deserialization Duration in HOCON format #2073
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall the PR is good, but I have several thoughts:
- Hocon format also supports encoding to config (
Hocon.encodeToConfig
). Do you plan to support Duration in encoding, too? If so, how will it be encoded? Milliseconds only? - Documentation should be updated to reflect this change. Since we do not have a separate HOCON entry in https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/serialization-guide.md, KDoc update should do the job.
- Does it make sense to add a flag to restore old behavior? If one wants now to serialize Duration in ISO8601, they would have to resort to cumbersome workarounds like making a custom serializer that delegates to duration serializer but uses a different descriptor. However, I'm not well aware of hocon usages and if no one does ISO Duration serialization, I'm fine with not having flag.
formats/hocon/src/main/kotlin/kotlinx/serialization/hocon/Hocon.kt
Outdated
Show resolved
Hide resolved
formats/hocon/src/main/kotlin/kotlinx/serialization/hocon/Hocon.kt
Outdated
Show resolved
Hide resolved
formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/HoconDurationDeserializerTest.kt
Outdated
Show resolved
Hide resolved
formats/hocon/src/test/kotlin/kotlinx/serialization/hocon/HoconDurationDeserializerTest.kt
Outdated
Show resolved
Hide resolved
Hi, Leonid @sandwwraith!
Yes, we discussed this with Alex @alexmihailov and decided to implement this in separate PR later. You are right, it will be something like we implemented this case In Config4K
I think it's not worth it. Typesafe Config as HOCON reference implementation doesn't support ISO8601 and I've never seen that someone use this format for Duration 😄 I think we will be able to add a flag by request in the future if I'm wrong and it's really needed for someone. |
430084b
to
87bbb2a
Compare
OK, no problem |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apart from minor documentation rewording, I do not have suggestions. However, I kindly ask you to submit encoding PR before the next release (which should happen in about a month), so the format continues to look consistent.
formats/hocon/src/main/kotlin/kotlinx/serialization/hocon/Hocon.kt
Outdated
Show resolved
Hide resolved
formats/hocon/src/main/kotlin/kotlinx/serialization/hocon/Hocon.kt
Outdated
Show resolved
Hide resolved
Co-authored-by: Leonid Startsev <[email protected]>
For encoding, I already have a solution, I will submit a PR soon |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, great job!
Currently **kotlin.time.Duration** by default supports deserialization from **ISO-8601-2** format. But **HOCON** uses a different [format](https://github.com/lightbend/config/blob/main/HOCON.md#duration-format). Made changes so that when deserializing **kotlin.time.Duration** from **HOCON**, by default, use the format specified in the documentation.
Currently kotlin.time.Duration by default supports deserialization from ISO-8601-2 format. But HOCON uses a different format.
Made changes so that when deserializing kotlin.time.Duration from HOCON, by default use the format specified in the documentation.