Commit 2774e544 authored by Brent Shaffer's avatar Brent Shaffer Committed by Bo Yang

PHP namespaces for nested messages and enums (#4536)

* uses namespaces for nested messages and enums

* fixes namespaces for PHP dist

* fixes namespace for Descriptors, adds Cardinality and Kind

* fixes nested namespaces for reserved words and adds tests

* adds tests and generator fix for php class prefixes

* fixes escaping of protobuf packages, enum comments, misc others

* nice refactor of generated code

* adds class files for backwards compatibility

* simplifies code with templates

* adds compatibility files to makefile

* cleanup of generator and fixes nested namespace bug

* regenerates proto types

* remove internal BC classes

* adds deprecated warning, adds methods back

* simplifies if statement

* fixes dist files

* addresses review comments

* adds back TYPE_URL_PREFIX constant

* adds @deprecated to old nested class files

* skips tests which require a separate process when protobuf.so is enabled

* Adds tests for legacy nested classes that do not require separate processes to test

* uses legacy names for GPBUtil message check

* adds block for IDE @deprecated message

* Namespace for nested message/enum in c extension

* Remove unused code
parent 8b336f8c
...@@ -619,7 +619,9 @@ php_EXTRA_DIST= \ ...@@ -619,7 +619,9 @@ php_EXTRA_DIST= \
php/src/Google/Protobuf/Field.php \ php/src/Google/Protobuf/Field.php \
php/src/Google/Protobuf/FieldDescriptor.php \ php/src/Google/Protobuf/FieldDescriptor.php \
php/src/Google/Protobuf/FieldMask.php \ php/src/Google/Protobuf/FieldMask.php \
php/src/Google/Protobuf/Field/Cardinality.php \
php/src/Google/Protobuf/Field_Cardinality.php \ php/src/Google/Protobuf/Field_Cardinality.php \
php/src/Google/Protobuf/Field/Kind.php \
php/src/Google/Protobuf/Field_Kind.php \ php/src/Google/Protobuf/Field_Kind.php \
php/src/Google/Protobuf/FloatValue.php \ php/src/Google/Protobuf/FloatValue.php \
php/src/Google/Protobuf/GPBEmpty.php \ php/src/Google/Protobuf/GPBEmpty.php \
...@@ -630,30 +632,29 @@ php_EXTRA_DIST= \ ...@@ -630,30 +632,29 @@ php_EXTRA_DIST= \
php/src/Google/Protobuf/Internal/Descriptor.php \ php/src/Google/Protobuf/Internal/Descriptor.php \
php/src/Google/Protobuf/Internal/DescriptorPool.php \ php/src/Google/Protobuf/Internal/DescriptorPool.php \
php/src/Google/Protobuf/Internal/DescriptorProto.php \ php/src/Google/Protobuf/Internal/DescriptorProto.php \
php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \ php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \ php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \
php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ php/src/Google/Protobuf/Internal/EnumBuilderContext.php \
php/src/Google/Protobuf/Internal/EnumDescriptor.php \ php/src/Google/Protobuf/Internal/EnumDescriptor.php \
php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \ php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \
php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \ php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
php/src/Google/Protobuf/Internal/EnumOptions.php \ php/src/Google/Protobuf/Internal/EnumOptions.php \
php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \ php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \
php/src/Google/Protobuf/Internal/EnumValueOptions.php \ php/src/Google/Protobuf/Internal/EnumValueOptions.php \
php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \ php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \
php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \
php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
php/src/Google/Protobuf/Internal/FieldDescriptor.php \ php/src/Google/Protobuf/Internal/FieldDescriptor.php \
php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \ php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \
php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \ php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \
php/src/Google/Protobuf/Internal/FieldOptions.php \ php/src/Google/Protobuf/Internal/FieldOptions.php \
php/src/Google/Protobuf/Internal/FieldOptions_CType.php \ php/src/Google/Protobuf/Internal/FieldOptions/CType.php \
php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \ php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \
php/src/Google/Protobuf/Internal/FileDescriptor.php \ php/src/Google/Protobuf/Internal/FileDescriptor.php \
php/src/Google/Protobuf/Internal/FileDescriptorProto.php \ php/src/Google/Protobuf/Internal/FileDescriptorProto.php \
php/src/Google/Protobuf/Internal/FileDescriptorSet.php \ php/src/Google/Protobuf/Internal/FileDescriptorSet.php \
php/src/Google/Protobuf/Internal/FileOptions.php \ php/src/Google/Protobuf/Internal/FileOptions.php \
php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \ php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \
php/src/Google/Protobuf/Internal/GPBDecodeException.php \ php/src/Google/Protobuf/Internal/GPBDecodeException.php \
php/src/Google/Protobuf/Internal/GPBJsonWire.php \ php/src/Google/Protobuf/Internal/GPBJsonWire.php \
php/src/Google/Protobuf/Internal/GPBLabel.php \ php/src/Google/Protobuf/Internal/GPBLabel.php \
...@@ -662,7 +663,7 @@ php_EXTRA_DIST= \ ...@@ -662,7 +663,7 @@ php_EXTRA_DIST= \
php/src/Google/Protobuf/Internal/GPBWire.php \ php/src/Google/Protobuf/Internal/GPBWire.php \
php/src/Google/Protobuf/Internal/GPBWireType.php \ php/src/Google/Protobuf/Internal/GPBWireType.php \
php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \ php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \
php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \ php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \
php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \ php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \
php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \ php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \
php/src/Google/Protobuf/Internal/MapEntry.php \ php/src/Google/Protobuf/Internal/MapEntry.php \
...@@ -673,7 +674,7 @@ php_EXTRA_DIST= \ ...@@ -673,7 +674,7 @@ php_EXTRA_DIST= \
php/src/Google/Protobuf/Internal/MessageOptions.php \ php/src/Google/Protobuf/Internal/MessageOptions.php \
php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \ php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \
php/src/Google/Protobuf/Internal/MethodOptions.php \ php/src/Google/Protobuf/Internal/MethodOptions.php \
php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \ php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
php/src/Google/Protobuf/Internal/OneofDescriptor.php \ php/src/Google/Protobuf/Internal/OneofDescriptor.php \
php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \ php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \
php/src/Google/Protobuf/Internal/OneofField.php \ php/src/Google/Protobuf/Internal/OneofField.php \
...@@ -684,9 +685,9 @@ php_EXTRA_DIST= \ ...@@ -684,9 +685,9 @@ php_EXTRA_DIST= \
php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \ php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \
php/src/Google/Protobuf/Internal/ServiceOptions.php \ php/src/Google/Protobuf/Internal/ServiceOptions.php \
php/src/Google/Protobuf/Internal/SourceCodeInfo.php \ php/src/Google/Protobuf/Internal/SourceCodeInfo.php \
php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \ php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \
php/src/Google/Protobuf/Internal/UninterpretedOption.php \ php/src/Google/Protobuf/Internal/UninterpretedOption.php \
php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \ php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \
php/src/Google/Protobuf/ListValue.php \ php/src/Google/Protobuf/ListValue.php \
php/src/Google/Protobuf/Method.php \ php/src/Google/Protobuf/Method.php \
php/src/Google/Protobuf/Mixin.php \ php/src/Google/Protobuf/Mixin.php \
...@@ -716,6 +717,7 @@ php_EXTRA_DIST= \ ...@@ -716,6 +717,7 @@ php_EXTRA_DIST= \
php/tests/map_field_test.php \ php/tests/map_field_test.php \
php/tests/memory_leak_test.php \ php/tests/memory_leak_test.php \
php/tests/php_implementation_test.php \ php/tests/php_implementation_test.php \
php/tests/proto/empty/echo.proto \
php/tests/proto/test.proto \ php/tests/proto/test.proto \
php/tests/proto/test_descriptors.proto \ php/tests/proto/test_descriptors.proto \
php/tests/proto/test_empty_php_namespace.proto \ php/tests/proto/test_empty_php_namespace.proto \
......
This diff is collapsed.
...@@ -858,7 +858,7 @@ static zend_function_entry field_cardinality_methods[] = { ...@@ -858,7 +858,7 @@ static zend_function_entry field_cardinality_methods[] = {
zend_class_entry* field_cardinality_type; zend_class_entry* field_cardinality_type;
// Init class entry. // Init class entry.
PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Cardinality", PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field\\Cardinality",
Field_Cardinality, field_cardinality) Field_Cardinality, field_cardinality)
zend_declare_class_constant_long(field_cardinality_type, zend_declare_class_constant_long(field_cardinality_type,
"CARDINALITY_UNKNOWN", 19, 0 TSRMLS_CC); "CARDINALITY_UNKNOWN", 19, 0 TSRMLS_CC);
...@@ -868,6 +868,8 @@ PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Cardinality", ...@@ -868,6 +868,8 @@ PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Cardinality",
"CARDINALITY_REQUIRED", 20, 2 TSRMLS_CC); "CARDINALITY_REQUIRED", 20, 2 TSRMLS_CC);
zend_declare_class_constant_long(field_cardinality_type, zend_declare_class_constant_long(field_cardinality_type,
"CARDINALITY_REPEATED", 20, 3 TSRMLS_CC); "CARDINALITY_REPEATED", 20, 3 TSRMLS_CC);
const char *alias = "Google\\Protobuf\\Field_Cardinality";
zend_register_class_alias_ex(alias, strlen(alias), field_cardinality_type TSRMLS_CC);
PHP_PROTO_INIT_ENUMCLASS_END PHP_PROTO_INIT_ENUMCLASS_END
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
...@@ -881,7 +883,7 @@ static zend_function_entry field_kind_methods[] = { ...@@ -881,7 +883,7 @@ static zend_function_entry field_kind_methods[] = {
zend_class_entry* field_kind_type; zend_class_entry* field_kind_type;
// Init class entry. // Init class entry.
PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Kind", PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field\\Kind",
Field_Kind, field_kind) Field_Kind, field_kind)
zend_declare_class_constant_long(field_kind_type, zend_declare_class_constant_long(field_kind_type,
"TYPE_UNKNOWN", 12, 0 TSRMLS_CC); "TYPE_UNKNOWN", 12, 0 TSRMLS_CC);
...@@ -921,6 +923,8 @@ PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Kind", ...@@ -921,6 +923,8 @@ PHP_PROTO_INIT_ENUMCLASS_START("Google\\Protobuf\\Field_Kind",
"TYPE_SINT32", 11, 17 TSRMLS_CC); "TYPE_SINT32", 11, 17 TSRMLS_CC);
zend_declare_class_constant_long(field_kind_type, zend_declare_class_constant_long(field_kind_type,
"TYPE_SINT64", 11, 18 TSRMLS_CC); "TYPE_SINT64", 11, 18 TSRMLS_CC);
const char *alias = "Google\\Protobuf\\Field_Kind";
zend_register_class_alias_ex(alias, strlen(alias), field_kind_type TSRMLS_CC);
PHP_PROTO_INIT_ENUMCLASS_END PHP_PROTO_INIT_ENUMCLASS_END
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
......
...@@ -46,13 +46,13 @@ class Descriptor ...@@ -46,13 +46,13 @@ class Descriptor
->repeated('reserved_name', \Google\Protobuf\Internal\GPBType::STRING, 10) ->repeated('reserved_name', \Google\Protobuf\Internal\GPBType::STRING, 10)
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.DescriptorProto.ExtensionRange', \Google\Protobuf\Internal\DescriptorProto_ExtensionRange::class) $pool->addMessage('google.protobuf.internal.DescriptorProto.ExtensionRange', \Google\Protobuf\Internal\DescriptorProto\ExtensionRange::class)
->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1) ->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1)
->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2) ->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2)
->optional('options', \Google\Protobuf\Internal\GPBType::MESSAGE, 3, 'google.protobuf.internal.ExtensionRangeOptions') ->optional('options', \Google\Protobuf\Internal\GPBType::MESSAGE, 3, 'google.protobuf.internal.ExtensionRangeOptions')
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.DescriptorProto.ReservedRange', \Google\Protobuf\Internal\DescriptorProto_ReservedRange::class) $pool->addMessage('google.protobuf.internal.DescriptorProto.ReservedRange', \Google\Protobuf\Internal\DescriptorProto\ReservedRange::class)
->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1) ->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1)
->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2) ->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2)
->finalizeToPool(); ->finalizeToPool();
...@@ -114,7 +114,7 @@ class Descriptor ...@@ -114,7 +114,7 @@ class Descriptor
->repeated('reserved_name', \Google\Protobuf\Internal\GPBType::STRING, 5) ->repeated('reserved_name', \Google\Protobuf\Internal\GPBType::STRING, 5)
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.EnumDescriptorProto.EnumReservedRange', \Google\Protobuf\Internal\EnumDescriptorProto_EnumReservedRange::class) $pool->addMessage('google.protobuf.internal.EnumDescriptorProto.EnumReservedRange', \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange::class)
->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1) ->optional('start', \Google\Protobuf\Internal\GPBType::INT32, 1)
->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2) ->optional('end', \Google\Protobuf\Internal\GPBType::INT32, 2)
->finalizeToPool(); ->finalizeToPool();
...@@ -242,7 +242,7 @@ class Descriptor ...@@ -242,7 +242,7 @@ class Descriptor
->optional('aggregate_value', \Google\Protobuf\Internal\GPBType::STRING, 8) ->optional('aggregate_value', \Google\Protobuf\Internal\GPBType::STRING, 8)
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.UninterpretedOption.NamePart', \Google\Protobuf\Internal\UninterpretedOption_NamePart::class) $pool->addMessage('google.protobuf.internal.UninterpretedOption.NamePart', \Google\Protobuf\Internal\UninterpretedOption\NamePart::class)
->required('name_part', \Google\Protobuf\Internal\GPBType::STRING, 1) ->required('name_part', \Google\Protobuf\Internal\GPBType::STRING, 1)
->required('is_extension', \Google\Protobuf\Internal\GPBType::BOOL, 2) ->required('is_extension', \Google\Protobuf\Internal\GPBType::BOOL, 2)
->finalizeToPool(); ->finalizeToPool();
...@@ -251,7 +251,7 @@ class Descriptor ...@@ -251,7 +251,7 @@ class Descriptor
->repeated('location', \Google\Protobuf\Internal\GPBType::MESSAGE, 1, 'google.protobuf.internal.SourceCodeInfo.Location') ->repeated('location', \Google\Protobuf\Internal\GPBType::MESSAGE, 1, 'google.protobuf.internal.SourceCodeInfo.Location')
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.SourceCodeInfo.Location', \Google\Protobuf\Internal\SourceCodeInfo_Location::class) $pool->addMessage('google.protobuf.internal.SourceCodeInfo.Location', \Google\Protobuf\Internal\SourceCodeInfo\Location::class)
->repeated('path', \Google\Protobuf\Internal\GPBType::INT32, 1) ->repeated('path', \Google\Protobuf\Internal\GPBType::INT32, 1)
->repeated('span', \Google\Protobuf\Internal\GPBType::INT32, 2) ->repeated('span', \Google\Protobuf\Internal\GPBType::INT32, 2)
->optional('leading_comments', \Google\Protobuf\Internal\GPBType::STRING, 3) ->optional('leading_comments', \Google\Protobuf\Internal\GPBType::STRING, 3)
...@@ -263,7 +263,7 @@ class Descriptor ...@@ -263,7 +263,7 @@ class Descriptor
->repeated('annotation', \Google\Protobuf\Internal\GPBType::MESSAGE, 1, 'google.protobuf.internal.GeneratedCodeInfo.Annotation') ->repeated('annotation', \Google\Protobuf\Internal\GPBType::MESSAGE, 1, 'google.protobuf.internal.GeneratedCodeInfo.Annotation')
->finalizeToPool(); ->finalizeToPool();
$pool->addMessage('google.protobuf.internal.GeneratedCodeInfo.Annotation', \Google\Protobuf\Internal\GeneratedCodeInfo_Annotation::class) $pool->addMessage('google.protobuf.internal.GeneratedCodeInfo.Annotation', \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation::class)
->repeated('path', \Google\Protobuf\Internal\GPBType::INT32, 1) ->repeated('path', \Google\Protobuf\Internal\GPBType::INT32, 1)
->optional('source_file', \Google\Protobuf\Internal\GPBType::STRING, 2) ->optional('source_file', \Google\Protobuf\Internal\GPBType::STRING, 2)
->optional('begin', \Google\Protobuf\Internal\GPBType::INT32, 3) ->optional('begin', \Google\Protobuf\Internal\GPBType::INT32, 3)
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
namespace Google\Protobuf; namespace Google\Protobuf;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\Internal\Message; use Google\Protobuf\Internal\Message;
use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/** /**
* `Any` contains an arbitrary serialized protocol buffer message along with a * `Any` contains an arbitrary serialized protocol buffer message along with a
...@@ -37,6 +37,14 @@ use Google\Protobuf\Internal\RepeatedField; ...@@ -37,6 +37,14 @@ use Google\Protobuf\Internal\RepeatedField;
* if any.Is(Foo.DESCRIPTOR): * if any.Is(Foo.DESCRIPTOR):
* any.Unpack(foo) * any.Unpack(foo)
* ... * ...
* Example 4: Pack and unpack a message in Go
* foo := &pb.Foo{...}
* any, err := ptypes.MarshalAny(foo)
* ...
* foo := &pb.Foo{}
* if err := ptypes.UnmarshalAny(any, foo); err != nil {
* ...
* }
* The pack methods provided by protobuf library will by default use * The pack methods provided by protobuf library will by default use
* 'type.googleapis.com/full.type.name' as the type URL and the unpack * 'type.googleapis.com/full.type.name' as the type URL and the unpack
* methods only use the fully qualified type name after the last '/' * methods only use the fully qualified type name after the last '/'
...@@ -71,15 +79,16 @@ use Google\Protobuf\Internal\RepeatedField; ...@@ -71,15 +79,16 @@ use Google\Protobuf\Internal\RepeatedField;
class Any extends \Google\Protobuf\Internal\Message class Any extends \Google\Protobuf\Internal\Message
{ {
/** /**
* A URL/resource name whose content describes the type of the * A URL/resource name that uniquely identifies the type of the serialized
* serialized protocol buffer message. * protocol buffer message. The last segment of the URL's path must represent
* For URLs which use the scheme `http`, `https`, or no scheme, the * the fully qualified name of the type (as in
* following restrictions and interpretations apply: * `path/google.protobuf.Duration`). The name should be in a canonical form
* (e.g., leading "." is not accepted).
* In practice, teams usually precompile into the binary all types that they
* expect it to use in the context of Any. However, for URLs which use the
* scheme `http`, `https`, or no scheme, one can optionally set up a type
* server that maps type URLs to message definitions as follows:
* * If no scheme is provided, `https` is assumed. * * If no scheme is provided, `https` is assumed.
* * The last segment of the URL's path must represent the fully
* qualified name of the type (as in `path/google.protobuf.Duration`).
* The name should be in a canonical form (e.g., leading "." is
* not accepted).
* * An HTTP GET on the URL must yield a [google.protobuf.Type][] * * An HTTP GET on the URL must yield a [google.protobuf.Type][]
* value in binary format, or produce an error. * value in binary format, or produce an error.
* * Applications are allowed to cache lookup results based on the * * Applications are allowed to cache lookup results based on the
...@@ -87,6 +96,9 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -87,6 +96,9 @@ class Any extends \Google\Protobuf\Internal\Message
* lookup. Therefore, binary compatibility needs to be preserved * lookup. Therefore, binary compatibility needs to be preserved
* on changes to types. (Use versioned type names to manage * on changes to types. (Use versioned type names to manage
* breaking changes.) * breaking changes.)
* Note: this functionality is not currently available in the official
* protobuf release, and it is not used for type URLs beginning with
* type.googleapis.com.
* Schemes other than `http`, `https` (or the empty scheme) might be * Schemes other than `http`, `https` (or the empty scheme) might be
* used with implementation specific semantics. * used with implementation specific semantics.
* *
...@@ -102,21 +114,55 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -102,21 +114,55 @@ class Any extends \Google\Protobuf\Internal\Message
const TYPE_URL_PREFIX = 'type.googleapis.com/'; const TYPE_URL_PREFIX = 'type.googleapis.com/';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $type_url
* A URL/resource name that uniquely identifies the type of the serialized
* protocol buffer message. The last segment of the URL's path must represent
* the fully qualified name of the type (as in
* `path/google.protobuf.Duration`). The name should be in a canonical form
* (e.g., leading "." is not accepted).
* In practice, teams usually precompile into the binary all types that they
* expect it to use in the context of Any. However, for URLs which use the
* scheme `http`, `https`, or no scheme, one can optionally set up a type
* server that maps type URLs to message definitions as follows:
* * If no scheme is provided, `https` is assumed.
* * An HTTP GET on the URL must yield a [google.protobuf.Type][]
* value in binary format, or produce an error.
* * Applications are allowed to cache lookup results based on the
* URL, or have them precompiled into a binary to avoid any
* lookup. Therefore, binary compatibility needs to be preserved
* on changes to types. (Use versioned type names to manage
* breaking changes.)
* Note: this functionality is not currently available in the official
* protobuf release, and it is not used for type URLs beginning with
* type.googleapis.com.
* Schemes other than `http`, `https` (or the empty scheme) might be
* used with implementation specific semantics.
* @type string $value
* Must be a valid serialized protocol buffer of the above specified type.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Any::initOnce(); \GPBMetadata\Google\Protobuf\Any::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
* A URL/resource name whose content describes the type of the * A URL/resource name that uniquely identifies the type of the serialized
* serialized protocol buffer message. * protocol buffer message. The last segment of the URL's path must represent
* For URLs which use the scheme `http`, `https`, or no scheme, the * the fully qualified name of the type (as in
* following restrictions and interpretations apply: * `path/google.protobuf.Duration`). The name should be in a canonical form
* (e.g., leading "." is not accepted).
* In practice, teams usually precompile into the binary all types that they
* expect it to use in the context of Any. However, for URLs which use the
* scheme `http`, `https`, or no scheme, one can optionally set up a type
* server that maps type URLs to message definitions as follows:
* * If no scheme is provided, `https` is assumed. * * If no scheme is provided, `https` is assumed.
* * The last segment of the URL's path must represent the fully
* qualified name of the type (as in `path/google.protobuf.Duration`).
* The name should be in a canonical form (e.g., leading "." is
* not accepted).
* * An HTTP GET on the URL must yield a [google.protobuf.Type][] * * An HTTP GET on the URL must yield a [google.protobuf.Type][]
* value in binary format, or produce an error. * value in binary format, or produce an error.
* * Applications are allowed to cache lookup results based on the * * Applications are allowed to cache lookup results based on the
...@@ -124,6 +170,9 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -124,6 +170,9 @@ class Any extends \Google\Protobuf\Internal\Message
* lookup. Therefore, binary compatibility needs to be preserved * lookup. Therefore, binary compatibility needs to be preserved
* on changes to types. (Use versioned type names to manage * on changes to types. (Use versioned type names to manage
* breaking changes.) * breaking changes.)
* Note: this functionality is not currently available in the official
* protobuf release, and it is not used for type URLs beginning with
* type.googleapis.com.
* Schemes other than `http`, `https` (or the empty scheme) might be * Schemes other than `http`, `https` (or the empty scheme) might be
* used with implementation specific semantics. * used with implementation specific semantics.
* *
...@@ -136,15 +185,16 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -136,15 +185,16 @@ class Any extends \Google\Protobuf\Internal\Message
} }
/** /**
* A URL/resource name whose content describes the type of the * A URL/resource name that uniquely identifies the type of the serialized
* serialized protocol buffer message. * protocol buffer message. The last segment of the URL's path must represent
* For URLs which use the scheme `http`, `https`, or no scheme, the * the fully qualified name of the type (as in
* following restrictions and interpretations apply: * `path/google.protobuf.Duration`). The name should be in a canonical form
* (e.g., leading "." is not accepted).
* In practice, teams usually precompile into the binary all types that they
* expect it to use in the context of Any. However, for URLs which use the
* scheme `http`, `https`, or no scheme, one can optionally set up a type
* server that maps type URLs to message definitions as follows:
* * If no scheme is provided, `https` is assumed. * * If no scheme is provided, `https` is assumed.
* * The last segment of the URL's path must represent the fully
* qualified name of the type (as in `path/google.protobuf.Duration`).
* The name should be in a canonical form (e.g., leading "." is
* not accepted).
* * An HTTP GET on the URL must yield a [google.protobuf.Type][] * * An HTTP GET on the URL must yield a [google.protobuf.Type][]
* value in binary format, or produce an error. * value in binary format, or produce an error.
* * Applications are allowed to cache lookup results based on the * * Applications are allowed to cache lookup results based on the
...@@ -152,6 +202,9 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -152,6 +202,9 @@ class Any extends \Google\Protobuf\Internal\Message
* lookup. Therefore, binary compatibility needs to be preserved * lookup. Therefore, binary compatibility needs to be preserved
* on changes to types. (Use versioned type names to manage * on changes to types. (Use versioned type names to manage
* breaking changes.) * breaking changes.)
* Note: this functionality is not currently available in the official
* protobuf release, and it is not used for type URLs beginning with
* type.googleapis.com.
* Schemes other than `http`, `https` (or the empty scheme) might be * Schemes other than `http`, `https` (or the empty scheme) might be
* used with implementation specific semantics. * used with implementation specific semantics.
* *
...@@ -269,3 +322,4 @@ class Any extends \Google\Protobuf\Internal\Message ...@@ -269,3 +322,4 @@ class Any extends \Google\Protobuf\Internal\Message
return $this->type_url === $type_url; return $this->type_url === $type_url;
} }
} }
...@@ -83,9 +83,49 @@ class Api extends \Google\Protobuf\Internal\Message ...@@ -83,9 +83,49 @@ class Api extends \Google\Protobuf\Internal\Message
*/ */
private $syntax = 0; private $syntax = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* The fully qualified name of this interface, including package name
* followed by the interface's simple name.
* @type \Google\Protobuf\Method[]|\Google\Protobuf\Internal\RepeatedField $methods
* The methods of this interface, in unspecified order.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* Any metadata attached to the interface.
* @type string $version
* A version string for this interface. If specified, must have the form
* `major-version.minor-version`, as in `1.10`. If the minor version is
* omitted, it defaults to zero. If the entire version field is empty, the
* major version is derived from the package name, as outlined below. If the
* field is not empty, the version in the package name will be verified to be
* consistent with what is provided here.
* The versioning schema uses [semantic
* versioning](http://semver.org) where the major version number
* indicates a breaking change and the minor version an additive,
* non-breaking change. Both version numbers are signals to users
* what to expect from different versions, and should be carefully
* chosen based on the product plan.
* The major version is also reflected in the package name of the
* interface, which must end in `v<major-version>`, as in
* `google.feature.v1`. For major versions 0 and 1, the suffix can
* be omitted. Zero major versions must only be used for
* experimental, non-GA interfaces.
* @type \Google\Protobuf\SourceContext $source_context
* Source context for the protocol buffer service represented by this
* message.
* @type \Google\Protobuf\Mixin[]|\Google\Protobuf\Internal\RepeatedField $mixins
* Included interfaces. See [Mixin][].
* @type int $syntax
* The source syntax of the service.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Api::initOnce(); \GPBMetadata\Google\Protobuf\Api::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class BoolValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class BoolValue extends \Google\Protobuf\Internal\Message
*/ */
private $value = false; private $value = false;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $value
* The bool value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class BytesValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class BytesValue extends \Google\Protobuf\Internal\Message
*/ */
private $value = ''; private $value = '';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $value
* The bytes value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class DoubleValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class DoubleValue extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0.0; private $value = 0.0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type float $value
* The double value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -79,9 +79,28 @@ class Duration extends \Google\Protobuf\Internal\Message ...@@ -79,9 +79,28 @@ class Duration extends \Google\Protobuf\Internal\Message
*/ */
private $nanos = 0; private $nanos = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $seconds
* Signed seconds of the span of time. Must be from -315,576,000,000
* to +315,576,000,000 inclusive. Note: these bounds are computed from:
* 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
* @type int $nanos
* Signed fractions of a second at nanosecond resolution of the span
* of time. Durations less than one second are represented with a 0
* `seconds` field and a positive or negative `nanos` field. For durations
* of one second or more, a non-zero value for the `nanos` field must be
* of the same sign as the `seconds` field. Must be from -999,999,999
* to +999,999,999 inclusive.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Duration::initOnce(); \GPBMetadata\Google\Protobuf\Duration::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
...@@ -149,5 +168,6 @@ class Duration extends \Google\Protobuf\Internal\Message ...@@ -149,5 +168,6 @@ class Duration extends \Google\Protobuf\Internal\Message
return $this; return $this;
} }
} }
...@@ -46,9 +46,27 @@ class Enum extends \Google\Protobuf\Internal\Message ...@@ -46,9 +46,27 @@ class Enum extends \Google\Protobuf\Internal\Message
*/ */
private $syntax = 0; private $syntax = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* Enum type name.
* @type \Google\Protobuf\EnumValue[]|\Google\Protobuf\Internal\RepeatedField $enumvalue
* Enum value definitions.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* Protocol buffer options.
* @type \Google\Protobuf\SourceContext $source_context
* The source context.
* @type int $syntax
* The source syntax.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Type::initOnce(); \GPBMetadata\Google\Protobuf\Type::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -34,9 +34,23 @@ class EnumValue extends \Google\Protobuf\Internal\Message ...@@ -34,9 +34,23 @@ class EnumValue extends \Google\Protobuf\Internal\Message
*/ */
private $options; private $options;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* Enum value name.
* @type int $number
* Enum value number.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* Protocol buffer options.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Type::initOnce(); \GPBMetadata\Google\Protobuf\Type::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -78,9 +78,39 @@ class Field extends \Google\Protobuf\Internal\Message ...@@ -78,9 +78,39 @@ class Field extends \Google\Protobuf\Internal\Message
*/ */
private $default_value = ''; private $default_value = '';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $kind
* The field type.
* @type int $cardinality
* The field cardinality.
* @type int $number
* The field number.
* @type string $name
* The field name.
* @type string $type_url
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
* @type int $oneof_index
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
* @type bool $packed
* Whether to use alternative packed wire representation.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* The protocol buffer options.
* @type string $json_name
* The field JSON name.
* @type string $default_value
* The string value of the default value of this field. Proto2 syntax only.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Type::initOnce(); \GPBMetadata\Google\Protobuf\Type::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/type.proto
namespace Google\Protobuf\Field;
/**
* Whether a field is optional, required, or repeated.
*
* Protobuf type <code>google.protobuf.Field.Cardinality</code>
*/
class Cardinality
{
/**
* For fields with unknown cardinality.
*
* Generated from protobuf enum <code>CARDINALITY_UNKNOWN = 0;</code>
*/
const CARDINALITY_UNKNOWN = 0;
/**
* For optional fields.
*
* Generated from protobuf enum <code>CARDINALITY_OPTIONAL = 1;</code>
*/
const CARDINALITY_OPTIONAL = 1;
/**
* For required fields. Proto2 syntax only.
*
* Generated from protobuf enum <code>CARDINALITY_REQUIRED = 2;</code>
*/
const CARDINALITY_REQUIRED = 2;
/**
* For repeated fields.
*
* Generated from protobuf enum <code>CARDINALITY_REPEATED = 3;</code>
*/
const CARDINALITY_REPEATED = 3;
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Cardinality::class, \Google\Protobuf\Field_Cardinality::class);
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/type.proto
namespace Google\Protobuf\Field;
/**
* Basic field types.
*
* Protobuf type <code>google.protobuf.Field.Kind</code>
*/
class Kind
{
/**
* Field type unknown.
*
* Generated from protobuf enum <code>TYPE_UNKNOWN = 0;</code>
*/
const TYPE_UNKNOWN = 0;
/**
* Field type double.
*
* Generated from protobuf enum <code>TYPE_DOUBLE = 1;</code>
*/
const TYPE_DOUBLE = 1;
/**
* Field type float.
*
* Generated from protobuf enum <code>TYPE_FLOAT = 2;</code>
*/
const TYPE_FLOAT = 2;
/**
* Field type int64.
*
* Generated from protobuf enum <code>TYPE_INT64 = 3;</code>
*/
const TYPE_INT64 = 3;
/**
* Field type uint64.
*
* Generated from protobuf enum <code>TYPE_UINT64 = 4;</code>
*/
const TYPE_UINT64 = 4;
/**
* Field type int32.
*
* Generated from protobuf enum <code>TYPE_INT32 = 5;</code>
*/
const TYPE_INT32 = 5;
/**
* Field type fixed64.
*
* Generated from protobuf enum <code>TYPE_FIXED64 = 6;</code>
*/
const TYPE_FIXED64 = 6;
/**
* Field type fixed32.
*
* Generated from protobuf enum <code>TYPE_FIXED32 = 7;</code>
*/
const TYPE_FIXED32 = 7;
/**
* Field type bool.
*
* Generated from protobuf enum <code>TYPE_BOOL = 8;</code>
*/
const TYPE_BOOL = 8;
/**
* Field type string.
*
* Generated from protobuf enum <code>TYPE_STRING = 9;</code>
*/
const TYPE_STRING = 9;
/**
* Field type group. Proto2 syntax only, and deprecated.
*
* Generated from protobuf enum <code>TYPE_GROUP = 10;</code>
*/
const TYPE_GROUP = 10;
/**
* Field type message.
*
* Generated from protobuf enum <code>TYPE_MESSAGE = 11;</code>
*/
const TYPE_MESSAGE = 11;
/**
* Field type bytes.
*
* Generated from protobuf enum <code>TYPE_BYTES = 12;</code>
*/
const TYPE_BYTES = 12;
/**
* Field type uint32.
*
* Generated from protobuf enum <code>TYPE_UINT32 = 13;</code>
*/
const TYPE_UINT32 = 13;
/**
* Field type enum.
*
* Generated from protobuf enum <code>TYPE_ENUM = 14;</code>
*/
const TYPE_ENUM = 14;
/**
* Field type sfixed32.
*
* Generated from protobuf enum <code>TYPE_SFIXED32 = 15;</code>
*/
const TYPE_SFIXED32 = 15;
/**
* Field type sfixed64.
*
* Generated from protobuf enum <code>TYPE_SFIXED64 = 16;</code>
*/
const TYPE_SFIXED64 = 16;
/**
* Field type sint32.
*
* Generated from protobuf enum <code>TYPE_SINT32 = 17;</code>
*/
const TYPE_SINT32 = 17;
/**
* Field type sint64.
*
* Generated from protobuf enum <code>TYPE_SINT64 = 18;</code>
*/
const TYPE_SINT64 = 18;
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Kind::class, \Google\Protobuf\Field_Kind::class);
...@@ -162,6 +162,10 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -162,6 +162,10 @@ use Google\Protobuf\Internal\GPBUtil;
* } * }
* Note that oneof type names ("test_oneof" in this case) cannot be used in * Note that oneof type names ("test_oneof" in this case) cannot be used in
* paths. * paths.
* ## Field Mask Verification
* The implementation of any API method which has a FieldMask type field in the
* request should verify the included field paths, and return an
* `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
* *
* Generated from protobuf message <code>google.protobuf.FieldMask</code> * Generated from protobuf message <code>google.protobuf.FieldMask</code>
*/ */
...@@ -174,9 +178,19 @@ class FieldMask extends \Google\Protobuf\Internal\Message ...@@ -174,9 +178,19 @@ class FieldMask extends \Google\Protobuf\Internal\Message
*/ */
private $paths; private $paths;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string[]|\Google\Protobuf\Internal\RepeatedField $paths
* The set of field mask paths.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\FieldMask::initOnce(); \GPBMetadata\Google\Protobuf\FieldMask::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -4,36 +4,13 @@ ...@@ -4,36 +4,13 @@
namespace Google\Protobuf; namespace Google\Protobuf;
/** if (false) {
* Whether a field is optional, required, or repeated.
*
* Protobuf enum <code>Google\Protobuf\Field\Cardinality</code>
*/
class Field_Cardinality
{
/** /**
* For fields with unknown cardinality. * This class is deprecated. Use Google\Protobuf\Field\Cardinality instead.
* * @deprecated
* Generated from protobuf enum <code>CARDINALITY_UNKNOWN = 0;</code>
*/ */
const CARDINALITY_UNKNOWN = 0; class Field_Cardinality {}
/**
* For optional fields.
*
* Generated from protobuf enum <code>CARDINALITY_OPTIONAL = 1;</code>
*/
const CARDINALITY_OPTIONAL = 1;
/**
* For required fields. Proto2 syntax only.
*
* Generated from protobuf enum <code>CARDINALITY_REQUIRED = 2;</code>
*/
const CARDINALITY_REQUIRED = 2;
/**
* For repeated fields.
*
* Generated from protobuf enum <code>CARDINALITY_REPEATED = 3;</code>
*/
const CARDINALITY_REPEATED = 3;
} }
class_exists(Field\Cardinality::class);
@trigger_error('Google\Protobuf\Field_Cardinality is deprecated and will be removed in the next major release. Use Google\Protobuf\Field\Cardinality instead', E_USER_DEPRECATED);
...@@ -4,126 +4,13 @@ ...@@ -4,126 +4,13 @@
namespace Google\Protobuf; namespace Google\Protobuf;
/** if (false) {
* Basic field types.
*
* Protobuf enum <code>Google\Protobuf\Field\Kind</code>
*/
class Field_Kind
{
/** /**
* Field type unknown. * This class is deprecated. Use Google\Protobuf\Field\Kind instead.
* * @deprecated
* Generated from protobuf enum <code>TYPE_UNKNOWN = 0;</code>
*/ */
const TYPE_UNKNOWN = 0; class Field_Kind {}
/**
* Field type double.
*
* Generated from protobuf enum <code>TYPE_DOUBLE = 1;</code>
*/
const TYPE_DOUBLE = 1;
/**
* Field type float.
*
* Generated from protobuf enum <code>TYPE_FLOAT = 2;</code>
*/
const TYPE_FLOAT = 2;
/**
* Field type int64.
*
* Generated from protobuf enum <code>TYPE_INT64 = 3;</code>
*/
const TYPE_INT64 = 3;
/**
* Field type uint64.
*
* Generated from protobuf enum <code>TYPE_UINT64 = 4;</code>
*/
const TYPE_UINT64 = 4;
/**
* Field type int32.
*
* Generated from protobuf enum <code>TYPE_INT32 = 5;</code>
*/
const TYPE_INT32 = 5;
/**
* Field type fixed64.
*
* Generated from protobuf enum <code>TYPE_FIXED64 = 6;</code>
*/
const TYPE_FIXED64 = 6;
/**
* Field type fixed32.
*
* Generated from protobuf enum <code>TYPE_FIXED32 = 7;</code>
*/
const TYPE_FIXED32 = 7;
/**
* Field type bool.
*
* Generated from protobuf enum <code>TYPE_BOOL = 8;</code>
*/
const TYPE_BOOL = 8;
/**
* Field type string.
*
* Generated from protobuf enum <code>TYPE_STRING = 9;</code>
*/
const TYPE_STRING = 9;
/**
* Field type group. Proto2 syntax only, and deprecated.
*
* Generated from protobuf enum <code>TYPE_GROUP = 10;</code>
*/
const TYPE_GROUP = 10;
/**
* Field type message.
*
* Generated from protobuf enum <code>TYPE_MESSAGE = 11;</code>
*/
const TYPE_MESSAGE = 11;
/**
* Field type bytes.
*
* Generated from protobuf enum <code>TYPE_BYTES = 12;</code>
*/
const TYPE_BYTES = 12;
/**
* Field type uint32.
*
* Generated from protobuf enum <code>TYPE_UINT32 = 13;</code>
*/
const TYPE_UINT32 = 13;
/**
* Field type enum.
*
* Generated from protobuf enum <code>TYPE_ENUM = 14;</code>
*/
const TYPE_ENUM = 14;
/**
* Field type sfixed32.
*
* Generated from protobuf enum <code>TYPE_SFIXED32 = 15;</code>
*/
const TYPE_SFIXED32 = 15;
/**
* Field type sfixed64.
*
* Generated from protobuf enum <code>TYPE_SFIXED64 = 16;</code>
*/
const TYPE_SFIXED64 = 16;
/**
* Field type sint32.
*
* Generated from protobuf enum <code>TYPE_SINT32 = 17;</code>
*/
const TYPE_SINT32 = 17;
/**
* Field type sint64.
*
* Generated from protobuf enum <code>TYPE_SINT64 = 18;</code>
*/
const TYPE_SINT64 = 18;
} }
class_exists(Field\Kind::class);
@trigger_error('Google\Protobuf\Field_Kind is deprecated and will be removed in the next major release. Use Google\Protobuf\Field\Kind instead', E_USER_DEPRECATED);
...@@ -23,9 +23,19 @@ class FloatValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class FloatValue extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0.0; private $value = 0.0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type float $value
* The float value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -22,9 +22,17 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -22,9 +22,17 @@ use Google\Protobuf\Internal\GPBUtil;
class GPBEmpty extends \Google\Protobuf\Internal\Message class GPBEmpty extends \Google\Protobuf\Internal\Message
{ {
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\GPBEmpty::initOnce(); \GPBMetadata\Google\Protobuf\GPBEmpty::initOnce();
parent::__construct(); parent::__construct($data);
} }
} }
......
...@@ -23,9 +23,19 @@ class Int32Value extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class Int32Value extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0; private $value = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $value
* The int32 value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class Int64Value extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class Int64Value extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0; private $value = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $value
* The int64 value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -82,10 +82,10 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message ...@@ -82,10 +82,10 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
* @type \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $extension * @type \Google\Protobuf\Internal\FieldDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $extension
* @type \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $nested_type * @type \Google\Protobuf\Internal\DescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $nested_type
* @type \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $enum_type * @type \Google\Protobuf\Internal\EnumDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $enum_type
* @type \Google\Protobuf\Internal\DescriptorProto_ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $extension_range * @type \Google\Protobuf\Internal\DescriptorProto\ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $extension_range
* @type \Google\Protobuf\Internal\OneofDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $oneof_decl * @type \Google\Protobuf\Internal\OneofDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $oneof_decl
* @type \Google\Protobuf\Internal\MessageOptions $options * @type \Google\Protobuf\Internal\MessageOptions $options
* @type \Google\Protobuf\Internal\DescriptorProto_ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range * @type \Google\Protobuf\Internal\DescriptorProto\ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range
* @type string[]|\Google\Protobuf\Internal\RepeatedField $reserved_name * @type string[]|\Google\Protobuf\Internal\RepeatedField $reserved_name
* Reserved field names, which may not be used by fields in the same message. * Reserved field names, which may not be used by fields in the same message.
* A given name may only be reserved once. * A given name may only be reserved once.
...@@ -247,12 +247,12 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message ...@@ -247,12 +247,12 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code>
* @param \Google\Protobuf\Internal\DescriptorProto_ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\DescriptorProto\ExtensionRange[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setExtensionRange($var) public function setExtensionRange($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\DescriptorProto_ExtensionRange::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\DescriptorProto\ExtensionRange::class);
$this->extension_range = $arr; $this->extension_range = $arr;
$this->has_extension_range = true; $this->has_extension_range = true;
...@@ -331,12 +331,12 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message ...@@ -331,12 +331,12 @@ class DescriptorProto extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;</code> * Generated from protobuf field <code>repeated .google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;</code>
* @param \Google\Protobuf\Internal\DescriptorProto_ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\DescriptorProto\ReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedRange($var) public function setReservedRange($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\DescriptorProto_ReservedRange::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\DescriptorProto\ReservedRange::class);
$this->reserved_range = $arr; $this->reserved_range = $arr;
$this->has_reserved_range = true; $this->has_reserved_range = true;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\DescriptorProto;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil;
/** /**
* Generated from protobuf message <code>google.protobuf.DescriptorProto.ExtensionRange</code> * Generated from protobuf message <code>google.protobuf.DescriptorProto.ExtensionRange</code>
*/ */
class DescriptorProto_ExtensionRange extends \Google\Protobuf\Internal\Message class ExtensionRange extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Generated from protobuf field <code>optional int32 start = 1;</code> * Generated from protobuf field <code>optional int32 start = 1;</code>
...@@ -133,3 +133,6 @@ class DescriptorProto_ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -133,3 +133,6 @@ class DescriptorProto_ExtensionRange extends \Google\Protobuf\Internal\Message
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ExtensionRange::class, \Google\Protobuf\Internal\DescriptorProto_ExtensionRange::class);
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\DescriptorProto;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -17,7 +17,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -17,7 +17,7 @@ use Google\Protobuf\Internal\GPBUtil;
* *
* Generated from protobuf message <code>google.protobuf.DescriptorProto.ReservedRange</code> * Generated from protobuf message <code>google.protobuf.DescriptorProto.ReservedRange</code>
*/ */
class DescriptorProto_ReservedRange extends \Google\Protobuf\Internal\Message class ReservedRange extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Inclusive. * Inclusive.
...@@ -117,3 +117,6 @@ class DescriptorProto_ReservedRange extends \Google\Protobuf\Internal\Message ...@@ -117,3 +117,6 @@ class DescriptorProto_ReservedRange extends \Google\Protobuf\Internal\Message
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ReservedRange::class, \Google\Protobuf\Internal\DescriptorProto_ReservedRange::class);
...@@ -59,7 +59,7 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message ...@@ -59,7 +59,7 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
* @type string $name * @type string $name
* @type \Google\Protobuf\Internal\EnumValueDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $value * @type \Google\Protobuf\Internal\EnumValueDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $value
* @type \Google\Protobuf\Internal\EnumOptions $options * @type \Google\Protobuf\Internal\EnumOptions $options
* @type \Google\Protobuf\Internal\EnumDescriptorProto_EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range * @type \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $reserved_range
* Range of reserved numeric values. Reserved numeric values may not be used * Range of reserved numeric values. Reserved numeric values may not be used
* by enum values in the same enum declaration. Reserved ranges may not * by enum values in the same enum declaration. Reserved ranges may not
* overlap. * overlap.
...@@ -176,12 +176,12 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message ...@@ -176,12 +176,12 @@ class EnumDescriptorProto extends \Google\Protobuf\Internal\Message
* overlap. * overlap.
* *
* Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;</code> * Generated from protobuf field <code>repeated .google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;</code>
* @param \Google\Protobuf\Internal\EnumDescriptorProto_EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setReservedRange($var) public function setReservedRange($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\EnumDescriptorProto_EnumReservedRange::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\EnumDescriptorProto\EnumReservedRange::class);
$this->reserved_range = $arr; $this->reserved_range = $arr;
$this->has_reserved_range = true; $this->has_reserved_range = true;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\EnumDescriptorProto;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -19,7 +19,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -19,7 +19,7 @@ use Google\Protobuf\Internal\GPBUtil;
* *
* Generated from protobuf message <code>google.protobuf.EnumDescriptorProto.EnumReservedRange</code> * Generated from protobuf message <code>google.protobuf.EnumDescriptorProto.EnumReservedRange</code>
*/ */
class EnumDescriptorProto_EnumReservedRange extends \Google\Protobuf\Internal\Message class EnumReservedRange extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Inclusive. * Inclusive.
...@@ -119,3 +119,6 @@ class EnumDescriptorProto_EnumReservedRange extends \Google\Protobuf\Internal\Me ...@@ -119,3 +119,6 @@ class EnumDescriptorProto_EnumReservedRange extends \Google\Protobuf\Internal\Me
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EnumReservedRange::class, \Google\Protobuf\Internal\EnumDescriptorProto_EnumReservedRange::class);
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\FieldDescriptorProto;
/** /**
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.FieldDescriptorProto.Label</code>
*/ */
class FieldDescriptorProto_Label class Label
{ {
/** /**
* 0 is reserved for errors * 0 is reserved for errors
...@@ -25,3 +25,6 @@ class FieldDescriptorProto_Label ...@@ -25,3 +25,6 @@ class FieldDescriptorProto_Label
const LABEL_REPEATED = 3; const LABEL_REPEATED = 3;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Label::class, \Google\Protobuf\Internal\FieldDescriptorProto_Label::class);
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\FieldDescriptorProto;
/** /**
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.FieldDescriptorProto.Type</code>
*/ */
class FieldDescriptorProto_Type class Type
{ {
/** /**
* 0 is reserved for errors. * 0 is reserved for errors.
...@@ -105,3 +105,6 @@ class FieldDescriptorProto_Type ...@@ -105,3 +105,6 @@ class FieldDescriptorProto_Type
const TYPE_SINT64 = 18; const TYPE_SINT64 = 18;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Type::class, \Google\Protobuf\Internal\FieldDescriptorProto_Type::class);
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\FieldOptions;
/** /**
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.FieldOptions.CType</code>
*/ */
class FieldOptions_CType class CType
{ {
/** /**
* Default mode. * Default mode.
...@@ -25,3 +25,6 @@ class FieldOptions_CType ...@@ -25,3 +25,6 @@ class FieldOptions_CType
const STRING_PIECE = 2; const STRING_PIECE = 2;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CType::class, \Google\Protobuf\Internal\FieldOptions_CType::class);
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\FieldOptions;
/** /**
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.FieldOptions.JSType</code>
*/ */
class FieldOptions_JSType class JSType
{ {
/** /**
* Use the default type. * Use the default type.
...@@ -29,3 +29,6 @@ class FieldOptions_JSType ...@@ -29,3 +29,6 @@ class FieldOptions_JSType
const JS_NUMBER = 2; const JS_NUMBER = 2;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(JSType::class, \Google\Protobuf\Internal\FieldOptions_JSType::class);
...@@ -278,6 +278,14 @@ class FileOptions extends \Google\Protobuf\Internal\Message ...@@ -278,6 +278,14 @@ class FileOptions extends \Google\Protobuf\Internal\Message
* Use this option to change the namespace of php generated classes. Default * Use this option to change the namespace of php generated classes. Default
* is empty. When this option is empty, the package name will be used for * is empty. When this option is empty, the package name will be used for
* determining the namespace. * determining the namespace.
* @type string $php_metadata_namespace
* Use this option to change the namespace of php generated metadata classes.
* Default is empty. When this option is empty, the proto file name will be used
* for determining the namespace.
* @type string $ruby_package
* Use this option to change the package of ruby generated classes. Default
* is empty. When this option is not set, the package name will be used for
* determining the ruby package.
* @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option * @type \Google\Protobuf\Internal\UninterpretedOption[]|\Google\Protobuf\Internal\RepeatedField $uninterpreted_option
* The parser stores options it doesn't recognize here. * The parser stores options it doesn't recognize here.
* See the documentation for the "Options" section above. * See the documentation for the "Options" section above.
......
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\FileOptions;
/** /**
* Generated classes can be optimized for speed or code size. * Generated classes can be optimized for speed or code size.
* *
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.FileOptions.OptimizeMode</code>
*/ */
class FileOptions_OptimizeMode class OptimizeMode
{ {
/** /**
* Generate complete code for parsing, serialization, * Generate complete code for parsing, serialization,
...@@ -31,3 +31,6 @@ class FileOptions_OptimizeMode ...@@ -31,3 +31,6 @@ class FileOptions_OptimizeMode
const LITE_RUNTIME = 3; const LITE_RUNTIME = 3;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(OptimizeMode::class, \Google\Protobuf\Internal\FileOptions_OptimizeMode::class);
...@@ -191,7 +191,7 @@ class GPBUtil ...@@ -191,7 +191,7 @@ class GPBUtil
$var = boolval($var); $var = boolval($var);
} }
public static function checkMessage(&$var, $klass) public static function checkMessage(&$var, $klass, $newClass = null)
{ {
if (!$var instanceof $klass && !is_null($var)) { if (!$var instanceof $klass && !is_null($var)) {
throw new \Exception("Expect $klass."); throw new \Exception("Expect $klass.");
...@@ -303,8 +303,11 @@ class GPBUtil ...@@ -303,8 +303,11 @@ class GPBUtil
$name, $name,
$file_proto) $file_proto)
{ {
$classname = implode('_', explode('.', $name)); $parts = explode('.', $name);
return static::getClassNamePrefix($classname, $file_proto) . $classname; foreach ($parts as $i => $part) {
$parts[$i] = static::getClassNamePrefix($parts[$i], $file_proto) . $parts[$i];
}
return implode('\\', $parts);
} }
public static function getFullClassName( public static function getFullClassName(
...@@ -347,9 +350,14 @@ class GPBUtil ...@@ -347,9 +350,14 @@ class GPBUtil
if ($package === "") { if ($package === "") {
$classname = $class_name_without_package; $classname = $class_name_without_package;
} else { } else {
$parts = array_map('ucwords', explode('.', $package));
foreach ($parts as $i => $part) {
$parts[$i] = self::getClassNamePrefix($part, $file_proto).$part;
}
$classname = $classname =
implode('\\', array_map('ucwords', explode('.', $package))). implode('\\', $parts) .
"\\".$class_name_without_package; "\\".self::getClassNamePrefix($class_name_without_package,$file_proto).
$class_name_without_package;
} }
} }
......
...@@ -34,7 +34,7 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message ...@@ -34,7 +34,7 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\GeneratedCodeInfo_Annotation[]|\Google\Protobuf\Internal\RepeatedField $annotation * @type \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation[]|\Google\Protobuf\Internal\RepeatedField $annotation
* An Annotation connects some span of text in generated code to an element * An Annotation connects some span of text in generated code to an element
* of its generating .proto file. * of its generating .proto file.
* } * }
...@@ -61,12 +61,12 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message ...@@ -61,12 +61,12 @@ class GeneratedCodeInfo extends \Google\Protobuf\Internal\Message
* of its generating .proto file. * of its generating .proto file.
* *
* Generated from protobuf field <code>repeated .google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;</code>
* @param \Google\Protobuf\Internal\GeneratedCodeInfo_Annotation[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setAnnotation($var) public function setAnnotation($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\GeneratedCodeInfo_Annotation::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\GeneratedCodeInfo\Annotation::class);
$this->annotation = $arr; $this->annotation = $arr;
$this->has_annotation = true; $this->has_annotation = true;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\GeneratedCodeInfo;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil;
/** /**
* Generated from protobuf message <code>google.protobuf.GeneratedCodeInfo.Annotation</code> * Generated from protobuf message <code>google.protobuf.GeneratedCodeInfo.Annotation</code>
*/ */
class GeneratedCodeInfo_Annotation extends \Google\Protobuf\Internal\Message class Annotation extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Identifies the element in the original source .proto file. This field * Identifies the element in the original source .proto file. This field
...@@ -211,3 +211,6 @@ class GeneratedCodeInfo_Annotation extends \Google\Protobuf\Internal\Message ...@@ -211,3 +211,6 @@ class GeneratedCodeInfo_Annotation extends \Google\Protobuf\Internal\Message
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Annotation::class, \Google\Protobuf\Internal\GeneratedCodeInfo_Annotation::class);
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\MethodOptions;
/** /**
* Is this method side-effect-free (or safe in HTTP parlance), or idempotent, * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
* or neither? HTTP based RPC implementation may choose GET verb for safe * or neither? HTTP based RPC implementation may choose GET verb for safe
* methods, and PUT verb for idempotent methods instead of the default POST. * methods, and PUT verb for idempotent methods instead of the default POST.
* *
* Protobuf enum <code>Google\Protobuf\Internal</code> * Protobuf type <code>google.protobuf.MethodOptions.IdempotencyLevel</code>
*/ */
class MethodOptions_IdempotencyLevel class IdempotencyLevel
{ {
/** /**
* Generated from protobuf enum <code>IDEMPOTENCY_UNKNOWN = 0;</code> * Generated from protobuf enum <code>IDEMPOTENCY_UNKNOWN = 0;</code>
...@@ -31,3 +31,6 @@ class MethodOptions_IdempotencyLevel ...@@ -31,3 +31,6 @@ class MethodOptions_IdempotencyLevel
const IDEMPOTENT = 2; const IDEMPOTENT = 2;
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(IdempotencyLevel::class, \Google\Protobuf\Internal\MethodOptions_IdempotencyLevel::class);
...@@ -72,7 +72,7 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message ...@@ -72,7 +72,7 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\SourceCodeInfo_Location[]|\Google\Protobuf\Internal\RepeatedField $location * @type \Google\Protobuf\Internal\SourceCodeInfo\Location[]|\Google\Protobuf\Internal\RepeatedField $location
* A Location identifies a piece of source code in a .proto file which * A Location identifies a piece of source code in a .proto file which
* corresponds to a particular definition. This information is intended * corresponds to a particular definition. This information is intended
* to be useful to IDEs, code indexers, documentation generators, and similar * to be useful to IDEs, code indexers, documentation generators, and similar
...@@ -216,12 +216,12 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message ...@@ -216,12 +216,12 @@ class SourceCodeInfo extends \Google\Protobuf\Internal\Message
* be recorded in the future. * be recorded in the future.
* *
* Generated from protobuf field <code>repeated .google.protobuf.SourceCodeInfo.Location location = 1;</code> * Generated from protobuf field <code>repeated .google.protobuf.SourceCodeInfo.Location location = 1;</code>
* @param \Google\Protobuf\Internal\SourceCodeInfo_Location[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\SourceCodeInfo\Location[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setLocation($var) public function setLocation($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\SourceCodeInfo_Location::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\SourceCodeInfo\Location::class);
$this->location = $arr; $this->location = $arr;
$this->has_location = true; $this->has_location = true;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\SourceCodeInfo;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -13,7 +13,7 @@ use Google\Protobuf\Internal\GPBUtil;
/** /**
* Generated from protobuf message <code>google.protobuf.SourceCodeInfo.Location</code> * Generated from protobuf message <code>google.protobuf.SourceCodeInfo.Location</code>
*/ */
class SourceCodeInfo_Location extends \Google\Protobuf\Internal\Message class Location extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Identifies which part of the FileDescriptorProto was defined at this * Identifies which part of the FileDescriptorProto was defined at this
...@@ -458,3 +458,6 @@ class SourceCodeInfo_Location extends \Google\Protobuf\Internal\Message ...@@ -458,3 +458,6 @@ class SourceCodeInfo_Location extends \Google\Protobuf\Internal\Message
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Location::class, \Google\Protobuf\Internal\SourceCodeInfo_Location::class);
...@@ -67,7 +67,7 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message ...@@ -67,7 +67,7 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message
* @param array $data { * @param array $data {
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type \Google\Protobuf\Internal\UninterpretedOption_NamePart[]|\Google\Protobuf\Internal\RepeatedField $name * @type \Google\Protobuf\Internal\UninterpretedOption\NamePart[]|\Google\Protobuf\Internal\RepeatedField $name
* @type string $identifier_value * @type string $identifier_value
* The value of the uninterpreted option, in whatever type the tokenizer * The value of the uninterpreted option, in whatever type the tokenizer
* identified it as during parsing. Exactly one of these should be set. * identified it as during parsing. Exactly one of these should be set.
...@@ -94,12 +94,12 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message ...@@ -94,12 +94,12 @@ class UninterpretedOption extends \Google\Protobuf\Internal\Message
/** /**
* Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> * Generated from protobuf field <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code>
* @param \Google\Protobuf\Internal\UninterpretedOption_NamePart[]|\Google\Protobuf\Internal\RepeatedField $var * @param \Google\Protobuf\Internal\UninterpretedOption\NamePart[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this * @return $this
*/ */
public function setName($var) public function setName($var)
{ {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption_NamePart::class); $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\UninterpretedOption\NamePart::class);
$this->name = $arr; $this->name = $arr;
$this->has_name = true; $this->has_name = true;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Generated by the protocol buffer compiler. DO NOT EDIT! # Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/protobuf/descriptor.proto # source: google/protobuf/descriptor.proto
namespace Google\Protobuf\Internal; namespace Google\Protobuf\Internal\UninterpretedOption;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire; use Google\Protobuf\Internal\GPBWire;
...@@ -19,7 +19,7 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -19,7 +19,7 @@ use Google\Protobuf\Internal\GPBUtil;
* *
* Generated from protobuf message <code>google.protobuf.UninterpretedOption.NamePart</code> * Generated from protobuf message <code>google.protobuf.UninterpretedOption.NamePart</code>
*/ */
class UninterpretedOption_NamePart extends \Google\Protobuf\Internal\Message class NamePart extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Generated from protobuf field <code>required string name_part = 1;</code> * Generated from protobuf field <code>required string name_part = 1;</code>
...@@ -105,3 +105,6 @@ class UninterpretedOption_NamePart extends \Google\Protobuf\Internal\Message ...@@ -105,3 +105,6 @@ class UninterpretedOption_NamePart extends \Google\Protobuf\Internal\Message
} }
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NamePart::class, \Google\Protobuf\Internal\UninterpretedOption_NamePart::class);
...@@ -23,9 +23,19 @@ class ListValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class ListValue extends \Google\Protobuf\Internal\Message
*/ */
private $values; private $values;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Google\Protobuf\Value[]|\Google\Protobuf\Internal\RepeatedField $values
* Repeated field of dynamically typed values.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Struct::initOnce(); \GPBMetadata\Google\Protobuf\Struct::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -58,9 +58,31 @@ class Method extends \Google\Protobuf\Internal\Message ...@@ -58,9 +58,31 @@ class Method extends \Google\Protobuf\Internal\Message
*/ */
private $syntax = 0; private $syntax = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* The simple name of this method.
* @type string $request_type_url
* A URL of the input message type.
* @type bool $request_streaming
* If true, the request is streamed.
* @type string $response_type_url
* The URL of the output message type.
* @type bool $response_streaming
* If true, the response is streamed.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* Any metadata attached to the method.
* @type int $syntax
* The source syntax of this method.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Api::initOnce(); \GPBMetadata\Google\Protobuf\Api::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -90,9 +90,22 @@ class Mixin extends \Google\Protobuf\Internal\Message ...@@ -90,9 +90,22 @@ class Mixin extends \Google\Protobuf\Internal\Message
*/ */
private $root = ''; private $root = '';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* The fully qualified name of the interface which is included.
* @type string $root
* If non-empty specifies a path under which inherited HTTP paths
* are rooted.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Api::initOnce(); \GPBMetadata\Google\Protobuf\Api::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -9,7 +9,7 @@ namespace Google\Protobuf; ...@@ -9,7 +9,7 @@ namespace Google\Protobuf;
* `Value` type union. * `Value` type union.
* The JSON representation for `NullValue` is JSON `null`. * The JSON representation for `NullValue` is JSON `null`.
* *
* Protobuf enum <code>Google\Protobuf\NullValue</code> * Protobuf type <code>google.protobuf.NullValue</code>
*/ */
class NullValue class NullValue
{ {
......
...@@ -35,9 +35,27 @@ class Option extends \Google\Protobuf\Internal\Message ...@@ -35,9 +35,27 @@ class Option extends \Google\Protobuf\Internal\Message
*/ */
private $value = null; private $value = null;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* The option's name. For protobuf built-in options (options defined in
* descriptor.proto), this is the short name. For example, `"map_entry"`.
* For custom options, it should be the fully-qualified name. For example,
* `"google.api.http"`.
* @type \Google\Protobuf\Any $value
* The option's value packed in an Any message. If the value is a primitive,
* the corresponding wrapper type defined in google/protobuf/wrappers.proto
* should be used. If the value is an enum, it should be stored as an int32
* value using the google.protobuf.Int32Value type.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Type::initOnce(); \GPBMetadata\Google\Protobuf\Type::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -24,9 +24,20 @@ class SourceContext extends \Google\Protobuf\Internal\Message ...@@ -24,9 +24,20 @@ class SourceContext extends \Google\Protobuf\Internal\Message
*/ */
private $file_name = ''; private $file_name = '';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $file_name
* The path-qualified name of the .proto file that contained the associated
* protobuf element. For example: `"google/protobuf/source_context.proto"`.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\SourceContext::initOnce(); \GPBMetadata\Google\Protobuf\SourceContext::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class StringValue extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class StringValue extends \Google\Protobuf\Internal\Message
*/ */
private $value = ''; private $value = '';
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $value
* The string value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -28,9 +28,19 @@ class Struct extends \Google\Protobuf\Internal\Message ...@@ -28,9 +28,19 @@ class Struct extends \Google\Protobuf\Internal\Message
*/ */
private $fields; private $fields;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\MapField $fields
* Unordered map of dynamically typed values.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Struct::initOnce(); \GPBMetadata\Google\Protobuf\Struct::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -7,7 +7,7 @@ namespace Google\Protobuf; ...@@ -7,7 +7,7 @@ namespace Google\Protobuf;
/** /**
* The syntax in which a protocol buffer element is defined. * The syntax in which a protocol buffer element is defined.
* *
* Protobuf enum <code>Google\Protobuf\Syntax</code> * Protobuf type <code>google.protobuf.Syntax</code>
*/ */
class Syntax class Syntax
{ {
......
...@@ -89,9 +89,26 @@ class Timestamp extends \Google\Protobuf\Internal\Message ...@@ -89,9 +89,26 @@ class Timestamp extends \Google\Protobuf\Internal\Message
*/ */
private $nanos = 0; private $nanos = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $seconds
* Represents seconds of UTC time since Unix epoch
* 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
* 9999-12-31T23:59:59Z inclusive.
* @type int $nanos
* Non-negative fractions of a second at nanosecond resolution. Negative
* second values with fractions must still have non-negative nanos values
* that count forward in time. Must be from 0 to 999,999,999
* inclusive.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Timestamp::initOnce(); \GPBMetadata\Google\Protobuf\Timestamp::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
...@@ -156,7 +173,7 @@ class Timestamp extends \Google\Protobuf\Internal\Message ...@@ -156,7 +173,7 @@ class Timestamp extends \Google\Protobuf\Internal\Message
return $this; return $this;
} }
/** /*
* Converts PHP DateTime to Timestamp. * Converts PHP DateTime to Timestamp.
* *
* @param \DateTime $datetime * @param \DateTime $datetime
......
...@@ -52,9 +52,29 @@ class Type extends \Google\Protobuf\Internal\Message ...@@ -52,9 +52,29 @@ class Type extends \Google\Protobuf\Internal\Message
*/ */
private $syntax = 0; private $syntax = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* The fully qualified message name.
* @type \Google\Protobuf\Field[]|\Google\Protobuf\Internal\RepeatedField $fields
* The list of fields.
* @type string[]|\Google\Protobuf\Internal\RepeatedField $oneofs
* The list of types appearing in `oneof` definitions in this type.
* @type \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $options
* The protocol buffer options.
* @type \Google\Protobuf\SourceContext $source_context
* The source context.
* @type int $syntax
* The source syntax.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Type::initOnce(); \GPBMetadata\Google\Protobuf\Type::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class UInt32Value extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class UInt32Value extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0; private $value = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $value
* The uint32 value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -23,9 +23,19 @@ class UInt64Value extends \Google\Protobuf\Internal\Message ...@@ -23,9 +23,19 @@ class UInt64Value extends \Google\Protobuf\Internal\Message
*/ */
private $value = 0; private $value = 0;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $value
* The uint64 value.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce(); \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -21,9 +21,29 @@ class Value extends \Google\Protobuf\Internal\Message ...@@ -21,9 +21,29 @@ class Value extends \Google\Protobuf\Internal\Message
{ {
protected $kind; protected $kind;
public function __construct() { /**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $null_value
* Represents a null value.
* @type float $number_value
* Represents a double value.
* @type string $string_value
* Represents a string value.
* @type bool $bool_value
* Represents a boolean value.
* @type \Google\Protobuf\Struct $struct_value
* Represents a structured value.
* @type \Google\Protobuf\ListValue $list_value
* Represents a repeated `Value`.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Struct::initOnce(); \GPBMetadata\Google\Protobuf\Struct::initOnce();
parent::__construct(); parent::__construct($data);
} }
/** /**
......
...@@ -5,7 +5,7 @@ require_once('test_util.php'); ...@@ -5,7 +5,7 @@ require_once('test_util.php');
use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
class RepeatedFieldTest extends PHPUnit_Framework_TestCase class RepeatedFieldTest extends PHPUnit_Framework_TestCase
{ {
...@@ -456,10 +456,10 @@ class RepeatedFieldTest extends PHPUnit_Framework_TestCase ...@@ -456,10 +456,10 @@ class RepeatedFieldTest extends PHPUnit_Framework_TestCase
public function testMessage() public function testMessage()
{ {
$arr = new RepeatedField(GPBType::MESSAGE, TestMessage_Sub::class); $arr = new RepeatedField(GPBType::MESSAGE, Sub::class);
// Test append. // Test append.
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$sub_m->setA(1); $sub_m->setA(1);
$arr[] = $sub_m; $arr[] = $sub_m;
$this->assertSame(1, $arr[0]->getA()); $this->assertSame(1, $arr[0]->getA());
...@@ -467,15 +467,15 @@ class RepeatedFieldTest extends PHPUnit_Framework_TestCase ...@@ -467,15 +467,15 @@ class RepeatedFieldTest extends PHPUnit_Framework_TestCase
$this->assertEquals(1, count($arr)); $this->assertEquals(1, count($arr));
// Test set. // Test set.
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$sub_m->setA(2); $sub_m->setA(2);
$arr[0] = $sub_m; $arr[0] = $sub_m;
$this->assertSame(2, $arr[0]->getA()); $this->assertSame(2, $arr[0]->getA());
// Test foreach. // Test foreach.
$arr = new RepeatedField(GPBType::MESSAGE, TestMessage_Sub::class); $arr = new RepeatedField(GPBType::MESSAGE, Sub::class);
for ($i = 0; $i < 3; $i++) { for ($i = 0; $i < 3; $i++) {
$arr[] = new TestMessage_Sub(); $arr[] = new Sub();
$arr[$i]->setA($i); $arr[$i]->setA($i);
} }
$i = 0; $i = 0;
......
...@@ -10,7 +10,7 @@ use Google\Protobuf\Internal\RepeatedField; ...@@ -10,7 +10,7 @@ use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\MapField; use Google\Protobuf\Internal\MapField;
use Descriptors\TestDescriptorsEnum; use Descriptors\TestDescriptorsEnum;
use Descriptors\TestDescriptorsMessage; use Descriptors\TestDescriptorsMessage;
use Descriptors\TestDescriptorsMessage_Sub; use Descriptors\TestDescriptorsMessage\Sub;
class DescriptorsTest extends TestBase class DescriptorsTest extends TestBase
{ {
......
...@@ -7,7 +7,7 @@ use Google\Protobuf\RepeatedField; ...@@ -7,7 +7,7 @@ use Google\Protobuf\RepeatedField;
use Google\Protobuf\GPBType; use Google\Protobuf\GPBType;
use Foo\TestEnum; use Foo\TestEnum;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
use Foo\TestPackedMessage; use Foo\TestPackedMessage;
use Foo\TestRandomFieldOrder; use Foo\TestRandomFieldOrder;
use Foo\TestUnpackedMessage; use Foo\TestUnpackedMessage;
...@@ -82,7 +82,7 @@ class EncodeDecodeTest extends TestBase ...@@ -82,7 +82,7 @@ class EncodeDecodeTest extends TestBase
$n->mergeFromString($data); $n->mergeFromString($data);
$this->assertSame('abc', $n->getOneofString()); $this->assertSame('abc', $n->getOneofString());
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$sub_m->setA(1); $sub_m->setA(1);
$m->setOneofMessage($sub_m); $m->setOneofMessage($sub_m);
$data = $m->serializeToString(); $data = $m->serializeToString();
...@@ -105,7 +105,7 @@ class EncodeDecodeTest extends TestBase ...@@ -105,7 +105,7 @@ class EncodeDecodeTest extends TestBase
$this->assertSame("oneof_string", $n->getMyOneof()); $this->assertSame("oneof_string", $n->getMyOneof());
$this->assertSame("", $n->getOneofString()); $this->assertSame("", $n->getOneofString());
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$m->setOneofMessage($sub_m); $m->setOneofMessage($sub_m);
$data = $m->serializeToString(); $data = $m->serializeToString();
$n = new TestMessage(); $n = new TestMessage();
......
...@@ -11,8 +11,8 @@ php -i | grep "Configuration" ...@@ -11,8 +11,8 @@ php -i | grep "Configuration"
# gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which # gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which
# phpunit` --bootstrap autoload.php tmp_test.php # phpunit` --bootstrap autoload.php tmp_test.php
# #
# gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap autoload.php encode_decode_test.php gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so `which phpunit` --bootstrap autoload.php generated_class_test.php
# #
gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so memory_leak_test.php # gdb --args php -dextension=../ext/google/protobuf/modules/protobuf.so memory_leak_test.php
# #
# USE_ZEND_ALLOC=0 valgrind --leak-check=yes php -dextension=../ext/google/protobuf/modules/protobuf.so memory_leak_test.php # USE_ZEND_ALLOC=0 valgrind --leak-check=yes php -dextension=../ext/google/protobuf/modules/protobuf.so memory_leak_test.php
This diff is collapsed.
...@@ -201,7 +201,7 @@ class GeneratedPhpdocTest extends TestBase ...@@ -201,7 +201,7 @@ class GeneratedPhpdocTest extends TestBase
[ [
'setRepeatedMessage', 'setRepeatedMessage',
], ],
'@param \Foo\TestMessage_Sub[]|\Google\Protobuf\Internal\RepeatedField $var' '@param \Foo\TestMessage\Sub[]|\Google\Protobuf\Internal\RepeatedField $var'
], ],
[ [
[ [
...@@ -294,14 +294,14 @@ class GeneratedPhpdocTest extends TestBase ...@@ -294,14 +294,14 @@ class GeneratedPhpdocTest extends TestBase
'getOptionalMessage', 'getOptionalMessage',
'getOneofMessage' 'getOneofMessage'
], ],
'@return \Foo\TestMessage_Sub' '@return \Foo\TestMessage\Sub'
], ],
[ [
[ [
'setOptionalMessage', 'setOptionalMessage',
'setOneofMessage' 'setOneofMessage'
], ],
'@param \Foo\TestMessage_Sub $var' '@param \Foo\TestMessage\Sub $var'
], ],
[ [
[ [
......
...@@ -5,7 +5,7 @@ require_once('test_util.php'); ...@@ -5,7 +5,7 @@ require_once('test_util.php');
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\MapField; use Google\Protobuf\Internal\MapField;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
class MapFieldTest extends PHPUnit_Framework_TestCase { class MapFieldTest extends PHPUnit_Framework_TestCase {
...@@ -408,10 +408,10 @@ class MapFieldTest extends PHPUnit_Framework_TestCase { ...@@ -408,10 +408,10 @@ class MapFieldTest extends PHPUnit_Framework_TestCase {
public function testMessage() { public function testMessage() {
$arr = new MapField(GPBType::INT32, $arr = new MapField(GPBType::INT32,
GPBType::MESSAGE, TestMessage_Sub::class); GPBType::MESSAGE, Sub::class);
// Test append. // Test append.
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$sub_m->setA(1); $sub_m->setA(1);
$arr[0] = $sub_m; $arr[0] = $sub_m;
$this->assertSame(1, $arr[0]->getA()); $this->assertSame(1, $arr[0]->getA());
...@@ -420,9 +420,9 @@ class MapFieldTest extends PHPUnit_Framework_TestCase { ...@@ -420,9 +420,9 @@ class MapFieldTest extends PHPUnit_Framework_TestCase {
// Test foreach. // Test foreach.
$arr = new MapField(GPBType::INT32, $arr = new MapField(GPBType::INT32,
GPBType::MESSAGE, TestMessage_Sub::class); GPBType::MESSAGE, Sub::class);
for ($i = 0; $i < 3; $i++) { for ($i = 0; $i < 3; $i++) {
$arr[$i] = new TestMessage_Sub();; $arr[$i] = new Sub();;
$arr[$i]->setA($i); $arr[$i]->setA($i);
} }
$i = 0; $i = 0;
......
...@@ -15,9 +15,9 @@ require_once('generated/Foo/TestEnum.php'); ...@@ -15,9 +15,9 @@ require_once('generated/Foo/TestEnum.php');
require_once('generated/Foo/TestIncludeNamespaceMessage.php'); require_once('generated/Foo/TestIncludeNamespaceMessage.php');
require_once('generated/Foo/TestIncludePrefixMessage.php'); require_once('generated/Foo/TestIncludePrefixMessage.php');
require_once('generated/Foo/TestMessage.php'); require_once('generated/Foo/TestMessage.php');
require_once('generated/Foo/TestMessage_Empty.php'); require_once('generated/Foo/TestMessage/PBEmpty.php');
require_once('generated/Foo/TestMessage_NestedEnum.php'); require_once('generated/Foo/TestMessage/NestedEnum.php');
require_once('generated/Foo/TestMessage_Sub.php'); require_once('generated/Foo/TestMessage/Sub.php');
require_once('generated/Foo/TestPackedMessage.php'); require_once('generated/Foo/TestPackedMessage.php');
require_once('generated/Foo/TestPhpDoc.php'); require_once('generated/Foo/TestPhpDoc.php');
require_once('generated/Foo/TestRandomFieldOrder.php'); require_once('generated/Foo/TestRandomFieldOrder.php');
...@@ -37,7 +37,7 @@ require_once('test_util.php'); ...@@ -37,7 +37,7 @@ require_once('test_util.php');
use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\GPBType;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
$from = new TestMessage(); $from = new TestMessage();
TestUtil::setTestMessage($from); TestUtil::setTestMessage($from);
...@@ -97,7 +97,7 @@ $n = new TestMessage(); ...@@ -97,7 +97,7 @@ $n = new TestMessage();
$n->mergeFromString($data); $n->mergeFromString($data);
assert('abc' === $n->getOneofString()); assert('abc' === $n->getOneofString());
$sub_m = new TestMessage_Sub(); $sub_m = new Sub();
$sub_m->setA(1); $sub_m->setA(1);
$m->setOneofMessage($sub_m); $m->setOneofMessage($sub_m);
assert(0 === $m->getOneofInt32()); assert(0 === $m->getOneofInt32());
......
...@@ -5,7 +5,7 @@ require_once('test_util.php'); ...@@ -5,7 +5,7 @@ require_once('test_util.php');
use Foo\TestEnum; use Foo\TestEnum;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
use Foo\TestPackedMessage; use Foo\TestPackedMessage;
use Google\Protobuf\Internal\CodedInputStream; use Google\Protobuf\Internal\CodedInputStream;
use Google\Protobuf\Internal\FileDescriptorSet; use Google\Protobuf\Internal\FileDescriptorSet;
...@@ -527,7 +527,7 @@ class ImplementationTest extends TestBase ...@@ -527,7 +527,7 @@ class ImplementationTest extends TestBase
/** /**
* @expectedException Exception * @expectedException Exception
* @expectedExceptionMessage Expect message. * @expectedExceptionMessage Expect Foo\TestMessage_Sub.
*/ */
public function testArraysForMessagesThrowsException() public function testArraysForMessagesThrowsException()
{ {
......
syntax = "proto3";
package empty.echo;
message TestEmptyPackage {
int32 a = 1;
// Test nested messages, enums, and reserved names
NestedMessage nested_message = 2;
NestedEnum nested_enum = 3;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
};
}
...@@ -6,4 +6,14 @@ option php_metadata_namespace = ""; ...@@ -6,4 +6,14 @@ option php_metadata_namespace = "";
message TestEmptyNamespace { message TestEmptyNamespace {
int32 a = 1; int32 a = 1;
// Test nested messages, enums, and reserved names
NestedMessage nested_message = 2;
NestedEnum nested_enum = 3;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
};
} }
...@@ -5,3 +5,14 @@ package bar; ...@@ -5,3 +5,14 @@ package bar;
message TestInclude { message TestInclude {
int32 a = 1; int32 a = 1;
} }
message TestLegacyMessage {
NestedMessage message = 1;
NestedEnum enum = 2;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
}
}
...@@ -5,11 +5,15 @@ option php_metadata_namespace = "\\"; ...@@ -5,11 +5,15 @@ option php_metadata_namespace = "\\";
message NoNamespaceMessage { message NoNamespaceMessage {
int32 a = 1; int32 a = 1;
enum NestedEnum { // Test nested messages, enums, and reserved names
ZERO = 0; NestedMessage nested_message = 2;
NestedEnum nested_enum = 3;
message NestedMessage {
int32 a = 1;
} }
NestedEnum b = 2; enum NestedEnum {
repeated NestedEnum c = 3; ZERO = 0;
};
} }
enum NoNamespaceEnum { enum NoNamespaceEnum {
......
...@@ -6,4 +6,26 @@ option php_metadata_namespace = "Metadata\\Php\\Test"; ...@@ -6,4 +6,26 @@ option php_metadata_namespace = "Metadata\\Php\\Test";
message TestNamespace { message TestNamespace {
int32 a = 1; int32 a = 1;
// Test nested messages, enums, and reserved names
NestedMessage nested_message = 2;
NestedEnum nested_enum = 3;
Empty reserved_name = 4;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
};
// Test reserved name
message Empty {
NestedMessage nested_message = 1;
NestedEnum nested_enum = 2;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
};
}
} }
...@@ -4,6 +4,14 @@ option php_class_prefix = "Prefix"; ...@@ -4,6 +4,14 @@ option php_class_prefix = "Prefix";
message TestPrefix { message TestPrefix {
int32 a = 1; int32 a = 1;
NestedMessage nested_message = 2;
NestedEnum nested_enum = 3;
message NestedMessage {
int32 a = 1;
}
enum NestedEnum {
ZERO = 0;
};
} }
// Test prefix for reserved words. // Test prefix for reserved words.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestEnum; use Foo\TestEnum;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
class TestBase extends PHPUnit_Framework_TestCase class TestBase extends PHPUnit_Framework_TestCase
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
use Foo\TestEnum; use Foo\TestEnum;
use Foo\TestMessage; use Foo\TestMessage;
use Foo\TestMessage_Sub; use Foo\TestMessage\Sub;
use Foo\TestPackedMessage; use Foo\TestPackedMessage;
use Foo\TestUnpackedMessage; use Foo\TestUnpackedMessage;
...@@ -67,7 +67,7 @@ class TestUtil ...@@ -67,7 +67,7 @@ class TestUtil
$m->setOptionalString('a'); $m->setOptionalString('a');
$m->setOptionalBytes('b'); $m->setOptionalBytes('b');
$m->setOptionalEnum(TestEnum::ONE); $m->setOptionalEnum(TestEnum::ONE);
$sub = new TestMessage_Sub(); $sub = new Sub();
$m->setOptionalMessage($sub); $m->setOptionalMessage($sub);
$m->getOptionalMessage()->SetA(33); $m->getOptionalMessage()->SetA(33);
...@@ -87,7 +87,7 @@ class TestUtil ...@@ -87,7 +87,7 @@ class TestUtil
self::appendHelper($m, 'RepeatedString', 'a'); self::appendHelper($m, 'RepeatedString', 'a');
self::appendHelper($m, 'RepeatedBytes', 'b'); self::appendHelper($m, 'RepeatedBytes', 'b');
self::appendHelper($m, 'RepeatedEnum', TestEnum::ZERO); self::appendHelper($m, 'RepeatedEnum', TestEnum::ZERO);
self::appendHelper($m, 'RepeatedMessage', new TestMessage_Sub()); self::appendHelper($m, 'RepeatedMessage', new Sub());
$m->getRepeatedMessage()[0]->setA(34); $m->getRepeatedMessage()[0]->setA(34);
self::appendHelper($m, 'RepeatedInt32', -52); self::appendHelper($m, 'RepeatedInt32', -52);
...@@ -106,7 +106,7 @@ class TestUtil ...@@ -106,7 +106,7 @@ class TestUtil
self::appendHelper($m, 'RepeatedString', 'c'); self::appendHelper($m, 'RepeatedString', 'c');
self::appendHelper($m, 'RepeatedBytes', 'd'); self::appendHelper($m, 'RepeatedBytes', 'd');
self::appendHelper($m, 'RepeatedEnum', TestEnum::ONE); self::appendHelper($m, 'RepeatedEnum', TestEnum::ONE);
self::appendHelper($m, 'RepeatedMessage', new TestMessage_Sub()); self::appendHelper($m, 'RepeatedMessage', new Sub());
$m->getRepeatedMessage()[1]->SetA(35); $m->getRepeatedMessage()[1]->SetA(35);
self::kvUpdateHelper($m, 'MapInt32Int32', -62, -62); self::kvUpdateHelper($m, 'MapInt32Int32', -62, -62);
...@@ -125,13 +125,13 @@ class TestUtil ...@@ -125,13 +125,13 @@ class TestUtil
self::kvUpdateHelper($m, 'MapStringString', 'e', 'e'); self::kvUpdateHelper($m, 'MapStringString', 'e', 'e');
self::kvUpdateHelper($m, 'MapInt32Bytes', 1, 'f'); self::kvUpdateHelper($m, 'MapInt32Bytes', 1, 'f');
self::kvUpdateHelper($m, 'MapInt32Enum', 1, TestEnum::ONE); self::kvUpdateHelper($m, 'MapInt32Enum', 1, TestEnum::ONE);
self::kvUpdateHelper($m, 'MapInt32Message', 1, new TestMessage_Sub()); self::kvUpdateHelper($m, 'MapInt32Message', 1, new Sub());
$m->getMapInt32Message()[1]->SetA(36); $m->getMapInt32Message()[1]->SetA(36);
} }
public static function setTestMessage2(TestMessage $m) public static function setTestMessage2(TestMessage $m)
{ {
$sub = new TestMessage_Sub(); $sub = new Sub();
$m->setOptionalInt32(-142); $m->setOptionalInt32(-142);
$m->setOptionalInt64(-143); $m->setOptionalInt64(-143);
...@@ -168,7 +168,7 @@ class TestUtil ...@@ -168,7 +168,7 @@ class TestUtil
self::appendHelper($m, 'RepeatedString', 'aa'); self::appendHelper($m, 'RepeatedString', 'aa');
self::appendHelper($m, 'RepeatedBytes', 'bb'); self::appendHelper($m, 'RepeatedBytes', 'bb');
self::appendHelper($m, 'RepeatedEnum', TestEnum::TWO); self::appendHelper($m, 'RepeatedEnum', TestEnum::TWO);
self::appendHelper($m, 'RepeatedMessage', new TestMessage_Sub()); self::appendHelper($m, 'RepeatedMessage', new Sub());
$m->getRepeatedMessage()[0]->setA(134); $m->getRepeatedMessage()[0]->setA(134);
self::kvUpdateHelper($m, 'MapInt32Int32', -62, -162); self::kvUpdateHelper($m, 'MapInt32Int32', -62, -162);
...@@ -187,7 +187,7 @@ class TestUtil ...@@ -187,7 +187,7 @@ class TestUtil
self::kvUpdateHelper($m, 'MapStringString', 'e', 'ee'); self::kvUpdateHelper($m, 'MapStringString', 'e', 'ee');
self::kvUpdateHelper($m, 'MapInt32Bytes', 1, 'ff'); self::kvUpdateHelper($m, 'MapInt32Bytes', 1, 'ff');
self::kvUpdateHelper($m, 'MapInt32Enum', 1, TestEnum::TWO); self::kvUpdateHelper($m, 'MapInt32Enum', 1, TestEnum::TWO);
self::kvUpdateHelper($m, 'MapInt32Message', 1, new TestMessage_Sub()); self::kvUpdateHelper($m, 'MapInt32Message', 1, new Sub());
$m->getMapInt32Message()[1]->SetA(136); $m->getMapInt32Message()[1]->SetA(136);
self::kvUpdateHelper($m, 'MapInt32Int32', -162, -162); self::kvUpdateHelper($m, 'MapInt32Int32', -162, -162);
...@@ -206,7 +206,7 @@ class TestUtil ...@@ -206,7 +206,7 @@ class TestUtil
self::kvUpdateHelper($m, 'MapStringString', 'ee', 'ee'); self::kvUpdateHelper($m, 'MapStringString', 'ee', 'ee');
self::kvUpdateHelper($m, 'MapInt32Bytes', 2, 'ff'); self::kvUpdateHelper($m, 'MapInt32Bytes', 2, 'ff');
self::kvUpdateHelper($m, 'MapInt32Enum', 2, TestEnum::TWO); self::kvUpdateHelper($m, 'MapInt32Enum', 2, TestEnum::TWO);
self::kvUpdateHelper($m, 'MapInt32Message', 2, new TestMessage_Sub()); self::kvUpdateHelper($m, 'MapInt32Message', 2, new Sub());
$m->getMapInt32Message()[2]->SetA(136); $m->getMapInt32Message()[2]->SetA(136);
} }
......
This diff is collapsed.
...@@ -14,8 +14,8 @@ use Google\Protobuf\Enum; ...@@ -14,8 +14,8 @@ use Google\Protobuf\Enum;
use Google\Protobuf\EnumValue; use Google\Protobuf\EnumValue;
use Google\Protobuf\Field; use Google\Protobuf\Field;
use Google\Protobuf\FieldMask; use Google\Protobuf\FieldMask;
use Google\Protobuf\Field_Cardinality; use Google\Protobuf\Field\Cardinality;
use Google\Protobuf\Field_Kind; use Google\Protobuf\Field\Kind;
use Google\Protobuf\FloatValue; use Google\Protobuf\FloatValue;
use Google\Protobuf\GPBEmpty; use Google\Protobuf\GPBEmpty;
use Google\Protobuf\Int32Value; use Google\Protobuf\Int32Value;
...@@ -206,11 +206,11 @@ class WellKnownTest extends TestBase { ...@@ -206,11 +206,11 @@ class WellKnownTest extends TestBase {
{ {
$m = new Field(); $m = new Field();
$m->setKind(Field_Kind::TYPE_DOUBLE); $m->setKind(Kind::TYPE_DOUBLE);
$this->assertSame(Field_Kind::TYPE_DOUBLE, $m->getKind()); $this->assertSame(Kind::TYPE_DOUBLE, $m->getKind());
$m->setCardinality(Field_Cardinality::CARDINALITY_OPTIONAL); $m->setCardinality(Cardinality::CARDINALITY_OPTIONAL);
$this->assertSame(Field_Cardinality::CARDINALITY_OPTIONAL, $m->getCardinality()); $this->assertSame(Cardinality::CARDINALITY_OPTIONAL, $m->getCardinality());
$m->setNumber(1); $m->setNumber(1);
$this->assertSame(1, $m->getNumber()); $this->assertSame(1, $m->getNumber());
......
...@@ -51,16 +51,6 @@ class LIBPROTOC_EXPORT Generator ...@@ -51,16 +51,6 @@ class LIBPROTOC_EXPORT Generator
}; };
// To skip reserved keywords in php, some generated classname are prefixed.
// Other code generators may need following API to figure out the actual
// classname.
LIBPROTOC_EXPORT std::string GeneratedClassName(
const google::protobuf::Descriptor* desc);
LIBPROTOC_EXPORT std::string GeneratedClassName(
const google::protobuf::EnumDescriptor* desc);
LIBPROTOC_EXPORT std::string GeneratedClassName(
const google::protobuf::ServiceDescriptor* desc);
} // namespace php } // namespace php
} // namespace compiler } // namespace compiler
} // namespace protobuf } // namespace protobuf
......
...@@ -107,7 +107,7 @@ build_csharp() { ...@@ -107,7 +107,7 @@ build_csharp() {
# Check that the protos haven't broken C# codegen. # Check that the protos haven't broken C# codegen.
# TODO(jonskeet): Fail if regenerating creates any changes. # TODO(jonskeet): Fail if regenerating creates any changes.
csharp/generate_protos.sh csharp/generate_protos.sh
csharp/buildall.sh csharp/buildall.sh
cd conformance && make test_csharp && cd .. cd conformance && make test_csharp && cd ..
...@@ -352,6 +352,7 @@ generate_php_test_proto() { ...@@ -352,6 +352,7 @@ generate_php_test_proto() {
rm -rf generated rm -rf generated
mkdir generated mkdir generated
../../src/protoc --php_out=generated \ ../../src/protoc --php_out=generated \
proto/empty/echo.proto \
proto/test.proto \ proto/test.proto \
proto/test_include.proto \ proto/test_include.proto \
proto/test_no_namespace.proto \ proto/test_no_namespace.proto \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment