public static FieldKey DeserializeLengthDelimited(Stream stream)
        {
            FieldKey fieldKey = new FieldKey();

            FieldKey.DeserializeLengthDelimited(stream, fieldKey);
            return(fieldKey);
        }
 public static QueryRequest Deserialize(Stream stream, QueryRequest instance, long limit)
 {
     if (instance.Key == null)
     {
         instance.Key = new List <FieldKey>();
     }
     while (true)
     {
         if (limit < (long)0 || stream.Position < limit)
         {
             int num = stream.ReadByte();
             if (num == -1)
             {
                 if (limit >= (long)0)
                 {
                     throw new EndOfStreamException();
                 }
                 break;
             }
             else if (num != 10)
             {
                 if (num == 18)
                 {
                     instance.Key.Add(FieldKey.DeserializeLengthDelimited(stream));
                 }
                 else
                 {
                     Key key = ProtocolParser.ReadKey((byte)num, stream);
                     if (key.Field == 0)
                     {
                         throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream");
                     }
                     ProtocolParser.SkipKey(stream, key);
                 }
             }
             else if (instance.EntityId != null)
             {
                 bnet.protocol.EntityId.DeserializeLengthDelimited(stream, instance.EntityId);
             }
             else
             {
                 instance.EntityId = bnet.protocol.EntityId.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Exemple #3
0
 public static Field Deserialize(Stream stream, Field instance, long limit)
 {
     while (true)
     {
         if (limit < (long)0 || stream.Position < limit)
         {
             int num = stream.ReadByte();
             if (num == -1)
             {
                 if (limit >= (long)0)
                 {
                     throw new EndOfStreamException();
                 }
                 break;
             }
             else if (num == 10)
             {
                 if (instance.Key != null)
                 {
                     FieldKey.DeserializeLengthDelimited(stream, instance.Key);
                 }
                 else
                 {
                     instance.Key = FieldKey.DeserializeLengthDelimited(stream);
                 }
             }
             else if (num != 18)
             {
                 Key key = ProtocolParser.ReadKey((byte)num, stream);
                 if (key.Field == 0)
                 {
                     throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream");
                 }
                 ProtocolParser.SkipKey(stream, key);
             }
             else if (instance.Value != null)
             {
                 bnet.protocol.attribute.Variant.DeserializeLengthDelimited(stream, instance.Value);
             }
             else
             {
                 instance.Value = bnet.protocol.attribute.Variant.DeserializeLengthDelimited(stream);
             }
         }
         else
         {
             if (stream.Position != limit)
             {
                 throw new ProtocolBufferException("Read past max limit");
             }
             break;
         }
     }
     return(instance);
 }
Exemple #4
0
 public static Field Deserialize(Stream stream, Field instance, long limit)
 {
     while (limit < 0L || stream.get_Position() < limit)
     {
         int num = stream.ReadByte();
         if (num == -1)
         {
             if (limit >= 0L)
             {
                 throw new EndOfStreamException();
             }
             return(instance);
         }
         else
         {
             int num2 = num;
             if (num2 != 10)
             {
                 if (num2 != 18)
                 {
                     Key  key   = ProtocolParser.ReadKey((byte)num, stream);
                     uint field = key.Field;
                     if (field == 0u)
                     {
                         throw new ProtocolBufferException("Invalid field id: 0, something went wrong in the stream");
                     }
                     ProtocolParser.SkipKey(stream, key);
                 }
                 else if (instance.Value == null)
                 {
                     instance.Value = Variant.DeserializeLengthDelimited(stream);
                 }
                 else
                 {
                     Variant.DeserializeLengthDelimited(stream, instance.Value);
                 }
             }
             else if (instance.Key == null)
             {
                 instance.Key = FieldKey.DeserializeLengthDelimited(stream);
             }
             else
             {
                 FieldKey.DeserializeLengthDelimited(stream, instance.Key);
             }
         }
     }
     if (stream.get_Position() == limit)
     {
         return(instance);
     }
     throw new ProtocolBufferException("Read past max limit");
 }