Public Member Functions | Private Member Functions | Private Attributes | List of all members
com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder Class Reference
Inheritance diagram for com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder:
Inheritance graph
[legend]

Public Member Functions

void checkLastTagWas (final int value) throws InvalidProtocolBufferException
 
void enableAliasing (boolean enabled)
 
int getBytesUntilLimit ()
 
int getLastTag ()
 
int getTotalBytesRead ()
 
boolean isAtEnd () throws IOException
 
void popLimit (final int oldLimit)
 
int pushLimit (int byteLimit) throws InvalidProtocolBufferException
 
boolean readBool () throws IOException
 
byte[] readByteArray () throws IOException
 
ByteBuffer readByteBuffer () throws IOException
 
ByteString readBytes () throws IOException
 
double readDouble () throws IOException
 
int readEnum () throws IOException
 
int readFixed32 () throws IOException
 
long readFixed64 () throws IOException
 
float readFloat () throws IOException
 
void readGroup (final int fieldNumber, final MessageLite.Builder builder, final ExtensionRegistryLite extensionRegistry) throws IOException
 
int readInt32 () throws IOException
 
long readInt64 () throws IOException
 
void readMessage (final MessageLite.Builder builder, final ExtensionRegistryLite extensionRegistry) throws IOException
 
byte readRawByte () throws IOException
 
byte[] readRawBytes (final int length) throws IOException
 
int readRawLittleEndian32 () throws IOException
 
long readRawLittleEndian64 () throws IOException
 
int readRawVarint32 () throws IOException
 
long readRawVarint64 () throws IOException
 
int readSFixed32 () throws IOException
 
long readSFixed64 () throws IOException
 
int readSInt32 () throws IOException
 
long readSInt64 () throws IOException
 
String readString () throws IOException
 
String readStringRequireUtf8 () throws IOException
 
int readTag () throws IOException
 
int readUInt32 () throws IOException
 
long readUInt64 () throws IOException
 
void readUnknownGroup (final int fieldNumber, final MessageLite.Builder builder) throws IOException
 
void resetSizeCounter ()
 
boolean skipField (final int tag) throws IOException
 
boolean skipField (final int tag, final CodedOutputStream output) throws IOException
 
void skipMessage () throws IOException
 
void skipMessage (CodedOutputStream output) throws IOException
 
void skipRawBytes (final int length) throws IOException
 
- Public Member Functions inherited from com.google.protobuf.CodedInputStream
final int setRecursionLimit (final int limit)
 
final int setSizeLimit (final int limit)
 

Private Member Functions

long currentRemaining ()
 
void getNextByteBuffer () throws InvalidProtocolBufferException
 
 IterableDirectByteBufferDecoder (Iterable< ByteBuffer > inputBufs, int size, boolean immutableFlag)
 
void readRawBytesTo (byte[] bytes, int offset, final int length) throws IOException
 
void recomputeBufferSizeAfterLimit ()
 
int remaining ()
 
void skipRawVarint () throws IOException
 
ByteBuffer slice (int begin, int end) throws IOException
 
void tryGetNextByteBuffer ()
 

Private Attributes

int bufferSizeAfterCurrentLimit
 
long currentAddress
 
ByteBuffer currentByteBuffer
 
long currentByteBufferLimit
 
long currentByteBufferPos
 
long currentByteBufferStartPos
 
int currentLimit = Integer.MAX_VALUE
 
boolean enableAliasing
 
boolean immutable
 
Iterable< ByteBuffer > input
 
Iterator< ByteBuffer > iterator
 
int lastTag
 
int startOffset
 
int totalBufferSize
 
int totalBytesRead
 

Additional Inherited Members

- Static Public Member Functions inherited from com.google.protobuf.CodedInputStream
static int decodeZigZag32 (final int n)
 
static long decodeZigZag64 (final long n)
 
static CodedInputStream newInstance (ByteBuffer buf)
 
static CodedInputStream newInstance (final byte[] buf)
 
