-
Notifications
You must be signed in to change notification settings - Fork 639
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
Ability to get elementSerializer from collection serializers like ListLikeSerializer #2957
Comments
It is possible to do this by having a "special" (canary) decoder that you use to decode the list. The collection serializer will call |
Haha, thanks! That's very hacky but super clever! And should still be better than reflection. Let me give it a try! |
Can confirm it works with something like this. Thanks again!
|
I know it does work, and you're welcome. I had to do things very similar to this for the xml format (at least in older versions of the serialization library) - things such as figuring out the base class for a polymorphic serializer. |
What is your use-case and why do you need this feature?
Hi, I'm working on a custom format for converting serializable objects to/from
android.os.Bundle
at AndroidX. I got a problem for using format-specific types to support types likeParcelable
, which is a supported type by our format. To deserialize this type correctly,android.os.Bundle
sometimes needs ajava.lang.ClassLoader
. We can add that to our customParcelable
serializer, however, it doesn't work well for collection types likeArray<Parcelable>
, which is also supported by our format. And I have to use reflection to retrieve the classLoader stored in our customParcelable
serializer from the built-inArraySerializer
, which is pretty bad for us.User's code could be like this, and the classLoader is a property of
MyParcelableSerializer
:And our
decodeSerializableValue()
could be like this:Describe the solution you'd like
I think it's a very specific ask and I don't know if it makes sense for other custom formats, but is it possible to open up getting
elementSerializer
from collection serializers likeListLikeSerializer
orCollectionLikeSerializer
? Or maybe let them implement some kind of public interface if you want to keep the classes internal:So that we can implement
getClassLoader
as something like:I don't know if this is the best approach. Any suggestions are welcome. Thanks!
The text was updated successfully, but these errors were encountered: