Giter VIP home page Giter VIP logo

Comments (4)

jacobdufault avatar jacobdufault commented on August 23, 2024

Sure, here is roughly how I'd implement it. There are only a few required modifications.

Usage
class Model {
    [fsProperty(ShouldSerialize="CheckMember")]
    public int Member;
    bool CheckMember() { return member % 2 == 0; }
}
fsConfig.SerializeDefaultValues = false;
Implementation

For implementation, there are two primary areas that you should check: the reflected converter and AOT generated converters. Luckily it is simple in both scenarios:

For the reflected converter, see here.

For the AOT compiled converters, they all reference a common SerializeMember function. You should modify it so that it only emits data if it should, ie, it should read something like:

protected fsResult SerializeMember<T>(Dictionary<string, fsData> data, string name, T value) {
    // should we skip serialization?
    // TODO: is default(T) how we actually want to get the default value? What about arrays/lists/collections?
    // TODO: There should be no reflection in this method. For the ShouldSerialize method,
    //       the AOT generator should be modified so it will invoke the method before calling
    //       SerializeMember
    if (value == default(T)) return fsResult.Success; // skip serialization

    // below: the existing method
    fsData memberData;
    var result = Serializer.TrySerialize(typeof(T), value, out memberData);
    if (result.Succeeded) data[name] = memberData;
    return result;
}

The AOT generation is done here, and the conditional check should be emitted around here.

Then there is also the issue of serializing default values inside of collections - should the following list be serialized? [0, 0, 0, 0]. I think this is a scenario where default serialization will skip only the empty collection, ie, []. Anything beyond that can be handled by the ShouldSerialize user-defined method.

Make sure to cache the reflection computations inside of fsMetaType and/or fsMetaProperty.

from fullserializer.

robertwahler avatar robertwahler commented on August 23, 2024

Thanks for the detailed insights. Good stuff!

My first choice would be an attribute based system that allowed custom converters at the property level since that is more declarative and reusable but maybe that just isn't feasible. I'm going to let this percolate a few days, maybe some of the other repo watchers will chime in. For now, I'm hung up on making sure the serialization process doesn't emit metadata when I don't expect it. I'll post some test cases in the existing issue.

from fullserializer.

jacobdufault avatar jacobdufault commented on August 23, 2024

An additional scenario this system should handle is

public class Model {
    [fsProperty(DoNotEmitTypeMetadata = true)]
    public object Member;
}

(see some of the comments in #24)

from fullserializer.

Skval avatar Skval commented on August 23, 2024

Link is broken, I need this...

from fullserializer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.