static CodedInputStream newInstance (final byte[] buf, final int off, final int len)
 
static CodedInputStream newInstance (final InputStream input)
 
static CodedInputStream newInstance (final InputStream input, int bufferSize)
 
static CodedInputStream newInstance (final Iterable< ByteBuffer > input)
 
static int readRawVarint32 (final int firstByte, final InputStream input) throws IOException
 

Detailed Description

Implementation of CodedInputStream that uses an Iterable} as the data source. Requires the use of

sun.misc.Unsafe

to perform fast reads on the buffer.

Definition at line 3091 of file CodedInputStream.java.

Constructor & Destructor Documentation

◆ IterableDirectByteBufferDecoder()

com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.IterableDirectByteBufferDecoder ( Iterable< ByteBuffer >  inputBufs,
int  size,
boolean  immutableFlag 
)
inlineprivate

The constructor of

Iterable<ByteBuffer>

decoder.

Parameters
inputBufsThe input data.
sizeThe total size of the input data.
immutableFlagwhether the input data is immutable.

Definition at line 3139 of file CodedInputStream.java.

Member Function Documentation

◆ checkLastTagWas()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.checkLastTagWas ( final int  value) throws InvalidProtocolBufferException
inline

Verifies that the last call to readTag() returned the given tag value. This is used to verify that a nested group ended with the correct end tag.

Exceptions
InvalidProtocolBufferException

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3194 of file CodedInputStream.java.

◆ currentRemaining()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentRemaining ( )
inlineprivate

Try to get the number of remaining bytes in

.

Returns
the number of remaining bytes in

Definition at line 3903 of file CodedInputStream.java.

◆ enableAliasing()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.enableAliasing ( boolean  enabled)
inline

Enables ByteString aliasing of the underlying buffer, trading off on buffer pinning for data copies. Only valid for buffer-backed streams.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3719 of file CodedInputStream.java.

◆ getBytesUntilLimit()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.getBytesUntilLimit ( )
inline

Returns the number of bytes to be read before the current limit. If no limit is set, returns -1.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3764 of file CodedInputStream.java.

◆ getLastTag()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.getLastTag ( )
inline

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3201 of file CodedInputStream.java.

◆ getNextByteBuffer()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.getNextByteBuffer ( ) throws InvalidProtocolBufferException
inlineprivate

To get the next ByteBuffer from

, and then update the parameters

Definition at line 3158 of file CodedInputStream.java.

◆ getTotalBytesRead()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.getTotalBytesRead ( )
inline

The total bytes read up to the current position. Calling resetSizeCounter() resets this value to zero.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3778 of file CodedInputStream.java.

◆ isAtEnd()

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.isAtEnd ( ) throws IOException
inline

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 if the stream has reached a limit created using pushLimit(int).

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3773 of file CodedInputStream.java.

◆ popLimit()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.popLimit ( final int  oldLimit)
inline

Discards the current limit, returning to the previous limit.

Parameters
oldLimitThe old limit, as returned by .

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3758 of file CodedInputStream.java.

◆ pushLimit()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.pushLimit ( int  byteLimit) throws InvalidProtocolBufferException
inline

Sets

to (current position) +

byteLimit

. This is called when descending into a length-delimited embedded message.

Note that

does NOT affect how many bytes the

reads from an underlying

InputStream

when refreshing its buffer. If you need to prevent reading past a certain point in the underlying

InputStream

(e.g. because you expect it to contain more data after the end of the message which you need to handle differently) then you must place a wrapper around your

InputStream

which limits the amount of data that can be read from it.

Returns
the old limit.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3729 of file CodedInputStream.java.

◆ readBool()

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readBool ( ) throws IOException
inline

Read a

bool

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3341 of file CodedInputStream.java.

◆ readByteArray()

byte [] com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readByteArray ( ) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3499 of file CodedInputStream.java.

◆ readByteBuffer()

ByteBuffer com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readByteBuffer ( ) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3504 of file CodedInputStream.java.

◆ readBytes()

ByteString com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readBytes ( ) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3468 of file CodedInputStream.java.

◆ readDouble()

double com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readDouble ( ) throws IOException
inline

Read a

double

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3306 of file CodedInputStream.java.

◆ readEnum()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readEnum ( ) throws IOException
inline

Read an enum field value from the stream. Caller is responsible for converting the numeric value to an actual enum.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3539 of file CodedInputStream.java.

◆ readFixed32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readFixed32 ( ) throws IOException
inline

Read a

fixed32

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3336 of file CodedInputStream.java.

◆ readFixed64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readFixed64 ( ) throws IOException
inline

Read a

fixed64

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3331 of file CodedInputStream.java.

◆ readFloat()

float com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readFloat ( ) throws IOException
inline

Read a

float

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3311 of file CodedInputStream.java.

◆ readGroup()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readGroup ( final int  fieldNumber,
final MessageLite.Builder  builder,
final ExtensionRegistryLite  extensionRegistry 
) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3396 of file CodedInputStream.java.

◆ readInt32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readInt32 ( ) throws IOException
inline

Read an

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3326 of file CodedInputStream.java.

◆ readInt64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readInt64 ( ) throws IOException
inline

Read an

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3321 of file CodedInputStream.java.

◆ readMessage()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readMessage ( final MessageLite.Builder  builder,
final ExtensionRegistryLite  extensionRegistry 
) throws IOException
inline

Read an embedded message field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3435 of file CodedInputStream.java.

◆ readRawByte()

byte com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawByte ( ) throws IOException
inline

Read one byte from the input.

Exceptions
InvalidProtocolBufferExceptionThe end of the stream or the current limit was reached.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3784 of file CodedInputStream.java.

◆ readRawBytes()

byte [] com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawBytes ( final int  size) throws IOException
inline

Read a fixed size of bytes from the input.

Exceptions
InvalidProtocolBufferExceptionThe end of the stream or the current limit was reached.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3792 of file CodedInputStream.java.

◆ readRawBytesTo()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawBytesTo ( byte[]  bytes,
int  offset,
final int  length 
) throws IOException
inlineprivate

Try to get raw bytes from

with the size of

and copy to

array. If the size is bigger than the number of remaining bytes in the input, then throw

truncatedMessage

exception.

Parameters
bytes
offset
length
Exceptions
IOException

Definition at line 3826 of file CodedInputStream.java.

◆ readRawLittleEndian32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawLittleEndian32 ( ) throws IOException
inline

Read a 32-bit little-endian integer from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3679 of file CodedInputStream.java.

◆ readRawLittleEndian64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawLittleEndian64 ( ) throws IOException
inline

Read a 64-bit little-endian integer from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3695 of file CodedInputStream.java.

◆ readRawVarint32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawVarint32 ( ) throws IOException
inline

Read a raw Varint from the stream. If larger than 32 bits, discard the upper bits.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3564 of file CodedInputStream.java.

◆ readRawVarint64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readRawVarint64 ( ) throws IOException
inline

Read a raw Varint from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3605 of file CodedInputStream.java.

◆ readSFixed32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readSFixed32 ( ) throws IOException
inline

Read an

sfixed32

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3544 of file CodedInputStream.java.

◆ readSFixed64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readSFixed64 ( ) throws IOException
inline

Read an

sfixed64

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3549 of file CodedInputStream.java.

◆ readSInt32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readSInt32 ( ) throws IOException
inline

Read an

sint32

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3554 of file CodedInputStream.java.

◆ readSInt64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readSInt64 ( ) throws IOException
inline

Read an

sint64

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3559 of file CodedInputStream.java.

◆ readString()

String com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readString ( ) throws IOException
inline

Read a

string

field value from the stream. If the stream contains malformed UTF-8, replace the offending bytes with the standard UTF-8 replacement character.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3346 of file CodedInputStream.java.

◆ readStringRequireUtf8()

