webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Public Member Functions | |
int | readTag () throws IOException |
void | checkLastTagWas (final int value) throws InvalidProtocolBufferException |
int | getLastTag () |
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 |
double | readDouble () throws IOException |
float | readFloat () throws IOException |
long | readUInt64 () throws IOException |
long | readInt64 () throws IOException |
int | readInt32 () throws IOException |
long | readFixed64 () throws IOException |
int | readFixed32 () throws IOException |
boolean | readBool () throws IOException |
String | readString () throws IOException |
String | readStringRequireUtf8 () throws IOException |
void | readGroup (final int fieldNumber, final MessageLite.Builder builder, final ExtensionRegistryLite extensionRegistry) throws IOException |
void | readUnknownGroup (final int fieldNumber, final MessageLite.Builder builder) throws IOException |
void | readMessage (final MessageLite.Builder builder, final ExtensionRegistryLite extensionRegistry) throws IOException |
ByteString | readBytes () throws IOException |
byte [] | readByteArray () throws IOException |
ByteBuffer | readByteBuffer () throws IOException |
int | readUInt32 () throws IOException |
int | readEnum () throws IOException |
int | readSFixed32 () throws IOException |
long | readSFixed64 () throws IOException |
int | readSInt32 () throws IOException |
long | readSInt64 () throws IOException |
int | readRawVarint32 () throws IOException |
long | readRawVarint64 () throws IOException |
int | readRawLittleEndian32 () throws IOException |
long | readRawLittleEndian64 () throws IOException |
void | enableAliasing (boolean enabled) |
int | setRecursionLimit (final int limit) |
int | setSizeLimit (final int limit) |
void | resetSizeCounter () |
int | pushLimit (int byteLimit) throws InvalidProtocolBufferException |
void | popLimit (final int oldLimit) |
int | getBytesUntilLimit () |
boolean | isAtEnd () throws IOException |
int | getTotalBytesRead () |
byte | readRawByte () throws IOException |
byte [] | readRawBytes (final int size) throws IOException |
void | skipRawBytes (final int size) throws IOException |
Static Public Member Functions | |
static CodedInputStream | newInstance (final InputStream input) |
static CodedInputStream | newInstance (final byte[] buf) |
static CodedInputStream | newInstance (final byte[] buf, final int off, final int len) |
static CodedInputStream | newInstance (ByteBuffer buf) |
static int | readRawVarint32 (final int firstByte, final InputStream input) throws IOException |
static int | decodeZigZag32 (final int n) |
static long | decodeZigZag64 (final long n) |
Reads and decodes protocol message fields.
This class contains two kinds of methods: methods that read specific protocol message constructs and field types (e.g. readTag() and readInt32()) and methods that read low-level values (e.g. readRawVarint32() and readRawBytes). If you are reading encoded protocol messages, you should use the former methods, but if you are reading some other format of your own design, use the latter.
|
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.
InvalidProtocolBufferException |
|
inlinestatic |
Decode a ZigZag-encoded 32-bit value. ZigZag encodes signed integers into values that can be efficiently encoded with varint. (Otherwise, negative values must be sign-extended to 64 bits to be varint encoded, thus always taking 10 bytes on the wire.)
n | An unsigned 32-bit integer, stored in a signed int because Java has no explicit unsigned support. |
|
inlinestatic |
Decode a ZigZag-encoded 64-bit value. ZigZag encodes signed integers into values that can be efficiently encoded with varint. (Otherwise, negative values must be sign-extended to 64 bits to be varint encoded, thus always taking 10 bytes on the wire.)
n | An unsigned 64-bit integer, stored in a signed int because Java has no explicit unsigned support. |
|
inline |
Returns the number of bytes to be read before the current limit. If no limit is set, returns -1.
|
inline |
|
inline |
The total bytes read up to the current position. Calling resetSizeCounter() resets this value to zero.
|
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).
|
inlinestatic |
Create a new CodedInputStream wrapping the given InputStream.
|
inlinestatic |
Create a new CodedInputStream wrapping the given byte array.
|
inlinestatic |
Create a new CodedInputStream wrapping the given byte array slice.
|
inlinestatic |
Create a new CodedInputStream wrapping the given ByteBuffer. The data starting from the ByteBuffer's current position to its limit will be read. The returned CodedInputStream may or may not share the underlying data in the ByteBuffer, therefore the ByteBuffer cannot be changed while the CodedInputStream is in use. Note that the ByteBuffer's position won't be changed by this function. Concurrent calls with the same ByteBuffer object are safe if no other thread is trying to alter the ByteBuffer's status.
|
inline |
Sets
to (current position) +
. This is called when descending into a length-delimited embedded message.
Note that
does NOT affect how many bytes the
reads from an underlying
when refreshing its buffer. If you need to prevent reading past a certain point in the underlying
(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
which limits the amount of data that can be read from it.
|
inline |
Read a
field value from the stream.
|
inline |
|
inline |
|
inline |
|
inline |
Read a
field value from the stream.
|
inline |
Read an enum field value from the stream. Caller is responsible for converting the numeric value to an actual enum.
|
inline |
Read a
field value from the stream.
|
inline |
Read a
field value from the stream.
|
inline |
Read a
field value from the stream.
|
inline |
|
inline |
|
inline |
|
inline |
Read an embedded message field value from the stream.
|
inline |
Read one byte from the input.
InvalidProtocolBufferException | The end of the stream or the current limit was reached. |
|
inline |
Read a fixed size of bytes from the input.
InvalidProtocolBufferException | The end of the stream or the current limit was reached. |
|
inline |
Read a 32-bit little-endian integer from the stream.
|
inline |
Read a 64-bit little-endian integer from the stream.
|
inline |
Read a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
|
inlinestatic |
Like readRawVarint32(InputStream), but expects that the caller has already read one byte. This allows the caller to determine if EOF has been reached before attempting to read.
|
inline |
Read a raw Varint from the stream.
|
inline |
Read an
field value from the stream.
|
inline |
Read an
field value from the stream.
|
inline |
Read an
field value from the stream.
|
inline |
Read an
field value from the stream.
|
inline |
Read a
field value from the stream. If the stream contains malformed UTF-8, replace the offending bytes with the standard UTF-8 replacement character.
|
inline |
Read a
field value from the stream. If the stream contains malformed UTF-8, throw exception InvalidProtocolBufferException.
|
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.
|
inline |
|
inline |
|
inline |
Reads a
field value from the stream and merges it into the given UnknownFieldSet.
|
inline |
Resets the current size counter to zero (see setSizeLimit(int)).
|
inline |
Set the maximum message recursion depth. In order to prevent malicious messages from causing stack overflows,
limits how deeply messages may be nested. The default limit is 64.
|
inline |
Set the maximum message size. In order to prevent malicious messages from exhausting memory or causing integer overflows,
limits how large a message may be. The default limit is 64MB. You should set this limit as small as you can without harming your app's functionality. Note that size limits only apply when reading from an
, not when constructed around a raw byte array (nor with ByteString#newCodedInput).
If you want to read several messages from a single CodedInputStream, you could call resetSizeCounter() after each one to avoid hitting the size limit.
Reads and discards a single field, given its tag value.
|
inline |
Reads a single field and writes it to output in wire format, given its tag value.
|
inline |
Reads and discards an entire message. This will read either until EOF or until an endgroup tag, whichever comes first.
|
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.
Reads and discards
bytes.
InvalidProtocolBufferException | The end of the stream or the current limit was reached. |