Parent class of all proto messages. Users should not instantiate this class or extend this class or its child classes by their own. See the comment of specific functions for more details.
- Children
- Attributes
AllowDynamicProperties
Methods |
public __construct( $data = NULL)
|
public __debugInfo() |
public byteSize()
|
public clear() Clear all containing fields.
|
public discardUnknownFields() Clear all unknown fields previously parsed.
|
public jsonByteSize( $options = 0)
|
public mergeFrom( $msg) Merges the contents of the specified message into current message. This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Map fields key-value pairs are overwritten. Singular/Oneof sub-messages are recursively merged. All overwritten sub-messages are deep-copied.
|
public mergeFromJsonString( $data, $ignore_unknown = false) Parses a json string to protobuf message. This function takes a string in the json wire format, matching the encoding output by serializeToJsonString(). See mergeFrom() for merging behavior, if the field is already set in the specified message.
|
public mergeFromString( $data) Parses a protocol buffer contained in a string. This function takes a string in the (non-human-readable) binary wire format, matching the encoding output by serializeToString(). See mergeFrom() for merging behavior, if the field is already set in the specified message.
|
public parseFromJsonStream( $input, $ignore_unknown)
|
public parseFromStream( $input)
|
public serializeToJsonStream( $output)
|
public serializeToJsonString( $options = 0) Serialize the message to json string.
|
public serializeToStream( $output)
|
public serializeToString() Serialize the message to string.
|
Methods |
protected hasOneof( $number) |
protected mergeFromArray(array $array) Populates the message from a user-supplied PHP array. Array keys correspond to Message properties and nested message properties. Example:
This method will trigger an error if it is passed data that cannot be converted to the correct type. For example, a StringValue field must receive data that is either a string or a StringValue object.
|
protected mergeFromJsonArray( $array, $ignore_unknown) |
protected readOneof( $number) |
protected readWrapperValue( $member) |
protected whichOneof( $oneof_name) |
protected writeOneof( $number, $value) |
protected writeWrapperValue( $member, $value) |
Properties |
private $desc = NULL
|
private $unknown = '' |
Methods |
private appendHelper( $field, $append_value) |
private convertJsonValueToProtoValue( $value, $field, $ignore_unknown, $is_map_key = false) |
private defaultValue( $field)
|
private existField( $field)
|
private fieldByteSize( $field)
|
private fieldDataOnlyByteSize( $field, $value)
|
private fieldDataOnlyJsonByteSize( $field, $value, $options = 0)
|
private fieldJsonByteSize( $field, $options = 0)
|
private initWithDescriptor(Google
|
private initWithGeneratedPool()
|
private kvUpdateHelper( $field, $update_key, $update_value) |
private mergeFromArrayJsonImpl( $array, $ignore_unknown) |
private static normalizeArrayElementsToMessageType( $value, $class) Tries to normalize the elements in $value into a provided protobuf wrapper type $class. If $value is any type other than array, we do not do any conversion, and instead rely on the existing protobuf type checking. If $value is an array, we process each element and try to convert it to an instance of $class.
|
private static normalizeToMessageType( $value, $class) Tries to normalize $value into a provided protobuf wrapper type $class. If $value is any type other than an object, we attempt to construct an instance of $class and assign $value to it using the setValue method shared by all wrapper types. This method will raise an error if it receives a type that cannot be assigned to the wrapper type via setValue.
|
private parseFieldFromStream( $tag, $input, $field)
|
private static parseFieldFromStreamNoTag( $input, $field, $value)
|
private repeatedFieldDataOnlyByteSize( $field)
|
private serializeFieldToJsonStream( $output, $field)
|
private serializeFieldToStream( $output, $field)
|
private serializeMapFieldToStream( $field, $output)
|
private serializeRepeatedFieldToStream( $field, $output)
|
private serializeSingularFieldToStream( $field, $output)
|
private skipField( $input, $tag)
|
Methods |
private static normalizeArrayElementsToMessageType( $value, $class) Tries to normalize the elements in $value into a provided protobuf wrapper type $class. If $value is any type other than array, we do not do any conversion, and instead rely on the existing protobuf type checking. If $value is an array, we process each element and try to convert it to an instance of $class.
|
private static normalizeToMessageType( $value, $class) Tries to normalize $value into a provided protobuf wrapper type $class. If $value is any type other than an object, we attempt to construct an instance of $class and assign $value to it using the setValue method shared by all wrapper types. This method will raise an error if it receives a type that cannot be assigned to the wrapper type via setValue.
|
private static parseFieldFromStreamNoTag( $input, $field, $value)
|