String com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readStringRequireUtf8 ( ) throws IOException
inline

Read a

string

field value from the stream. If the stream contains malformed UTF-8, throw exception InvalidProtocolBufferException.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3372 of file CodedInputStream.java.

◆ readTag()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readTag ( ) throws IOException
inline

Attempt to read a field tag, returning zero if we have reached EOF. Protocol message parsers use this to read tags, since a protocol message may legally end wherever a tag occurs, and zero is not a valid tag number.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3178 of file CodedInputStream.java.

◆ readUInt32()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readUInt32 ( ) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3534 of file CodedInputStream.java.

◆ readUInt64()

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readUInt64 ( ) throws IOException
inline

Read a

field value from the stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3316 of file CodedInputStream.java.

◆ readUnknownGroup()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.readUnknownGroup ( final int  fieldNumber,
final MessageLite.Builder  builder 
) throws IOException
inline

Reads a

field value from the stream and merges it into the given {}. deprecated 16.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3429 of file CodedInputStream.java.

◆ recomputeBufferSizeAfterLimit()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.recomputeBufferSizeAfterLimit ( )
inlineprivate

Definition at line 3745 of file CodedInputStream.java.

◆ remaining()

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.remaining ( )
inlineprivate

Try to get the number of remaining bytes in

.

Returns
the number of remaining bytes in .

Definition at line 3893 of file CodedInputStream.java.

◆ resetSizeCounter()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.resetSizeCounter ( )
inline

Resets the current size counter to zero (see setSizeLimit(int)). Only valid for {}-backed streams.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3724 of file CodedInputStream.java.

◆ skipField() [1/2]

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipField ( final int  tag) throws IOException
inline

Reads and discards a single field, given its tag value.

Returns
false
if the tag is an endgroup tag, in which case nothing is skipped. Otherwise, returns
true
.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3206 of file CodedInputStream.java.

◆ skipField() [2/2]

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipField ( final int  tag,
final CodedOutputStream  output 
) throws IOException
inline

Reads a single field and writes it to output in wire format, given its tag value.

Returns
false
if the tag is an endgroup tag, in which case nothing is skipped. Otherwise, returns
true
.
Deprecated:
use

or

UnknownFieldSetLite

to skip to an output stream.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3233 of file CodedInputStream.java.

◆ skipMessage() [1/2]

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipMessage ( ) throws IOException
inline

Reads and discards an entire message. This will read either until EOF or until an endgroup tag, whichever comes first.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3284 of file CodedInputStream.java.

◆ skipMessage() [2/2]

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipMessage ( CodedOutputStream  output) throws IOException
inline

Reads an entire message and writes it to output in wire format. This will read either until EOF or until an endgroup tag, whichever comes first.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3294 of file CodedInputStream.java.

◆ skipRawBytes()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipRawBytes ( final int  size) throws IOException
inline

Reads and discards

bytes.

Exceptions
InvalidProtocolBufferExceptionThe end of the stream or the current limit was reached.

Reimplemented from com.google.protobuf.CodedInputStream.

Definition at line 3852 of file CodedInputStream.java.

◆ skipRawVarint()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.skipRawVarint ( ) throws IOException
inlineprivate

Definition at line 3879 of file CodedInputStream.java.

◆ slice()

ByteBuffer com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.slice ( int  begin,
int  end 
) throws IOException
inlineprivate

Definition at line 3907 of file CodedInputStream.java.

◆ tryGetNextByteBuffer()

void com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.tryGetNextByteBuffer ( )
inlineprivate

Definition at line 3165 of file CodedInputStream.java.

Member Data Documentation

◆ bufferSizeAfterCurrentLimit

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.bufferSizeAfterCurrentLimit
private

The amount of available data in the input beyond currentLimit.

Definition at line 3111 of file CodedInputStream.java.

◆ currentAddress

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentAddress
private

If the current ByteBuffer is unsafe-direct based, currentAddress is the start address of this ByteBuffer; otherwise should be zero.

