| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 | #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.#endregionusing System;using System.Collections.Generic;using Google.ProtocolBuffers.Descriptors;//Disable warning CS3010: CLS-compliant interfaces must have only CLS-compliant members#pragma warning disable 3010namespace Google.ProtocolBuffers{    public interface ICodedInputStream    {        /// <summary>        /// Attempt to read a field tag, returning false if we have reached the end        /// of the input data.        /// </summary>        /// <remarks>        /// <para>        /// 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.        /// </para><para>        /// 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.        /// </para>        /// </remarks>        [CLSCompliant(false)]        bool ReadTag(out uint fieldTag, out string fieldName);        /// <summary>        /// Read a double field from the stream.        /// </summary>        bool ReadDouble(ref double value);        /// <summary>        /// Read a float field from the stream.        /// </summary>        bool ReadFloat(ref float value);        /// <summary>        /// Read a uint64 field from the stream.        /// </summary>        [CLSCompliant(false)]        bool ReadUInt64(ref ulong value);        /// <summary>        /// Read an int64 field from the stream.        /// </summary>        bool ReadInt64(ref long value);        /// <summary>        /// Read an int32 field from the stream.        /// </summary>        bool ReadInt32(ref int value);        /// <summary>        /// Read a fixed64 field from the stream.        /// </summary>        [CLSCompliant(false)]        bool ReadFixed64(ref ulong value);        /// <summary>        /// Read a fixed32 field from the stream.        /// </summary>        [CLSCompliant(false)]        bool ReadFixed32(ref uint value);        /// <summary>        /// Read a bool field from the stream.        /// </summary>        bool ReadBool(ref bool value);        /// <summary>        /// Reads a string field from the stream.        /// </summary>        bool ReadString(ref string value);        /// <summary>        /// Reads a group field value from the stream.        /// </summary>            void ReadGroup(int fieldNumber, IBuilderLite builder,                       ExtensionRegistry extensionRegistry);        /// <summary>        /// Reads a group field value from the stream and merges it into the given        /// UnknownFieldSet.        /// </summary>           [Obsolete]        void ReadUnknownGroup(int fieldNumber, IBuilderLite builder);        /// <summary>        /// Reads an embedded message field value from the stream.        /// </summary>           void ReadMessage(IBuilderLite builder, ExtensionRegistry extensionRegistry);        /// <summary>        /// Reads a bytes field value from the stream.        /// </summary>           bool ReadBytes(ref ByteString value);        /// <summary>        /// Reads a uint32 field value from the stream.        /// </summary>           [CLSCompliant(false)]        bool ReadUInt32(ref uint value);        /// <summary>        /// Reads an enum field value from the stream. The caller is responsible        /// for converting the numeric value to an actual enum.        /// </summary>           bool ReadEnum(ref IEnumLite value, out object unknown, IEnumLiteMap mapping);        /// <summary>        /// 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.        /// </summary>           [CLSCompliant(false)]        bool ReadEnum<T>(ref T value, out object unknown)            where T : struct, IComparable, IFormattable, IConvertible;        /// <summary>        /// Reads an sfixed32 field value from the stream.        /// </summary>           bool ReadSFixed32(ref int value);        /// <summary>        /// Reads an sfixed64 field value from the stream.        /// </summary>           bool ReadSFixed64(ref long value);        /// <summary>        /// Reads an sint32 field value from the stream.        /// </summary>           bool ReadSInt32(ref int value);        /// <summary>        /// Reads an sint64 field value from the stream.        /// </summary>           bool ReadSInt64(ref long value);        /// <summary>        /// 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.        /// </summary>        [CLSCompliant(false)]        void ReadPrimitiveArray(FieldType fieldType, uint fieldTag, string fieldName, ICollection<object> list);        /// <summary>        /// Reads an array of primitive values into the list, if the wire-type of fieldTag is length-prefixed, it will        /// read a packed array.        /// </summary>        [CLSCompliant(false)]        void ReadEnumArray(uint fieldTag, string fieldName, ICollection<IEnumLite> list, out ICollection<object> unknown,                           IEnumLiteMap mapping);        /// <summary>        /// Reads an array of primitive values into the list, if the wire-type of fieldTag is length-prefixed, it will        /// read a packed array.        /// </summary>        [CLSCompliant(false)]        void ReadEnumArray<T>(uint fieldTag, string fieldName, ICollection<T> list, out ICollection<object> unknown)            where T : struct, IComparable, IFormattable, IConvertible;        /// <summary>        /// Reads a set of messages using the <paramref name="messageType"/> as a template.  T is not guaranteed to be         /// the most derived type, it is only the type specifier for the collection.        /// </summary>        [CLSCompliant(false)]        void ReadMessageArray<T>(uint fieldTag, string fieldName, ICollection<T> list, T messageType,                                 ExtensionRegistry registry) where T : IMessageLite;        /// <summary>        /// Reads a set of messages using the <paramref name="messageType"/> as a template.        /// </summary>        [CLSCompliant(false)]        void ReadGroupArray<T>(uint fieldTag, string fieldName, ICollection<T> list, T messageType,                               ExtensionRegistry registry) where T : IMessageLite;        /// <summary>        /// Reads a field of any primitive type. Enums, groups and embedded        /// messages are not handled by this method.        /// </summary>        bool ReadPrimitiveField(FieldType fieldType, ref object value);        /// <summary>        /// 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.        /// </summary>        bool IsAtEnd { get; }        /// <summary>        /// Reads and discards a single field, given its tag value.        /// </summary>        /// <returns>false if the tag is an end-group tag, in which case        /// nothing is skipped. Otherwise, returns true.</returns>        [CLSCompliant(false)]        bool SkipField();        /// <summary>        /// Reads one or more repeated string field values from the stream.        /// </summary>           [CLSCompliant(false)]        void ReadStringArray(uint fieldTag, string fieldName, ICollection<string> list);        /// <summary>        /// Reads one or more repeated ByteString field values from the stream.        /// </summary>           [CLSCompliant(false)]        void ReadBytesArray(uint fieldTag, string fieldName, ICollection<ByteString> list);        /// <summary>        /// Reads one or more repeated boolean field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadBoolArray(uint fieldTag, string fieldName, ICollection<bool> list);        /// <summary>        /// Reads one or more repeated Int32 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadInt32Array(uint fieldTag, string fieldName, ICollection<int> list);        /// <summary>        /// Reads one or more repeated SInt32 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadSInt32Array(uint fieldTag, string fieldName, ICollection<int> list);        /// <summary>        /// Reads one or more repeated UInt32 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadUInt32Array(uint fieldTag, string fieldName, ICollection<uint> list);        /// <summary>        /// Reads one or more repeated Fixed32 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadFixed32Array(uint fieldTag, string fieldName, ICollection<uint> list);        /// <summary>        /// Reads one or more repeated SFixed32 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadSFixed32Array(uint fieldTag, string fieldName, ICollection<int> list);        /// <summary>        /// Reads one or more repeated Int64 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadInt64Array(uint fieldTag, string fieldName, ICollection<long> list);        /// <summary>        /// Reads one or more repeated SInt64 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadSInt64Array(uint fieldTag, string fieldName, ICollection<long> list);        /// <summary>        /// Reads one or more repeated UInt64 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadUInt64Array(uint fieldTag, string fieldName, ICollection<ulong> list);        /// <summary>        /// Reads one or more repeated Fixed64 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadFixed64Array(uint fieldTag, string fieldName, ICollection<ulong> list);        /// <summary>        /// Reads one or more repeated SFixed64 field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadSFixed64Array(uint fieldTag, string fieldName, ICollection<long> list);        /// <summary>        /// Reads one or more repeated Double field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadDoubleArray(uint fieldTag, string fieldName, ICollection<double> list);        /// <summary>        /// Reads one or more repeated Float field values from the stream.        /// </summary>        [CLSCompliant(false)]        void ReadFloatArray(uint fieldTag, string fieldName, ICollection<float> list);    }}
 |