-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support user defined type serializers #194
Conversation
Logger.Warning("A TypeSerializer for {0} has already been defined, ignoring {1}", ts.CqlType, ts.GetType().Name); | ||
continue; | ||
} | ||
defined.Add(ts.CqlType); |
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.
Should allow multiple custom serializers
Via code review (rather than empirically), it looks like the issue in I brought up CSHARP-420 is fixed with the new serialization. |
P.S. might also need to deal with open-vs-closed generic type serializers. ie can I have a serializer that is for |
Serializer contains information of the protocol version and type serializers (codecs) that are shared across instances created from the Cluster.
Thanks for taking the time to review it @collinsauve ! User-defined serializers for map/list/set are not supported, list and set can be represented in multiple types in the C# driver: are originally deserialized as arrays and are then yielded as List, SortedSet, HashSet, ..., or as an Array depending on the type provided by the user when using Row.GetValue(string) this is mainly to support the previous behaviour and avoid introducing breaking changes. We could allow user-defined serializers for tuples but it will require changing how the checks are made (there is no public base class for Serialization and deserialization performance should not be penalized when adding extra |
Sorry @jorgebay my P.S. was regarding another, longer comment I thought I had made directly on a diff on Friday. Now I can't seem to find my comment. I was actually trying to point out that if I have a type |
Here's my original comment, I am copying it below: Not sure how severe the following problem is, but I thought I'd bring it up: If using a custom Ideally the serializer would locate the Here's a very quick example of how you might find the serializer with the highest-specificity: https://dotnetfiddle.net/n3G7zI For the following types:
With serializers for
|
Github removes it from the pull request thread when the comment is on the commit instead of the files tab, but I was able to see it the first time, thanks anyway. Type serializers work on the assumption that for 1 CQL type there is one CLR type (1 to 1), regardless the inheritance.
Type B and type A have different hash codes, so they will use different serializers, regardless if B inherits from A. |
Okay, as long as this is expected :) |
lgtm 👍 |
Merged. |
Sample usage, using a custom
BigDecimal
instead of C#decimal
: