#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // http://github.com/jskeet/dotnet-protobufs/ // Original C++/Java/Python code: // http://code.google.com/p/protobuf/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #endregion using System; using System.Collections.Generic; using Google.ProtocolBuffers.Descriptors; //Disable warning CS3010: CLS-compliant interfaces must have only CLS-compliant members #pragma warning disable 3010 namespace Google.ProtocolBuffers { public interface ICodedInputStream { /// /// Reads any message initialization data expected from the input stream /// /// /// This is primarily used by text formats and unnecessary for protobuffers' own /// binary format. The API for MessageStart/End was added for consistent handling /// of output streams regardless of the actual writer implementation. /// void ReadMessageStart(); /// /// Reads any message finalization data expected from the input stream /// /// /// This is primarily used by text formats and unnecessary for protobuffers' own /// binary format. The API for MessageStart/End was added for consistent handling /// of output streams regardless of the actual writer implementation. /// void ReadMessageEnd(); /// /// Attempt to read a field tag, returning false if we have reached the end /// of the input data. /// /// /// /// If fieldTag is non-zero and ReadTag returns true then the value in fieldName /// may or may not be populated. However, if fieldTag is zero and ReadTag returns /// true, then fieldName should be populated with a non-null field name. /// /// In other words if ReadTag returns true then either fieldTag will be non-zero OR /// fieldName will be non-zero. In some cases both may be populated, however the /// builders will always prefer the fieldTag over fieldName. /// /// bool ReadTag(out uint fieldTag, out string fieldName); /// /// Read a double field from the stream. /// bool ReadDouble(ref double value); /// /// Read a float field from the stream. /// bool ReadFloat(ref float value); /// /// Read a uint64 field from the stream. /// bool ReadUInt64(ref ulong value); /// /// Read an int64 field from the stream. /// bool ReadInt64(ref long value); /// /// Read an int32 field from the stream. /// bool ReadInt32(ref int value); /// /// Read a fixed64 field from the stream. /// bool ReadFixed64(ref ulong value); /// /// Read a fixed32 field from the stream. /// bool ReadFixed32(ref uint value); /// /// Read a bool field from the stream. /// bool ReadBool(ref bool value); /// /// Reads a string field from the stream. /// bool ReadString(ref string value); /// /// Reads a group field value from the stream. /// void ReadGroup(int fieldNumber, IBuilderLite builder, ExtensionRegistry extensionRegistry); /// /// Reads a group field value from the stream and merges it into the given /// UnknownFieldSet. /// [Obsolete] void ReadUnknownGroup(int fieldNumber, IBuilderLite builder); /// /// Reads an embedded message field value from the stream. /// void ReadMessage(IBuilderLite builder, ExtensionRegistry extensionRegistry); /// /// Reads a bytes field value from the stream. /// bool ReadBytes(ref ByteString value); /// /// Reads a uint32 field value from the stream. /// bool ReadUInt32(ref uint value); /// /// Reads an enum field value from the stream. The caller is responsible /// for converting the numeric value to an actual enum. /// bool ReadEnum(ref IEnumLite value, out object unknown, IEnumLiteMap mapping); /// /// Reads an enum field value from the stream. If the enum is valid for type T, /// then the ref value is set and it returns true. Otherwise the unkown output /// value is set and this method returns false. /// bool ReadEnum(ref T value, out object unknown) where T : struct, IComparable, IFormattable; /// /// Reads an sfixed32 field value from the stream. /// bool ReadSFixed32(ref int value); /// /// Reads an sfixed64 field value from the stream. /// bool ReadSFixed64(ref long value); /// /// Reads an sint32 field value from the stream. /// bool ReadSInt32(ref int value); /// /// Reads an sint64 field value from the stream. /// bool ReadSInt64(ref long value); /// /// Reads an array of primitive values into the list, if the wire-type of fieldTag is length-prefixed and the /// type is numeric, it will read a packed array. /// void ReadPrimitiveArray(FieldType fieldType, uint fieldTag, string fieldName, ICollection list); /// /// Reads an array of primitive values into the list, if the wire-type of fieldTag is length-prefixed, it will /// read a packed array. /// void ReadEnumArray(uint fieldTag, string fieldName, ICollection list, out ICollection unknown, IEnumLiteMap mapping); /// /// Reads an array of primitive values into the list, if the wire-type of fieldTag is length-prefixed, it will /// read a packed array. /// void ReadEnumArray(uint fieldTag, string fieldName, ICollection list, out ICollection unknown) where T : struct, IComparable, IFormattable; /// /// Reads a set of messages using the as a template. T is not guaranteed to be /// the most derived type, it is only the type specifier for the collection. /// void ReadMessageArray(uint fieldTag, string fieldName, ICollection list, T messageType, ExtensionRegistry registry) where T : IMessageLite; /// /// Reads a set of messages using the as a template. /// void ReadGroupArray(uint fieldTag, string fieldName, ICollection list, T messageType, ExtensionRegistry registry) where T : IMessageLite; /// /// Reads a field of any primitive type. Enums, groups and embedded /// messages are not handled by this method. /// bool ReadPrimitiveField(FieldType fieldType, ref object value); /// /// Returns true if the stream has reached the end of the input. This is the /// case if either the end of the underlying input source has been reached or /// the stream has reached a limit created using PushLimit. /// bool IsAtEnd { get; } /// /// Reads and discards a single field, given its tag value. /// /// false if the tag is an end-group tag, in which case /// nothing is skipped. Otherwise, returns true. bool SkipField(); /// /// Reads one or more repeated string field values from the stream. /// void ReadStringArray(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated ByteString field values from the stream. /// void ReadBytesArray(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated boolean field values from the stream. /// void ReadBoolArray(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Int32 field values from the stream. /// void ReadInt32Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated SInt32 field values from the stream. /// void ReadSInt32Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated UInt32 field values from the stream. /// void ReadUInt32Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Fixed32 field values from the stream. /// void ReadFixed32Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated SFixed32 field values from the stream. /// void ReadSFixed32Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Int64 field values from the stream. /// void ReadInt64Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated SInt64 field values from the stream. /// void ReadSInt64Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated UInt64 field values from the stream. /// void ReadUInt64Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Fixed64 field values from the stream. /// void ReadFixed64Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated SFixed64 field values from the stream. /// void ReadSFixed64Array(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Double field values from the stream. /// void ReadDoubleArray(uint fieldTag, string fieldName, ICollection list); /// /// Reads one or more repeated Float field values from the stream. /// void ReadFloatArray(uint fieldTag, string fieldName, ICollection list); } }