从孩子到父母的protobuf-net继承

时间:2015-04-03 21:48:33

标签: c# inheritance protocol-buffers protobuf-net

我有一个父类,我想要有很多平坦的孩子。这意味着一个班级将固有10个或更多不同的班级。

这就是我所拥有的。

基类:

[ProtoContract]
[ProtoInclude(500, typeof(Message1Send))]
[ProtoInclude(501, typeof(Message2Send))]
public class MessageBase
{
    [ProtoMember(1)]
    public string Topic {get;set;}
    [ProtoMember(2)]
    public string Action { get; set; }       
}

许多儿童班中的2个:

[ProtoContract]    
public class Message1Send : MessageBase
{        
    [ProtoMember(1)]
    public string Property1 { get; set; }
}

[ProtoContract]    
public class Message2Send : MessageBase
{        
    [ProtoMember(1)]
    public string Property1 { get; set; }
}

我希望能够告诉子对象我是基类的一部分。

我不知道我的基类如下:

[ProtoContract]
[ProtoInclude(500, typeof(Message1Send))]
[ProtoInclude(501, typeof(Message2Send))]
[ProtoInclude(502, typeof(Message3Send))]
[ProtoInclude(503, typeof(Message4Send))]
[ProtoInclude(504, typeof(Message5Send))]
[ProtoInclude(505, typeof(Message6Send))]
[ProtoInclude(506, typeof(Message7Send))]
[ProtoInclude(507, typeof(Message8Send))]
[ProtoInclude(508, typeof(Message9Send))]
[ProtoInclude(509, typeof(Message10Send))]
public class MessageBase
{
    [ProtoMember(1)]
    public string Topic {get;set;}
    [ProtoMember(2)]
    public string Action { get; set; }       
}

有没有办法让每个Send类只添加一个对基类的引用,这样我就不必为我创建的每个平面子项添加ProtoInclude了?

1 个答案:

答案 0 :(得分:3)

问题在于可靠性。反射使得非常可重复/可靠的保证,如果你今天序列化数据,那么编辑你的应用程序以添加两种新类型非常重要,每种类型的数字仍然与oroginally相同。即使您添加了一些新类型,也重新命名了一些,并且可能删除了一些您并未真正使用的类型。

该属性通过使字段编号可重复来保证这一点。它在父(而不是孩子)身上的原因是,走向上类型链比向下更可靠。

但是:如果您有可靠的可重复方法为子类型生成字段编号,则可以使用RuntimeTypeModel根据自己的喜好配置序列化程序。