Please, observe the following simple program (based on the example from the protobuf-net project v1 wiki):

using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using ProtoBuf;

namespace HelloProtoBuf
{
  [ProtoContract]
  class Person
  {
    [ProtoMember(1)]
    public int Id { get; set; }
    [ProtoMember(2)]
    public string Name { get; set; }
    [ProtoMember(3)]
    public Address Address { get; set; }
  }
  [ProtoContract]
  class Address
  {
    [ProtoMember(1)]
    public string Line1 { get; set; }
    [ProtoMember(2)]
    public string Line2 { get; set; }
  }


  class Program
  {
    static void Main(string[] args)
    {
      var person = new Person
      {
        Id = 12345,
        Name = "Fred",
        Address = new Address
        {
          Line1 = "Flat 1",
          Line2 = "The Meadows"
        }
      };
      var person2 = new Person
      {
        Id = 4553,
        Name = "Nadya",
        Address = person.Address
      };
      var persons = new List<Person> { person, person2 };
      Debug.Assert(ReferenceEquals(persons[0].Address, persons[1].Address));

      using (var file = File.Create("persons.bin"))
      {
        Serializer.Serialize(file, persons);
      }
      List<Person> persons2;
      using (var file = File.OpenRead("persons.bin"))
      {
        persons2 = Serializer.Deserialize<List<Person>>(file);
      }
      Debug.Assert(ReferenceEquals(persons2[0].Address, persons2[1].Address));
    }
  }
}

The second assertion fails. Is this a bug in the protobuf-net implementation or is it that protocol buffers simply does not support object graphs with shared references?

Thanks.

link|improve this question

61% accept rate
feedback

1 Answer

up vote 5 down vote accepted

protocol-buffers itself does not support this - so no, it is not a bug. Indeed, XmlSerializer and DataContractSerializer* would do the same (and probably so would JavaScriptSerializer and JSON.NET).

However, it is a common request, so this is supported in protobuf-net v2 (basically: I cheat). Just change it to:

    [ProtoMember(3, AsReference=true)]
    public Address Address { get; set; }

(and use the v2 dll that I'm uploading in about 5 minutes, or build from code)


*=caveat: DataContractSerializer does support references, but only if you use a specific constructor; it is disabled by default

link|improve this answer
1  
Is it possible to convey this information through the imperative model (RuntimeTypeModel)? The problem is that my surrogates are attributed with DataContract/DataMember in order to avoid referencing protobuf-net. Thanks. – mark Jun 14 '11 at 7:00
1  
@mark - yes; yourMetaType[3].AsReference = true;, where 3 is the field-number (Order=3 in DCS parlance) – Marc Gravell Jun 14 '11 at 7:28
So Marc, how is this graph serialization working behind the scenes? Are you creating hidden int id's (like a surrogate primary key) for each referenced object and then restoring them at load time? – Lone Coder Apr 20 at 1:27
1  
@Lone yes, exactly that - only for the relationships marked for this usage, though – Marc Gravell Apr 20 at 1:32
Awesome. I'm going to try to use it for a quick and dirty serializer for the Ludem Dare this weekend (ludumdare.com/compo/rules). Need lots of awesome ninja tools like the one you made here! – Lone Coder Apr 20 at 1:48
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.