Skip to main content

ProtobufSourceGenerator by Laszlo Deak

Nuget / site data

Nuget GitHub last commit GitHub Repo stars

Details

Info

info

Name: ProtobufSourceGenerator

A source generator that generates helper classes with properties attributes with ProtoMember attribute.

Author: Laszlo Deak

NuGet: https://www.nuget.org/packages/LaDeak.ProtobufSourceGenerator/

You can find more details at https://github.com/ladeak/ProtobufSourceGenerator

Source : https://github.com/ladeak/ProtobufSourceGenerator

Original Readme

note

Protobuf Source Generator

A source generator that generates partial helper classes where member properties are attributed with ProtoMember attribute for serialization with protobuf-net.

Getting Started

Install nuget package:

dotnet add package LaDeak.ProtobufSourceGenerator

The source generator creates partial classes with private properties that are attributed with [ProtoMember] attributes. The properties get and set a corresponding property from the source type. This way developers are free to add and remove properties without explicitly attributing them.

Note that adding, removing or reordering properties might cause breaking changes for the serialized data, as the tags assigned with [ProtoMember] attribute are given based on the source type's definition.

To generate a partial type for a custom type, mark the type with [ProtoContract] attribute and with partial modifier. For example, the following entity type can be made source generating:

public class Entity
{
public int Id { get; set; }
}

Add [ProtoContract] attribute and partial modifier on the type definition:

[ProtoContract]
public partial class Entity
{
public int Id { get; set; }
}

With this change a corresponding partial type is generated, that can be used for serialization with protobuf-net:

#nullable enable
namespace SampleApp;
public partial class Entity
{
[ProtoBuf.ProtoMember(1)]
private int ProtoId { get => Id; set => Id = value; }
}

The source generator generates serializable properties that are auto properties with getter and setters.

Non-Generating Properties

  • init properties are excluded from source generation
  • Non-auto properties are not generated
  • Properties marked with [ProtoIgnore] and [ProtoMemeber(x)] attributes are not generated.
  • Positional Records (not supported by protobuf-net)

In case a property needs to be serialized, but it has no corresponding generated property, it may be attributed with [ProtoMemeber(x)] on the original type. The source generator makes sure that tag x is not used on the generated partial type.

Nested Types

Generating partial types for nested types is supported, however parent types must be marked with partial modifier.

Analyzer

The source generator also comes with an analyzer helping source generation:

  • issues an error if a custom type of a property is not participating in source generation
  • issues an error if a source generated nested type's parent is not partial
  • issues an info if a property is not part of source generation
  • issues a warning when the base type is not attributed for serialization

Advanced Usage

Null Items in Collections

Serializing null values by protobuf-net is not allowed:

new List<string>() { "one", null, "three" };

The generator will not remove null items, so in this case an exception shall be handled by the user code.

Empty Collections

public List<string> Value { get; set; }

Empty lists are not distinguished by the proto contract from a null lists. protobuf-net suggests to have an additional bool property indicating if the list was empty at serialization or not, and based on the value instantiate a collection at deserialization or not.

ProtoBufGenearator generates the helper property such as:

[global::ProtoBuf.ProtoMember(1)]
private System.Collections.Generic.List<string> ProtoValue { get => Value; set => Value = value; }

[global::ProtoBuf.ProtoMember(2)]
[global::System.ComponentModel.DataAnnotations.Schema.NotMappedAttribute]
private bool ProtoIsEmptyValue
{
get => ProtoValue?.Count == 0;
set
{
if (value)
ProtoValue = new();
}
}

Initialized to Enumerable Empty

public IEnumerable<string> Values { get; set; } = Enumerable.Empty<string>();

Collections when initialized with enumerable empty cause an issue with deserialization as protobuf-net will attempt to add an item to the existing collection, which is not possible in the above case.

In this case the user may initialze with an empty list, or manually decorate the property with [ProtoMember()] (or [ProtoIgnore]) attribute that will exclude it from protobuf source generation.

Custom Attributes on Properties

It is supported to decorate all properties in the generated partial class with custom attributes.

[ProtoContract]
[GeneratorOptions(PropertyAttributeType = typeof(NotMappedAttribute))]
public partial class CustomAttributedEntity
{
// ...
}

In the above example, with the type parameter of GeneratorOptions the generator is instructed to apply NotMappedAttribute attribute on all generated properties on a class.

For a more fine grained approach consider excluding the given property from the source generation. For such cases use [ProtoMember()] or [ProtoIgnore] attributes.

Base Classes and Inheritance

Follow the instructions of protobuf-net library. Apply [ProtoInclude(...)] attribute on the type definition.

About

note

Serializing a class to protobuf

How to use

Example ( source csproj, source files )

This is the CSharp Project that references ProtobufSourceGenerator

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LaDeak.ProtobufSourceGenerator" Version="1.5.1" OutputItemType="Analyzer" ReferenceOutputAssembly="true" />
<PackageReference Include="protobuf-net" Version="3.2.26" />
</ItemGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
</Project>

Generated Files

Those are taken from $(BaseIntermediateOutputPath)\GX

// <auto-generated/>
#nullable enable
namespace ProtobufSourceGeneratorDemo;
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute]
public partial class Person
{
[global::ProtoBuf.ProtoMember(1)]
private int ProtoId { get => Id; set => Id = value; }

[global::ProtoBuf.ProtoMember(2)]
private string? ProtoName { get => Name; set => Name = value; }
}

Usefull

Download Example (.NET C# )

Share ProtobufSourceGenerator

https://ignatandrei.github.io/RSCG_Examples/v2/docs/ProtobufSourceGenerator

In the same category (Serializer) - 3 other generators

jsonConverterSourceGenerator

JsonPolymorphicGenerator

System.Text.Json