Definition at line 3128 of file CodedInputStream.java.

◆ currentByteBuffer

ByteBuffer com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentByteBuffer
private

The current ByteBuffer;

Definition at line 3097 of file CodedInputStream.java.

◆ currentByteBufferLimit

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentByteBufferLimit
private

The limit position for current ByteBuffer

Definition at line 3130 of file CodedInputStream.java.

◆ currentByteBufferPos

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentByteBufferPos
private

The current position for current ByteBuffer

Definition at line 3121 of file CodedInputStream.java.

◆ currentByteBufferStartPos

long com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentByteBufferStartPos
private

Definition at line 3123 of file CodedInputStream.java.

◆ currentLimit

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentLimit = Integer.MAX_VALUE
private

The absolute position of the end of the current message.

Definition at line 3113 of file CodedInputStream.java.

◆ enableAliasing

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.enableAliasing
private

If

true

, indicates that calls to read ByteString or

byte[]

may return slices of the underlying buffer, rather than copies.

Definition at line 3107 of file CodedInputStream.java.

◆ immutable

boolean com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.immutable
private

If

true

, indicates that all the buffer are backing a ByteString and are therefore considered to be an immutable input source.

Definition at line 3102 of file CodedInputStream.java.

◆ input

Iterable<ByteBuffer> com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.input
private

The object that need to decode.

Definition at line 3093 of file CodedInputStream.java.

◆ iterator

Iterator<ByteBuffer> com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.iterator
private

The Iterator with type ByteBuffer of


Definition at line 3095 of file CodedInputStream.java.

◆ lastTag

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.lastTag
private

The last tag that was read from this stream.

Definition at line 3115 of file CodedInputStream.java.

◆ startOffset

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.startOffset
private

The start position offset of the whole message, used as to reset the totalBytesRead

Definition at line 3119 of file CodedInputStream.java.

◆ totalBufferSize

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.totalBufferSize
private

The global total message length limit

Definition at line 3109 of file CodedInputStream.java.

◆ totalBytesRead

int com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.totalBytesRead
private

Total Bytes have been Read from the Iterable ByteBuffer

Definition at line 3117 of file CodedInputStream.java.


The documentation for this class was generated from the following file:
google::protobuf::int64
int64_t int64
Definition: protobuf/src/google/protobuf/stubs/port.h:151
length
GLenum GLuint GLenum GLsizei length
Definition: glcorearb.h:2695
google::protobuf::uint32
uint32_t uint32
Definition: protobuf/src/google/protobuf/stubs/port.h:155
google::protobuf::python::cmessage::UnknownFieldSet
static PyObject * UnknownFieldSet(CMessage *self)
Definition: python/google/protobuf/pyext/message.cc:2501
bytes
uint8 bytes[10]
Definition: coded_stream_unittest.cc:153
com.google.protobuf.CodedInputStream.CodedInputStream
CodedInputStream()
Definition: CodedInputStream.java:198
google::protobuf::int32
int32_t int32
Definition: protobuf/src/google/protobuf/stubs/port.h:150
com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.input
Iterable< ByteBuffer > input
Definition: CodedInputStream.java:3093
google::protobuf::uint64
uint64_t uint64
Definition: protobuf/src/google/protobuf/stubs/port.h:156
com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.pushLimit
int pushLimit(int byteLimit)
Definition: CodedInputStream.java:3729
com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentLimit
int currentLimit
Definition: CodedInputStream.java:3113
size
GLsizeiptr size
Definition: glcorearb.h:2943
com.google.protobuf.CodedInputStream.IterableDirectByteBufferDecoder.currentByteBuffer
ByteBuffer currentByteBuffer
Definition: CodedInputStream.java:3097
group
static uint32_t * group(tarjan *t, upb_refcounted *r)
Definition: ruby/ext/google/protobuf_c/upb.c:5943


libaditof
Author(s):
autogenerated on Wed May 21 2025 02:07:06