GithubHelp home page GithubHelp logo

Comments (3)

ReubenBond avatar ReubenBond commented on September 23, 2024 3

@defilerc I've opened #8993 with a fix. I assume you will need this backported to v7.x

from orleans.

ReubenBond avatar ReubenBond commented on September 23, 2024 2

This does seem like a bug to me. Thanks for reporting. I'm investigating.
For now, here are some workarounds:

  1. Make the constructor private and add a static method to create instances. This hides the ctor from the serializer.
using Orleans;
using Orleans.Serialization;
using Microsoft.Extensions.DependencyInjection;
using System.Collections.Generic;
using NUnit.Framework.Legacy;

var serviceProvider = new ServiceCollection()
    .AddSerializer()
    .BuildServiceProvider();

var serializer = serviceProvider.GetRequiredService<Serializer>();

var instance = MatchStatistics.Create();
var bytes = serializer.SerializeToArray(instance);
var deserialized = serializer.Deserialize<MatchStatistics>(bytes);

CollectionAssert.AreEquivalent(instance, deserialized);

[GenerateSerializer]
public class MatchStatistics : Dictionary<IncidentType, int[]>
{
    public static MatchStatistics Create() => new();

    private MatchStatistics()
    {
        this[IncidentType.Score] = new[] { 0, 0 };
    }
}

[GenerateSerializer]
public enum IncidentType { Unknown = 0, Score = 1 }
  1. Define a custom activator for the MatchStatistics class which avoids the dictionary mutation and add the [UseActivator] attribute to the MatchStatistics class
using Orleans;
using Orleans.Serialization;
using Microsoft.Extensions.DependencyInjection;
using System.Collections.Generic;
using NUnit.Framework.Legacy;
using Orleans.Serialization.Activators;

var serviceProvider = new ServiceCollection()
    .AddSerializer()
    .BuildServiceProvider();

var serializer = serviceProvider.GetRequiredService<Serializer>();

var instance = new MatchStatistics();
var bytes = serializer.SerializeToArray(instance);
var deserialized = serializer.Deserialize<MatchStatistics>(bytes);

CollectionAssert.AreEquivalent(instance, deserialized);

[GenerateSerializer]
[UseActivator]
public class MatchStatistics : Dictionary<IncidentType, int[]>
{
    public MatchStatistics() : this(true)
    {
    }

    internal MatchStatistics(bool addDefaults)
    {
        if (addDefaults)
        {
            this[IncidentType.Score] = new[] { 0, 0 };
        }
    }
}

[RegisterActivator]
public sealed class MatchStatisticsActivator : IActivator<MatchStatistics>
{
    public MatchStatistics Create() => new MatchStatistics(addDefaults: false);
}

[GenerateSerializer]
public enum IncidentType { Unknown = 0, Score = 1 }

Option 1 is less code. Option 2 does not require you to change call sites or break binary compatibility.

from orleans.

defilerc avatar defilerc commented on September 23, 2024 1

@ReubenBond thx a lot for your prompt reply and fix! If that's possible, that would be great, as we're migrating to Orleans v7.x at the moment and will migrate to .NET8/Orleans 8.X at a later stage.

from orleans.

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.