3

我在反序列化时收到此错误:

线型无效;这通常意味着您在没有截断或设置长度的情况下覆盖了文件;看到使用 Protobuf-net,我突然得到一个关于未知线型的异常

那只提到文件截断,但我正在创建一个新文件

 Stopwatch sw = new Stopwatch();
            List<SomeClass> items = CreateSomeClass();
            sw.Start();
            using (var file = File.Create(fileName))
            {
                var model = CreateModel();
                model.Serialize(file, items);
                file.SetLength(file.Position);
            }
            sw.Stop();
            logger.Debug("Saving/serialization to {0} took {1} m/s", fileName, sw.ElapsedMilliseconds);
            sw.Reset();
            logger.Debug("Starting deserialzation...");
            sw.Start();
            using (var returnStream = new FileStream(fileName, FileMode.Open))
            {
                var model = CreateModel();
                var deserialized = model.Deserialize(returnStream, null, typeof(SomeClass));
            }
            logger.Debug("Retrieving/deserialization of {0} took {1} m/s", fileName, sw.ElapsedMilliseconds);

 public static TypeModel CreateModel()
    {
        RuntimeTypeModel model = TypeModel.Create();

        model.Add(typeof(SomeClass), false)
            .Add(1, "SomeClassId")
            .Add(2, "FEnum")
            .Add(3, "AEnum")
            .Add(4, "Thing")
            .Add(5, "FirstAmount")
            .Add(6, "SecondAmount")
            .Add(7, "SomeDate");
        TypeModel compiled = model.Compile();

        return compiled;
    }

 public enum FirstEnum
{ 
    First = 0,
    Second,
    Third
}
public enum AnotherEnum
{ 
    AE1 = 0,
    AE2,
    AE3
}
[Serializable()]
public class SomeClass
{
    public int SomeClassId { get; set; }
    public FirstEnum FEnum { get; set; }
    public AnotherEnum AEnum { get; set; }
    string thing;
    public string Thing
    {
        get{return thing;}
        set
        {
            if (string.IsNullOrEmpty(value))
                throw new ArgumentNullException("Thing");

            thing = value;
        }
    }
    public decimal FirstAmount { get; set; }
    public decimal SecondAmount { get; set; }
    public decimal ThirdAmount { get { return FirstAmount - SecondAmount; } }
    public DateTime? SomeDate { get; set; }
}

我是 Protobuf-net 的新手,所以有什么明显的我做错/遗漏的事情吗?

4

2 回答 2

2

您将其序列化为列表,并将其反序列化为单个项目。这是个问题。要么使用 DeserializeItems,要么:而不是

typeof(SomeClass)

经过

typeof(List<SomeClass>)

DeserializeItems 可能稍微快一些(由于各种原因,当使用列表类型作为操作数调用 Deserialize 时,它​​必须做额外的工作)。

于 2012-04-05T20:55:15.840 回答
1

鉴于该错误似乎表明反序列化阅读器想要读取额外的字节,请尝试在没有 file.SetLength(file.Position) 的情况下运行您的代码,这不应该是必需的(文件流知道它的长度)。

于 2012-04-05T20:01:30.063 回答